Emit the vcpu-removed event when QEMU vCPU unplug completes.
Hook this into qemuDomainRemoveVcpu(), which covers both the
synchronous completion path and the DEVICE_DELETED-driven alias
removal path.
Some architectures may have multiple vcpus grouped under a single qemu
vcpu object; on those platforms a `vcpu-removed` event will be emitted
for each vcpu that is removed from this group.
Signed-off-by: Akash Kulhalli <akash.kulhalli@oracle.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
unsigned int nvcpus = vcpupriv->vcpus;
size_t i;
ssize_t offlineVcpuWithTid = -1;
+ virObjectEvent *event = NULL;
if (qemuDomainRefreshVcpuInfo(vm, VIR_ASYNC_JOB_NONE, false) < 0)
return -1;
if (offlineVcpuWithTid == -1)
offlineVcpuWithTid = i;
}
+
+ /* fire the `vcpu-removed` event for each removed vcpu */
+ event = virDomainEventVcpuRemovedNewFromObj(vm, i);
+ virObjectEventStateQueue(priv->driver->domainEventState, event);
}
if (offlineVcpuWithTid != -1) {