34 lines
1.0 KiB
Diff
34 lines
1.0 KiB
Diff
From fc8c41dbb52eb9ce3ee36680ecb53a41f4146610 Mon Sep 17 00:00:00 2001
|
|
From: Jiri Denemark <jdenemar@redhat.com>
|
|
Date: Thu, 11 Jun 2020 13:53:27 +0200
|
|
Subject: [PATCH] conf: Increase cpuset length limit for CPU pinning
|
|
|
|
Domains are now allowed to be pinned to host CPUs with IDs up to 16383.
|
|
The new limit is as arbitrary as the old one. It's just bigger.
|
|
|
|
cherry-pick from commit: e728ffba5119cfb1488aa7363fef596940449f50
|
|
|
|
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
|
|
Reviewed-by: Michal Privoznik <mprivozn@redhat.com>
|
|
Signed-off-by: Jin Yan <jinyan12@huawei.com>
|
|
---
|
|
src/conf/domain_conf.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h
|
|
index a40773a..16e6253 100644
|
|
--- a/src/conf/domain_conf.h
|
|
+++ b/src/conf/domain_conf.h
|
|
@@ -2241,7 +2241,7 @@ struct _virDomainHugePage {
|
|
unsigned long long size; /* hugepage size in KiB */
|
|
};
|
|
|
|
-#define VIR_DOMAIN_CPUMASK_LEN 1024
|
|
+#define VIR_DOMAIN_CPUMASK_LEN 16384
|
|
|
|
struct _virDomainIOThreadIDDef {
|
|
bool autofill;
|
|
--
|
|
1.8.3.1
|
|
|