summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2013-07-01 16:31:52 +0200
committerLuiz Capitulino <lcapitulino@redhat.com>2013-07-10 13:39:38 -0400
commit852ad1a900a4ae23514e1a53c86632543592c31b (patch)
treef7ace53160e7cbe7007df36e416518932a615c77
parentb35284ea207a0ae1c0b162344cdef2a83304befc (diff)
downloadfocaccia-qemu-852ad1a900a4ae23514e1a53c86632543592c31b.tar.gz
focaccia-qemu-852ad1a900a4ae23514e1a53c86632543592c31b.zip
qapi-schema: Use BlockdevSnapshot type for blockdev-snapshot-sync
We don't have to duplicate the definition any more now that we may refer
to a type instead.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r--qapi-schema.json14
1 files changed, 2 insertions, 12 deletions
diff --git a/qapi-schema.json b/qapi-schema.json
index 5c32528a1c..a90aeb1d91 100644
--- a/qapi-schema.json
+++ b/qapi-schema.json
@@ -1709,16 +1709,7 @@
 #
 # Generates a synchronous snapshot of a block device.
 #
-# @device:  the name of the device to generate the snapshot from.
-#
-# @snapshot-file: 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: #optional the format of the snapshot image, default is 'qcow2'.
-#
-# @mode: #optional whether and how QEMU should create a new image, default is
-#        'absolute-paths'.
+# For the arguments, see the documentation of BlockdevSnapshot.
 #
 # Returns: nothing on success
 #          If @device is not a valid block device, DeviceNotFound
@@ -1726,8 +1717,7 @@
 # Since 0.14.0
 ##
 { 'command': 'blockdev-snapshot-sync',
-  'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
-            '*mode': 'NewImageMode'} }
+  'data': 'BlockdevSnapshot' }
 
 ##
 # @human-monitor-command: