From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marc Zyngier Subject: Re: [PATCH] KVM: arm/arm64: ensure vcpu target is unset on reset failure Date: Fri, 05 Apr 2019 07:38:59 +0100 Message-ID: <86ftqx3qik.wl-marc.zyngier@arm.com> References: <20190404174230.18587-1-drjones@redhat.com> Mime-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from localhost (localhost [127.0.0.1]) by mm01.cs.columbia.edu (Postfix) with ESMTP id 1D16A4A422 for ; Fri, 5 Apr 2019 02:39:07 -0400 (EDT) Received: from mm01.cs.columbia.edu ([127.0.0.1]) by localhost (mm01.cs.columbia.edu [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id k8MlNdwR4h5W for ; Fri, 5 Apr 2019 02:39:05 -0400 (EDT) Received: from foss.arm.com (usa-sjc-mx-foss1.foss.arm.com [217.140.101.70]) by mm01.cs.columbia.edu (Postfix) with ESMTP id ACB444A380 for ; Fri, 5 Apr 2019 02:39:05 -0400 (EDT) In-Reply-To: <20190404174230.18587-1-drjones@redhat.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kvmarm-bounces@lists.cs.columbia.edu Sender: kvmarm-bounces@lists.cs.columbia.edu To: Andrew Jones Cc: kvmarm@lists.cs.columbia.edu List-Id: kvmarm@lists.cs.columbia.edu On Thu, 04 Apr 2019 18:42:30 +0100, Andrew Jones wrote: > > A failed KVM_ARM_VCPU_INIT, should not set the vcpu target, > as the vcpu target is used by kvm_vcpu_initialized() to > determine if other vcpu ioctls may proceed. We need to set > the target before calling kvm_reset_vcpu(), but if that call > fails, we should then unset it. > > Signed-off-by: Andrew Jones > --- > virt/kvm/arm/arm.c | 12 +++++++++--- > 1 file changed, 9 insertions(+), 3 deletions(-) > > diff --git a/virt/kvm/arm/arm.c b/virt/kvm/arm/arm.c > index 99c37384ba7b..7e5724ae1efd 100644 > --- a/virt/kvm/arm/arm.c > +++ b/virt/kvm/arm/arm.c > @@ -934,7 +934,7 @@ int kvm_vm_ioctl_irq_line(struct kvm *kvm, struct kvm_irq_level *irq_level, > static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu, > const struct kvm_vcpu_init *init) > { > - unsigned int i; > + unsigned int i, ret; > int phys_target = kvm_target_cpu(); > > if (init->target != phys_target) > @@ -969,9 +969,15 @@ static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu, > vcpu->arch.target = phys_target; > > /* Now we know what it is, we can reset it. */ > - return kvm_reset_vcpu(vcpu); > -} > + ret = kvm_reset_vcpu(vcpu); > + if (ret) { > + vcpu->arch.target = -1; > + bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES); > + return ret; This return could trivially be removed... > + } > > + return 0; > +} ... and this turned into 'return ret'. I've tentatively applied this to the 5.1-fixes branch. Let me know if you're OK with it. Thanks, M. -- Jazz is not dead, it just smell funny.