]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/x86/kernel/nmi.c
x86, NMI: fix watchdog failure message
[net-next-2.6.git] / arch / x86 / kernel / nmi.c
index ac6d51222e7d3562abb1e7b5e8bd4a16a1c1c1f4..919473ad4a293e8bfccdc6a8eacb1dad39bc9622 100644 (file)
@@ -142,11 +142,15 @@ int __init check_nmi_watchdog(void)
                if (!per_cpu(wd_enabled, cpu))
                        continue;
                if (get_nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
+                       printk("\n");
                        printk(KERN_WARNING "WARNING: CPU#%d: NMI "
                                "appears to be stuck (%d->%d)!\n",
                                cpu,
                                prev_nmi_count[cpu],
                                get_nmi_count(cpu));
+                       printk(KERN_WARNING "Please report this to "
+                              "linux-kernel@vger.kernel.org and attach "
+                              "the output of 'dmesg' command.\n");
                        per_cpu(wd_enabled, cpu) = 0;
                        atomic_dec(&nmi_active);
                }