*
* @def: domain definition
* @nvcpus: target vcpu count
+ * @enable: set to true if vcpus should be enabled
*
* Tries to find which vcpu entities need to be enabled or disabled to reach
* @nvcpus. This function works in order of the legacy hotplug but is able to
*/
static virBitmapPtr
qemuDomainSelectHotplugVcpuEntities(virDomainDefPtr def,
- unsigned int nvcpus)
+ unsigned int nvcpus,
+ bool *enable)
{
virBitmapPtr ret = NULL;
virDomainVcpuDefPtr vcpu;
return NULL;
if (nvcpus > curvcpus) {
+ *enable = true;
+
for (i = 0; i < maxvcpus && curvcpus < nvcpus; i++) {
vcpu = virDomainDefGetVcpu(def, i);
vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpu);
ignore_value(virBitmapSetBit(ret, i));
}
} else {
+ *enable = false;
+
for (i = maxvcpus - 1; i >= 0 && curvcpus > nvcpus; i--) {
vcpu = virDomainDefGetVcpu(def, i);
vcpupriv = QEMU_DOMAIN_VCPU_PRIVATE(vcpu);
qemuDomainSetVcpusLive(virQEMUDriverPtr driver,
virQEMUDriverConfigPtr cfg,
virDomainObjPtr vm,
- unsigned int nvcpus)
+ virBitmapPtr vcpumap,
+ bool enable)
{
qemuDomainObjPrivatePtr priv = vm->privateData;
qemuCgroupEmulatorAllNodesDataPtr emulatorCgroup = NULL;
- virBitmapPtr vcpumap = NULL;
ssize_t nextvcpu = -1;
int rc = 0;
int ret = -1;
- if (!(vcpumap = qemuDomainSelectHotplugVcpuEntities(vm->def, nvcpus)))
- goto cleanup;
-
if (qemuCgroupEmulatorAllNodesAllow(priv->cgroup, &emulatorCgroup) < 0)
goto cleanup;
- if (nvcpus > virDomainDefGetVcpus(vm->def)) {
+ if (enable) {
while ((nextvcpu = virBitmapNextSetBit(vcpumap, nextvcpu)) != -1) {
if ((rc = qemuDomainHotplugAddVcpu(driver, vm, nextvcpu)) < 0)
break;
cleanup:
qemuCgroupEmulatorAllNodesRestore(emulatorCgroup);
- virBitmapFree(vcpumap);
return ret;
}
bool hotpluggable)
{
virQEMUDriverConfigPtr cfg = virQEMUDriverGetConfig(driver);
+ virBitmapPtr vcpumap = NULL;
+ bool enable;
int ret = -1;
if (def && nvcpus > virDomainDefGetVcpusMax(def)) {
goto cleanup;
}
- if (def && qemuDomainSetVcpusLive(driver, cfg, vm, nvcpus) < 0)
- goto cleanup;
+ if (def) {
+ if (!(vcpumap = qemuDomainSelectHotplugVcpuEntities(vm->def, nvcpus,
+ &enable)))
+ goto cleanup;
+
+ if (qemuDomainSetVcpusLive(driver, cfg, vm, vcpumap, enable) < 0)
+ goto cleanup;
+ }
if (persistentDef) {
qemuDomainSetVcpusConfig(persistentDef, nvcpus, hotpluggable);
ret = 0;
cleanup:
+ virBitmapFree(vcpumap);
virObjectUnref(cfg);
return ret;
}