From 720150f3189648712fc50efd1cca0a39076722a9 Mon Sep 17 00:00:00 2001 From: Paolo Bonzini Date: Thu, 27 Oct 2016 12:49:02 +0200 Subject: block: prepare bdrv_reopen_multiple to release AioContext After the next patch bdrv_drain_all will have to be called without holding any AioContext. Prepare to do this by adding an AioContext argument to bdrv_reopen_multiple. Reviewed-by: Stefan Hajnoczi Reviewed-by: Fam Zheng Signed-off-by: Paolo Bonzini Message-Id: <1477565348-5458-15-git-send-email-pbonzini@redhat.com> Signed-off-by: Fam Zheng --- block/replication.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'block/replication.c') diff --git a/block/replication.c b/block/replication.c index 3bd83565b2..02aeaaf7d0 100644 --- a/block/replication.c +++ b/block/replication.c @@ -360,7 +360,8 @@ static void reopen_backing_file(BlockDriverState *bs, bool writable, } if (reopen_queue) { - bdrv_reopen_multiple(reopen_queue, &local_err); + bdrv_reopen_multiple(bdrv_get_aio_context(bs), + reopen_queue, &local_err); error_propagate(errp, local_err); } } -- cgit v1.2.1