[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <alpine.LFD.2.00.1010241201080.2466@localhost6.localdomain6>
Date: Sun, 24 Oct 2010 12:01:29 +0200 (CEST)
From: Thomas Gleixner <tglx@...utronix.de>
To: Yinghai Lu <yinghai@...nel.org>
cc: Ingo Molnar <mingo@...e.hu>, "H. Peter Anvin" <hpa@...or.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Len Brown <lenb@...nel.org>,
LKML <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH 09/15] x86: on !find_smp_config path use
smp_register_lapic_address
On Sat, 23 Oct 2010, Yinghai Lu wrote:
> So fixmap will be setup there.
>
> Signed-off-by: Yinghai Lu <yinghai@...nel.org>
> ---
> arch/x86/kernel/apic/apic.c | 8 +++++---
> 1 files changed, 5 insertions(+), 3 deletions(-)
>
> diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
> index a5ce130..3a4e770 100644
> --- a/arch/x86/kernel/apic/apic.c
> +++ b/arch/x86/kernel/apic/apic.c
> @@ -1527,7 +1527,7 @@ static int __init detect_init_APIC(void)
> return -1;
> }
>
> - mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
> + smp_register_lapic_address(APIC_DEFAULT_PHYS_BASE);
> return 0;
> }
> #else
> @@ -1535,6 +1535,7 @@ static int __init detect_init_APIC(void)
> static int apic_verify(void)
> {
> u32 features, h, l;
> + unsigned long lapic_addr;
Swap lines as we do anywhere else.
> /*
> * The APIC feature bit should now be enabled
> @@ -1546,13 +1547,14 @@ static int apic_verify(void)
> return -1;
> }
> set_cpu_cap(&boot_cpu_data, X86_FEATURE_APIC);
> - mp_lapic_addr = APIC_DEFAULT_PHYS_BASE;
> + lapic_addr = APIC_DEFAULT_PHYS_BASE;
>
> /* The BIOS may have set up the APIC at some other address */
> rdmsr(MSR_IA32_APICBASE, l, h);
> if (l & MSR_IA32_APICBASE_ENABLE)
> - mp_lapic_addr = l & MSR_IA32_APICBASE_BASE;
> + lapic_addr = l & MSR_IA32_APICBASE_BASE;
>
> + smp_register_lapic_address(lapic_addr);
> pr_info("Found and enabled local APIC!\n");
> return 0;
> }
> --
> 1.7.1
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists