Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751851AbdH1SSw (ORCPT ); Mon, 28 Aug 2017 14:18:52 -0400 Received: from mail-wm0-f42.google.com ([74.125.82.42]:34277 "EHLO mail-wm0-f42.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751826AbdH1SSt (ORCPT ); Mon, 28 Aug 2017 14:18:49 -0400 Date: Mon, 28 Aug 2017 20:18:46 +0200 From: Christoffer Dall To: Marc Zyngier Cc: linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, kvmarm@lists.cs.columbia.edu, kvm@vger.kernel.org, Christoffer Dall , Thomas Gleixner , Jason Cooper , Eric Auger , Shanker Donthineni , Mark Rutland , Shameerali Kolothum Thodi Subject: Re: [PATCH v3 50/59] KVM: arm/arm64: GICv4: Use pending_last as a scheduling hint Message-ID: <20170828181846.GK24649@cbox> References: <20170731172637.29355-1-marc.zyngier@arm.com> <20170731172637.29355-51-marc.zyngier@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170731172637.29355-51-marc.zyngier@arm.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1090 Lines: 33 On Mon, Jul 31, 2017 at 06:26:28PM +0100, Marc Zyngier wrote: > When a vPE exits, the pending_last flag is set when there are > pending VLPIs stored in the pending table. Similarily, we set > this flag when a doorbell interrupt fires, as it indicates the > same condition. > > Let's update kvm_vgic_vcpu_pending_irq() to account for that > flag as well, making a vcpu runnable when set. > > Signed-off-by: Marc Zyngier > --- > virt/kvm/arm/vgic/vgic.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/virt/kvm/arm/vgic/vgic.c b/virt/kvm/arm/vgic/vgic.c > index a96e566905d2..dfac894f6f03 100644 > --- a/virt/kvm/arm/vgic/vgic.c > +++ b/virt/kvm/arm/vgic/vgic.c > @@ -781,6 +781,9 @@ int kvm_vgic_vcpu_pending_irq(struct kvm_vcpu *vcpu) > if (!vcpu->kvm->arch.vgic.enabled) > return false; > > + if (vcpu->arch.vgic_cpu.vgic_v3.its_vpe.pending_last) > + return true; > + > spin_lock(&vgic_cpu->ap_list_lock); > > list_for_each_entry(irq, &vgic_cpu->ap_list_head, ap_list) { > -- > 2.11.0 > Acked-by: Christoffer Dall