From: Thomas Gleixner Date: Mon, 19 Feb 2007 18:12:05 +0000 (+0000) Subject: [PATCH] NOHZ: Produce debug output instead of a BUG() X-Git-Tag: upstream/snapshot3+hdmi~35780 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bc5393a6c9c0e70b4b43fb2fb63e3315e9a15c8f;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git [PATCH] NOHZ: Produce debug output instead of a BUG() The BUG_ON() in tick_nohz_stop_sched_tick() triggers on some boxen. Remove the BUG_ON and print information about the pending softirq to allow better debugging of the problem. Signed-off-by: Thomas Gleixner Signed-off-by: Linus Torvalds --- diff --git a/kernel/time/tick-sched.c b/kernel/time/tick-sched.c index 9234e44..512a4a9 100644 --- a/kernel/time/tick-sched.c +++ b/kernel/time/tick-sched.c @@ -165,7 +165,9 @@ void tick_nohz_stop_sched_tick(void) goto end; cpu = smp_processor_id(); - BUG_ON(local_softirq_pending()); + if (unlikely(local_softirq_pending())) + printk(KERN_ERR "NOHZ: local_softirq_pending %02x\n", + local_softirq_pending()); now = ktime_get(); /*