mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-05-06 15:23:46 +00:00
KVM: s390: use kvm->created_vcpus
The new created_vcpus field avoids possible races between enabling capabilities and creating VCPUs. Acked-by: Christian Borntraeger <borntraeger@de.ibm.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
557abc40d1
commit
a03825bbd0
1 changed files with 5 additions and 5 deletions
|
@ -422,7 +422,7 @@ static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
|
||||||
break;
|
break;
|
||||||
case KVM_CAP_S390_VECTOR_REGISTERS:
|
case KVM_CAP_S390_VECTOR_REGISTERS:
|
||||||
mutex_lock(&kvm->lock);
|
mutex_lock(&kvm->lock);
|
||||||
if (atomic_read(&kvm->online_vcpus)) {
|
if (kvm->created_vcpus) {
|
||||||
r = -EBUSY;
|
r = -EBUSY;
|
||||||
} else if (MACHINE_HAS_VX) {
|
} else if (MACHINE_HAS_VX) {
|
||||||
set_kvm_facility(kvm->arch.model.fac_mask, 129);
|
set_kvm_facility(kvm->arch.model.fac_mask, 129);
|
||||||
|
@ -437,7 +437,7 @@ static int kvm_vm_ioctl_enable_cap(struct kvm *kvm, struct kvm_enable_cap *cap)
|
||||||
case KVM_CAP_S390_RI:
|
case KVM_CAP_S390_RI:
|
||||||
r = -EINVAL;
|
r = -EINVAL;
|
||||||
mutex_lock(&kvm->lock);
|
mutex_lock(&kvm->lock);
|
||||||
if (atomic_read(&kvm->online_vcpus)) {
|
if (kvm->created_vcpus) {
|
||||||
r = -EBUSY;
|
r = -EBUSY;
|
||||||
} else if (test_facility(64)) {
|
} else if (test_facility(64)) {
|
||||||
set_kvm_facility(kvm->arch.model.fac_mask, 64);
|
set_kvm_facility(kvm->arch.model.fac_mask, 64);
|
||||||
|
@ -492,7 +492,7 @@ static int kvm_s390_set_mem_control(struct kvm *kvm, struct kvm_device_attr *att
|
||||||
ret = -EBUSY;
|
ret = -EBUSY;
|
||||||
VM_EVENT(kvm, 3, "%s", "ENABLE: CMMA support");
|
VM_EVENT(kvm, 3, "%s", "ENABLE: CMMA support");
|
||||||
mutex_lock(&kvm->lock);
|
mutex_lock(&kvm->lock);
|
||||||
if (atomic_read(&kvm->online_vcpus) == 0) {
|
if (!kvm->created_vcpus) {
|
||||||
kvm->arch.use_cmma = 1;
|
kvm->arch.use_cmma = 1;
|
||||||
ret = 0;
|
ret = 0;
|
||||||
}
|
}
|
||||||
|
@ -536,7 +536,7 @@ static int kvm_s390_set_mem_control(struct kvm *kvm, struct kvm_device_attr *att
|
||||||
|
|
||||||
ret = -EBUSY;
|
ret = -EBUSY;
|
||||||
mutex_lock(&kvm->lock);
|
mutex_lock(&kvm->lock);
|
||||||
if (atomic_read(&kvm->online_vcpus) == 0) {
|
if (!kvm->created_vcpus) {
|
||||||
/* gmap_alloc will round the limit up */
|
/* gmap_alloc will round the limit up */
|
||||||
struct gmap *new = gmap_alloc(current->mm, new_limit);
|
struct gmap *new = gmap_alloc(current->mm, new_limit);
|
||||||
|
|
||||||
|
@ -713,7 +713,7 @@ static int kvm_s390_set_processor(struct kvm *kvm, struct kvm_device_attr *attr)
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
|
||||||
mutex_lock(&kvm->lock);
|
mutex_lock(&kvm->lock);
|
||||||
if (atomic_read(&kvm->online_vcpus)) {
|
if (kvm->created_vcpus) {
|
||||||
ret = -EBUSY;
|
ret = -EBUSY;
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue