Commit 72c0d9ee authored by Michael Ellerman's avatar Michael Ellerman

powerpc/oops: Fix the oops markers to use pr_cont()

When we oops we print a few markers for significant config options
such as PREEMPT, SMP etc. Currently these appear on separate lines
because we're not using pr_cont() properly. Fix it.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 6538ac30
......@@ -203,17 +203,17 @@ static int __die(const char *str, struct pt_regs *regs, long err)
{
printk("Oops: %s, sig: %ld [#%d]\n", str, err, ++die_counter);
#ifdef CONFIG_PREEMPT
printk("PREEMPT ");
pr_cont("PREEMPT ");
#endif
#ifdef CONFIG_SMP
printk("SMP NR_CPUS=%d ", NR_CPUS);
pr_cont("SMP NR_CPUS=%d ", NR_CPUS);
#endif
if (debug_pagealloc_enabled())
printk("DEBUG_PAGEALLOC ");
pr_cont("DEBUG_PAGEALLOC ");
#ifdef CONFIG_NUMA
printk("NUMA ");
pr_cont("NUMA ");
#endif
printk("%s\n", ppc_md.name ? ppc_md.name : "");
pr_cont("%s\n", ppc_md.name ? ppc_md.name : "");
if (notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV) == NOTIFY_STOP)
return 1;
......
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