Re: [PATCH v2 10/29] io: Add generic pwritev/preadv interface

2023-10-24 Thread Fabiano Rosas
Daniel P. Berrangé writes: > On Mon, Oct 23, 2023 at 05:35:49PM -0300, Fabiano Rosas wrote: >> From: Nikolay Borisov >> >> Introduce basic pwritev/preadv support in the generic channel layer. >> Specific implementation will follow for the file channel as this is >> required in order to support

Re: [PATCH v2 10/29] io: Add generic pwritev/preadv interface

2023-10-24 Thread Daniel P . Berrangé
On Mon, Oct 23, 2023 at 05:35:49PM -0300, Fabiano Rosas wrote: > From: Nikolay Borisov > > Introduce basic pwritev/preadv support in the generic channel layer. > Specific implementation will follow for the file channel as this is > required in order to support migration streams with fixed locatio

[PATCH v2 10/29] io: Add generic pwritev/preadv interface

2023-10-23 Thread Fabiano Rosas
From: Nikolay Borisov Introduce basic pwritev/preadv support in the generic channel layer. Specific implementation will follow for the file channel as this is required in order to support migration streams with fixed location of each ram page. Signed-off-by: Nikolay Borisov Signed-off-by: Fabia