qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/15] QAPI patches patches for 2022-03-31
@ 2022-03-31 10:53 Markus Armbruster
  2022-03-31 10:53 ` [PULL 01/15] schemas: add missing vim modeline Markus Armbruster
                   ` (15 more replies)
  0 siblings, 16 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-03-31 10:53 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

I double-checked these patches affect *only* generated documentation.
Safe enough for 7.0, I think.  But I'm quite content to hold on to
them until after the release, if that's preferred.

The following changes since commit aea6e471085f39ada1ccd637043c3ee3dfd88750:

  Update version for v7.0.0-rc2 release (2022-03-29 23:32:18 +0100)

are available in the Git repository at:

  git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2022-03-31

for you to fetch changes up to 4375cf9868fbb7abcaae119ac993b13f72dfe8f2:

  qapi: fix example of dump-guest-memory (2022-03-31 12:35:59 +0200)

----------------------------------------------------------------
QAPI patches patches for 2022-03-31

----------------------------------------------------------------
Victor Toso (15):
      schemas: add missing vim modeline
      qapi: BlockExportRemoveMode: move comments to TODO
      qapi: fix example of BLOCK_IMAGE_CORRUPTED event
      qapi: fix example of BLOCK_IO_ERROR event
      qapi: fix example of BLOCK_JOB_PENDING event
      qapi: fix example of DUMP_COMPLETED event
      qapi: fix example of MEMORY_DEVICE_SIZE_CHANGE event
      qapi: fix example of UNPLUG_PRIMARY event
      qapi: fix example of FAILOVER_NEGOTIATED event
      qapi: fix examples: SHUTDOWN and RESET events
      qapi: run-state examples: add missing @timestamp
      qapi: fix example of MEMORY_FAILURE
      qapi: ui examples: add missing @websocket member
      qapi: fix example of ACPI_DEVICE_OST event
      qapi: fix example of dump-guest-memory

 qapi/acpi.json         |  5 +++--
 qapi/block-core.json   | 14 +++++++-------
 qapi/block-export.json | 10 +++++-----
 qapi/dump.json         |  9 +++++----
 qapi/machine.json      |  3 ++-
 qapi/migration.json    |  4 +++-
 qapi/net.json          |  6 ++++--
 qapi/pragma.json       |  3 +++
 qapi/run-state.json    | 16 +++++++++++-----
 qapi/ui.json           | 12 ++++++------
 10 files changed, 49 insertions(+), 33 deletions(-)

-- 
2.35.1



^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PULL 03/15] qapi: fix example of BLOCK_IMAGE_CORRUPTED event
@ 2022-03-31 13:29 Paolo Bonzini
  0 siblings, 0 replies; 18+ messages in thread
From: Paolo Bonzini @ 2022-03-31 13:29 UTC (permalink / raw)
  To: paolo.bonzini, qemu-devel

From: Markus Armbruster <armbru@redhat.com>

From: Victor Toso <victortoso@redhat.com>

Example output lacks mandatory member @fatal.  Provide it.

Example output shows a value of @msg no version of the code
produces.  No big deal, but replace it anyway by one that
today's code does produce.

Signed-off-by: Victor Toso <victortoso@redhat.com>
Message-Id: <20220328140604.41484-3-victortoso@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
---
 qapi/block-core.json | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/qapi/block-core.json b/qapi/block-core.json
index e89f2dfb5b..63c30a5378 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -5006,10 +5006,9 @@
 # Example:
 #
 # <- { "event": "BLOCK_IMAGE_CORRUPTED",
-#      "data": { "device": "ide0-hd0", "node-name": "node0",
-#                "msg": "Prevented active L1 table overwrite", "offset": 196608,
-#                "size": 65536 },
-#      "timestamp": { "seconds": 1378126126, "microseconds": 966463 } }
+#      "data": { "device": "", "node-name": "drive", "fatal": false,
+#                "msg": "L2 table offset 0x2a2a2a00 unaligned (L1 index: 0)" },
+#      "timestamp": { "seconds": 1648243240, "microseconds": 906060 } }
 #
 # Since: 1.7
 ##
-- 
2.35.1





^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2022-03-31 15:32 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-03-31 10:53 [PULL 00/15] QAPI patches patches for 2022-03-31 Markus Armbruster
2022-03-31 10:53 ` [PULL 01/15] schemas: add missing vim modeline Markus Armbruster
2022-03-31 10:53 ` [PULL 02/15] qapi: BlockExportRemoveMode: move comments to TODO Markus Armbruster
2022-03-31 10:53 ` [PULL 03/15] qapi: fix example of BLOCK_IMAGE_CORRUPTED event Markus Armbruster
2022-03-31 10:53 ` [PULL 04/15] qapi: fix example of BLOCK_IO_ERROR event Markus Armbruster
2022-03-31 10:53 ` [PULL 05/15] qapi: fix example of BLOCK_JOB_PENDING event Markus Armbruster
2022-03-31 10:53 ` [PULL 06/15] qapi: fix example of DUMP_COMPLETED event Markus Armbruster
2022-03-31 10:53 ` [PULL 07/15] qapi: fix example of MEMORY_DEVICE_SIZE_CHANGE event Markus Armbruster
2022-03-31 10:53 ` [PULL 08/15] qapi: fix example of UNPLUG_PRIMARY event Markus Armbruster
2022-03-31 10:53 ` [PULL 09/15] qapi: fix example of FAILOVER_NEGOTIATED event Markus Armbruster
2022-03-31 10:53 ` [PULL 10/15] qapi: fix examples: SHUTDOWN and RESET events Markus Armbruster
2022-03-31 10:53 ` [PULL 11/15] qapi: run-state examples: add missing @timestamp Markus Armbruster
2022-03-31 10:53 ` [PULL 12/15] qapi: fix example of MEMORY_FAILURE Markus Armbruster
2022-03-31 10:53 ` [PULL 13/15] qapi: ui examples: add missing @websocket member Markus Armbruster
2022-03-31 10:53 ` [PULL 14/15] qapi: fix example of ACPI_DEVICE_OST event Markus Armbruster
2022-03-31 10:53 ` [PULL 15/15] qapi: fix example of dump-guest-memory Markus Armbruster
2022-03-31 15:14 ` [PULL 00/15] QAPI patches patches for 2022-03-31 Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2022-03-31 13:29 [PULL 03/15] qapi: fix example of BLOCK_IMAGE_CORRUPTED event Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).