Re: [PATCH v10 2/2] docs: qcow2: introduce compression type feature

2020-01-21 Thread Max Reitz
On 20.01.20 20:46, Eric Blake wrote: > On 1/20/20 11:13 AM, Vladimir Sementsov-Ogievskiy wrote: >> The patch add new additional field to qcow2 header: compression_type, > > s/add/adds a/ > s/to/to the/ > >> which specifies compression type. If field is absent or zero, default >> compression type

Re: [PATCH v10 2/2] docs: qcow2: introduce compression type feature

2020-01-21 Thread Vladimir Sementsov-Ogievskiy
20.01.2020 22:46, Eric Blake wrote: > On 1/20/20 11:13 AM, Vladimir Sementsov-Ogievskiy wrote: >> The patch add new additional field to qcow2 header: compression_type, > > s/add/adds a/ > s/to/to the/ > >> which specifies compression type. If field is absent or zero, default >> compression type i

Re: [PATCH v10 2/2] docs: qcow2: introduce compression type feature

2020-01-20 Thread Eric Blake
On 1/20/20 11:13 AM, Vladimir Sementsov-Ogievskiy wrote: The patch add new additional field to qcow2 header: compression_type, s/add/adds a/ s/to/to the/ which specifies compression type. If field is absent or zero, default compression type is set: ZLIB, which corresponds to current behavior.

[PATCH v10 2/2] docs: qcow2: introduce compression type feature

2020-01-20 Thread Vladimir Sementsov-Ogievskiy
The patch add new additional field to qcow2 header: compression_type, which specifies compression type. If field is absent or zero, default compression type is set: ZLIB, which corresponds to current behavior. New compression type (ZSTD) is to be added in further commit. Suggested-by: Denis Plotn