Skip to content

Commit

Permalink
kgdb: add missing __percpu markup in arch/x86/kernel/kgdb.c
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Namhyung Kim authored and Jason Wessel committed Aug 16, 2010
1 parent b590cdd commit 8c8aefc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86/kernel/kgdb.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8c8aefc

Please sign in to comment.