Re: [Qemu-devel] [PATCH v2 07/17] cloop: Implement .bdrv_co_preadv() interface
On 04/28/2016 07:16 AM, Kevin Wolf wrote: > Signed-off-by: Kevin Wolf > --- > block/cloop.c | 38 ++ > 1 file changed, 22 insertions(+), 16 deletions(-) > > for (i = 0; i < nb_sectors; i++) { > +void *data; > uint32_t sector_offset_in_bl
[Qemu-devel] [PATCH v2 07/17] cloop: Implement .bdrv_co_preadv() interface
Signed-off-by: Kevin Wolf --- block/cloop.c | 38 ++ 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/block/cloop.c b/block/cloop.c index a84f140..fc1ca3a 100644 --- a/block/cloop.c +++ b/block/cloop.c @@ -66,6 +66,7 @@ static int cloop_open(Bloc