diff options
Diffstat (limited to 'arch/sh/kernel/hw_breakpoint.c')
| -rw-r--r-- | arch/sh/kernel/hw_breakpoint.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/kernel/hw_breakpoint.c b/arch/sh/kernel/hw_breakpoint.c index f9173766ec4..2197fc58418 100644 --- a/arch/sh/kernel/hw_breakpoint.c +++ b/arch/sh/kernel/hw_breakpoint.c @@ -52,7 +52,7 @@ int arch_install_hw_breakpoint(struct perf_event *bp)  	int i;  	for (i = 0; i < sh_ubc->num_events; i++) { -		struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]); +		struct perf_event **slot = this_cpu_ptr(&bp_per_reg[i]);  		if (!*slot) {  			*slot = bp; @@ -84,7 +84,7 @@ void arch_uninstall_hw_breakpoint(struct perf_event *bp)  	int i;  	for (i = 0; i < sh_ubc->num_events; i++) { -		struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]); +		struct perf_event **slot = this_cpu_ptr(&bp_per_reg[i]);  		if (*slot == bp) {  			*slot = NULL;  | 
