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