aboutsummaryrefslogtreecommitdiffstats
path: root/xen/arch/x86/smp.c
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2010-04-19 17:57:28 +0100
committerKeir Fraser <keir.fraser@citrix.com>2010-04-19 17:57:28 +0100
commit6de4ee40f3ae314d69daacc52fef59e0cda7c429 (patch)
treeb7c873e200e875872ff70d83fca67b630059b029 /xen/arch/x86/smp.c
parent265f734a8cafc6afbac56f79d9cd9e1676c1ccd2 (diff)
downloadxen-6de4ee40f3ae314d69daacc52fef59e0cda7c429.tar.gz
xen-6de4ee40f3ae314d69daacc52fef59e0cda7c429.tar.bz2
xen-6de4ee40f3ae314d69daacc52fef59e0cda7c429.zip
x86: Rename __sync_lazy_execstate() to __sync_local_execstate().
This naming scheme is more rational. Also use non-x86-specific function sync_local_execstate() where possible. Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'xen/arch/x86/smp.c')
-rw-r--r--xen/arch/x86/smp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/arch/x86/smp.c b/xen/arch/x86/smp.c
index 2a01923900..0483ac5f10 100644
--- a/xen/arch/x86/smp.c
+++ b/xen/arch/x86/smp.c
@@ -211,7 +211,7 @@ fastcall void smp_invalidate_interrupt(void)
ack_APIC_irq();
perfc_incr(ipis);
irq_enter();
- if ( !__sync_lazy_execstate() ||
+ if ( !__sync_local_execstate() ||
(flush_flags & (FLUSH_TLB_GLOBAL | FLUSH_CACHE)) )
flush_area_local(flush_va, flush_flags);
cpu_clear(smp_processor_id(), flush_cpumask);