Skip to content

Commit

Permalink
[PATCH] x86_64: Fix NMI watchdog on x460
Browse files Browse the repository at this point in the history
[description from AK]

Old check for the IO-APIC watchdog during the timer check was wrong -
it obviously should only drop into this if the IO-APIC watchdog is used.

Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Chris McDermott authored and Linus Torvalds committed Feb 26, 2006
1 parent e78256b commit 1f99215
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/x86_64/kernel/io_apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1850,7 +1850,7 @@ static inline void check_timer(void)
}
printk(" failed.\n");

if (nmi_watchdog) {
if (nmi_watchdog == NMI_IO_APIC) {
printk(KERN_WARNING "timer doesn't work through the IO-APIC - disabling NMI Watchdog!\n");
nmi_watchdog = 0;
}
Expand Down

0 comments on commit 1f99215

Please sign in to comment.