aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Molnar <mingo@elte.hu>2008-04-08 06:20:50 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:33 -0400
commit570da318cf0e3053e62030253494c410a18d4be7 (patch)
tree897b9cb24456eed4b15c1b9db62be5e58891171f
parent8400def8252f90ecd056657c0bac806afadd8511 (diff)
x86: support for new UV apic, prepare
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/genapic_64.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/kernel/genapic_64.c b/arch/x86/kernel/genapic_64.c
index c873f60c74a..4cc1c218ae4 100644
--- a/arch/x86/kernel/genapic_64.c
+++ b/arch/x86/kernel/genapic_64.c
@@ -25,9 +25,11 @@
25#endif 25#endif
26 26
27/* which logical CPU number maps to which CPU (physical APIC ID) */ 27/* which logical CPU number maps to which CPU (physical APIC ID) */
28#ifdef CONFIG_SMP
28u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata 29u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata
29 = { [0 ... NR_CPUS-1] = BAD_APICID }; 30 = { [0 ... NR_CPUS-1] = BAD_APICID };
30void *x86_cpu_to_apicid_early_ptr; 31void *x86_cpu_to_apicid_early_ptr;
32#endif
31DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID; 33DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
32EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid); 34EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
33 35