mirror of https://gitee.com/openkylin/libvirt.git
Fix hotplugging of block device-backed usb disks
Commit ca91ba7
moved qemuSetupDiskCgroup into the qemuDomainPrepareDisk
helper, but failed to call it for usb disks.
https://bugzilla.redhat.com/show_bug.cgi?id=1175668`
This commit is contained in:
parent
531aef2e1b
commit
1cddf0001f
|
@ -679,17 +679,9 @@ qemuDomainAttachUSBMassstorageDevice(virConnectPtr conn,
|
|||
}
|
||||
}
|
||||
|
||||
if (virDomainLockDiskAttach(driver->lockManager, cfg->uri,
|
||||
vm, disk) < 0)
|
||||
if (qemuDomainPrepareDisk(driver, vm, disk, NULL, false) < 0)
|
||||
goto cleanup;
|
||||
|
||||
if (virSecurityManagerSetDiskLabel(driver->securityManager,
|
||||
vm->def, disk) < 0) {
|
||||
if (virDomainLockDiskDetach(driver->lockManager, vm, disk) < 0)
|
||||
VIR_WARN("Unable to release lock on %s", src);
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
/* XXX not correct once we allow attaching a USB CDROM */
|
||||
if (!src) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
|
@ -740,13 +732,7 @@ qemuDomainAttachUSBMassstorageDevice(virConnectPtr conn,
|
|||
return ret;
|
||||
|
||||
error:
|
||||
if (virSecurityManagerRestoreDiskLabel(driver->securityManager,
|
||||
vm->def, disk) < 0)
|
||||
VIR_WARN("Unable to restore security label on %s", src);
|
||||
|
||||
if (virDomainLockDiskDetach(driver->lockManager, vm, disk) < 0)
|
||||
VIR_WARN("Unable to release lock on %s", src);
|
||||
|
||||
ignore_value(qemuDomainPrepareDisk(driver, vm, disk, NULL, true));
|
||||
goto cleanup;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue