Use the new interface and hvinfo during hotplug actions. This means that _GenerateKVMDeviceID(), _GetBusSlots() and _GenerateDeviceHVInfo() will be used to obtain the proper device ID and bus position.
Add an extra check in _VerifyHotplugSupport() that allows hotplug only for paravirtual devices (virtio-blk-pci, virtio-net-pci) and SCSI devices (scsi-cd, scsi-hd, scsi-block, scsi-generic) that use the latest device model in QEMU (via the -device option). Signed-off-by: Dimitris Aragiorgis <[email protected]> --- lib/hypervisor/hv_kvm/__init__.py | 50 ++++++++++++++++++++++++++++--------- 1 file changed, 38 insertions(+), 12 deletions(-) diff --git a/lib/hypervisor/hv_kvm/__init__.py b/lib/hypervisor/hv_kvm/__init__.py index 7b0bb2d..52f91da 100644 --- a/lib/hypervisor/hv_kvm/__init__.py +++ b/lib/hypervisor/hv_kvm/__init__.py @@ -132,6 +132,17 @@ _DEVICE_BUS = { lambda ht: _SCSI_BUS if ht in constants.HT_SCSI_DEVICE_TYPES else _PCI_BUS } +_HOTPLUGGABLE_DEVICE_TYPES = { + constants.HOTPLUG_TARGET_NIC: [constants.HT_NIC_PARAVIRTUAL], + constants.HOTPLUG_TARGET_DISK: [ + constants.HT_DISK_PARAVIRTUAL, + constants.HT_DISK_SCSI_BLOCK, + constants.HT_DISK_SCSI_GENERIC, + constants.HT_DISK_SCSI_HD, + constants.HT_DISK_SCSI_CD, + ] + } + _PCI_BUS = "pci.0" _SCSI_BUS = "scsi.0" @@ -1953,9 +1964,21 @@ class KVMHypervisor(hv_base.BaseHypervisor): def VerifyHotplugSupport(self, instance, action, dev_type): """Verifies that hotplug is supported. - @raise errors.HypervisorError: in one of the previous cases + Hotplug is not supported if: + + - the instance is not running + - the device type is not hotplug-able + - the QMP version does not support the corresponding commands + + @raise errors.HypervisorError: if one of the above applies """ + runtime = self._LoadKVMRuntime(instance) + device_type = _DEVICE_TYPE[dev_type](runtime[2]) + if device_type not in _HOTPLUGGABLE_DEVICE_TYPES[dev_type]: + msg = "Hotplug is not supported for device type %s" % device_type + raise errors.HypervisorError(msg) + if dev_type == constants.HOTPLUG_TARGET_DISK: if action == constants.HOTPLUG_ACTION_ADD: self.qmp.CheckDiskHotAddSupport() @@ -2063,15 +2086,19 @@ class KVMHypervisor(hv_base.BaseHypervisor): def HotAddDevice(self, instance, dev_type, device, extra, seq): """ Helper method to hot-add a new device - It gets free pci slot generates the device name and invokes the - device specific method. + It generates the device ID and hvinfo, and invokes the + device-specific method. """ - # in case of hot-mod this is given - if device.pci is None: - device.pci = self.qmp.GetFreePCISlot() kvm_devid = _GenerateDeviceKVMId(dev_type, device) runtime = self._LoadKVMRuntime(instance) + up_hvp = runtime[2] + device_type = _DEVICE_TYPE[dev_type](up_hvp) + bus_state = self._GetBusSlots(runtime) + # in case of hot-mod this is given + if not device.hvinfo: + device.hvinfo = _GenerateDeviceHVInfo(dev_type, kvm_devid, + device_type, bus_state) if dev_type == constants.HOTPLUG_TARGET_DISK: uri = _GetDriveURI(device, extra[0], extra[1]) @@ -2092,7 +2119,6 @@ class KVMHypervisor(hv_base.BaseHypervisor): kvmpath = instance.hvparams[constants.HV_KVM_PATH] kvmhelp = self._GetKVMOutput(kvmpath, self._KVMOPT_HELP) devlist = self._GetKVMOutput(kvmpath, self._KVMOPT_DEVICELIST) - up_hvp = runtime[2] features, _, _ = self._GetNetworkDeviceFeatures(up_hvp, devlist, kvmhelp) (tap, tapfds, vhostfds) = OpenTap(features=features) self._ConfigureNIC(instance, seq, device, tap) @@ -2111,7 +2137,7 @@ class KVMHypervisor(hv_base.BaseHypervisor): """ Helper method for hot-del device It gets device info from runtime file, generates the device name and - invokes the device specific method. + invokes the device-specific method. """ runtime = self._LoadKVMRuntime(instance) @@ -2131,18 +2157,18 @@ class KVMHypervisor(hv_base.BaseHypervisor): runtime[index].remove(entry) self._SaveKVMRuntime(instance, runtime) - return kvm_device.pci + return kvm_device.hvinfo def HotModDevice(self, instance, dev_type, device, _, seq): """ Helper method for hot-mod device It gets device info from runtime file, generates the device name and - invokes the device specific method. Currently only NICs support hot-mod + invokes the device-specific method. Currently only NICs support hot-mod """ if dev_type == constants.HOTPLUG_TARGET_NIC: - # putting it back in the same pci slot - device.pci = self.HotDelDevice(instance, dev_type, device, _, seq) + # putting it back in the same bus and slot + device.hvinfo = self.HotDelDevice(instance, dev_type, device, _, seq) self.HotAddDevice(instance, dev_type, device, _, seq) @classmethod -- 1.7.10.4
