|
@@ -1681,9 +1681,11 @@ void __init register_lapic_address(unsigned long address)
|
|
|
{
|
|
|
mp_lapic_addr = address;
|
|
|
|
|
|
- set_fixmap_nocache(FIX_APIC_BASE, address);
|
|
|
- apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
|
|
|
- APIC_BASE, mp_lapic_addr);
|
|
|
+ if (!x2apic_mode) {
|
|
|
+ set_fixmap_nocache(FIX_APIC_BASE, address);
|
|
|
+ apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
|
|
|
+ APIC_BASE, mp_lapic_addr);
|
|
|
+ }
|
|
|
if (boot_cpu_physical_apicid == -1U) {
|
|
|
boot_cpu_physical_apicid = read_apic_id();
|
|
|
apic_version[boot_cpu_physical_apicid] =
|