summaryrefslogtreecommitdiff
path: root/arch/x86/kernel/apic/apic.c
diff options
context:
space:
mode:
authorCyrill Gorcunov <gorcunov@openvz.org>2009-10-15 15:04:16 (GMT)
committerIngo Molnar <mingo@elte.hu>2009-10-15 15:26:53 (GMT)
commitf88f2b4fdb1e098433ad2b005b6f7353f7268ce1 (patch)
treee69f977869267f1220ffa533c07677faba5552fc /arch/x86/kernel/apic/apic.c
parent9636bc0555e3f383c120ddcffe4b7c5c58a10b1a (diff)
downloadlinux-fsl-qoriq-f88f2b4fdb1e098433ad2b005b6f7353f7268ce1.tar.xz
x86: apic: Allow noop operations to be called almost at any time
As only apic noop is used we allow to use almost any operation caller wants (and which of them noop driver supports of course). Initially it was reported by Ingo Molnar that apic noop issue a warning for pkg id (which is actually false positive and should be eliminated). So we save checking (and warning issue) for read/write operations while allow any other ops to be freely used. Also: - fix noop_cpu_to_logical_apicid, it should be 0. - rename noop_default_phys_pkg_id to noop_phys_pkg_id (we use default_ prefix for more general routines in apic subsystem). Reported-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Cc: Yinghai Lu <yinghai@kernel.org> Cc: Maciej W. Rozycki <macro@linux-mips.org> LKML-Reference: <20091015150416.GC5331@lenovo> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/apic/apic.c')
-rw-r--r--arch/x86/kernel/apic/apic.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index 61a5628..dce93d4 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -246,6 +246,7 @@ static int modern_apic(void)
*/
void apic_disable(void)
{
+ pr_info("APIC: switched to apic NOOP\n");
apic = &apic_noop;
}