diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-06-19 07:10:04 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-06-19 07:10:19 -0400 |
commit | 0fc9bbf771ce7d41ed33300e75e74e922dde1c38 (patch) | |
tree | 849479fbd2dd986e29c417718c4fd3a5bab702da | |
parent | 84b36a8e0c863aeea29b62f8411157192481dd2e (diff) |
[S390] Print list of modules on die().
Print list of modules on die() like a lot of other architectures do.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | arch/s390/kernel/traps.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/s390/kernel/traps.c b/arch/s390/kernel/traps.c index cbfe73034c30..1d8c92740ccd 100644 --- a/arch/s390/kernel/traps.c +++ b/arch/s390/kernel/traps.c | |||
@@ -258,6 +258,7 @@ void die(const char * str, struct pt_regs * regs, long err) | |||
258 | spin_lock_irq(&die_lock); | 258 | spin_lock_irq(&die_lock); |
259 | bust_spinlocks(1); | 259 | bust_spinlocks(1); |
260 | printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter); | 260 | printk("%s: %04lx [#%d]\n", str, err & 0xffff, ++die_counter); |
261 | print_modules(); | ||
261 | show_regs(regs); | 262 | show_regs(regs); |
262 | bust_spinlocks(0); | 263 | bust_spinlocks(0); |
263 | spin_unlock_irq(&die_lock); | 264 | spin_unlock_irq(&die_lock); |