aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r--arch/x86/kernel/smpboot.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 6a7fb1300073..75637fb760e7 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -25,6 +25,27 @@
25#include <mach_wakecpu.h> 25#include <mach_wakecpu.h>
26#include <smpboot_hooks.h> 26#include <smpboot_hooks.h>
27 27
28/*
29 * FIXME: For x86_64, those are defined in other files. But moving them here,
30 * would make the setup areas dependent on smp, which is a loss. When we
31 * integrate apic between arches, we can probably do a better job, but
32 * right now, they'll stay here -- glommer
33 */
34#ifdef CONFIG_X86_32
35/* which logical CPU number maps to which CPU (physical APIC ID) */
36u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
37 { [0 ... NR_CPUS-1] = BAD_APICID };
38void *x86_cpu_to_apicid_early_ptr;
39DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
40EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
41
42u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
43 = { [0 ... NR_CPUS-1] = BAD_APICID };
44void *x86_bios_cpu_apicid_early_ptr;
45DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
46EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
47#endif
48
28/* State of each CPU */ 49/* State of each CPU */
29DEFINE_PER_CPU(int, cpu_state) = { 0 }; 50DEFINE_PER_CPU(int, cpu_state) = { 0 };
30 51