diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 14:54:05 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:19:46 +0100 |
commit | b4749948c1227bfdea340226beead0c8d0907eb7 (patch) | |
tree | 0691d955bb57cad7b3efb1748bb70b6921ee1589 /qapi/block-core.json | |
parent | 49b37c23c70ddfed6c39a105ee59d8f140dee8e4 (diff) | |
download | qemu-b4749948c1227bfdea340226beead0c8d0907eb7.zip |
qmp-commands: move 'blockdev-add' 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/block-core.json')
-rw-r--r-- | qapi/block-core.json | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/qapi/block-core.json b/qapi/block-core.json index fba32219e3..a9964c1e95 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -2830,6 +2830,45 @@ # to help with its development. # # Since: 1.7 +# +# Example: +# +# 1. +# -> { "execute": "blockdev-add", +# "arguments": { +# "options" : { "driver": "qcow2", +# "file": { "driver": "file", +# "filename": "test.qcow2" } } } } +# <- { "return": {} } +# +# 2. +# -> { "execute": "blockdev-add", +# "arguments": { +# "options": { +# "driver": "qcow2", +# "node-name": "node0", +# "discard": "unmap", +# "cache": { +# "direct": true, +# "writeback": true +# }, +# "file": { +# "driver": "file", +# "filename": "/tmp/test.qcow2" +# }, +# "backing": { +# "driver": "raw", +# "file": { +# "driver": "file", +# "filename": "/dev/fdset/4" +# } +# } +# } +# } +# } +# +# <- { "return": {} } +# ## { 'command': 'blockdev-add', 'data': 'BlockdevOptions', 'boxed': true } |