[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 09/14] qapi: run-state examples: add missing member
|
From: |
Victor Toso |
|
Subject: |
[PATCH 09/14] qapi: run-state examples: add missing member |
|
Date: |
Thu, 24 Mar 2022 18:50:10 +0100 |
As reason member in not optional.
Signed-off-by: Victor Toso <victortoso@redhat.com>
---
qapi/run-state.json | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/qapi/run-state.json b/qapi/run-state.json
index 43d66d700f..1b9f64c9cd 100644
--- a/qapi/run-state.json
+++ b/qapi/run-state.json
@@ -150,7 +150,8 @@
#
# Example:
#
-# <- { "event": "SHUTDOWN", "data": { "guest": true },
+# <- { "event": "SHUTDOWN",
+# "data": { "guest": true, "reason": "guest-shutdown" },
# "timestamp": { "seconds": 1267040730, "microseconds": 682951 } }
#
##
@@ -188,7 +189,8 @@
#
# Example:
#
-# <- { "event": "RESET", "data": { "guest": false },
+# <- { "event": "RESET",
+# "data": { "guest": false, "reason": "guest-reset" },
# "timestamp": { "seconds": 1267041653, "microseconds": 9518 } }
#
##
--
2.35.1
- [PATCH 00/14] Fix some qapi examples and a TODO section, Victor Toso, 2022/03/24
- [PATCH 04/14] qapi: fix example of BLOCK_JOB_PENDING event, Victor Toso, 2022/03/24
- [PATCH 09/14] qapi: run-state examples: add missing member,
Victor Toso <=
- [PATCH 03/14] qapi: fix example of BLOCK_IO_ERROR event, Victor Toso, 2022/03/24
- [PATCH 07/14] qapi: fix example of UNPLUG_PRIMARY event, Victor Toso, 2022/03/24
- [PATCH 13/14] qapi: fix example of ACPI_DEVICE_OST event, Victor Toso, 2022/03/24
- [PATCH 11/14] qapi: fix example of MEMORY_FAILURE, Victor Toso, 2022/03/24