Commit 9f3734f6 authored by Glauber de Oliveira Costa's avatar Glauber de Oliveira Costa Committed by Ingo Molnar

x86: introduce smpboot_clear_io_apic

x86_64 has two nr_ioapics = 0 statements. In 32-bit, it can be done
too. We do it through the smpboot_clear_io_apic() inline function,
to cope with subarchitectures (visws) that does not compile mpparse in
Signed-off-by: default avatarGlauber Costa <gcosta@redhat.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 771263d3
...@@ -155,6 +155,7 @@ static int __init smp_sanity_check(unsigned max_cpus) ...@@ -155,6 +155,7 @@ static int __init smp_sanity_check(unsigned max_cpus)
printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n", printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
boot_cpu_physical_apicid); boot_cpu_physical_apicid);
printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n"); printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
smpboot_clear_io_apic();
return -1; return -1;
} }
...@@ -173,6 +174,7 @@ static int __init smp_sanity_check(unsigned max_cpus) ...@@ -173,6 +174,7 @@ static int __init smp_sanity_check(unsigned max_cpus)
setup_local_APIC(); setup_local_APIC();
end_local_APIC_setup(); end_local_APIC_setup();
} }
smpboot_clear_io_apic();
return -1; return -1;
} }
return 0; return 0;
......
...@@ -134,7 +134,7 @@ static int __init smp_sanity_check(unsigned max_cpus) ...@@ -134,7 +134,7 @@ static int __init smp_sanity_check(unsigned max_cpus)
printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n", printk(KERN_ERR "BIOS bug, local APIC #%d not detected!...\n",
boot_cpu_physical_apicid); boot_cpu_physical_apicid);
printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n"); printk(KERN_ERR "... forcing use of dummy APIC emulation. (tell your hw vendor)\n");
nr_ioapics = 0; smpboot_clear_io_apic();
return -1; return -1;
} }
...@@ -145,7 +145,7 @@ static int __init smp_sanity_check(unsigned max_cpus) ...@@ -145,7 +145,7 @@ static int __init smp_sanity_check(unsigned max_cpus)
*/ */
if (!max_cpus) { if (!max_cpus) {
printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n"); printk(KERN_INFO "SMP mode deactivated, forcing use of dummy APIC emulation.\n");
nr_ioapics = 0; smpboot_clear_io_apic();
return -1; return -1;
} }
......
...@@ -44,3 +44,8 @@ static inline void smpboot_setup_io_apic(void) ...@@ -44,3 +44,8 @@ static inline void smpboot_setup_io_apic(void)
else else
nr_ioapics = 0; nr_ioapics = 0;
} }
static inline void smpboot_clear_io_apic(void)
{
nr_ioapics = 0;
}
...@@ -22,3 +22,7 @@ static inline void smpboot_restore_warm_reset_vector(void) ...@@ -22,3 +22,7 @@ static inline void smpboot_restore_warm_reset_vector(void)
static inline void smpboot_setup_io_apic(void) static inline void smpboot_setup_io_apic(void)
{ {
} }
static inline void smpboot_clear_io_apic(void)
{
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment