diff options
author | Alberto Garcia <berto@igalia.com> | 2018-11-12 16:00:33 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2018-12-14 11:55:01 +0100 |
commit | 6e1000a863f9dcdb4a6f51cd7cd0782f23120ba5 (patch) | |
tree | 55e2e61726db55960febfee3d3d85de06831fbae /include/block | |
parent | 0342567115feaf24bafcb25be903a9d732ac78ca (diff) | |
download | qemu-6e1000a863f9dcdb4a6f51cd7cd0782f23120ba5.zip qemu-6e1000a863f9dcdb4a6f51cd7cd0782f23120ba5.tar.gz qemu-6e1000a863f9dcdb4a6f51cd7cd0782f23120ba5.tar.bz2 |
block: Add bdrv_reopen_set_read_only()
Most callers of bdrv_reopen() only use it to switch a BlockDriverState
between read-only and read-write, so this patch adds a new function
that does just that.
We also want to get rid of the flags parameter in the bdrv_reopen()
API, so this function sets the "read-only" option and passes the
original flags (which will then be updated in bdrv_reopen_prepare()).
Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block')
-rw-r--r-- | include/block/block.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/block/block.h b/include/block/block.h index 7f5453b..382e664 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -303,6 +303,8 @@ BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue, QDict *options, int flags); int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp); int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp); +int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only, + Error **errp); int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue, Error **errp); void bdrv_reopen_commit(BDRVReopenState *reopen_state); |