aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDon Zickus <dzickus@redhat.com>2010-02-05 21:47:05 -0500
committerIngo Molnar <mingo@elte.hu>2010-02-08 02:29:03 -0500
commit84e478c6f1eb9c4bfa1fff2f8108e9a061b46428 (patch)
tree15be1e0d92d4439e49ecc98a504589dc596fc211
parent1fb9d6ad2766a1dd70d167552988375049a97f21 (diff)
nmi_watchdog: Config option to enable new nmi_watchdog
These are the bits that enable the new nmi_watchdog and safely isolate the old nmi_watchdog. Only one or the other can run, not both at the same time. Signed-off-by: Don Zickus <dzickus@redhat.com> Cc: Linus Torvalds <torvalds@linux-foundation.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: gorcunov@gmail.com Cc: aris@redhat.com Cc: peterz@infradead.org LKML-Reference: <1265424425-31562-4-git-send-email-dzickus@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/apic/Makefile7
-rw-r--r--arch/x86/kernel/traps.c2
-rw-r--r--include/linux/nmi.h4
-rw-r--r--kernel/Makefile1
-rw-r--r--lib/Kconfig.debug13
5 files changed, 26 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/Makefile b/arch/x86/kernel/apic/Makefile
index 565c1bfc507d..1a4512e48d24 100644
--- a/arch/x86/kernel/apic/Makefile
+++ b/arch/x86/kernel/apic/Makefile
@@ -2,7 +2,12 @@
2# Makefile for local APIC drivers and for the IO-APIC code 2# Makefile for local APIC drivers and for the IO-APIC code
3# 3#
4 4
5obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic_noop.o probe_$(BITS).o ipi.o nmi.o 5obj-$(CONFIG_X86_LOCAL_APIC) += apic.o apic_noop.o probe_$(BITS).o ipi.o
6ifneq ($(CONFIG_NMI_WATCHDOG),y)
7obj-$(CONFIG_X86_LOCAL_APIC) += nmi.o
8endif
9obj-$(CONFIG_NMI_WATCHDOG) += hw_nmi.o
10
6obj-$(CONFIG_X86_IO_APIC) += io_apic.o 11obj-$(CONFIG_X86_IO_APIC) += io_apic.o
7obj-$(CONFIG_SMP) += ipi.o 12obj-$(CONFIG_SMP) += ipi.o
8 13
diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
index 51ef893ffa65..973cbc4f044f 100644
--- a/arch/x86/kernel/traps.c
+++ b/arch/x86/kernel/traps.c
@@ -406,6 +406,7 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
406 == NOTIFY_STOP) 406 == NOTIFY_STOP)
407 return; 407 return;
408 408
409#ifndef CONFIG_NMI_WATCHDOG
409 /* 410 /*
410 * Ok, so this is none of the documented NMI sources, 411 * Ok, so this is none of the documented NMI sources,
411 * so it must be the NMI watchdog. 412 * so it must be the NMI watchdog.
@@ -413,6 +414,7 @@ static notrace __kprobes void default_do_nmi(struct pt_regs *regs)
413 if (nmi_watchdog_tick(regs, reason)) 414 if (nmi_watchdog_tick(regs, reason))
414 return; 415 return;
415 if (!do_nmi_callback(regs, cpu)) 416 if (!do_nmi_callback(regs, cpu))
417#endif /* !CONFIG_NMI_WATCHDOG */
416 unknown_nmi_error(reason, regs); 418 unknown_nmi_error(reason, regs);
417#else 419#else
418 unknown_nmi_error(reason, regs); 420 unknown_nmi_error(reason, regs);
diff --git a/include/linux/nmi.h b/include/linux/nmi.h
index b752e807adde..a42ff0bef708 100644
--- a/include/linux/nmi.h
+++ b/include/linux/nmi.h
@@ -47,4 +47,8 @@ static inline bool trigger_all_cpu_backtrace(void)
47} 47}
48#endif 48#endif
49 49
50#ifdef CONFIG_NMI_WATCHDOG
51int hw_nmi_is_cpu_stuck(struct pt_regs *);
52#endif
53
50#endif 54#endif
diff --git a/kernel/Makefile b/kernel/Makefile
index 864ff75d65f2..8a5abe53ebad 100644
--- a/kernel/Makefile
+++ b/kernel/Makefile
@@ -76,6 +76,7 @@ obj-$(CONFIG_AUDIT_TREE) += audit_tree.o
76obj-$(CONFIG_KPROBES) += kprobes.o 76obj-$(CONFIG_KPROBES) += kprobes.o
77obj-$(CONFIG_KGDB) += kgdb.o 77obj-$(CONFIG_KGDB) += kgdb.o
78obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o 78obj-$(CONFIG_DETECT_SOFTLOCKUP) += softlockup.o
79obj-$(CONFIG_NMI_WATCHDOG) += nmi_watchdog.o
79obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o 80obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o
80obj-$(CONFIG_GENERIC_HARDIRQS) += irq/ 81obj-$(CONFIG_GENERIC_HARDIRQS) += irq/
81obj-$(CONFIG_SECCOMP) += seccomp.o 82obj-$(CONFIG_SECCOMP) += seccomp.o
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 25c3ed594c54..f80b67e72aa0 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -170,6 +170,19 @@ config DETECT_SOFTLOCKUP
170 can be detected via the NMI-watchdog, on platforms that 170 can be detected via the NMI-watchdog, on platforms that
171 support it.) 171 support it.)
172 172
173config NMI_WATCHDOG
174 bool "Detect Hard Lockups with an NMI Watchdog"
175 depends on DEBUG_KERNEL && PERF_EVENTS
176 default y
177 help
178 Say Y here to enable the kernel to use the NMI as a watchdog
179 to detect hard lockups. This is useful when a cpu hangs for no
180 reason but can still respond to NMIs. A backtrace is displayed
181 for reviewing and reporting.
182
183 The overhead should be minimal, just an extra NMI every few
184 seconds.
185
173config BOOTPARAM_SOFTLOCKUP_PANIC 186config BOOTPARAM_SOFTLOCKUP_PANIC
174 bool "Panic (Reboot) On Soft Lockups" 187 bool "Panic (Reboot) On Soft Lockups"
175 depends on DETECT_SOFTLOCKUP 188 depends on DETECT_SOFTLOCKUP