aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Dobriyan <[email protected]>2010-02-03 21:21:32 +0200
committerIngo Molnar <[email protected]>2010-02-04 09:27:56 +0100
commitf266d7f5f89652a68e21e9882c44ee9104ad8d61 (patch)
tree94372b175f2bac95f6e85be1ae8ded1e7f985a7f
parente9e70bc14ea5974e21f5baecf95a123844c412b9 (diff)
x86_64: Print modules like i386 does
Print modules list during kernel BUG. Signed-off-by: Alexey Dobriyan <[email protected]> Cc: Arjan van de Ven <[email protected]> Cc: Linus Torvalds <[email protected]> Cc: Andrew Morton <[email protected]> LKML-Reference: <new-submission> Signed-off-by: Ingo Molnar <[email protected]>
-rw-r--r--arch/x86/kernel/dumpstack_64.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c
index 0ad9597073f5..907a90e2901c 100644
--- a/arch/x86/kernel/dumpstack_64.c
+++ b/arch/x86/kernel/dumpstack_64.c
@@ -291,6 +291,7 @@ void show_registers(struct pt_regs *regs)
sp = regs->sp;
printk("CPU %d ", cpu);
+ print_modules();
__show_regs(regs, 1);
printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
cur->comm, cur->pid, task_thread_info(cur), cur);