|
@@ -3333,6 +3333,7 @@ asmlinkage void __sched schedule(void)
|
|
|
printk(KERN_ERR "BUG: scheduling while atomic: "
|
|
|
"%s/0x%08x/%d\n",
|
|
|
current->comm, preempt_count(), current->pid);
|
|
|
+ debug_show_held_locks(current);
|
|
|
dump_stack();
|
|
|
}
|
|
|
profile_hit(SCHED_PROFILING, __builtin_return_address(0));
|
|
@@ -6872,6 +6873,7 @@ void __might_sleep(char *file, int line)
|
|
|
" context at %s:%d\n", file, line);
|
|
|
printk("in_atomic():%d, irqs_disabled():%d\n",
|
|
|
in_atomic(), irqs_disabled());
|
|
|
+ debug_show_held_locks(current);
|
|
|
dump_stack();
|
|
|
}
|
|
|
#endif
|