diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-03-27 16:54:44 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:31 -0400 |
commit | 40014bace17ba393409fd8a4915a87e43687aac8 (patch) | |
tree | 63a22b5f1997d15bb1ef67b30fe2e869ae5dcc11 | |
parent | 8f6e2ca9f862cb3738ad83fb18c572d8a59c0849 (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.c | 4 | ||||
-rw-r--r-- | arch/x86/kernel/smpboot.c | 4 |
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 | ||
71 | unsigned disabled_cpus __cpuinitdata; | 71 | unsigned 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 | ||
74 | physid_mask_t phys_cpu_present_map; | 75 | physid_mask_t phys_cpu_present_map; |
76 | #endif | ||
75 | 77 | ||
76 | #ifndef CONFIG_SMP | 78 | #ifndef CONFIG_SMP |
77 | DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; | 79 | DEFINE_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 | |||
85 | void *x86_bios_cpu_apicid_early_ptr; | 85 | void *x86_bios_cpu_apicid_early_ptr; |
86 | DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; | 86 | DEFINE_PER_CPU(u16, x86_bios_cpu_apicid) = BAD_APICID; |
87 | EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid); | 87 | EXPORT_PER_CPU_SYMBOL(x86_bios_cpu_apicid); |
88 | |||
89 | /* Bitmask of physically existing CPUs */ | ||
90 | physid_mask_t phys_cpu_present_map; | ||
91 | |||
88 | u8 apicid_2_node[MAX_APICID]; | 92 | u8 apicid_2_node[MAX_APICID]; |
89 | #endif | 93 | #endif |
90 | 94 | ||