diff options
author | Marc-André Lureau | 2016-06-23 14:04:28 +0200 |
---|---|---|
committer | Markus Armbruster | 2017-01-16 09:19:45 +0100 |
commit | b4039d8d23a6729c0206b3b3b14a9cd0bd618b69 (patch) | |
tree | 285ffd6a2cabf64d3142090c2c90305fc3073d6d /docs | |
parent | qmp-commands: move 'block_resize' doc to schema (diff) | |
download | qemu-b4039d8d23a6729c0206b3b3b14a9cd0bd618b69.tar.gz qemu-b4039d8d23a6729c0206b3b3b14a9cd0bd618b69.tar.xz qemu-b4039d8d23a6729c0206b3b3b14a9cd0bd618b69.zip |
qmp-commands: move 'blockdev-snapshot-sync' 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 | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/docs/qmp-commands.txt b/docs/qmp-commands.txt index 5302c80165..c857d39c46 100644 --- a/docs/qmp-commands.txt +++ b/docs/qmp-commands.txt @@ -402,33 +402,6 @@ Example: "name": "bitmap0" } } <- { "return": {} } -blockdev-snapshot-sync ----------------------- - -Synchronous snapshot of a block device. snapshot-file specifies the -target of the new image. If the file exists, or if it is a device, the -snapshot will be created in the existing file/device. If does not -exist, a new file will be created. format specifies the format of the -snapshot image, default is qcow2. - -Arguments: - -- "device": device name to snapshot (json-string) -- "node-name": graph node name to snapshot (json-string) -- "snapshot-file": name of new image file (json-string) -- "snapshot-node-name": graph node name of the new snapshot (json-string) -- "mode": whether and how QEMU should create the snapshot file - (NewImageMode, optional, default "absolute-paths") -- "format": format of new image (json-string, optional) - -Example: - --> { "execute": "blockdev-snapshot-sync", "arguments": { "device": "ide-hd0", - "snapshot-file": - "/some/place/my-image", - "format": "qcow2" } } -<- { "return": {} } - blockdev-snapshot ----------------- Since 2.5 |