aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@gmail.com>2008-05-28 15:00:47 -0400
committerIngo Molnar <mingo@elte.hu>2008-05-28 15:04:53 -0400
commit19ec673ced067316b9732bc6d1c4ff4052e5f795 (patch)
treea56edc84896f6750078fe9ce259c35d529f73c80 /include
parent1798bc22b2790bf2a956588e6b17c36ef79ceff7 (diff)
x86: nmi - fix incorrect NMI watchdog used by default
The commit commit 4b82b277707a39b97271439c475f186f63ec4692 Author: Cyrill Gorcunov <gorcunov@gmail.com> Date: Sat May 24 19:36:35 2008 +0400 set nmi_watchdog to NMI_IO_APIC as by default. This causes hangs on some machines with buggy watchdogs. Fix it - i.e. restore old behaviour. Thanks to Sitsofe Wheeler and Adrian Bunk for catching the problem and Maciej W. Rozycki for explanation what is going on there. Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> CC: Maciej W. Rozycki <macro@linux-mips.org> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r--include/asm-x86/nmi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/asm-x86/nmi.h b/include/asm-x86/nmi.h
index 1e8f34d7ab68..6f4d44fc051f 100644
--- a/include/asm-x86/nmi.h
+++ b/include/asm-x86/nmi.h
@@ -38,9 +38,11 @@ static inline void unset_nmi_pm_callback(struct pm_dev *dev)
38 38
39#ifdef CONFIG_X86_64 39#ifdef CONFIG_X86_64
40extern void default_do_nmi(struct pt_regs *); 40extern void default_do_nmi(struct pt_regs *);
41extern void nmi_watchdog_default(void);
42#else
43#define nmi_watchdog_default(void) do {} while (0)
41#endif 44#endif
42 45
43extern void nmi_watchdog_default(void);
44extern void die_nmi(char *str, struct pt_regs *regs, int do_panic); 46extern void die_nmi(char *str, struct pt_regs *regs, int do_panic);
45extern int check_nmi_watchdog(void); 47extern int check_nmi_watchdog(void);
46extern int nmi_watchdog_enabled; 48extern int nmi_watchdog_enabled;