Commit fbe3e9b6 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] ppc64: add platform identification to oops messages

From: Anton Blanchard <anton@samba.org>
parent 53e8cdeb
...@@ -92,6 +92,24 @@ void die(const char *str, struct pt_regs *regs, long err) ...@@ -92,6 +92,24 @@ void die(const char *str, struct pt_regs *regs, long err)
printk("NUMA "); printk("NUMA ");
nl = 1; nl = 1;
#endif #endif
switch(systemcfg->platform) {
case PLATFORM_PSERIES:
printk("PSERIES ");
nl = 1;
break;
case PLATFORM_PSERIES_LPAR:
printk("PSERIES LPAR ");
nl = 1;
break;
case PLATFORM_ISERIES_LPAR:
printk("ISERIES LPAR ");
nl = 1;
break;
case PLATFORM_POWERMAC:
printk("POWERMAC ");
nl = 1;
break;
}
if (nl) if (nl)
printk("\n"); printk("\n");
show_regs(regs); show_regs(regs);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment