From 77038d0f76bccb0c75de92b2f24269300df15a44 Mon Sep 17 00:00:00 2001 From: Stefano Stabellini Date: Wed, 23 Jul 2014 14:37:23 +0100 Subject: [PATCH] xen/arm: call vcpu_yield on WFE trap No need to call vcpu_force_reschedule, is too expensive. Signed-off-by: Stefano Stabellini Acked-by: Ian Campbell --- xen/arch/arm/traps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/arm/traps.c b/xen/arch/arm/traps.c index 3dfabd066f..76a9586aa2 100644 --- a/xen/arch/arm/traps.c +++ b/xen/arch/arm/traps.c @@ -1805,7 +1805,7 @@ asmlinkage void do_trap_hypervisor(struct cpu_user_regs *regs) } if ( hsr.wfi_wfe.ti ) { /* Yield the VCPU for WFE */ - vcpu_force_reschedule(current); + vcpu_yield(); } else { /* Block the VCPU for WFI */ vcpu_block_unless_event_pending(current); -- 2.30.2