summaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/nmi.c
diff options
context:
space:
mode:
authorChuck Ebbert2005-09-12 18:49:24 +0200
committerLinus Torvalds2005-09-12 19:50:58 +0200
commit847815760cc0f41985b3185d780aa4369fcb475d (patch)
tree1c671922c112b47edf66243fe4002a418a35da8e /arch/x86_64/kernel/nmi.c
parent[PATCH] x86-64: Lose constraints on cmpxchg (diff)
downloadkernel-qcow2-linux-847815760cc0f41985b3185d780aa4369fcb475d.tar.gz
kernel-qcow2-linux-847815760cc0f41985b3185d780aa4369fcb475d.tar.xz
kernel-qcow2-linux-847815760cc0f41985b3185d780aa4369fcb475d.zip
[PATCH] x86-64: Clean up nmi error message
The x86_64 nmi code is missing a newline in one of its messages. I added a space before the CPU id for readability and killed the trailing space on the previous line as well. Signed-off-by: Chuck Ebbert <76306.1226@compuserve.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/kernel/nmi.c')
-rw-r--r--arch/x86_64/kernel/nmi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86_64/kernel/nmi.c b/arch/x86_64/kernel/nmi.c
index caf164959e19..330b35794055 100644
--- a/arch/x86_64/kernel/nmi.c
+++ b/arch/x86_64/kernel/nmi.c
@@ -488,8 +488,8 @@ void nmi_watchdog_tick (struct pt_regs * regs, unsigned reason)
== NOTIFY_STOP) {
local_set(&__get_cpu_var(alert_counter), 0);
return;
- }
- die_nmi("NMI Watchdog detected LOCKUP on CPU%d", regs);
+ }
+ die_nmi("NMI Watchdog detected LOCKUP on CPU %d\n", regs);
}
} else {
__get_cpu_var(last_irq_sum) = sum;