x86: move impress_friends and smp_check to cpus_done
[sfrench/cifs-2.6.git] / arch / x86 / kernel / smpboot_64.c
index a9cc91127b9111946a0ebee8f631d64fedf13e1b..c3e770b0094b2fb9e35640408986595106df4308 100644 (file)
@@ -824,12 +824,20 @@ int __cpuinit native_cpu_up(unsigned int cpu)
        return err;
 }
 
+extern void impress_friends(void);
+extern void smp_checks(void);
+
 /*
  * Finish the SMP boot.
  */
 void __init native_smp_cpus_done(unsigned int max_cpus)
 {
        smp_cleanup_boot();
+
+       Dprintk("Boot done.\n");
+
+       impress_friends();
+       smp_checks();
        setup_ioapic_dest();
        check_nmi_watchdog();
 }