From: Peter Lieven <pl@kamp.de>
To: qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org, kwolf@redhat.com, lersek@redhat.com,
den@openvz.org, mreitz@redhat.com, eblake@redhat.com,
berrange@redhat.com, Peter Lieven <pl@kamp.de>
Subject: [Qemu-devel] [PATCH V3 2/9] qapi/block-core: add Qcow2Compress parameters
Date: Fri, 14 Jul 2017 11:56:38 +0200 [thread overview]
Message-ID: <1500026205-15542-3-git-send-email-pl@kamp.de> (raw)
In-Reply-To: <1500026205-15542-1-git-send-email-pl@kamp.de>
Signed-off-by: Peter Lieven <pl@kamp.de>
---
qapi/block-core.json | 38 ++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+)
diff --git a/qapi/block-core.json b/qapi/block-core.json
index c437aa5..d6703a2 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -2447,6 +2447,44 @@
'*encrypt': 'BlockdevQcow2Encryption' } }
##
+# @Qcow2CompressFormat:
+# @zlib: standard zlib deflate compression
+#
+# Since: 2.10
+##
+{ 'enum': 'Qcow2CompressFormat',
+ 'data': [ 'zlib' ] }
+
+##
+# @Qcow2CompressZLib:
+#
+# Since: 2.10
+##
+{ 'struct': 'Qcow2CompressZLib',
+ 'data': { } }
+
+##
+# @Qcow2Compress:
+#
+# Specifies the compression format and compression level that should
+# be used for compressed Qcow2 clusters.
+#
+# @format: specifies the compression format to use. (defaults to zlib)
+#
+# @level: specifies the compression level. 0 = default compression,
+# 1 = fastest compression, x = highest compresion (x may very between
+# different compression formats)
+#
+# Since: 2.10
+##
+{ 'union': 'Qcow2Compress',
+ 'base': { 'format': 'Qcow2CompressFormat',
+ '*level': 'uint8' },
+ 'discriminator': 'format',
+ 'data': { 'zlib': 'Qcow2CompressZLib' } }
+
+
+##
# @BlockdevOptionsSsh:
#
# @server: host address
--
1.9.1
next prev parent reply other threads:[~2017-07-14 9:57 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-14 9:56 [Qemu-devel] [PATCH V3 0/9] add Qcow2 compress format extension Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 1/9] specs/qcow2: add " Peter Lieven
2017-07-14 14:52 ` Eric Blake
2017-07-14 21:56 ` Peter Lieven
2017-07-14 9:56 ` Peter Lieven [this message]
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 3/9] block/qcow2: parse compress create options Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 4/9] qemu-img: add documentation for compress settings Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 5/9] block/qcow2: read and write the compress format extension Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 6/9] block/qcow2: simplify ret usage in qcow2_create Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 7/9] block/qcow2: optimize qcow2_co_pwritev_compressed Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 8/9] block/qcow2: start using the compress format extension Peter Lieven
2017-07-14 9:56 ` [Qemu-devel] [PATCH V3 9/9] block/qcow2: add lzo compress format Peter Lieven
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1500026205-15542-3-git-send-email-pl@kamp.de \
--to=pl@kamp.de \
--cc=berrange@redhat.com \
--cc=den@openvz.org \
--cc=eblake@redhat.com \
--cc=kwolf@redhat.com \
--cc=lersek@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).