From mboxrd@z Thu Jan 1 00:00:00 1970 From: will.deacon@arm.com (Will Deacon) Date: Fri, 19 Jul 2013 15:25:25 +0100 Subject: [PATCH 3/4] arm64: KVM: let other tasks run when hitting WFE In-Reply-To: <1374242035-13199-4-git-send-email-marc.zyngier@arm.com> References: <1374242035-13199-1-git-send-email-marc.zyngier@arm.com> <1374242035-13199-4-git-send-email-marc.zyngier@arm.com> Message-ID: <20130719142524.GF18139@mudshark.cambridge.arm.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Fri, Jul 19, 2013 at 02:53:54PM +0100, Marc Zyngier wrote: > So far, when a guest executes WFE (like when waiting for a spinlock > to become unlocked), we don't do a thing and let it run uninterrupted. > > Another option is to trap a blocking WFE and offer the opportunity > to the scheduler to switch to another task, potentially giving the > vcpu holding the spinlock a chance to run sooner. > > Signed-off-by: Marc Zyngier [...] > +static int kvm_handle_wfx(struct kvm_vcpu *vcpu, struct kvm_run *run) > { > - kvm_vcpu_block(vcpu); > + if (kvm_vcpu_get_hsr(vcpu) & 1) > + cond_resched(); The hardcoded `1' doesn't make it obvious that we're treating wfi and wfe differently. Could you use a #define for that bit in hsr.iss please? Will