diff options
| author | Marc-André Lureau | 2016-06-23 15:28:23 +0200 |
|---|---|---|
| committer | Markus Armbruster | 2017-01-16 09:19:47 +0100 |
| commit | bd77ea2e5ace7282ce2f1c523c60e5c4c6b44177 (patch) | |
| tree | 3a0a96a7e23086478f8a1135b58197a5010b7ea8 /qapi | |
| parent | qmp-commands: move 'query-gic-capabilities' doc to schema (diff) | |
| download | qemu-bd77ea2e5ace7282ce2f1c523c60e5c4c6b44177.tar.gz qemu-bd77ea2e5ace7282ce2f1c523c60e5c4c6b44177.tar.xz qemu-bd77ea2e5ace7282ce2f1c523c60e5c4c6b44177.zip | |
qmp-commands: move 'x-blockdev-change' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
| -rw-r--r-- | qapi/block-core.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index 40b5e1ba8b..2611b365b3 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -3455,6 +3455,28 @@ # the rest of the array. # # Since: 2.7 +# +# Example: +# +# 1. Add a new node to a quorum +# -> { "execute": "blockdev-add", +# "arguments": { +# "options": { "driver": "raw", +# "node-name": "new_node", +# "file": { "driver": "file", +# "filename": "test.raw" } } } } +# <- { "return": {} } +# -> { "execute": "x-blockdev-change", +# "arguments": { "parent": "disk1", +# "node": "new_node" } } +# <- { "return": {} } +# +# 2. Delete a quorum's node +# -> { "execute": "x-blockdev-change", +# "arguments": { "parent": "disk1", +# "child": "children.1" } } +# <- { "return": {} } +# ## { 'command': 'x-blockdev-change', 'data' : { 'parent': 'str', |
