aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mach-generic/summit.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2009-01-28 10:31:52 -0500
committerIngo Molnar <mingo@elte.hu>2009-01-28 17:20:33 -0500
commit333344d94300500e401cffb4eea10a5ab6e5a41d (patch)
tree21dd26c49dfba195a03e2fa860fe4d3123ca3de8 /arch/x86/mach-generic/summit.c
parenta965936643e28af8152d9e960b966baa1a5588a2 (diff)
x86, smp: refactor ->smp_callin_clear_local_apic() methods
Only NUMAQ does something substantial here, because it initializes via NMIs (not via INIT as standard SMP startup) - so it needs to reset the APIC. - extend the generic code to handle NULL methods - clear out dummy methods and replace them with NULL - clean up: remove wrapper macros, etc. Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/mach-generic/summit.c')
-rw-r--r--arch/x86/mach-generic/summit.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86/mach-generic/summit.c b/arch/x86/mach-generic/summit.c
index fdca78b96b6a..2595baa7997e 100644
--- a/arch/x86/mach-generic/summit.c
+++ b/arch/x86/mach-generic/summit.c
@@ -89,7 +89,8 @@ struct genapic apic_summit = {
89 89
90 .wait_for_init_deassert = default_wait_for_init_deassert, 90 .wait_for_init_deassert = default_wait_for_init_deassert,
91 91
92 .smp_callin_clear_local_apic = smp_callin_clear_local_apic, 92 .smp_callin_clear_local_apic = NULL,
93
93 .store_NMI_vector = store_NMI_vector, 94 .store_NMI_vector = store_NMI_vector,
94 .restore_NMI_vector = restore_NMI_vector, 95 .restore_NMI_vector = restore_NMI_vector,
95 .inquire_remote_apic = inquire_remote_apic, 96 .inquire_remote_apic = inquire_remote_apic,