public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [rfc] "improve" preempt debugging
@ 2008-09-30 10:50 Nick Piggin
  2008-09-30 10:58 ` Ingo Molnar
  0 siblings, 1 reply; 2+ messages in thread
From: Nick Piggin @ 2008-09-30 10:50 UTC (permalink / raw)
  To: Molnar, Ingo, Linux Kernel

Hi, don't know if you really like this patch or not, but it helped me out with
a problem I recently had....

Basically, when the kernel lock is held, then preempt_count underflow does not
get detected until it is released which may be a long time (and arbitrarily,
eg at different points it may be rescheduled). If the bkl is released at
schedule, the resulting output is actually fairly cryptic...

With any other lock that elevates preempt_count, it is illegal to schedule
under it (which would get found pretty quickly). bkl allows scheduling with
preempt_count elevated, which makes underflows hard to debug.

Index: linux-2.6/kernel/sched.c
===================================================================
--- linux-2.6.orig/kernel/sched.c       2008-09-30 11:32:56.000000000 +1000
+++ linux-2.6/kernel/sched.c    2008-09-30 11:38:18.000000000 +1000
@@ -4305,7 +4305,7 @@ void __kprobes sub_preempt_count(int val
        /*
         * Underflow?
         */
-       if (DEBUG_LOCKS_WARN_ON(val > preempt_count()))
+       if (DEBUG_LOCKS_WARN_ON(val > preempt_count() - (!!kernel_locked())))
                return;
        /*
         * Is the spinlock portion underflowing?

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-09-30 10:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-30 10:50 [rfc] "improve" preempt debugging Nick Piggin
2008-09-30 10:58 ` Ingo Molnar

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox