diff options
Diffstat (limited to 'arch/powerpc/kernel/hw_breakpoint.c')
| -rw-r--r-- | arch/powerpc/kernel/hw_breakpoint.c | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/powerpc/kernel/hw_breakpoint.c b/arch/powerpc/kernel/hw_breakpoint.c index c7483d09fdd..2a3e8dd547e 100644 --- a/arch/powerpc/kernel/hw_breakpoint.c +++ b/arch/powerpc/kernel/hw_breakpoint.c @@ -73,7 +73,7 @@ int arch_install_hw_breakpoint(struct perf_event *bp)  	 * If so, DABR will be populated in single_step_dabr_instruction().  	 */  	if (current->thread.last_hit_ubp != bp) -		set_break(info); +		set_breakpoint(info);  	return 0;  } @@ -191,7 +191,7 @@ void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs)  	info = counter_arch_bp(tsk->thread.last_hit_ubp);  	regs->msr &= ~MSR_SE; -	set_break(info); +	set_breakpoint(info);  	tsk->thread.last_hit_ubp = NULL;  } @@ -276,7 +276,7 @@ int __kprobes hw_breakpoint_handler(struct die_args *args)  	if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ))  		perf_bp_event(bp, regs); -	set_break(info); +	set_breakpoint(info);  out:  	rcu_read_unlock();  	return rc; @@ -308,7 +308,7 @@ int __kprobes single_step_dabr_instruction(struct die_args *args)  	if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ))  		perf_bp_event(bp, regs); -	set_break(info); +	set_breakpoint(info);  	current->thread.last_hit_ubp = NULL;  	/*  |