diff options
author | Stefan Hajnoczi <stefanha@redhat.com> | 2023-03-09 14:08:50 -0500 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2023-04-25 13:17:23 +0200 |
commit | d5eab432b0eb3edfe63a89dd1e3c5c946b92afaa (patch) | |
tree | b1c9cf71d651b4c5055a75250ee3492dc1d38717 /block | |
parent | 407ae2ae0714be309808a10997c248521b184006 (diff) | |
download | qemu-d5eab432b0eb3edfe63a89dd1e3c5c946b92afaa.zip qemu-d5eab432b0eb3edfe63a89dd1e3c5c946b92afaa.tar.gz qemu-d5eab432b0eb3edfe63a89dd1e3c5c946b92afaa.tar.bz2 |
block: don't acquire AioContext lock in bdrv_drain_all()
There is no need for the AioContext lock in bdrv_drain_all() because
nothing in AIO_WAIT_WHILE() needs the lock and the condition is atomic.
AIO_WAIT_WHILE_UNLOCKED() has no use for the AioContext parameter other
than performing a check that is nowadays already done by the
GLOBAL_STATE_CODE()/IO_CODE() macros. Set the ctx argument to NULL here
to help us keep track of all converted callers. Eventually all callers
will have been converted and then the argument can be dropped entirely.
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-Id: <20230309190855.414275-2-stefanha@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Wilfred Mallawa <wilfred.mallawa@wdc.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/block-backend.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/block/block-backend.c b/block/block-backend.c index 47e006c..fc530de 100644 --- a/block/block-backend.c +++ b/block/block-backend.c @@ -1874,14 +1874,8 @@ void blk_drain_all(void) bdrv_drain_all_begin(); while ((blk = blk_all_next(blk)) != NULL) { - AioContext *ctx = blk_get_aio_context(blk); - - aio_context_acquire(ctx); - /* We may have -ENOMEDIUM completions in flight */ - AIO_WAIT_WHILE(ctx, qatomic_read(&blk->in_flight) > 0); - - aio_context_release(ctx); + AIO_WAIT_WHILE_UNLOCKED(NULL, qatomic_read(&blk->in_flight) > 0); } bdrv_drain_all_end(); |