From: Stefan Hajnoczi Date: Thu, 9 Mar 2023 19:08:51 +0000 (-0500) Subject: block: convert blk_exp_close_all_type() to AIO_WAIT_WHILE_UNLOCKED() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e5568a6603073884fb66e71bd133f082de763af9;p=qemu.git block: convert blk_exp_close_all_type() to AIO_WAIT_WHILE_UNLOCKED() There is no change in behavior. Switch to AIO_WAIT_WHILE_UNLOCKED() instead of AIO_WAIT_WHILE() to document that this code has already been audited and converted. The AioContext argument is already NULL so aio_context_release() is never called anyway. Reviewed-by: Philippe Mathieu-Daudé Tested-by: Philippe Mathieu-Daudé Reviewed-by: Kevin Wolf Signed-off-by: Stefan Hajnoczi Message-Id: <20230309190855.414275-3-stefanha@redhat.com> Reviewed-by: Wilfred Mallawa Signed-off-by: Kevin Wolf --- diff --git a/block/export/export.c b/block/export/export.c index 28a91c9c42..e3fee60611 100644 --- a/block/export/export.c +++ b/block/export/export.c @@ -306,7 +306,7 @@ void blk_exp_close_all_type(BlockExportType type) blk_exp_request_shutdown(exp); } - AIO_WAIT_WHILE(NULL, blk_exp_has_type(type)); + AIO_WAIT_WHILE_UNLOCKED(NULL, blk_exp_has_type(type)); } void blk_exp_close_all(void)