aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexey Starikovskiy <astarikovskiy@suse.de>2008-03-27 16:54:44 -0400
committerIngo Molnar <mingo@elte.hu>2008-04-17 11:41:31 -0400
commit40014bace17ba393409fd8a4915a87e43687aac8 (patch)
tree63a22b5f1997d15bb1ef67b30fe2e869ae5dcc11
parent8f6e2ca9f862cb3738ad83fb18c572d8a59c0849 (diff)
x86: move phys_cpu_present_map to smpboot.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--arch/x86/kernel/mpparse_32.c4
-rw-r--r--arch/x86/kernel/smpboot.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/arch/x86/kernel/mpparse_32.c b/arch/x86/kernel/mpparse_32.c
index 728aa9900934..f7eceabc7da9 100644
--- a/arch/x86/kernel/mpparse_32.c
+++ b/arch/x86/kernel/mpparse_32.c
@@ -70,8 +70,10 @@ unsigned int num_processors;
70 70
71unsigned disabled_cpus __cpuinitdata; 71unsigned disabled_cpus __cpuinitdata;
72 72
73/* Bitmask of physically existing CPUs */ 73/* Make it easy to share the UP and SMP code: */
74#ifndef CONFIG_X86_SMP
74physid_mask_t phys_cpu_present_map; 75physid_mask_t phys_cpu_present_map;
76#endif
75 77
76#ifndef CONFIG_SMP 78#ifndef CONFIG_SMP
77DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; 79DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 61b9a5b6fc07..8b6eefd9e906 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -85,6 +85,10 @@ u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata
85void *x86_bios_cpu_apicid_early_ptr; 85void *x86_bios_cpu_apicid_early_ptr;
86DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; 86DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID;
87EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid); 87EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
88
89/* Bitmask of physically existing CPUs */
90physid_mask_t phys_cpu_present_map;
91
88u8 apicid_2_node[MAX_APICID]; 92u8 apicid_2_node[MAX_APICID];
89#endif 93#endif
90 94