From: Jiri Denemark Date: Thu, 11 Jun 2020 11:53:27 +0000 (+0200) Subject: conf: Increase cpuset length limit for CPU pinning X-Git-Tag: v6.5.0-rc1~177 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e728ffba5119cfb1488aa7363fef596940449f50;p=thirdparty%2Flibvirt.git 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. Signed-off-by: Jiri Denemark Reviewed-by: Michal Privoznik --- diff --git a/src/conf/domain_conf.h b/src/conf/domain_conf.h index bda8fb6bce..41715c75f2 100644 --- a/src/conf/domain_conf.h +++ b/src/conf/domain_conf.h @@ -2314,7 +2314,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;