Re: [PATCH] migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

2025-03-31 Thread Fabiano Rosas
Michael Tokarev writes: > 26.03.2025 19:22, Marco Cavenati wrote: >> The SEEK_CUR case in qio_channel_block_seek was incorrectly using the >> 'whence' parameter instead of the 'offset' parameter when calculating the >> new position. >> >> Fixes: 65cf200a51ddc6d0a28ecceac30dc892233cddd7 ("migrati

Re: [PATCH] migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

2025-03-28 Thread Michael Tokarev
26.03.2025 19:22, Marco Cavenati wrote: The SEEK_CUR case in qio_channel_block_seek was incorrectly using the 'whence' parameter instead of the 'offset' parameter when calculating the new position. Fixes: 65cf200a51ddc6d0a28ecceac30dc892233cddd7 ("migration: introduce a QIOChannel impl for Bloc

Re: [PATCH] migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

2025-03-26 Thread Daniel P . Berrangé
On Wed, Mar 26, 2025 at 05:22:30PM +0100, Marco Cavenati wrote: > The SEEK_CUR case in qio_channel_block_seek was incorrectly using the > 'whence' parameter instead of the 'offset' parameter when calculating the > new position. > > Fixes: 65cf200a51ddc6d0a28ecceac30dc892233cddd7 ("migration: intro

[PATCH] migration: fix SEEK_CUR offset calculation in qio_channel_block_seek

2025-03-26 Thread Marco Cavenati
The SEEK_CUR case in qio_channel_block_seek was incorrectly using the 'whence' parameter instead of the 'offset' parameter when calculating the new position. Fixes: 65cf200a51ddc6d0a28ecceac30dc892233cddd7 ("migration: introduce a QIOChannel impl for BlockDriverState VMState") Signed-off-by: Mar