Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 664dfa65 authored by Dave Jones's avatar Dave Jones Committed by Ingo Molnar
Browse files

sched: Disable scheduler warnings during oopses

The panic-on-framebuffer code seems to cause a schedule
to occur during an oops. This causes a bunch of extra
spew as can be seen in:

   https://bugzilla.redhat.com/attachment.cgi?id=549230



Don't do scheduler debug checks when we are oopsing already.

Signed-off-by: default avatarDave Jones <davej@redhat.com>
Link: http://lkml.kernel.org/r/20111222213929.GA4722@redhat.com


Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 62af3783
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3077,6 +3077,9 @@ static noinline void __schedule_bug(struct task_struct *prev)
{
	struct pt_regs *regs = get_irq_regs();

	if (oops_in_progress)
		return;

	printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
		prev->comm, prev->pid, preempt_count());