|
|
76daa3 |
From a4ceb63bdc5cbac19f5f633ec761b9de0dedb55e Mon Sep 17 00:00:00 2001
|
|
|
76daa3 |
From: Andrew Jones <drjones@redhat.com>
|
|
|
76daa3 |
Date: Tue, 21 Jan 2014 10:46:52 +0100
|
|
|
76daa3 |
Subject: use recommended max vcpu count
|
|
|
76daa3 |
|
|
|
76daa3 |
RH-Author: Andrew Jones <drjones@redhat.com>
|
|
|
76daa3 |
Message-id: <1390301212-15344-1-git-send-email-drjones@redhat.com>
|
|
|
76daa3 |
Patchwork-id: 56862
|
|
|
76daa3 |
O-Subject: [RHEL7.0 qemu-kvm PATCH v6] use recommended max vcpu count
|
|
|
76daa3 |
Bugzilla: 998708
|
|
|
76daa3 |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
|
76daa3 |
RH-Acked-by: Marcelo Tosatti <mtosatti@redhat.com>
|
|
|
76daa3 |
|
|
|
76daa3 |
The recommended vcpu max limit (KVM_CAP_NR_VCPUS) should be used instead
|
|
|
76daa3 |
of the actual max vcpu limit (KVM_CAP_MAX_VCPUS) to give an error.
|
|
|
76daa3 |
|
|
|
76daa3 |
This matches the limit tested by QE on RHEL6: 160.
|
|
|
76daa3 |
|
|
|
76daa3 |
Signed-off-by: Andrew Jones <drjones@redhat.com>
|
|
|
76daa3 |
(cherry picked from commit 0c77563da9357ff2738c4e23db2df39e1ac7b96e)
|
|
|
76daa3 |
(cherry picked from commit 2e43df9e18ae22b4f57c31b01130755a3100f8cb)
|
|
|
76daa3 |
---
|
|
|
76daa3 |
kvm-all.c | 3 +++
|
|
|
76daa3 |
1 file changed, 3 insertions(+)
|
|
|
76daa3 |
|
|
|
76daa3 |
diff --git a/kvm-all.c b/kvm-all.c
|
|
|
76daa3 |
index 90b8573..a545d53 100644
|
|
|
76daa3 |
--- a/kvm-all.c
|
|
|
76daa3 |
+++ b/kvm-all.c
|
|
|
76daa3 |
@@ -1633,6 +1633,9 @@ static int kvm_init(MachineState *ms)
|
|
|
76daa3 |
soft_vcpus_limit = kvm_recommended_vcpus(s);
|
|
|
76daa3 |
hard_vcpus_limit = kvm_max_vcpus(s);
|
|
|
76daa3 |
|
|
|
76daa3 |
+ /* RHEL doesn't support nr_vcpus > soft_vcpus_limit */
|
|
|
76daa3 |
+ hard_vcpus_limit = soft_vcpus_limit;
|
|
|
76daa3 |
+
|
|
|
76daa3 |
while (nc->name) {
|
|
|
76daa3 |
if (nc->num > soft_vcpus_limit) {
|
|
|
76daa3 |
fprintf(stderr,
|
|
|
76daa3 |
--
|
|
|
76daa3 |
1.8.3.1
|
|
|
76daa3 |
|