From db5a450f4c4b6f409573366eea87512ab3043dbe Mon Sep 17 00:00:00 2001 From: Max Reitz Date: Wed, 6 Nov 2013 16:53:42 +0100 Subject: [PATCH 85/87] qapi: Add optional field 'compressed' to ImageInfo RH-Author: Max Reitz Message-id: <1383756824-6921-20-git-send-email-mreitz@redhat.com> Patchwork-id: 55574 O-Subject: [RHEL-7.0 qemu-kvm PATCH v2 19/21] qapi: Add optional field 'compressed' to ImageInfo Bugzilla: 980771 RH-Acked-by: Kevin Wolf RH-Acked-by: Fam Zheng RH-Acked-by: Jeffrey Cody From: Fam Zheng BZ: 980771 Signed-off-by: Fam Zheng Reviewed-by: Eric Blake Signed-off-by: Kevin Wolf (cherry picked from commit cbe82d7fb32e5d8e76434671d50853df5f50d560) Signed-off-by: Max Reitz --- qapi-schema.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) Signed-off-by: Miroslav Rezanina --- qapi-schema.json | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/qapi-schema.json b/qapi-schema.json index 3c00ddd..99b05b7 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', -- 1.7.1