From: Paul Mundt Date: Thu, 7 Dec 2006 04:33:54 +0000 (-0800) Subject: [PATCH] avr32: fixup kprobes preemption handling X-Git-Tag: v2.6.20-rc1~15^2~14^2~302 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4d3eeeac97a6e4fc1ff3ad184f1c3bf328de7cb6;p=platform%2Fkernel%2Flinux-exynos.git [PATCH] avr32: fixup kprobes preemption handling While working on SH kprobes, I noticed that avr32 got the preemption handling wrong in the no probe case. The idea is that upon entry of kprobe_handler() preemption is disabled outright across the life of the kprobe, only to be re-enabled in post_kprobe_handler(). However, in the event that the probe is never activated, there's never any chance of hitting the post probe handler, which allows for the current avr32 implementation to disable preemption indefinitely, as it's currently missing a re-enable when no probe is activated. Signed-off-by: Paul Mundt Cc: Haavard Skinnemoen Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/avr32/kernel/kprobes.c b/arch/avr32/kernel/kprobes.c index ca41fc1..d0abbca 100644 --- a/arch/avr32/kernel/kprobes.c +++ b/arch/avr32/kernel/kprobes.c @@ -154,6 +154,7 @@ ss_probe: return 1; no_kprobe: + preempt_enable_no_resched(); return ret; }