Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c8aefce authored by Namhyung Kim's avatar Namhyung Kim Committed by Jason Wessel
Browse files

kgdb: add missing __percpu markup in arch/x86/kernel/kgdb.c



breakinfo->pev is a pointer to percpu pointer but was missing __percpu markup.
Add it.

Signed-off-by: default avatarNamhyung Kim <namhyung@gmail.com>
Signed-off-by: default avatarJason Wessel <jason.wessel@windriver.com>
parent b590cddf
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -194,7 +194,7 @@ static struct hw_breakpoint {
	unsigned long		addr;
	unsigned long		addr;
	int			len;
	int			len;
	int			type;
	int			type;
	struct perf_event	**pev;
	struct perf_event	* __percpu *pev;
} breakinfo[HBP_NUM];
} breakinfo[HBP_NUM];


static unsigned long early_dr7;
static unsigned long early_dr7;