From: Peter Krempa Date: Wed, 14 Sep 2016 05:37:16 +0000 (+0200) Subject: qemu: driver: Don't return automatic NUMA vCPU pinning data for persistentDef X-Git-Tag: v2.3.0-rc1~97 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=552892c59d887b7e24c18b20b208141913fa99d4;p=thirdparty%2Flibvirt.git qemu: driver: Don't return automatic NUMA vCPU pinning data for persistentDef Calling virDomainGetVcpuPinInfo on a live VM with automatic NUMA pinning and VIR_DOMAIN_AFFECT_CONFIG would return the automatic pinning data in some cases which is bogus. Use the autoCpuset property only when called on a live definition. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=1365779 --- diff --git a/src/qemu/qemu_driver.c b/src/qemu/qemu_driver.c index 4c45fc3b4f..f8fc47d379 100644 --- a/src/qemu/qemu_driver.c +++ b/src/qemu/qemu_driver.c @@ -5171,8 +5171,9 @@ qemuDomainGetVcpuPinInfo(virDomainPtr dom, { virDomainObjPtr vm = NULL; virDomainDefPtr def; + bool live; int ret = -1; - qemuDomainObjPrivatePtr priv = NULL; + virBitmapPtr autoCpuset = NULL; virCheckFlags(VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_AFFECT_CONFIG, -1); @@ -5183,14 +5184,14 @@ qemuDomainGetVcpuPinInfo(virDomainPtr dom, if (virDomainGetVcpuPinInfoEnsureACL(dom->conn, vm->def) < 0) goto cleanup; - if (!(def = virDomainObjGetOneDef(vm, flags))) + if (!(def = virDomainObjGetOneDefState(vm, flags, &live))) goto cleanup; - priv = vm->privateData; + if (live) + autoCpuset = QEMU_DOMAIN_PRIVATE(vm)->autoCpuset; ret = virDomainDefGetVcpuPinInfoHelper(def, maplen, ncpumaps, cpumaps, - virHostCPUGetCount(), - priv->autoCpuset); + virHostCPUGetCount(), autoCpuset); cleanup: virDomainObjEndAPI(&vm); return ret;