|
@@ -66,6 +66,7 @@
|
|
|
#include <linux/pagemap.h>
|
|
|
|
|
|
#include <asm/tlb.h>
|
|
|
+#include <asm/irq_regs.h>
|
|
|
|
|
|
/*
|
|
|
* Scheduler clock - returns current time in nanosec units.
|
|
@@ -3507,12 +3508,19 @@ EXPORT_SYMBOL(sub_preempt_count);
|
|
|
*/
|
|
|
static noinline void __schedule_bug(struct task_struct *prev)
|
|
|
{
|
|
|
- printk(KERN_ERR "BUG: scheduling while atomic: %s/0x%08x/%d\n",
|
|
|
- prev->comm, preempt_count(), task_pid_nr(prev));
|
|
|
+ struct pt_regs *regs = get_irq_regs();
|
|
|
+
|
|
|
+ printk(KERN_ERR "BUG: scheduling while atomic: %s/%d/0x%08x\n",
|
|
|
+ prev->comm, prev->pid, preempt_count());
|
|
|
+
|
|
|
debug_show_held_locks(prev);
|
|
|
if (irqs_disabled())
|
|
|
print_irqtrace_events(prev);
|
|
|
- dump_stack();
|
|
|
+
|
|
|
+ if (regs)
|
|
|
+ show_regs(regs);
|
|
|
+ else
|
|
|
+ dump_stack();
|
|
|
}
|
|
|
|
|
|
/*
|