]> git.proxmox.com Git - mirror_qemu.git/commit - blockdev.c
block: Acquire AioContexts during bdrv_reopen_multiple()
authorKevin Wolf <kwolf@redhat.com>
Thu, 8 Jul 2021 11:47:06 +0000 (13:47 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 9 Jul 2021 11:19:11 +0000 (13:19 +0200)
commit6cf42ca2f9782f0335abf3e6b611fbced40cd099
tree406d3b9860c22689578a6525d6e7805a6231a2aa
parentab5b522879e2a7880418cbd29340675e5427572f
block: Acquire AioContexts during bdrv_reopen_multiple()

As the BlockReopenQueue can contain nodes in multiple AioContexts, only
one of which may be locked when AIO_WAIT_WHILE() can be called, we can't
let the caller lock the right contexts. Instead, individually lock the
AioContext of a single node when iterating the queue.

Reintroduce bdrv_reopen() as a wrapper for reopening a single node that
drains the node and temporarily drops the AioContext lock for
bdrv_reopen_multiple().

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20210708114709.206487-4-kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
block.c
block/replication.c
blockdev.c
include/block/block.h
qemu-io-cmds.c