[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 08/14] qapi: fix example of FAILOVER_NEGOTIATED event
|
From: |
Victor Toso |
|
Subject: |
[PATCH v2 08/14] qapi: fix example of FAILOVER_NEGOTIATED event |
|
Date: |
Fri, 25 Mar 2022 23:07:01 +0100 |
* Data is an object, not a string. It generates a qdict.
* Timestamp is not optional, let's add for completeness.
* Add missing "@" to proper document "device-id"
* Add extra space for "Since" section
Signed-off-by: Victor Toso <victortoso@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
---
qapi/net.json | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/qapi/net.json b/qapi/net.json
index 7fab2e7cd8..0d4578bd07 100644
--- a/qapi/net.json
+++ b/qapi/net.json
@@ -685,13 +685,15 @@
# Failover primary devices which were hidden (not hotplugged when requested)
# before will now be hotplugged by the virtio-net standby device.
#
-# device-id: QEMU device id of the unplugged device
+# @device-id: QEMU device id of the unplugged device
+#
# Since: 4.2
#
# Example:
#
# <- { "event": "FAILOVER_NEGOTIATED",
-# "data": "net1" }
+# "data": { "device-id": "net1" },
+# "timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
#
##
{ 'event': 'FAILOVER_NEGOTIATED',
--
2.35.1
- [PATCH v2 00/14] Fix some qapi examples and a TODO section, Victor Toso, 2022/03/25
- [PATCH v2 01/14] qapi: BlockExportRemoveMode: move comments to TODO, Victor Toso, 2022/03/25
- [PATCH v2 09/14] qapi: fix examples: SHUTDOWN and RESET events, Victor Toso, 2022/03/25
- [PATCH v2 06/14] qapi: fix example of MEMORY_DEVICE_SIZE_CHANGE event, Victor Toso, 2022/03/25
- [PATCH v2 04/14] qapi: fix example of BLOCK_JOB_PENDING event, Victor Toso, 2022/03/25
- [PATCH v2 05/14] qapi: fix example of DUMP_COMPLETED event, Victor Toso, 2022/03/25
- [PATCH v2 02/14] qapi: fix example of BLOCK_IMAGE_CORRUPTED event, Victor Toso, 2022/03/25
- [PATCH v2 03/14] qapi: fix example of BLOCK_IO_ERROR event, Victor Toso, 2022/03/25
- [PATCH v2 10/14] qapi: run-state examples: add missing timestamp, Victor Toso, 2022/03/25
- [PATCH v2 08/14] qapi: fix example of FAILOVER_NEGOTIATED event,
Victor Toso <=
- [PATCH v2 07/14] qapi: fix example of UNPLUG_PRIMARY event, Victor Toso, 2022/03/25
- [PATCH v2 12/14] qapi: ui examples: add missing websocket member, Victor Toso, 2022/03/25
- [PATCH v2 13/14] qapi: fix example of ACPI_DEVICE_OST event, Victor Toso, 2022/03/25
- [PATCH v2 11/14] qapi: fix example of MEMORY_FAILURE, Victor Toso, 2022/03/25
- [PATCH v2 14/14] qapi: fix example of dump-guest-memory, Victor Toso, 2022/03/25