aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/apic/apic.c
diff options
context:
space:
mode:
authorShai Fultheim <shai@scalemp.com>2012-04-19 18:12:32 -0400
committerIngo Molnar <mingo@kernel.org>2012-05-07 10:25:28 -0400
commit42fa4250436304d4650fa271f37671f6cee24e08 (patch)
tree72f1dfa918bef82a519af8d1c0a57a9d3b30735b /arch/x86/kernel/apic/apic.c
parent22042c086c1b6814b9f3ecf2720f6280bede9c47 (diff)
x86: Conditionally update time when ack-ing pending irqs
On virtual environments, apic_read could take a long time. As a result, under certain conditions the ack pending loop may exit without any queued irqs left, but after more than one second. A warning will be printed needlessly in this case. If the loop is about to exit regardless of max_loops, don't update it. Signed-off-by: Shai Fultheim <shai@scalemp.com> [ rebased and reworded the commit message] Signed-off-by: Ido Yariv <ido@wizery.com> Acked-by: Thomas Gleixner <tglx@linutronix.de> Link: http://lkml.kernel.org/r/1334873552-31346-1-git-send-email-ido@wizery.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/kernel/apic/apic.c')
-rw-r--r--arch/x86/kernel/apic/apic.c12
1 files changed, 7 insertions, 5 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c
index edc24480469f..3beab627190e 100644
--- a/arch/x86/kernel/apic/apic.c
+++ b/arch/x86/kernel/apic/apic.c
@@ -1325,11 +1325,13 @@ void __cpuinit setup_local_APIC(void)
1325 acked); 1325 acked);
1326 break; 1326 break;
1327 } 1327 }
1328 if (cpu_has_tsc) { 1328 if (queued) {
1329 rdtscll(ntsc); 1329 if (cpu_has_tsc) {
1330 max_loops = (cpu_khz << 10) - (ntsc - tsc); 1330 rdtscll(ntsc);
1331 } else 1331 max_loops = (cpu_khz << 10) - (ntsc - tsc);
1332 max_loops--; 1332 } else
1333 max_loops--;
1334 }
1333 } while (queued && max_loops > 0); 1335 } while (queued && max_loops > 0);
1334 WARN_ON(max_loops <= 0); 1336 WARN_ON(max_loops <= 0);
1335 1337