aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-03-19 13:26:13 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:04 -0400
commitacbb67341805d3b9ef263d8cbd103a6054164491 (patch)
treeca86d8bba00821df2ea2e970fccba8d4d4c8328d /arch/x86/kernel/smpboot.c
parent2cd9fb71eedffb3a208a84daff705b9da5c915e8 (diff)
x86: move apicid mappings to smpboot.c
They are i386 specific (the x86_64 definitions live elsewhere, and should remain there), so are enclosed around an ifdef Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
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