diff options
author | Mike Travis <[email protected]> | 2009-12-11 08:08:50 -0800 |
---|---|---|
committer | H. Peter Anvin <[email protected]> | 2009-12-11 14:32:31 -0800 |
commit | 450b1e8dd10f41b5adad73f48ce8f6707d17c5c4 (patch) | |
tree | 8e7cd03d6d728bead63457b9a2ce32616593c538 | |
parent | d75757abd01672608289dbed2755bdcf822fb592 (diff) |
x86: Remove enabling x2apic message for every CPU
Print only once that the system is supporting x2apic mode.
Signed-off-by: Mike Travis <[email protected]>
Acked-by: Cyrill Gorcunov <[email protected]>
LKML-Reference: <[email protected]>
Signed-off-by: H. Peter Anvin <[email protected]>
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index efb2b9cd132c..aa57c079c98f 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -1341,7 +1341,7 @@ void enable_x2apic(void) rdmsr(MSR_IA32_APICBASE, msr, msr2); if (!(msr & X2APIC_ENABLE)) { - pr_info("Enabling x2apic\n"); + printk_once(KERN_INFO "Enabling x2apic\n"); wrmsr(MSR_IA32_APICBASE, msr | X2APIC_ENABLE, 0); } } |