Re: [PATCH v6 2/7] migration/multifd: put IOV initialization into compression method

2024-05-28 Thread Peter Xu
On Tue, May 28, 2024 at 01:36:38PM +, Liu, Yuan1 wrote: > > -Original Message- > > From: Peter Xu > > Sent: Tuesday, May 28, 2024 4:51 AM > > To: Liu, Yuan1 > > Cc: faro...@suse.de; qemu-devel@nongnu.org; Zou, Nanhai > > > > Subject: Re:

RE: [PATCH v6 2/7] migration/multifd: put IOV initialization into compression method

2024-05-28 Thread Liu, Yuan1
> -Original Message- > From: Peter Xu > Sent: Tuesday, May 28, 2024 4:51 AM > To: Liu, Yuan1 > Cc: faro...@suse.de; qemu-devel@nongnu.org; Zou, Nanhai > > Subject: Re: [PATCH v6 2/7] migration/multifd: put IOV initialization into > compression method > >

Re: [PATCH v6 2/7] migration/multifd: put IOV initialization into compression method

2024-05-27 Thread Peter Xu
On Mon, May 06, 2024 at 12:57:46AM +0800, Yuan Liu wrote: > Different compression methods may require different numbers of IOVs. > Based on streaming compression of zlib and zstd, all pages will be > compressed to a data block, so two IOVs are needed for packet header > and compressed data block. >

Re: [PATCH v6 2/7] migration/multifd: put IOV initialization into compression method

2024-05-10 Thread Fabiano Rosas
Yuan Liu writes: > Different compression methods may require different numbers of IOVs. > Based on streaming compression of zlib and zstd, all pages will be > compressed to a data block, so two IOVs are needed for packet header > and compressed data block. > > Signed-off-by: Yuan Liu > Reviewed-

[PATCH v6 2/7] migration/multifd: put IOV initialization into compression method

2024-05-06 Thread Yuan Liu
Different compression methods may require different numbers of IOVs. Based on streaming compression of zlib and zstd, all pages will be compressed to a data block, so two IOVs are needed for packet header and compressed data block. Signed-off-by: Yuan Liu Reviewed-by: Nanhai Zou --- migration/m