diff options
author | Marc-André Lureau | 2016-06-23 14:56:51 +0200 |
---|---|---|
committer | Markus Armbruster | 2017-01-16 09:19:46 +0100 |
commit | 7f3c6f22daf758ce98d6f727cf4195770504454f (patch) | |
tree | 2ec9194469bb725caaf52136756e0b0232921443 /docs | |
parent | qmp-commands: move 'blockdev-open-tray' doc to schema (diff) | |
download | qemu-7f3c6f22daf758ce98d6f727cf4195770504454f.tar.gz qemu-7f3c6f22daf758ce98d6f727cf4195770504454f.tar.xz qemu-7f3c6f22daf758ce98d6f727cf4195770504454f.zip |
qmp-commands: move 'blockdev-close-tray' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/qmp-commands.txt | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 433454c3e9..da8198be85 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -343,35 +343,6 @@ named schema entities. Entities are commands, events and various types. See docs/qapi-code-gen.txt for information on their structure and intended use. -blockdev-close-tray -------------------- - -Closes a block device's tray. If there is a block driver state tree associated -with the block device (which is currently ejected), that tree will be loaded as -the medium. - -If the tray was already closed before, this will be a no-op. - -Arguments: - -- "device": block device name (deprecated, use @id instead) - (json-string, optional) -- "id": the name or QOM path of the guest device (json-string, optional) - -Example: - --> { "execute": "blockdev-close-tray", - "arguments": { "id": "ide0-1-0" } } - -<- { "timestamp": { "seconds": 1418751345, - "microseconds": 272147 }, - "event": "DEVICE_TRAY_MOVED", - "data": { "device": "ide1-cd0", - "id": "ide0-1-0", - "tray-open": false } } - -<- { "return": {} } - x-blockdev-remove-medium ------------------------ |