diff options
author | Fam Zheng <famz@redhat.com> | 2013-10-18 11:12:44 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-10-30 18:25:48 +0100 |
commit | cbe82d7fb32e5d8e76434671d50853df5f50d560 (patch) | |
tree | 5c045a4cdf65d4a2e05b7db3fb0b296f47098bcf /qapi-schema.json | |
parent | 7890111b642e8e03430c3bf8bd6cedee26cec4fe (diff) | |
download | qemu-cbe82d7fb32e5d8e76434671d50853df5f50d560.tar.gz qemu-cbe82d7fb32e5d8e76434671d50853df5f50d560.tar.bz2 qemu-cbe82d7fb32e5d8e76434671d50853df5f50d560.zip |
qapi: Add optional field 'compressed' to ImageInfo
Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index 60f3fd1db6..add97e296d 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -256,6 +256,8 @@ # # @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 @@ -276,7 +278,7 @@ { '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', |