diff options
author | Alberto Garcia <berto@igalia.com> | 2019-03-12 18:48:50 +0200 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2019-03-12 20:30:14 +0100 |
commit | 5019aece2a1827f1c5fafdd8ea76a57c3a78dd89 (patch) | |
tree | 673ea6b679a51af13f80a35ab7448b938eb37005 /block | |
parent | faf116b43897e9b4e7e87352610eb687a35c0e04 (diff) |
block: Remove the AioContext parameter from bdrv_reopen_multiple()
This parameter has been unused since 1a63a907507fbbcfaee3f622907ec244b
Signed-off-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/replication.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/block/replication.c b/block/replication.c index a2f3590310..b95bd28802 100644 --- a/block/replication.c +++ b/block/replication.c @@ -385,8 +385,7 @@ static void reopen_backing_file(BlockDriverState *bs, bool writable, } if (reopen_queue) { - bdrv_reopen_multiple(bdrv_get_aio_context(bs), - reopen_queue, &local_err); + bdrv_reopen_multiple(reopen_queue, &local_err); error_propagate(errp, local_err); } |