[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-block] [PATCH V2 4/8] qemu-img: add documentation for compress set
From: |
Peter Lieven |
Subject: |
[Qemu-block] [PATCH V2 4/8] qemu-img: add documentation for compress settings |
Date: |
Thu, 29 Jun 2017 12:57:07 +0200 |
Signed-off-by: Peter Lieven <address@hidden>
---
qemu-img.texi | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/qemu-img.texi b/qemu-img.texi
index 5b925ec..430f0b9 100644
--- a/qemu-img.texi
+++ b/qemu-img.texi
@@ -621,6 +621,27 @@ file which is COW and has data blocks already, it couldn't
be changed to NOCOW
by setting @code{nocow=on}. One can issue @code{lsattr filename} to check if
the NOCOW flag is set or not (Capital 'C' is NOCOW flag).
address@hidden compress.format
+Defines which compression algorithm is should be used for compressed clusters.
+The following options are available if support for the respective libraries
+has been enabled at compile time:
+
+ zlib Uses standard zlib compression
+
+The compression algorithm can only be defined at image create time and cannot
+be changed later.
+
+Note: defining a compression format will result in the compression format
+ extension being written to the Qcow2 image. Older versions of QEMU will
+ not be able to open images with this extension.
+
address@hidden compress.level
+Defines which compression level is used for the selected compression format.
+The default of @code{compress.level=0} will use the default compression level
+for the format. Alternate values range from 1 for fastest compression to
+x for the best compression (x max vary between compression formats). This is
+always a trade in of compression speed against compressed size.
+
@end table
@item Other
--
1.9.1
- [Qemu-block] [PATCH V2 0/8] add Qcow2 compress format extension, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 8/8] block/qcow2: add lzo compress format, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 1/8] docs: add compress format extension to qcow2 spec, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 2/8] qapi: add compress parameters to Qcow2 Blockdev options, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 3/8] block/qcow2: parse compress create options, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 7/8] block/qcow2: start using the compress format extension, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 6/8] block/qcow2: optimize qcow2_co_pwritev_compressed, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 5/8] block/qcow2: read and write the compress format extension, Peter Lieven, 2017/06/29
- [Qemu-block] [PATCH V2 4/8] qemu-img: add documentation for compress settings,
Peter Lieven <=