* [PULL 01/10] qapi: fix example of query-ballon command
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 02/10] qapi: fix example of query-vnc command Markus Armbruster
` (10 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-2-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 02/10] qapi: fix example of query-vnc command
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
2022-09-07 15:03 ` [PULL 01/10] qapi: fix example of query-ballon command Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 03/10] qapi: fix example of query-dump-guest-memory-capability command Markus Armbruster
` (9 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-3-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 03/10] qapi: fix example of query-dump-guest-memory-capability command
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
2022-09-07 15:03 ` [PULL 01/10] qapi: fix example of query-ballon command Markus Armbruster
2022-09-07 15:03 ` [PULL 02/10] qapi: fix example of query-vnc command Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 04/10] qapi: fix example of BLOCK_JOB_READY event Markus Armbruster
` (8 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-4-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 04/10] qapi: fix example of BLOCK_JOB_READY event
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (2 preceding siblings ...)
2022-09-07 15:03 ` [PULL 03/10] qapi: fix example of query-dump-guest-memory-capability command Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event Markus Armbruster
` (7 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-5-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (3 preceding siblings ...)
2022-09-07 15:03 ` [PULL 04/10] qapi: fix example of BLOCK_JOB_READY event Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event Markus Armbruster
` (6 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-6-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (4 preceding siblings ...)
2022-09-07 15:03 ` [PULL 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 07/10] qapi: fix example of MEM_UNPLUG_ERROR event Markus Armbruster
` (5 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-7-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 07/10] qapi: fix example of MEM_UNPLUG_ERROR event
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (5 preceding siblings ...)
2022-09-07 15:03 ` [PULL 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 08/10] qapi: fix examples of blockdev-add with qcow2 Markus Armbruster
` (4 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-8-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 08/10] qapi: fix examples of blockdev-add with qcow2
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (6 preceding siblings ...)
2022-09-07 15:03 ` [PULL 07/10] qapi: fix example of MEM_UNPLUG_ERROR event Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 09/10] qapi: fix example of query-hotpluggable-cpus command Markus Armbruster
` (3 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-9-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 09/10] qapi: fix example of query-hotpluggable-cpus command
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (7 preceding siblings ...)
2022-09-07 15:03 ` [PULL 08/10] qapi: fix examples of blockdev-add with qcow2 Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 15:03 ` [PULL 10/10] qapi: fix examples of events missing timestamp Markus Armbruster
` (2 subsequent siblings)
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-10-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* [PULL 10/10] qapi: fix examples of events missing timestamp
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (8 preceding siblings ...)
2022-09-07 15:03 ` [PULL 09/10] qapi: fix example of query-hotpluggable-cpus command Markus Armbruster
@ 2022-09-07 15:03 ` Markus Armbruster
2022-09-07 18:43 ` [PULL 00/10] QAPI patches patches for 2022-09-07 Stefan Hajnoczi
2022-09-08 10:58 ` Kevin Wolf
11 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-07 15:03 UTC (permalink / raw)
To: qemu-devel; +Cc: stefanha, Victor Toso
From: Victor Toso <victortoso@redhat.com>
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>
Message-Id: <20220901085840.22520-11-victortoso@redhat.com>
Signed-off-by: Markus Armbruster <armbru@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] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (9 preceding siblings ...)
2022-09-07 15:03 ` [PULL 10/10] qapi: fix examples of events missing timestamp Markus Armbruster
@ 2022-09-07 18:43 ` Stefan Hajnoczi
2022-09-08 10:58 ` Kevin Wolf
11 siblings, 0 replies; 18+ messages in thread
From: Stefan Hajnoczi @ 2022-09-07 18:43 UTC (permalink / raw)
To: Markus Armbruster; +Cc: qemu-devel, stefanha
[-- Attachment #1: Type: text/plain, Size: 115 bytes --]
Applied, thanks.
Please update the changelog at https://wiki.qemu.org/ChangeLog/7.2 for any user-visible changes.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-07 15:03 [PULL 00/10] QAPI patches patches for 2022-09-07 Markus Armbruster
` (10 preceding siblings ...)
2022-09-07 18:43 ` [PULL 00/10] QAPI patches patches for 2022-09-07 Stefan Hajnoczi
@ 2022-09-08 10:58 ` Kevin Wolf
2022-09-08 11:33 ` Markus Armbruster
11 siblings, 1 reply; 18+ messages in thread
From: Kevin Wolf @ 2022-09-08 10:58 UTC (permalink / raw)
To: Markus Armbruster; +Cc: qemu-devel, stefanha, victortoso
Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
>
> Merge tag 'samuel-thibault' of https://people.debian.org/~sthibault/qemu into staging (2022-09-06 08:31:24 -0400)
>
> are available in the Git repository at:
>
> git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2022-09-07
>
> for you to fetch changes up to 6e7a37ffc230d06852f1a8893097331d39df77c9:
>
> qapi: fix examples of events missing timestamp (2022-09-07 15:10:13 +0200)
>
> ----------------------------------------------------------------
> QAPI patches patches for 2022-09-07
>
> ----------------------------------------------------------------
> 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
NACK, this patch is wrong.
'file' is a required member (defined in BlockdevOptionsGenericFormat),
removing it makes the example invalid. 'data-file' is only an additional
optional member to be used for external data files (i.e. when the guest
data is kept separate from the metadata in the .qcow2 file).
Kevin
> 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] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-08 10:58 ` Kevin Wolf
@ 2022-09-08 11:33 ` Markus Armbruster
2022-09-08 11:39 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2022-09-08 11:33 UTC (permalink / raw)
To: Kevin Wolf; +Cc: qemu-devel, stefanha, victortoso
Kevin Wolf <kwolf@redhat.com> writes:
> Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
>> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
>>
>> Merge tag 'samuel-thibault' of https://people.debian.org/~sthibault/qemu into staging (2022-09-06 08:31:24 -0400)
>>
>> are available in the Git repository at:
>>
>> git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2022-09-07
>>
>> for you to fetch changes up to 6e7a37ffc230d06852f1a8893097331d39df77c9:
>>
>> qapi: fix examples of events missing timestamp (2022-09-07 15:10:13 +0200)
>>
>> ----------------------------------------------------------------
>> QAPI patches patches for 2022-09-07
>>
>> ----------------------------------------------------------------
>> 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
>
> NACK, this patch is wrong.
>
> 'file' is a required member (defined in BlockdevOptionsGenericFormat),
> removing it makes the example invalid. 'data-file' is only an additional
> optional member to be used for external data files (i.e. when the guest
> data is kept separate from the metadata in the .qcow2 file).
I'll respin with #8 dropped. Thank you!
[...]
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-08 11:33 ` Markus Armbruster
@ 2022-09-08 11:39 ` Markus Armbruster
2022-09-19 11:39 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2022-09-08 11:39 UTC (permalink / raw)
To: victortoso; +Cc: Kevin Wolf, qemu-devel, stefanha
Markus Armbruster <armbru@redhat.com> writes:
> Kevin Wolf <kwolf@redhat.com> writes:
>
>> Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
>>> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
>>>
>>> Merge tag 'samuel-thibault' of https://people.debian.org/~sthibault/qemu into staging (2022-09-06 08:31:24 -0400)
>>>
>>> are available in the Git repository at:
>>>
>>> git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2022-09-07
>>>
>>> for you to fetch changes up to 6e7a37ffc230d06852f1a8893097331d39df77c9:
>>>
>>> qapi: fix examples of events missing timestamp (2022-09-07 15:10:13 +0200)
>>>
>>> ----------------------------------------------------------------
>>> QAPI patches patches for 2022-09-07
>>>
>>> ----------------------------------------------------------------
>>> 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
>>
>> NACK, this patch is wrong.
>>
>> 'file' is a required member (defined in BlockdevOptionsGenericFormat),
>> removing it makes the example invalid. 'data-file' is only an additional
>> optional member to be used for external data files (i.e. when the guest
>> data is kept separate from the metadata in the .qcow2 file).
>
> I'll respin with #8 dropped. Thank you!
Too late, it's already merged.
Victor, could you fix on top? Or would you like me to revert the patch?
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-08 11:39 ` Markus Armbruster
@ 2022-09-19 11:39 ` Markus Armbruster
2022-09-30 15:29 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2022-09-19 11:39 UTC (permalink / raw)
To: victortoso; +Cc: Kevin Wolf, qemu-devel, stefanha
Gentle reminder, Victor :)
Markus Armbruster <armbru@redhat.com> writes:
> Markus Armbruster <armbru@redhat.com> writes:
>
>> Kevin Wolf <kwolf@redhat.com> writes:
>>
>>> Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
>>>> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
>>>>
>>>> Merge tag 'samuel-thibault' of https://people.debian.org/~sthibault/qemu into staging (2022-09-06 08:31:24 -0400)
>>>>
>>>> are available in the Git repository at:
>>>>
>>>> git://repo.or.cz/qemu/armbru.git tags/pull-qapi-2022-09-07
>>>>
>>>> for you to fetch changes up to 6e7a37ffc230d06852f1a8893097331d39df77c9:
>>>>
>>>> qapi: fix examples of events missing timestamp (2022-09-07 15:10:13 +0200)
>>>>
>>>> ----------------------------------------------------------------
>>>> QAPI patches patches for 2022-09-07
>>>>
>>>> ----------------------------------------------------------------
>>>> 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
>>>
>>> NACK, this patch is wrong.
>>>
>>> 'file' is a required member (defined in BlockdevOptionsGenericFormat),
>>> removing it makes the example invalid. 'data-file' is only an additional
>>> optional member to be used for external data files (i.e. when the guest
>>> data is kept separate from the metadata in the .qcow2 file).
>>
>> I'll respin with #8 dropped. Thank you!
>
> Too late, it's already merged.
>
> Victor, could you fix on top? Or would you like me to revert the patch?
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-19 11:39 ` Markus Armbruster
@ 2022-09-30 15:29 ` Markus Armbruster
2022-09-30 17:20 ` Markus Armbruster
0 siblings, 1 reply; 18+ messages in thread
From: Markus Armbruster @ 2022-09-30 15:29 UTC (permalink / raw)
To: victortoso; +Cc: Kevin Wolf, qemu-devel, stefanha
Markus Armbruster <armbru@redhat.com> writes:
> Gentle reminder, Victor :)
>
> Markus Armbruster <armbru@redhat.com> writes:
>
>> Markus Armbruster <armbru@redhat.com> writes:
>>
>>> Kevin Wolf <kwolf@redhat.com> writes:
>>>
>>>> Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
>>>>> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
[...]
>>>>> qapi: fix examples of blockdev-add with qcow2
>>>>
>>>> NACK, this patch is wrong.
>>>>
>>>> 'file' is a required member (defined in BlockdevOptionsGenericFormat),
>>>> removing it makes the example invalid. 'data-file' is only an additional
>>>> optional member to be used for external data files (i.e. when the guest
>>>> data is kept separate from the metadata in the .qcow2 file).
>>>
>>> I'll respin with #8 dropped. Thank you!
>>
>> Too late, it's already merged.
>>
>> Victor, could you fix on top? Or would you like me to revert the patch?
Revert posted:
Subject: [PATCH] Revert "qapi: fix examples of blockdev-add with qcow2"
Date: Fri, 30 Sep 2022 17:26:34 +0200
Message-Id: <20220930152634.774907-1-armbru@redhat.com>
^ permalink raw reply [flat|nested] 18+ messages in thread
* Re: [PULL 00/10] QAPI patches patches for 2022-09-07
2022-09-30 15:29 ` Markus Armbruster
@ 2022-09-30 17:20 ` Markus Armbruster
0 siblings, 0 replies; 18+ messages in thread
From: Markus Armbruster @ 2022-09-30 17:20 UTC (permalink / raw)
To: qemu-devel; +Cc: victortoso, Kevin Wolf, stefanha
Markus Armbruster <armbru@redhat.com> writes:
> Markus Armbruster <armbru@redhat.com> writes:
>
>> Gentle reminder, Victor :)
>>
>> Markus Armbruster <armbru@redhat.com> writes:
>>
>>> Markus Armbruster <armbru@redhat.com> writes:
>>>
>>>> Kevin Wolf <kwolf@redhat.com> writes:
>>>>
>>>>> Am 07.09.2022 um 17:03 hat Markus Armbruster geschrieben:
>>>>>> The following changes since commit 946e9bccf12f2bcc3ca471b820738fb22d14fc80:
>
> [...]
>
>>>>>> qapi: fix examples of blockdev-add with qcow2
>>>>>
>>>>> NACK, this patch is wrong.
>>>>>
>>>>> 'file' is a required member (defined in BlockdevOptionsGenericFormat),
>>>>> removing it makes the example invalid. 'data-file' is only an additional
>>>>> optional member to be used for external data files (i.e. when the guest
>>>>> data is kept separate from the metadata in the .qcow2 file).
>>>>
>>>> I'll respin with #8 dropped. Thank you!
>>>
>>> Too late, it's already merged.
>>>
>>> Victor, could you fix on top? Or would you like me to revert the patch?
>
> Revert posted:
>
> Subject: [PATCH] Revert "qapi: fix examples of blockdev-add with qcow2"
> Date: Fri, 30 Sep 2022 17:26:34 +0200
> Message-Id: <20220930152634.774907-1-armbru@redhat.com>
I messed up the send. Correction is
Message-Id: <20220930171908.846769-1-armbru@redhat.com>
^ permalink raw reply [flat|nested] 18+ messages in thread