Message ID | 20130812195730.079414823@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Il 12/08/2013 21:56, Marcelo Tosatti ha scritto: > Commit 8c3ba334f8588e1d5099f8602cf01897720e0eca, "KVM: x86: Raise the > hard VCPU count limit", upstream introduced the notion of a recommended > vcpu max limit. > > Switch the order so the recommended vcpu max limit is used instead of > the actual max vcpu limit. > > Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> > > Index: qemu/kvm-all.c > =================================================================== > --- qemu.orig/kvm-all.c > +++ qemu/kvm-all.c > @@ -1321,11 +1321,11 @@ static int kvm_max_vcpus(KVMState *s) > * procedure from the kernel API documentation to cope with > * older kernels that may be missing capabilities. > */ > - ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); > + ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); > if (ret) { > return ret; > } > - ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); > + ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); > if (ret) { > return ret; > } > > This would break "working" configurations. Perhaps we should just warn if the VCPU limit exceeds KVM_CAP_NR_VCPUS, and fail if the VCPU limit exceeds KVM_CAP_MAX_VCPUS. Patch 2 is fine, ok to apply it (since it fixes a real bug) and then you can work on top of it? Paolo -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
On Sun, Aug 18, 2013 at 05:28:28PM +0200, Paolo Bonzini wrote: > Il 12/08/2013 21:56, Marcelo Tosatti ha scritto: > > Commit 8c3ba334f8588e1d5099f8602cf01897720e0eca, "KVM: x86: Raise the > > hard VCPU count limit", upstream introduced the notion of a recommended > > vcpu max limit. > > > > Switch the order so the recommended vcpu max limit is used instead of > > the actual max vcpu limit. > > > > Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> > > > > Index: qemu/kvm-all.c > > =================================================================== > > --- qemu.orig/kvm-all.c > > +++ qemu/kvm-all.c > > @@ -1321,11 +1321,11 @@ static int kvm_max_vcpus(KVMState *s) > > * procedure from the kernel API documentation to cope with > > * older kernels that may be missing capabilities. > > */ > > - ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); > > + ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); > > if (ret) { > > return ret; > > } > > - ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); > > + ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); > > if (ret) { > > return ret; > > } > > > > > > This would break "working" configurations. Perhaps we should just warn > if the VCPU limit exceeds KVM_CAP_NR_VCPUS, and fail if the VCPU limit > exceeds KVM_CAP_MAX_VCPUS. > > Patch 2 is fine, ok to apply it (since it fixes a real bug) and then you > can work on top of it? OK, please apply patch 2. -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Index: qemu/kvm-all.c =================================================================== --- qemu.orig/kvm-all.c +++ qemu/kvm-all.c @@ -1321,11 +1321,11 @@ static int kvm_max_vcpus(KVMState *s) * procedure from the kernel API documentation to cope with * older kernels that may be missing capabilities. */ - ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); + ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); if (ret) { return ret; } - ret = kvm_check_extension(s, KVM_CAP_NR_VCPUS); + ret = kvm_check_extension(s, KVM_CAP_MAX_VCPUS); if (ret) { return ret; }
Commit 8c3ba334f8588e1d5099f8602cf01897720e0eca, "KVM: x86: Raise the hard VCPU count limit", upstream introduced the notion of a recommended vcpu max limit. Switch the order so the recommended vcpu max limit is used instead of the actual max vcpu limit. Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com> -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html