[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 08/10] qapi: fix examples of blockdev-add with qcow2
From: |
Markus Armbruster |
Subject: |
[PULL 08/10] qapi: fix examples of blockdev-add with qcow2 |
Date: |
Wed, 7 Sep 2022 17:03:25 +0200 |
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
- [PULL 00/10] QAPI patches patches for 2022-09-07, Markus Armbruster, 2022/09/07
- [PULL 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event, Markus Armbruster, 2022/09/07
- [PULL 07/10] qapi: fix example of MEM_UNPLUG_ERROR event, Markus Armbruster, 2022/09/07
- [PULL 09/10] qapi: fix example of query-hotpluggable-cpus command, Markus Armbruster, 2022/09/07
- [PULL 10/10] qapi: fix examples of events missing timestamp, Markus Armbruster, 2022/09/07
- [PULL 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event, Markus Armbruster, 2022/09/07
- [PULL 02/10] qapi: fix example of query-vnc command, Markus Armbruster, 2022/09/07
- [PULL 08/10] qapi: fix examples of blockdev-add with qcow2,
Markus Armbruster <=
- [PULL 01/10] qapi: fix example of query-ballon command, Markus Armbruster, 2022/09/07
- [PULL 04/10] qapi: fix example of BLOCK_JOB_READY event, Markus Armbruster, 2022/09/07
- [PULL 03/10] qapi: fix example of query-dump-guest-memory-capability command, Markus Armbruster, 2022/09/07
- Re: [PULL 00/10] QAPI patches patches for 2022-09-07, Kevin Wolf, 2022/09/08
Re: [PULL 00/10] QAPI patches patches for 2022-09-07, Stefan Hajnoczi, 2022/09/08