mirror of https://gitee.com/openkylin/linux.git
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: Namhyung Kim <namhyung@gmail.com> Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
This commit is contained in:
parent
b590cddfa6
commit
8c8aefce93
|
@ -194,7 +194,7 @@ static struct hw_breakpoint {
|
|||
unsigned long addr;
|
||||
int len;
|
||||
int type;
|
||||
struct perf_event **pev;
|
||||
struct perf_event * __percpu *pev;
|
||||
} breakinfo[HBP_NUM];
|
||||
|
||||
static unsigned long early_dr7;
|
||||
|
|
Loading…
Reference in New Issue