diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2008-01-30 07:32:01 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:32:01 -0500 |
commit | ddc66df876fd33d3956f3c3acc1ae334b16eedee (patch) | |
tree | dec203db1d6e84669bd934bf64127501720f8e20 /arch/x86/kernel/kprobes.c | |
parent | bde6f5f59c2b2b48a7a849c129d5b48838fe77ee (diff) |
x86: fix kprobe_handler reenable preemption
Fix a preemption bug in kprobe_handler(). It has to call preempt_enable()
before returning.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/kprobes.c')
-rw-r--r-- | arch/x86/kernel/kprobes.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/kernel/kprobes.c b/arch/x86/kernel/kprobes.c index 521a469acaad..f0f2b98b9e20 100644 --- a/arch/x86/kernel/kprobes.c +++ b/arch/x86/kernel/kprobes.c | |||
@@ -467,7 +467,8 @@ static int __kprobes kprobe_handler(struct pt_regs *regs) | |||
467 | arch_disarm_kprobe(p); | 467 | arch_disarm_kprobe(p); |
468 | regs->ip = (unsigned long)p->addr; | 468 | regs->ip = (unsigned long)p->addr; |
469 | reset_current_kprobe(); | 469 | reset_current_kprobe(); |
470 | return 1; | 470 | ret = 1; |
471 | goto no_kprobe; | ||
471 | #endif | 472 | #endif |
472 | } | 473 | } |
473 | /* We have reentered the kprobe_handler(), since | 474 | /* We have reentered the kprobe_handler(), since |