aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
authorGlauber Costa <gcosta@redhat.com>2008-05-28 20:09:53 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 06:48:19 -0400
commit0f385d1ddd0952e01a968bfa5512378ad23de6df (patch)
tree70ef36db7c54a9cc045fe60c2f63e53716fdf405 /arch/x86/kernel/smpboot.c
parent3e9704739daf46a8ba6593d749c67b5f7cd633d2 (diff)
x86: clearing io_apic harmless for x86_64
so remove 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.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 2a0d39f3f2f1..a74a261c5626 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -1052,9 +1052,8 @@ static __init void disable_smp(void)
1052{ 1052{
1053 cpu_present_map = cpumask_of_cpu(0); 1053 cpu_present_map = cpumask_of_cpu(0);
1054 cpu_possible_map = cpumask_of_cpu(0); 1054 cpu_possible_map = cpumask_of_cpu(0);
1055#ifdef CONFIG_X86_32
1056 smpboot_clear_io_apic_irqs(); 1055 smpboot_clear_io_apic_irqs();
1057#endif 1056
1058 if (smp_found_config) 1057 if (smp_found_config)
1059 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map); 1058 physid_set_mask_of_physid(boot_cpu_physical_apicid, &phys_cpu_present_map);
1060 else 1059 else