diff options
author | Cyrill Gorcunov <gorcunov@gmail.com> | 2008-05-24 11:36:35 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-05-25 16:32:51 -0400 |
commit | 4b82b277707a39b97271439c475f186f63ec4692 (patch) | |
tree | def1609a31a1ee3eef6bd2b22a9056bf7d513050 /arch/x86/kernel/nmi_32.c | |
parent | d1b946b97d71423f365fa797d1428e1847c0bec1 (diff) |
x86: nmi_32.c - add nmi_watchdog_default helper
Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Cc: hpa@zytor.com
Cc: mingo@redhat.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/nmi_32.c')
-rw-r--r-- | arch/x86/kernel/nmi_32.c | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/arch/x86/kernel/nmi_32.c b/arch/x86/kernel/nmi_32.c index 4437fe1edabc..7714e8478213 100644 --- a/arch/x86/kernel/nmi_32.c +++ b/arch/x86/kernel/nmi_32.c | |||
@@ -51,6 +51,17 @@ static DEFINE_PER_CPU(short, wd_enabled); | |||
51 | 51 | ||
52 | static int endflag __initdata = 0; | 52 | static int endflag __initdata = 0; |
53 | 53 | ||
54 | /* Run after command line and cpu_init init, but before all other checks */ | ||
55 | void nmi_watchdog_default(void) | ||
56 | { | ||
57 | if (nmi_watchdog != NMI_DEFAULT) | ||
58 | return; | ||
59 | if (lapic_watchdog_ok()) | ||
60 | nmi_watchdog = NMI_LOCAL_APIC; | ||
61 | else | ||
62 | nmi_watchdog = NMI_IO_APIC; | ||
63 | } | ||
64 | |||
54 | #ifdef CONFIG_SMP | 65 | #ifdef CONFIG_SMP |
55 | /* The performance counters used by NMI_LOCAL_APIC don't trigger when | 66 | /* The performance counters used by NMI_LOCAL_APIC don't trigger when |
56 | * the CPU is idle. To make sure the NMI watchdog really ticks on all | 67 | * the CPU is idle. To make sure the NMI watchdog really ticks on all |
@@ -437,12 +448,8 @@ int proc_nmi_enabled(struct ctl_table *table, int write, struct file *file, | |||
437 | return -EIO; | 448 | return -EIO; |
438 | } | 449 | } |
439 | 450 | ||
440 | if (nmi_watchdog == NMI_DEFAULT) { | 451 | /* if nmi_watchdog is not set yet, then set it */ |
441 | if (lapic_watchdog_ok()) | 452 | nmi_watchdog_default(); |
442 | nmi_watchdog = NMI_LOCAL_APIC; | ||
443 | else | ||
444 | nmi_watchdog = NMI_IO_APIC; | ||
445 | } | ||
446 | 453 | ||
447 | if (nmi_watchdog == NMI_LOCAL_APIC) { | 454 | if (nmi_watchdog == NMI_LOCAL_APIC) { |
448 | if (nmi_watchdog_enabled) | 455 | if (nmi_watchdog_enabled) |