render / rpms / libvirt

Forked from rpms/libvirt 9 months ago
Clone
6d3351
From 6ce52a680d7799f1a861f98c50581a74b15d51a1 Mon Sep 17 00:00:00 2001
6d3351
Message-Id: <6ce52a680d7799f1a861f98c50581a74b15d51a1@dist-git>
6d3351
From: =?UTF-8?q?J=C3=A1n=20Tomko?= <jtomko@redhat.com>
6d3351
Date: Wed, 17 Sep 2014 19:00:58 +0200
6d3351
Subject: [PATCH] RHEL: Fix maxvcpus output
6d3351
6d3351
https://bugzilla.redhat.com/show_bug.cgi?id=1092363
6d3351
6d3351
RHEL-only.
6d3351
6d3351
Ignore the maximum vcpu limit (KVM_CAP_MAX_VCPUS) on RHEL,
6d3351
since RHEL QEMU treats the recommended limit (KVM_CAP_NR_VCPUS)
6d3351
as the maximum, see:
6d3351
https://bugzilla.redhat.com/show_bug.cgi?id=998708
6d3351
6d3351
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
6d3351
---
6d3351
 src/util/virhostcpu.c | 5 +++++
6d3351
 1 file changed, 5 insertions(+)
6d3351
6d3351
diff --git a/src/util/virhostcpu.c b/src/util/virhostcpu.c
6d3351
index 02b9fc8eb..20d3a004b 100644
6d3351
--- a/src/util/virhostcpu.c
6d3351
+++ b/src/util/virhostcpu.c
6d3351
@@ -1166,6 +1166,11 @@ virHostCPUGetKVMMaxVCPUs(void)
6d3351
         return -1;
6d3351
     }
6d3351
 
6d3351
+/* Ignore KVM_CAP_MAX_VCPUS on RHEL - the recommended maximum
6d3351
+ * is treated as a hard limit.
6d3351
+ */
6d3351
+# undef KVM_CAP_MAX_VCPUS
6d3351
+
6d3351
 # ifdef KVM_CAP_MAX_VCPUS
6d3351
     /* at first try KVM_CAP_MAX_VCPUS to determine the maximum count */
6d3351
     if ((ret = ioctl(fd, KVM_CHECK_EXTENSION, KVM_CAP_MAX_VCPUS)) > 0)
6d3351
-- 
6d3351
2.12.2
6d3351