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

[PATCH] trivial oops formatting cleanups

From: Anton Blanchard <anton@samba.org>

Some trivial oops cleanups.
parent a04a8935
...@@ -81,15 +81,15 @@ void die(const char *str, struct pt_regs *regs, long err) ...@@ -81,15 +81,15 @@ void die(const char *str, struct pt_regs *regs, long err)
nl = 1; nl = 1;
#endif #endif
#ifdef CONFIG_SMP #ifdef CONFIG_SMP
printk("SMP NR_CPUS=%d", NR_CPUS); printk("SMP NR_CPUS=%d ", NR_CPUS);
nl = 1; nl = 1;
#endif #endif
#ifdef CONFIG_DEBUG_PAGEALLOC #ifdef CONFIG_DEBUG_PAGEALLOC
printk("DEBUG_PAGEALLOC"); printk("DEBUG_PAGEALLOC ");
nl = 1; nl = 1;
#endif #endif
#ifdef CONFIG_NUMA #ifdef CONFIG_NUMA
printk("NUMA"); printk("NUMA ");
nl = 1; nl = 1;
#endif #endif
if (nl) if (nl)
...@@ -116,7 +116,7 @@ _exception(int signr, siginfo_t *info, struct pt_regs *regs) ...@@ -116,7 +116,7 @@ _exception(int signr, siginfo_t *info, struct pt_regs *regs)
if (!user_mode(regs)) { if (!user_mode(regs)) {
if (debugger(regs)) if (debugger(regs))
return; return;
die("Exception in kernel mode\n", regs, signr); die("Exception in kernel mode", regs, signr);
} }
force_sig_info(signr, info, current); force_sig_info(signr, info, current);
......
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