diff options
author | Maciej W. Rozycki <macro@linux-mips.org> | 2008-06-05 22:27:41 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-07-08 03:13:16 -0400 |
commit | 148b50830993acc67129f09c544d9167291e5458 (patch) | |
tree | 595bcdaa81728036d990488f7b746602a510478a /include/asm-x86/nmi.h | |
parent | 6fe9fe875691e15eda61b992e03257e68aa5ba4f (diff) |
x86: NMI watchdog: Downgrade helper
A downgrade helper for the NMI watchdog to be used in all places where
the I/O APIC watchdog may have been requested, but the I/O APIC is found
not to be there or meant to be left disabled. This is so that the
reconfiguration is cosistent and defined in a single place only.
Signed-off-by: Maciej W. Rozycki <macro@linux-mips.org>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/asm-x86/nmi.h')
-rw-r--r-- | include/asm-x86/nmi.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/asm-x86/nmi.h b/include/asm-x86/nmi.h index 1e363021e72f..745d8c847de5 100644 --- a/include/asm-x86/nmi.h +++ b/include/asm-x86/nmi.h | |||
@@ -78,6 +78,11 @@ extern int unknown_nmi_panic; | |||
78 | void __trigger_all_cpu_backtrace(void); | 78 | void __trigger_all_cpu_backtrace(void); |
79 | #define trigger_all_cpu_backtrace() __trigger_all_cpu_backtrace() | 79 | #define trigger_all_cpu_backtrace() __trigger_all_cpu_backtrace() |
80 | 80 | ||
81 | static inline void localise_nmi_watchdog(void) | ||
82 | { | ||
83 | if (nmi_watchdog == NMI_IO_APIC) | ||
84 | nmi_watchdog = NMI_LOCAL_APIC; | ||
85 | } | ||
81 | #endif | 86 | #endif |
82 | 87 | ||
83 | void lapic_watchdog_stop(void); | 88 | void lapic_watchdog_stop(void); |