Re: [Qemu-devel] [Qemu-stable] [PATCH v5 3/8] mirror: Do zero write on target if sectors not allocated

2015-05-25 Thread Fam Zheng
On Tue, 05/26 07:53, Peter Lieven wrote: > Am 26.05.2015 um 05:36 schrieb Fam Zheng: > >If guest discards a source cluster, mirroring with bdrv_aio_readv is > >overkill. > >Some protocols do zero upon discard, where it's best to use > >bdrv_aio_write_zeroes, otherwise, bdrv_aio_discard will be eno

Re: [Qemu-devel] [Qemu-stable] [PATCH v5 3/8] mirror: Do zero write on target if sectors not allocated

2015-05-25 Thread Peter Lieven
Am 26.05.2015 um 05:36 schrieb Fam Zheng: If guest discards a source cluster, mirroring with bdrv_aio_readv is overkill. Some protocols do zero upon discard, where it's best to use bdrv_aio_write_zeroes, otherwise, bdrv_aio_discard will be enough. Signed-off-by: Fam Zheng --- block/mirror.c |