aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic/bigsmp.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 10:21:32 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:32 -0500
commita965936643e28af8152d9e960b966baa1a5588a2 (patch)
treef86d64139f85fcaa627840275519a03f3b4fcc86 /arch/x86/mach-generic/bigsmp.c
parentabfa584c8df8b691cf18f51c7d4af27e5b32be4a (diff)
x86, smp: refactor ->wait_for_init_deassert()
- spread out the namespace on a per APIC driver basis - handle a NULL ->wait_for_init_deassert() as a 'dont wait' default method - remove NUMAQ and Summit handlers Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/bigsmp.c')
-rw-r--r--arch/x86/mach-generic/bigsmp.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/bigsmp.c b/arch/x86/mach-generic/bigsmp.c
index a317fbe07fdf..40910bfd1b42 100644
--- a/arch/x86/mach-generic/bigsmp.c
+++ b/arch/x86/mach-generic/bigsmp.c
@@ -106,7 +106,9 @@ struct genapic apic_bigsmp = {
106 .wakeup_cpu = NULL, 106 .wakeup_cpu = NULL,
107 .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW, 107 .trampoline_phys_low = DEFAULT_TRAMPOLINE_PHYS_LOW,
108 .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH, 108 .trampoline_phys_high = DEFAULT_TRAMPOLINE_PHYS_HIGH,
109 .wait_for_init_deassert = wait_for_init_deassert, 109
110 .wait_for_init_deassert = default_wait_for_init_deassert,
111
110 .smp_callin_clear_local_apic = smp_callin_clear_local_apic, 112 .smp_callin_clear_local_apic = smp_callin_clear_local_apic,
111 .store_NMI_vector = store_NMI_vector, 113 .store_NMI_vector = store_NMI_vector,
112 .restore_NMI_vector = restore_NMI_vector, 114 .restore_NMI_vector = restore_NMI_vector,