Re: [PATCH v4 01/11] block/io: bring request check to bdrv_co_{read,write}v_vmstate

2021-05-11 Thread Eric Blake
On 3/24/21 3:51 PM, Vladimir Sementsov-Ogievskiy wrote: > There are only two drivers supporting vmstate: qcow2 and sheepdog. > Sheepdog is deprecated. In qcow2 these requests go through > .bdrv_co_p{read,write}v_part handlers. > > So, let's do our basic check for the request on vmstate generic >

[PATCH v4 01/11] block/io: bring request check to bdrv_co_{read, write}v_vmstate

2021-03-24 Thread Vladimir Sementsov-Ogievskiy via
There are only two drivers supporting vmstate: qcow2 and sheepdog. Sheepdog is deprecated. In qcow2 these requests go through .bdrv_co_p{read,write}v_part handlers. So, let's do our basic check for the request on vmstate generic handlers. Signed-off-by: Vladimir Sementsov-Ogievskiy ---