[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 06/11] qapi: add failover negotiated event
From: |
Jens Freimann |
Subject: |
[PATCH v5 06/11] qapi: add failover negotiated event |
Date: |
Wed, 23 Oct 2019 10:27:06 +0200 |
This event is sent to let libvirt know that VIRTIO_NET_F_STANDBY
feature was not negotiated during virtio feature negotiation. If this
event is received it means any primary devices hotplugged before
this were were never really added to QEMU devices.
Signed-off-by: Jens Freimann <address@hidden>
---
qapi/net.json | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/qapi/net.json b/qapi/net.json
index 728990f4fb..8c5f3f1fb2 100644
--- a/qapi/net.json
+++ b/qapi/net.json
@@ -737,3 +737,19 @@
##
{ 'command': 'announce-self', 'boxed': true,
'data' : 'AnnounceParameters'}
+
+##
+# @FAILOVER_NEGOTIATED:
+#
+# Emitted when VIRTIO_NET_F_STANDBY was negotiated during feature negotiation
+#
+# Since: 4.2
+#
+# Example:
+#
+# <- { "event": "FAILOVER_NEGOTIATED",
+# "data": {} }
+#
+##
+{ 'event': 'FAILOVER_NEGOTIATED',
+ 'data': {} }
--
2.21.0
- Re: [PATCH v5 02/11] pci: add option for net failover, (continued)
- [PATCH v5 03/11] pci: mark devices partially unplugged, Jens Freimann, 2019/10/23
- [PATCH v5 04/11] pci: mark device having guest unplug request pending, Jens Freimann, 2019/10/23
- [PATCH v5 05/11] qapi: add unplug primary event, Jens Freimann, 2019/10/23
- [PATCH v5 06/11] qapi: add failover negotiated event,
Jens Freimann <=
- [PATCH v5 07/11] migration: allow unplug during migration for failover devices, Jens Freimann, 2019/10/23
- [PATCH v5 08/11] migration: add new migration state wait-unplug, Jens Freimann, 2019/10/23
- [PATCH v5 09/11] libqos: tolerate wait-unplug migration state, Jens Freimann, 2019/10/23
- [PATCH v5 10/11] net/virtio: add failover support, Jens Freimann, 2019/10/23
- [PATCH v5 11/11] vfio: unplug failover primary device before migration, Jens Freimann, 2019/10/23