mirror of https://gitee.com/openkylin/libvirt.git
qemu: hotplug: Add warning regarding SD hotplug
SD card hotplug should not be implemented until they can be used via -blockdev. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
aa624c3bfb
commit
48c643f47c
|
@ -725,6 +725,9 @@ qemuDomainAttachDeviceDiskLive(virQEMUDriverPtr driver,
|
|||
case VIR_DOMAIN_DISK_BUS_UML:
|
||||
case VIR_DOMAIN_DISK_BUS_SATA:
|
||||
case VIR_DOMAIN_DISK_BUS_SD:
|
||||
/* Note that SD card hotplug support should be added only once
|
||||
* they support '-device' (don't require -drive only).
|
||||
* See also: qemuDiskBusNeedsDriveArg */
|
||||
case VIR_DOMAIN_DISK_BUS_LAST:
|
||||
virReportError(VIR_ERR_OPERATION_UNSUPPORTED,
|
||||
_("disk bus '%s' cannot be hotplugged."),
|
||||
|
|
Loading…
Reference in New Issue