mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-07 17:28:15 +00:00
Record hotplugged USB device in LXC live guest config
After hotplugging a USB device, the LXC driver forgot to add the device def to the virDomainDefPtr. Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
This commit is contained in:
parent
c364897222
commit
a537827d15
@ -3973,6 +3973,9 @@ lxcDomainAttachDeviceHostdevSubsysUSBLive(virLXCDriverPtr driver,
|
|||||||
|
|
||||||
mode = 0700 | S_IFCHR;
|
mode = 0700 | S_IFCHR;
|
||||||
|
|
||||||
|
if (VIR_REALLOC_N(vm->def->hostdevs, vm->def->nhostdevs + 1) < 0)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
if (virFileMakePath(dstdir) < 0) {
|
if (virFileMakePath(dstdir) < 0) {
|
||||||
virReportSystemError(errno,
|
virReportSystemError(errno,
|
||||||
_("Unable to create %s"), dstdir);
|
_("Unable to create %s"), dstdir);
|
||||||
@ -4001,6 +4004,8 @@ lxcDomainAttachDeviceHostdevSubsysUSBLive(virLXCDriverPtr driver,
|
|||||||
priv->cgroup) < 0)
|
priv->cgroup) < 0)
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
||||||
|
vm->def->hostdevs[vm->def->nhostdevs++] = def;
|
||||||
|
|
||||||
ret = 0;
|
ret = 0;
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user