From: John Ferlan Date: Mon, 28 Mar 2016 11:40:57 +0000 (-0400) Subject: qemu: Tear down the cgroup before reattach device to host X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2fbf29a5295b1f6d331ba8a421905552662ca348;p=libvirt.git qemu: Tear down the cgroup before reattach device to host When a hostdev is attached to the guest (and removed from the host), the order of operations is call qemuHostdevPreparePCIDevices to remove the device from the host, call qemuSetupHostdevCgroup to setup the cgroups, and virSecurityManagerSetHostdevLabel to set the labels. When the device is removed from the guest, the code didn't use the reverse order leading to possible issues (especially if the path to the device no longer exists). This patch will move the call to qemuTeardownHostdevCgroup to prior to reattaching the device to the host. --- diff --git a/src/qemu/qemu_hotplug.c b/src/qemu/qemu_hotplug.c index 7105b820f1..9fdf66a840 100644 --- a/src/qemu/qemu_hotplug.c +++ b/src/qemu/qemu_hotplug.c @@ -3039,6 +3039,9 @@ qemuDomainRemoveHostDevice(virQEMUDriverPtr driver, VIR_WARN("Failed to restore host device labelling"); } + if (qemuTeardownHostdevCgroup(vm, hostdev) < 0) + VIR_WARN("Failed to remove host device cgroup ACL"); + switch ((virDomainHostdevSubsysType) hostdev->source.subsys.type) { case VIR_DOMAIN_HOSTDEV_SUBSYS_TYPE_PCI: qemuDomainRemovePCIHostDevice(driver, vm, hostdev); @@ -3057,9 +3060,6 @@ qemuDomainRemoveHostDevice(virQEMUDriverPtr driver, break; } - if (qemuTeardownHostdevCgroup(vm, hostdev) < 0) - VIR_WARN("Failed to remove host device cgroup ACL"); - virDomainHostdevDefFree(hostdev); if (net) {