qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/10] qapi examples fixes, simplified version
@ 2022-09-01  8:58 Victor Toso
  2022-09-01  8:58 ` [PATCH v2 01/10] qapi: fix example of query-ballon command Victor Toso
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Hi,

This is the follow up from v1. I've dropped a few patches that need
further discussion. I plan to revisit those when submiting the generator
again at a later time.

v1: https://lists.gnu.org/archive/html/qemu-devel/2022-08/msg04525.html

Changes in v2:
 * Dropped "qapi: fix example of blockdev-add command". It was wrong.
 * Dropped patches with too long examples as we might want to cut them
   short. I've also dropped the patches that fixes examples with
   comments on them as we might want to have a way to do that.
 * Fixed style in:
  - qapi: fix example of NIC_RX_FILTER_CHANGED event
  - qapi: fix example of query-dump-guest-memory-capability command
 * Dropped the generator (rfc) as I'll submit it again later, improved.

Cheers,
Victor

Victor Toso (10):
  qapi: fix example of query-ballon command
  qapi: fix example of query-vnc command
  qapi: fix example of query-dump-guest-memory-capability command
  qapi: fix example of BLOCK_JOB_READY event
  qapi: fix example of NIC_RX_FILTER_CHANGED event
  qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event
  qapi: fix example of MEM_UNPLUG_ERROR event
  qapi: fix examples of blockdev-add with qcow2
  qapi: fix example of query-hotpluggable-cpus command
  qapi: fix examples of events missing timestamp

 qapi/block-core.json | 12 ++++++------
 qapi/dump.json       |  2 +-
 qapi/machine.json    |  8 ++++----
 qapi/migration.json  | 27 +++++++++++++++++++++++----
 qapi/net.json        |  1 -
 qapi/qdev.json       |  3 +--
 qapi/ui.json         |  4 ++--
 7 files changed, 37 insertions(+), 20 deletions(-)

-- 
2.37.2



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

* [PATCH v2 01/10] qapi: fix example of query-ballon command
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 02/10] qapi: fix example of query-vnc command Victor Toso
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output has an extra ',' delimiter. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/machine.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qapi/machine.json b/qapi/machine.json
index 6afd1936b0..5f1f50d3ed 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -1074,7 +1074,7 @@
 #
 # -> { "execute": "query-balloon" }
 # <- { "return": {
-#          "actual": 1073741824,
+#          "actual": 1073741824
 #       }
 #    }
 #
-- 
2.37.2



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

* [PATCH v2 02/10] qapi: fix example of query-vnc command
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
  2022-09-01  8:58 ` [PATCH v2 01/10] qapi: fix example of query-ballon command Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 03/10] qapi: fix example of query-dump-guest-memory-capability command Victor Toso
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output has an extra ',' delimiter in member "websocket" and it
lacks it in "family" member. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/ui.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qapi/ui.json b/qapi/ui.json
index cf58ab4283..286c5731d1 100644
--- a/qapi/ui.json
+++ b/qapi/ui.json
@@ -667,8 +667,8 @@
 #             {
 #                "host":"127.0.0.1",
 #                "service":"50401",
-#                "family":"ipv4"
-#                "websocket":false,
+#                "family":"ipv4",
+#                "websocket":false
 #             }
 #          ]
 #       }
-- 
2.37.2



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

* [PATCH v2 03/10] qapi: fix example of query-dump-guest-memory-capability command
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
  2022-09-01  8:58 ` [PATCH v2 01/10] qapi: fix example of query-ballon command Victor Toso
  2022-09-01  8:58 ` [PATCH v2 02/10] qapi: fix example of query-vnc command Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event Victor Toso
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output is missing closing curly brackets. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/dump.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qapi/dump.json b/qapi/dump.json
index 90859c5483..6fc215dd47 100644
--- a/qapi/dump.json
+++ b/qapi/dump.json
@@ -195,7 +195,7 @@
 #
 # -> { "execute": "query-dump-guest-memory-capability" }
 # <- { "return": { "formats":
-#                  ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] }
+#                  ["elf", "kdump-zlib", "kdump-lzo", "kdump-snappy"] } }
 #
 ##
 { 'command': 'query-dump-guest-memory-capability',
-- 
2.37.2



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

* [PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (2 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 03/10] qapi: fix example of query-dump-guest-memory-capability command Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event Victor Toso
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output is missing ',' delimiter. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/block-core.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qapi/block-core.json b/qapi/block-core.json
index 2173e7734a..882b266532 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -5252,7 +5252,7 @@
 #
 # <- { "event": "BLOCK_JOB_READY",
 #      "data": { "device": "drive0", "type": "mirror", "speed": 0,
-#                "len": 2097152, "offset": 2097152 }
+#                "len": 2097152, "offset": 2097152 },
 #      "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
 #
 ##
-- 
2.37.2



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

* [PATCH v2 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (3 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event Victor Toso
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output has an extra ending curly bracket. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/net.json | 1 -
 1 file changed, 1 deletion(-)

diff --git a/qapi/net.json b/qapi/net.json
index 75ba2cb989..dd088c09c5 100644
--- a/qapi/net.json
+++ b/qapi/net.json
@@ -757,7 +757,6 @@
 #      "data": { "name": "vnet0",
 #                "path": "/machine/peripheral/vnet0/virtio-backend" },
 #      "timestamp": { "seconds": 1368697518, "microseconds": 326866 } }
-#    }
 #
 ##
 { 'event': 'NIC_RX_FILTER_CHANGED',
-- 
2.37.2



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

* [PATCH v2 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (4 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 07/10] qapi: fix example of MEM_UNPLUG_ERROR event Victor Toso
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output is missing a ',' delimiter and it has an extra ending
curly bracket. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/qdev.json | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/qapi/qdev.json b/qapi/qdev.json
index 26cd10106b..2708fb4e99 100644
--- a/qapi/qdev.json
+++ b/qapi/qdev.json
@@ -150,10 +150,9 @@
 #
 # Example:
 #
-# <- { "event": "DEVICE_UNPLUG_GUEST_ERROR"
+# <- { "event": "DEVICE_UNPLUG_GUEST_ERROR",
 #      "data": { "device": "core1",
 #                "path": "/machine/peripheral/core1" },
-#      },
 #      "timestamp": { "seconds": 1615570772, "microseconds": 202844 } }
 #
 ##
-- 
2.37.2



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

* [PATCH v2 07/10] qapi: fix example of MEM_UNPLUG_ERROR event
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (5 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 08/10] qapi: fix examples of blockdev-add with qcow2 Victor Toso
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

Example output was missing ',' delimiter. Fix it.

Problem was noticed when trying to load the example into python's json
library.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/machine.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qapi/machine.json b/qapi/machine.json
index 5f1f50d3ed..4782eea2c3 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -1416,7 +1416,7 @@
 #
 # Example:
 #
-# <- { "event": "MEM_UNPLUG_ERROR"
+# <- { "event": "MEM_UNPLUG_ERROR",
 #      "data": { "device": "dimm1",
 #                "msg": "acpi: device unplug for unsupported device"
 #      },
-- 
2.37.2



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

* [PATCH v2 08/10] qapi: fix examples of blockdev-add with qcow2
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (6 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 07/10] qapi: fix example of MEM_UNPLUG_ERROR event Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 09/10] qapi: fix example of query-hotpluggable-cpus command Victor Toso
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

The examples use "qcow2" driver with the wrong member name for
BlockdevRef alternate type. This patch changes all wrong member names
from "file" to "data-file" which is the correct member name in
BlockdevOptionsQcow2 for the BlockdevRef field.

Problem was noticed when using the example as a test case for Go
bindings.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/block-core.json | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/qapi/block-core.json b/qapi/block-core.json
index 882b266532..f21fa235f2 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -1541,8 +1541,8 @@
 # -> { "execute": "blockdev-add",
 #      "arguments": { "driver": "qcow2",
 #                     "node-name": "node1534",
-#                     "file": { "driver": "file",
-#                               "filename": "hd1.qcow2" },
+#                     "data-file": { "driver": "file",
+#                                    "filename": "hd1.qcow2" },
 #                     "backing": null } }
 #
 # <- { "return": {} }
@@ -4378,7 +4378,7 @@
 #      "arguments": {
 #           "driver": "qcow2",
 #           "node-name": "test1",
-#           "file": {
+#           "data-file": {
 #               "driver": "file",
 #               "filename": "test.qcow2"
 #            }
@@ -4395,7 +4395,7 @@
 #           "cache": {
 #              "direct": true
 #            },
-#            "file": {
+#           "data-file": {
 #              "driver": "file",
 #              "filename": "/tmp/test.qcow2"
 #            },
@@ -4477,7 +4477,7 @@
 #      "arguments": {
 #           "driver": "qcow2",
 #           "node-name": "node0",
-#           "file": {
+#           "data-file": {
 #               "driver": "file",
 #               "filename": "test.qcow2"
 #           }
-- 
2.37.2



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

* [PATCH v2 09/10] qapi: fix example of query-hotpluggable-cpus command
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (7 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 08/10] qapi: fix examples of blockdev-add with qcow2 Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01  8:58 ` [PATCH v2 10/10] qapi: fix examples of events missing timestamp Victor Toso
  2022-09-01 12:20 ` [PATCH v2 00/10] qapi examples fixes, simplified version Markus Armbruster
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

The example return type has the wrong member name. Fix it.

Problem was noticed when using the example as a test case for Go
bindings.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/machine.json | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/qapi/machine.json b/qapi/machine.json
index 4782eea2c3..abb2f48808 100644
--- a/qapi/machine.json
+++ b/qapi/machine.json
@@ -958,9 +958,9 @@
 #
 # -> { "execute": "query-hotpluggable-cpus" }
 # <- {"return": [
-#      { "props": { "core": 8 }, "type": "POWER8-spapr-cpu-core",
+#      { "props": { "core-id": 8 }, "type": "POWER8-spapr-cpu-core",
 #        "vcpus-count": 1 },
-#      { "props": { "core": 0 }, "type": "POWER8-spapr-cpu-core",
+#      { "props": { "core-id": 0 }, "type": "POWER8-spapr-cpu-core",
 #        "vcpus-count": 1, "qom-path": "/machine/unattached/device[0]"}
 #    ]}'
 #
-- 
2.37.2



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

* [PATCH v2 10/10] qapi: fix examples of events missing timestamp
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (8 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 09/10] qapi: fix example of query-hotpluggable-cpus command Victor Toso
@ 2022-09-01  8:58 ` Victor Toso
  2022-09-01 12:20 ` [PATCH v2 00/10] qapi examples fixes, simplified version Markus Armbruster
  10 siblings, 0 replies; 12+ messages in thread
From: Victor Toso @ 2022-09-01  8:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: Eric Blake, Markus Armbruster, John Snow, Michael Roth

I've used real timestamp and changing them one by one so they would
not be all equal.

Problem was noticed when using the example as a test case for Go
bindings.

Signed-off-by: Victor Toso <victortoso@redhat.com>
---
 qapi/migration.json | 27 +++++++++++++++++++++++----
 1 file changed, 23 insertions(+), 4 deletions(-)

diff --git a/qapi/migration.json b/qapi/migration.json
index 81185d4311..88ecf86ac8 100644
--- a/qapi/migration.json
+++ b/qapi/migration.json
@@ -1995,16 +1995,23 @@
 #    }
 # <- { "return": { } }
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1432121972, "microseconds": 744001},
 #     "data": {"status": "created", "id": "snapsave0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1432122172, "microseconds": 744001},
 #     "data": {"status": "running", "id": "snapsave0"}}
-# <- {"event": "STOP"}
-# <- {"event": "RESUME"}
+# <- {"event": "STOP",
+#     "timestamp": {"seconds": 1432122372, "microseconds": 744001} }
+# <- {"event": "RESUME",
+#     "timestamp": {"seconds": 1432122572, "microseconds": 744001} }
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1432122772, "microseconds": 744001},
 #     "data": {"status": "waiting", "id": "snapsave0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1432122972, "microseconds": 744001},
 #     "data": {"status": "pending", "id": "snapsave0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1432123172, "microseconds": 744001},
 #     "data": {"status": "concluded", "id": "snapsave0"}}
 # -> {"execute": "query-jobs"}
 # <- {"return": [{"current-progress": 1,
@@ -2056,16 +2063,23 @@
 #    }
 # <- { "return": { } }
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1472124172, "microseconds": 744001},
 #     "data": {"status": "created", "id": "snapload0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1472125172, "microseconds": 744001},
 #     "data": {"status": "running", "id": "snapload0"}}
-# <- {"event": "STOP"}
-# <- {"event": "RESUME"}
+# <- {"event": "STOP",
+#     "timestamp": {"seconds": 1472125472, "microseconds": 744001} }
+# <- {"event": "RESUME",
+#     "timestamp": {"seconds": 1472125872, "microseconds": 744001} }
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1472126172, "microseconds": 744001},
 #     "data": {"status": "waiting", "id": "snapload0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1472127172, "microseconds": 744001},
 #     "data": {"status": "pending", "id": "snapload0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1472128172, "microseconds": 744001},
 #     "data": {"status": "concluded", "id": "snapload0"}}
 # -> {"execute": "query-jobs"}
 # <- {"return": [{"current-progress": 1,
@@ -2108,14 +2122,19 @@
 #    }
 # <- { "return": { } }
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1442124172, "microseconds": 744001},
 #     "data": {"status": "created", "id": "snapdelete0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1442125172, "microseconds": 744001},
 #     "data": {"status": "running", "id": "snapdelete0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1442126172, "microseconds": 744001},
 #     "data": {"status": "waiting", "id": "snapdelete0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1442127172, "microseconds": 744001},
 #     "data": {"status": "pending", "id": "snapdelete0"}}
 # <- {"event": "JOB_STATUS_CHANGE",
+#     "timestamp": {"seconds": 1442128172, "microseconds": 744001},
 #     "data": {"status": "concluded", "id": "snapdelete0"}}
 # -> {"execute": "query-jobs"}
 # <- {"return": [{"current-progress": 1,
-- 
2.37.2



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

* Re: [PATCH v2 00/10] qapi examples fixes, simplified version
  2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
                   ` (9 preceding siblings ...)
  2022-09-01  8:58 ` [PATCH v2 10/10] qapi: fix examples of events missing timestamp Victor Toso
@ 2022-09-01 12:20 ` Markus Armbruster
  10 siblings, 0 replies; 12+ messages in thread
From: Markus Armbruster @ 2022-09-01 12:20 UTC (permalink / raw)
  To: Victor Toso; +Cc: qemu-devel, Eric Blake, John Snow, Michael Roth

Victor Toso <victortoso@redhat.com> writes:

> Hi,
>
> This is the follow up from v1. I've dropped a few patches that need
> further discussion. I plan to revisit those when submiting the generator
> again at a later time.

Reviewed-by: Markus Armbruster <armbru@redhat.com>

and queued.  Thanks!

[...]



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

end of thread, other threads:[~2022-09-01 12:45 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-09-01  8:58 [PATCH v2 00/10] qapi examples fixes, simplified version Victor Toso
2022-09-01  8:58 ` [PATCH v2 01/10] qapi: fix example of query-ballon command Victor Toso
2022-09-01  8:58 ` [PATCH v2 02/10] qapi: fix example of query-vnc command Victor Toso
2022-09-01  8:58 ` [PATCH v2 03/10] qapi: fix example of query-dump-guest-memory-capability command Victor Toso
2022-09-01  8:58 ` [PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event Victor Toso
2022-09-01  8:58 ` [PATCH v2 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event Victor Toso
2022-09-01  8:58 ` [PATCH v2 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event Victor Toso
2022-09-01  8:58 ` [PATCH v2 07/10] qapi: fix example of MEM_UNPLUG_ERROR event Victor Toso
2022-09-01  8:58 ` [PATCH v2 08/10] qapi: fix examples of blockdev-add with qcow2 Victor Toso
2022-09-01  8:58 ` [PATCH v2 09/10] qapi: fix example of query-hotpluggable-cpus command Victor Toso
2022-09-01  8:58 ` [PATCH v2 10/10] qapi: fix examples of events missing timestamp Victor Toso
2022-09-01 12:20 ` [PATCH v2 00/10] qapi examples fixes, simplified version Markus Armbruster

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).