]> git.proxmox.com Git - qemu.git/commitdiff
qapi-schema: Use BlockdevSnapshot type for blockdev-snapshot-sync
authorKevin Wolf <kwolf@redhat.com>
Mon, 1 Jul 2013 14:31:52 +0000 (16:31 +0200)
committerLuiz Capitulino <lcapitulino@redhat.com>
Wed, 10 Jul 2013 17:39:38 +0000 (13:39 -0400)
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>
qapi-schema.json

index 5c32528a1c7c0c2a4ca23533cc9eef5360835073..a90aeb1d917fd4484fa63fc1c4b070de0fe5c2ed 100644 (file)
 #
 # 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
 # Since 0.14.0
 ##
 { 'command': 'blockdev-snapshot-sync',
-  'data': { 'device': 'str', 'snapshot-file': 'str', '*format': 'str',
-            '*mode': 'NewImageMode'} }
+  'data': 'BlockdevSnapshot' }
 
 ##
 # @human-monitor-command: