[tip:x86/asm] x86/32: Print control and debug registers for kerenel context

From: tip-bot for Jan Beulich
Date: Thu Mar 08 2012 - 05:18:52 EST


Commit-ID: c7e23289a6aa95048a78b252b462f24ca6cf7f96
Gitweb: http://git.kernel.org/tip/c7e23289a6aa95048a78b252b462f24ca6cf7f96
Author: Jan Beulich <JBeulich@xxxxxxxx>
AuthorDate: Thu, 8 Mar 2012 09:23:14 +0000
Committer: Ingo Molnar <mingo@xxxxxxx>
CommitDate: Thu, 8 Mar 2012 10:57:35 +0100

x86/32: Print control and debug registers for kerenel context

While for a user mode register dump it may be reasonable to skip
those (albeit x86-64 doesn't do so), for kernel mode dumps these
should be printed to make sure all information possibly
necessary for analysis is available.

Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx>
Link: http://lkml.kernel.org/r/4F58889202000078000770E7@xxxxxxxxxxxxxxxxxxxx
Signed-off-by: Ingo Molnar <mingo@xxxxxxx>
---
arch/x86/kernel/dumpstack_32.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c
index c99f9ed..88ec912 100644
--- a/arch/x86/kernel/dumpstack_32.c
+++ b/arch/x86/kernel/dumpstack_32.c
@@ -87,7 +87,7 @@ void show_registers(struct pt_regs *regs)
int i;

print_modules();
- __show_regs(regs, 0);
+ __show_regs(regs, !user_mode_vm(regs));

printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)\n",
TASK_COMM_LEN, current->comm, task_pid_nr(current),
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/