diff options
| author | Alberto Garcia | 2019-03-12 17:48:50 +0100 |
|---|---|---|
| committer | Kevin Wolf | 2019-03-12 20:30:14 +0100 |
| commit | 5019aece2a1827f1c5fafdd8ea76a57c3a78dd89 (patch) | |
| tree | 673ea6b679a51af13f80a35ab7448b938eb37005 /block | |
| parent | block: Add bdrv_reset_options_allowed() (diff) | |
| download | qemu-5019aece2a1827f1c5fafdd8ea76a57c3a78dd89.tar.gz qemu-5019aece2a1827f1c5fafdd8ea76a57c3a78dd89.tar.xz qemu-5019aece2a1827f1c5fafdd8ea76a57c3a78dd89.zip | |
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); } |
