aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot_64.c
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-01-30 07:31:11 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:11 -0500
commit746ef0cd0c7190d570c65b8e39a4ac67550ae43a (patch)
treef28b0168786b0a086c1d93b072fb854bafffd9fb /arch/x86/kernel/smpboot_64.c
parentba082427ae6ffbf8e48a26ae4f72f4501a6b80c1 (diff)
x86: prepare 64-bit architecture initialization for paravirt
This patch prepares the x86_64 architecture initialization for paravirt. It requires a memory initialization step, which is done by implementing 64-bit version for machine_specific_memory_setup, and putting an ARCH_SETUP hook, for guest-dependent initialization. This last step is done akin to i386 Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org> Acked-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/smpboot_64.c')
-rw-r--r--arch/x86/kernel/smpboot_64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpboot_64.c b/arch/x86/kernel/smpboot_64.c
index c3f2736ba530..cb73c4da87fc 100644
--- a/arch/x86/kernel/smpboot_64.c
+++ b/arch/x86/kernel/smpboot_64.c
@@ -369,7 +369,7 @@ void __cpuinit start_secondary(void)
369 369
370 unlock_ipi_call_lock(); 370 unlock_ipi_call_lock();
371 371
372 setup_secondary_APIC_clock(); 372 setup_secondary_clock();
373 373
374 cpu_idle(); 374 cpu_idle();
375} 375}
@@ -923,7 +923,7 @@ void __init smp_prepare_cpus(unsigned int max_cpus)
923 * Set up local APIC timer on boot CPU. 923 * Set up local APIC timer on boot CPU.
924 */ 924 */
925 925
926 setup_boot_APIC_clock(); 926 setup_boot_clock();
927} 927}
928 928
929/* 929/*