diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-05 13:09:31 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-07-05 13:09:31 -0700 |
commit | 84df87b7ebdcbbc0f59df9526f4e63fda70647d3 (patch) | |
tree | e91ab6df3d2f6403e315bfedd9e02736d0e6f4a4 | |
parent | 537388bb6563bfde7c0307b95ecc1f7a1ae39b02 (diff) | |
parent | 3b7253238801a7b97b3929d8db2fa7a0721fb17b (diff) |
Merge branch 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'core-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
softlockup: print a module list on being stuck
-rw-r--r-- | kernel/softlockup.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/softlockup.c b/kernel/softlockup.c index c828c2339cc..a272d78185e 100644 --- a/kernel/softlockup.c +++ b/kernel/softlockup.c @@ -120,6 +120,7 @@ void softlockup_tick(void) printk(KERN_ERR "BUG: soft lockup - CPU#%d stuck for %lus! [%s:%d]\n", this_cpu, now - touch_timestamp, current->comm, task_pid_nr(current)); + print_modules(); if (regs) show_regs(regs); else |