sched: improve preempt debugging
authorNick Piggin <nickpiggin@yahoo.com.au>
Tue, 30 Sep 2008 10:50:27 +0000 (20:50 +1000)
committerIngo Molnar <mingo@elte.hu>
Tue, 30 Sep 2008 10:56:25 +0000 (12:56 +0200)
This patch 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.

Signed-off-by: Ingo Molnar <mingo@elte.hu>
kernel/sched.c

index 9889080..ec3bd1f 100644 (file)
@@ -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?