diff options
| author | Jens Freimann | 2019-10-29 12:49:01 +0100 |
|---|---|---|
| committer | Michael S. Tsirkin | 2019-10-29 23:55:26 +0100 |
| commit | a1190ab628c0e2816eae42786cd7396d6638aa48 (patch) | |
| tree | 17b7cebe7fa91d106f14862fc2f68965548c2eb5 /include/hw | |
| parent | qapi: add failover negotiated event (diff) | |
| download | qemu-a1190ab628c0e2816eae42786cd7396d6638aa48.tar.gz qemu-a1190ab628c0e2816eae42786cd7396d6638aa48.tar.xz qemu-a1190ab628c0e2816eae42786cd7396d6638aa48.zip | |
migration: allow unplug during migration for failover devices
In "b06424de62 migration: Disable hotplug/unplug during migration" we
added a check to disable unplug for all devices until we have figured
out what works. For failover primary devices qdev_unplug() is called
from the migration handler, i.e. during migration.
This patch adds a flag to DeviceState which is set to false for all
devices and makes an exception for PCI devices that are also
primary devices in a failover pair.
Signed-off-by: Jens Freimann <jfreimann@redhat.com>
Message-Id: <20191029114905.6856-8-jfreimann@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/qdev-core.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/qdev-core.h b/include/hw/qdev-core.h index 710981af36..1518495b1e 100644 --- a/include/hw/qdev-core.h +++ b/include/hw/qdev-core.h @@ -156,6 +156,7 @@ struct DeviceState { bool pending_deleted_event; QemuOpts *opts; int hotplugged; + bool allow_unplug_during_migration; BusState *parent_bus; QLIST_HEAD(, NamedGPIOList) gpios; QLIST_HEAD(, BusState) child_bus; |
