aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYinghai Lu <yinghai@kernel.org>2010-12-07 03:55:56 -0500
committerThomas Gleixner <tglx@linutronix.de>2010-12-09 15:52:05 -0500
commit0450193bffed6e4b6160c4a5ccb0df158eba7d2a (patch)
treed29261955e8b9059ccd2cea268fe559460bdee57
parent53301f36f316a6519c464b0ef2a155386c20be19 (diff)
x86, x2apic: Don't map lapic addr for preenabled x2apic systems
If x2apic is preenabled and used by the kernel, we don't need to map the lapic address. That mapping will never be used. So just skip that in register_lapic_address() Signed-off-by: Yinghai Lu <yinghai@kernel.org> Cc: Suresh Siddha <suresh.b.siddha@intel.com> Cc: "Eric W. Biederman" <ebiederm@xmission.com> LKML-Reference: <4CFDF69C.9070501@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/kernel/apic/apic.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 9303364e2009..89339360b3d8 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1681,9 +1681,11 @@ void __init register_lapic_address(unsigned long address)
1681{ 1681{
1682 mp_lapic_addr = address; 1682 mp_lapic_addr = address;
1683 1683
1684 set_fixmap_nocache(FIX_APIC_BASE, address); 1684 if (!x2apic_mode) {
1685 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n", 1685 set_fixmap_nocache(FIX_APIC_BASE, address);
1686 APIC_BASE, mp_lapic_addr); 1686 apic_printk(APIC_VERBOSE, "mapped APIC to %16lx (%16lx)\n",
1687 APIC_BASE, mp_lapic_addr);
1688 }
1687 if (boot_cpu_physical_apicid == -1U) { 1689 if (boot_cpu_physical_apicid == -1U) {
1688 boot_cpu_physical_apicid = read_apic_id(); 1690 boot_cpu_physical_apicid = read_apic_id();
1689 apic_version[boot_cpu_physical_apicid] = 1691 apic_version[boot_cpu_physical_apicid] =