aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/x86/kernel/smpboot.c21
-rw-r--r--arch/x86/kernel/smpboot_32.c13
2 files changed, 21 insertions, 13 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
diff --git a/arch/x86/kernel/smpboot_32.c b/arch/x86/kernel/smpboot_32.c
index 5469207fa863..3590afe575e7 100644
--- a/arch/x86/kernel/smpboot_32.c
+++ b/arch/x86/kernel/smpboot_32.c
@@ -59,19 +59,6 @@
59#include <asm/vmi.h> 59#include <asm/vmi.h>
60#include <asm/mtrr.h> 60#include <asm/mtrr.h>
61 61
62/* which logical CPU number maps to which CPU (physical APIC ID) */
63u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata =
64 { [0 ... NR_CPUS-1] = BAD_APICID };
65void *x86_cpu_to_apicid_early_ptr;
66DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID;
67EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid);
68
69u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
70 = { [0 ... NR_CPUS-1] = BAD_APICID };
71void *x86_bios_cpu_apicid_early_ptr;
72DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
73EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
74
75u8 apicid_2_node[MAX_APICID]; 62u8 apicid_2_node[MAX_APICID];
76 63
77/* Where the IO area was mapped on multiquad, always 0 otherwise */ 64/* Where the IO area was mapped on multiquad, always 0 otherwise */