From: Glauber de Oliveira Costa Date: Wed, 19 Mar 2008 17:25:37 +0000 (-0300) Subject: x86: call check_nmi_watchdog explicitly in native_smp_cpus_done X-Git-Tag: v3.12-rc1~22029^2~359 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4626df1801dc03de42f1c155417393b91c8f5d97;p=kernel%2Fkernel-generic.git x86: call check_nmi_watchdog explicitly in native_smp_cpus_done With this, remove its late_initcall marker from nmi_32.c Signed-off-by: Glauber Costa Signed-off-by: Ingo Molnar --- diff --git a/arch/x86/kernel/nmi_32.c b/arch/x86/kernel/nmi_32.c index 1673851..9cfc094 100644 --- a/arch/x86/kernel/nmi_32.c +++ b/arch/x86/kernel/nmi_32.c @@ -129,8 +129,6 @@ int __init check_nmi_watchdog(void) kfree(prev_nmi_count); return 0; } -/* This needs to happen later in boot so counters are working */ -late_initcall(check_nmi_watchdog); static int __init setup_nmi_watchdog(char *str) { diff --git a/arch/x86/kernel/smpboot_32.c b/arch/x86/kernel/smpboot_32.c index bfdfe3c..1f3aff4 100644 --- a/arch/x86/kernel/smpboot_32.c +++ b/arch/x86/kernel/smpboot_32.c @@ -963,5 +963,6 @@ void __init native_smp_cpus_done(unsigned int max_cpus) #ifdef CONFIG_X86_IO_APIC setup_ioapic_dest(); #endif + check_nmi_watchdog(); zap_low_mappings(); }