diff options
author | Kevin Wolf <kwolf@redhat.com> | 2014-07-16 17:48:16 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2014-07-18 13:18:43 +0100 |
commit | 3baca891391afba154e250f5a108c6bab6c92cf9 (patch) | |
tree | bebe305b287eeab8e5e6a5d90a4ff07ad75110b8 /block/qcow2.c | |
parent | 12ac6d3db721a288c8953c5c253230aa0949a0e1 (diff) | |
download | qemu-3baca891391afba154e250f5a108c6bab6c92cf9.zip |
block: Add Error argument to bdrv_refresh_limits()
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block/qcow2.c')
-rw-r--r-- | block/qcow2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/block/qcow2.c b/block/qcow2.c index e1631d5086..1e3ab6bd02 100644 --- a/block/qcow2.c +++ b/block/qcow2.c @@ -866,13 +866,11 @@ static int qcow2_open(BlockDriverState *bs, QDict *options, int flags, return ret; } -static int qcow2_refresh_limits(BlockDriverState *bs) +static void qcow2_refresh_limits(BlockDriverState *bs, Error **errp) { BDRVQcowState *s = bs->opaque; bs->bl.write_zeroes_alignment = s->cluster_sectors; - - return 0; } static int qcow2_set_key(BlockDriverState *bs, const char *key) |