Commit 1c56cd8e authored by Michael Ellerman's avatar Michael Ellerman

powerpc/oops: Use IS_ENABLED() for oops markers

Just because it looks less gross.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 2e82ca3c
...@@ -208,17 +208,18 @@ static int __die(const char *str, struct pt_regs *regs, long err) ...@@ -208,17 +208,18 @@ static int __die(const char *str, struct pt_regs *regs, long err)
else else
printk("BE "); printk("BE ");
#ifdef CONFIG_PREEMPT if (IS_ENABLED(CONFIG_PREEMPT))
pr_cont("PREEMPT "); pr_cont("PREEMPT ");
#endif
#ifdef CONFIG_SMP if (IS_ENABLED(CONFIG_SMP))
pr_cont("SMP NR_CPUS=%d ", NR_CPUS); pr_cont("SMP NR_CPUS=%d ", NR_CPUS);
#endif
if (debug_pagealloc_enabled()) if (debug_pagealloc_enabled())
pr_cont("DEBUG_PAGEALLOC "); pr_cont("DEBUG_PAGEALLOC ");
#ifdef CONFIG_NUMA
pr_cont("NUMA "); if (IS_ENABLED(CONFIG_NUMA))
#endif pr_cont("NUMA ");
pr_cont("%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) if (notify_die(DIE_OOPS, str, regs, err, 255, SIGSEGV) == NOTIFY_STOP)
......
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