diff options
author | Alexey Starikovskiy <astarikovskiy@suse.de> | 2008-04-04 15:41:00 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-17 11:41:34 -0400 |
commit | 16ecf7a47cf4f1c97189a551b001195aed550cc2 (patch) | |
tree | 13200515b708be08672c9ac9c5cc0b09b1ed486e /arch/x86 | |
parent | 708650afe98a50d0b280bea9dcf5f160b94ee9fb (diff) |
x86: move x86_bios_cpu_apicid_init to smpboot.c
Signed-off-by: Alexey Starikovskiy <astarikovskiy@suse.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/mpparse_64.c | 6 | ||||
-rw-r--r-- | arch/x86/kernel/smpboot.c | 2 |
2 files changed, 1 insertions, 7 deletions
diff --git a/arch/x86/kernel/mpparse_64.c b/arch/x86/kernel/mpparse_64.c index 8d7365511ac0..3196c2318640 100644 --- a/arch/x86/kernel/mpparse_64.c +++ b/arch/x86/kernel/mpparse_64.c | |||
@@ -55,12 +55,6 @@ int mp_irq_entries; | |||
55 | 55 | ||
56 | int nr_ioapics; | 56 | int nr_ioapics; |
57 | 57 | ||
58 | #ifdef CONFIG_SMP | ||
59 | u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata | ||
60 | = {[0 ... NR_CPUS - 1] = BAD_APICID }; | ||
61 | void *x86_bios_cpu_apicid_early_ptr; | ||
62 | #endif | ||
63 | |||
64 | /* Make it easy to share the UP and SMP code: */ | 58 | /* Make it easy to share the UP and SMP code: */ |
65 | #ifndef CONFIG_X86_SMP | 59 | #ifndef CONFIG_X86_SMP |
66 | unsigned int num_processors; | 60 | unsigned int num_processors; |
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c index e3ea074ba6a4..abf63767cd46 100644 --- a/arch/x86/kernel/smpboot.c +++ b/arch/x86/kernel/smpboot.c | |||
@@ -78,11 +78,11 @@ u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata = | |||
78 | { [0 ... NR_CPUS-1] = BAD_APICID }; | 78 | { [0 ... NR_CPUS-1] = BAD_APICID }; |
79 | void *x86_cpu_to_apicid_early_ptr; | 79 | void *x86_cpu_to_apicid_early_ptr; |
80 | 80 | ||
81 | #ifdef CONFIG_X86_32 | ||
82 | u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata | 81 | u16 x86_bios_cpu_apicid_init[NR_CPUS] __initdata |
83 | = { [0 ... NR_CPUS-1] = BAD_APICID }; | 82 | = { [0 ... NR_CPUS-1] = BAD_APICID }; |
84 | void *x86_bios_cpu_apicid_early_ptr; | 83 | void *x86_bios_cpu_apicid_early_ptr; |
85 | 84 | ||
85 | #ifdef CONFIG_X86_32 | ||
86 | u8 apicid_2_node[MAX_APICID]; | 86 | u8 apicid_2_node[MAX_APICID]; |
87 | #endif | 87 | #endif |
88 | 88 | ||