summaryrefslogtreecommitdiffstats
path: root/arch/powerpc
diff options
context:
space:
mode:
authorAnton Blanchard2013-11-15 05:41:19 +0100
committerBenjamin Herrenschmidt2013-11-21 00:33:38 +0100
commitc54006491dde7d1b8050c5542716b751be92ed80 (patch)
tree50c64ae1dacbbd9084b94348e2118cdd66b413a0 /arch/powerpc
parentpowerpc: Fix __get_user_pages_fast() irq handling (diff)
downloadkernel-qcow2-linux-c54006491dde7d1b8050c5542716b751be92ed80.tar.gz
kernel-qcow2-linux-c54006491dde7d1b8050c5542716b751be92ed80.tar.xz
kernel-qcow2-linux-c54006491dde7d1b8050c5542716b751be92ed80.zip
powerpc: Print DAR and DSISR on machine check oopses
Machine check exceptions set DAR and DSISR, so print them in our oops output. Signed-off-by: Anton Blanchard <anton@samba.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r--arch/powerpc/kernel/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/process.c b/arch/powerpc/kernel/process.c
index 75c2d1009985..37c4103a8cff 100644
--- a/arch/powerpc/kernel/process.c
+++ b/arch/powerpc/kernel/process.c
@@ -864,7 +864,7 @@ void show_regs(struct pt_regs * regs)
trap = TRAP(regs);
if ((regs->trap != 0xc00) && cpu_has_feature(CPU_FTR_CFAR))
printk("CFAR: "REG"\n", regs->orig_gpr3);
- if (trap == 0x300 || trap == 0x600)
+ if (trap == 0x200 || trap == 0x300 || trap == 0x600)
#if defined(CONFIG_4xx) || defined(CONFIG_BOOKE)
printk("DEAR: "REG", ESR: "REG"\n", regs->dar, regs->dsisr);
#else