Am 25.05.2016 um 00:25 hat Eric Blake geschrieben: > Another step on our continuing quest to switch to byte-based > interfaces. > > Signed-off-by: Eric Blake <ebl...@redhat.com> > --- > block/gluster.c | 15 +++++++-------- > 1 file changed, 7 insertions(+), 8 deletions(-) > > diff --git a/block/gluster.c b/block/gluster.c > index a8aaacf..15aff4b 100644 > --- a/block/gluster.c > +++ b/block/gluster.c > @@ -454,14 +454,13 @@ static void qemu_gluster_reopen_abort(BDRVReopenState > *state) > } > > #ifdef CONFIG_GLUSTERFS_ZEROFILL > -static coroutine_fn int qemu_gluster_co_write_zeroes(BlockDriverState *bs, > - int64_t sector_num, int nb_sectors, BdrvRequestFlags flags) > +static coroutine_fn int qemu_gluster_co_pwrite_zeroes(BlockDriverState *bs, > + int64_t offset, int count, BdrvRequestFlags flags) > { > int ret; > GlusterAIOCB acb; > BDRVGlusterState *s = bs->opaque; > - off_t size = nb_sectors * BDRV_SECTOR_SIZE; > - off_t offset = sector_num * BDRV_SECTOR_SIZE; > + off_t size = count;
This variable isn't really necessary. Up to you whether you want to change it. Reviewed-by: Kevin Wolf <kw...@redhat.com>