Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-15 Thread Max Reitz
On 15.11.19 11:55, Vladimir Sementsov-Ogievskiy wrote: > 15.11.2019 13:52, Vladimir Sementsov-Ogievskiy wrote: >> 15.11.2019 12:32, Max Reitz wrote: >>> On 14.11.19 12:59, Vladimir Sementsov-Ogievskiy wrote: 14.11.2019 14:27, Max Reitz wrote: > On 13.11.19 19:43, Andrey Shinkevich wrote:

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-15 Thread Max Reitz
On 15.11.19 11:12, Andrey Shinkevich wrote: > > > On 15/11/2019 12:32, Max Reitz wrote: >> On 14.11.19 12:59, Vladimir Sementsov-Ogievskiy wrote: >>> 14.11.2019 14:27, Max Reitz wrote: On 13.11.19 19:43, Andrey Shinkevich wrote: > Allow writing all the data compressed through the filter

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-15 Thread Vladimir Sementsov-Ogievskiy
15.11.2019 12:32, Max Reitz wrote: > On 14.11.19 12:59, Vladimir Sementsov-Ogievskiy wrote: >> 14.11.2019 14:27, Max Reitz wrote: >>> On 13.11.19 19:43, Andrey Shinkevich wrote: Allow writing all the data compressed through the filter driver. The written data will be aligned by the

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-15 Thread Andrey Shinkevich
On 15/11/2019 12:32, Max Reitz wrote: > On 14.11.19 12:59, Vladimir Sementsov-Ogievskiy wrote: >> 14.11.2019 14:27, Max Reitz wrote: >>> On 13.11.19 19:43, Andrey Shinkevich wrote: Allow writing all the data compressed through the filter driver. The written data will be aligned by the

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-15 Thread Max Reitz
On 14.11.19 12:59, Vladimir Sementsov-Ogievskiy wrote: > 14.11.2019 14:27, Max Reitz wrote: >> On 13.11.19 19:43, Andrey Shinkevich wrote: >>> Allow writing all the data compressed through the filter driver. >>> The written data will be aligned by the cluster size. >>> Based on the QEMU current

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-14 Thread Vladimir Sementsov-Ogievskiy
14.11.2019 14:27, Max Reitz wrote: > On 13.11.19 19:43, Andrey Shinkevich wrote: >> Allow writing all the data compressed through the filter driver. >> The written data will be aligned by the cluster size. >> Based on the QEMU current implementation, that data can be written to >> unallocated

Re: [PATCH v7 1/3] block: introduce compress filter driver

2019-11-14 Thread Max Reitz
On 13.11.19 19:43, Andrey Shinkevich wrote: > Allow writing all the data compressed through the filter driver. > The written data will be aligned by the cluster size. > Based on the QEMU current implementation, that data can be written to > unallocated clusters only. May be used for a backup job.

[PATCH v7 1/3] block: introduce compress filter driver

2019-11-13 Thread Andrey Shinkevich
Allow writing all the data compressed through the filter driver. The written data will be aligned by the cluster size. Based on the QEMU current implementation, that data can be written to unallocated clusters only. May be used for a backup job. Suggested-by: Max Reitz Signed-off-by: Andrey