diff options
author | Peter Lieven <pl@kamp.de> | 2013-10-24 12:06:51 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2013-11-28 10:30:51 +0100 |
commit | aa7bfbfff792538a9eeefe879fc4c629aa0b4203 (patch) | |
tree | 76e999bf142961962cbce6bbfa3a3c9888e67ca3 /block/vmdk.c | |
parent | 6faac15fa80c4c1f813d96afc13bceaa3bc5ffe7 (diff) |
block: add flags to bdrv_*_write_zeroes
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Peter Lieven <pl@kamp.de>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block/vmdk.c')
-rw-r--r-- | block/vmdk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/vmdk.c b/block/vmdk.c index a7ebd0f125..6555663a7e 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@ -1419,7 +1419,8 @@ static coroutine_fn int vmdk_co_write(BlockDriverState *bs, int64_t sector_num, static int coroutine_fn vmdk_co_write_zeroes(BlockDriverState *bs, int64_t sector_num, - int nb_sectors) + int nb_sectors, + BdrvRequestFlags flags) { int ret; BDRVVmdkState *s = bs->opaque; |