[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 04/14] pci: mark device having guest unplug request pending
|
From: |
Michael S. Tsirkin |
|
Subject: |
[PULL 04/14] pci: mark device having guest unplug request pending |
|
Date: |
Tue, 29 Oct 2019 19:00:23 -0400 |
From: Jens Freimann <address@hidden>
Set pending_deleted_event in DeviceState for failover
primary devices that were successfully unplugged by the Guest OS.
Signed-off-by: Jens Freimann <address@hidden>
Message-Id: <address@hidden>
Reviewed-by: Michael S. Tsirkin <address@hidden>
Signed-off-by: Michael S. Tsirkin <address@hidden>
---
hw/pci/pcie.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/hw/pci/pcie.c b/hw/pci/pcie.c
index 19363ff8ce..08718188bb 100644
--- a/hw/pci/pcie.c
+++ b/hw/pci/pcie.c
@@ -457,6 +457,7 @@ static void pcie_unplug_device(PCIBus *bus, PCIDevice *dev,
void *opaque)
HotplugHandler *hotplug_ctrl = qdev_get_hotplug_handler(DEVICE(dev));
if (dev->partially_hotplugged) {
+ dev->qdev.pending_deleted_event = false;
return;
}
hotplug_handler_unplug(hotplug_ctrl, DEVICE(dev), &error_abort);
@@ -476,6 +477,8 @@ void pcie_cap_slot_unplug_request_cb(HotplugHandler
*hotplug_dev,
return;
}
+ dev->pending_deleted_event = true;
+
/* In case user cancel the operation of multi-function hot-add,
* remove the function that is unexposed to guest individually,
* without interaction with guest.
--
MST
- [PULL 00/14] virtio: features, cleanups, Michael S. Tsirkin, 2019/10/29
- [PULL 01/14] qdev/qbus: add hidden device support, Michael S. Tsirkin, 2019/10/29
- [PULL 02/14] pci: add option for net failover, Michael S. Tsirkin, 2019/10/29
- [PULL 03/14] pci: mark devices partially unplugged, Michael S. Tsirkin, 2019/10/29
- [PULL 04/14] pci: mark device having guest unplug request pending,
Michael S. Tsirkin <=
- [PULL 05/14] qapi: add unplug primary event, Michael S. Tsirkin, 2019/10/29
- [PULL 06/14] qapi: add failover negotiated event, Michael S. Tsirkin, 2019/10/29
- [PULL 07/14] migration: allow unplug during migration for failover devices, Michael S. Tsirkin, 2019/10/29
- [PULL 08/14] migration: add new migration state wait-unplug, Michael S. Tsirkin, 2019/10/29
- [PULL 09/14] libqos: tolerate wait-unplug migration state, Michael S. Tsirkin, 2019/10/29
- [PULL 11/14] vfio: unplug failover primary device before migration, Michael S. Tsirkin, 2019/10/29
- [PULL 12/14] virtio/vhost: Use auto_rcu_read macros, Michael S. Tsirkin, 2019/10/29
- [PULL 13/14] virtio_net: use RCU_READ_LOCK_GUARD, Michael S. Tsirkin, 2019/10/29
- [PULL 10/14] net/virtio: add failover support, Michael S. Tsirkin, 2019/10/29
- [PULL 14/14] virtio: Use auto rcu_read macros, Michael S. Tsirkin, 2019/10/29