summaryrefslogtreecommitdiffstats
path: root/virt
diff options
context:
space:
mode:
authorAndrew Jones <drjones@redhat.com>2019-04-04 13:42:30 -0400
committerMarc Zyngier <marc.zyngier@arm.com>2019-04-25 06:50:31 -0400
commit811328fc3222f7b55846de0cd0404339e2e1e6d7 (patch)
tree9fe22e53860e70a80d45fb48da40e1d2077a019a /virt
parent96085b949672dca19773495813b577eb3bedf06e (diff)
KVM: arm/arm64: Ensure vcpu target is unset on reset failure
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 and clear the feature bitmap while we're at it. Signed-off-by: Andrew Jones <drjones@redhat.com> [maz: Simplified patch, completed commit message] Signed-off-by: Marc Zyngier <marc.zyngier@arm.com>
Diffstat (limited to 'virt')
-rw-r--r--virt/kvm/arm/arm.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/virt/kvm/arm/arm.c b/virt/kvm/arm/arm.c
index 99c37384ba7b..f412ebc90610 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,
934static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu, 934static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
935 const struct kvm_vcpu_init *init) 935 const struct kvm_vcpu_init *init)
936{ 936{
937 unsigned int i; 937 unsigned int i, ret;
938 int phys_target = kvm_target_cpu(); 938 int phys_target = kvm_target_cpu();
939 939
940 if (init->target != phys_target) 940 if (init->target != phys_target)
@@ -969,9 +969,14 @@ static int kvm_vcpu_set_target(struct kvm_vcpu *vcpu,
969 vcpu->arch.target = phys_target; 969 vcpu->arch.target = phys_target;
970 970
971 /* Now we know what it is, we can reset it. */ 971 /* Now we know what it is, we can reset it. */
972 return kvm_reset_vcpu(vcpu); 972 ret = kvm_reset_vcpu(vcpu);
973} 973 if (ret) {
974 vcpu->arch.target = -1;
975 bitmap_zero(vcpu->arch.features, KVM_VCPU_MAX_FEATURES);
976 }
974 977
978 return ret;
979}
975 980
976static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu, 981static int kvm_arch_vcpu_ioctl_vcpu_init(struct kvm_vcpu *vcpu,
977 struct kvm_vcpu_init *init) 982 struct kvm_vcpu_init *init)