]> git.proxmox.com Git - qemu.git/commitdiff
qapi: Add optional field 'compressed' to ImageInfo
authorFam Zheng <famz@redhat.com>
Fri, 18 Oct 2013 03:12:44 +0000 (11:12 +0800)
committerKevin Wolf <kwolf@redhat.com>
Wed, 30 Oct 2013 17:25:48 +0000 (18:25 +0100)
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
qapi-schema.json

index 60f3fd1db63dc3e9f1e6632fa33b8cc79c32e835..add97e296dd5126150053aca7a8d856108466f89 100644 (file)
 #
 # @encrypted: #optional true if the image is encrypted
 #
+# @compressed: #optional true if the image is compressed (Since 1.7)
+#
 # @backing-filename: #optional name of the backing file
 #
 # @full-backing-filename: #optional full path of the backing file
 { 'type': 'ImageInfo',
   'data': {'filename': 'str', 'format': 'str', '*dirty-flag': 'bool',
            '*actual-size': 'int', 'virtual-size': 'int',
-           '*cluster-size': 'int', '*encrypted': 'bool',
+           '*cluster-size': 'int', '*encrypted': 'bool', '*compressed': 'bool',
            '*backing-filename': 'str', '*full-backing-filename': 'str',
            '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
            '*backing-image': 'ImageInfo',