diff options
author | Kevin Wolf | 2018-03-28 18:29:18 +0200 |
---|---|---|
committer | Kevin Wolf | 2018-06-18 15:03:25 +0200 |
commit | 0f12264e7a41458179ad10276a7c33c72024861a (patch) | |
tree | 653cbbecadd1bb2e6f9b8c220e5a72a1285e2dce /include/block/block.h | |
parent | block: ignore_bds_parents parameter for drain functions (diff) | |
download | qemu-0f12264e7a41458179ad10276a7c33c72024861a.tar.gz qemu-0f12264e7a41458179ad10276a7c33c72024861a.tar.xz qemu-0f12264e7a41458179ad10276a7c33c72024861a.zip |
block: Allow graph changes in bdrv_drain_all_begin/end sections
bdrv_drain_all_*() used bdrv_next() to iterate over all root nodes and
did a subtree drain for each of them. This works fine as long as the
graph is static, but sadly, reality looks different.
If the graph changes so that root nodes are added or removed, we would
have to compensate for this. bdrv_next() returns each root node only
once even if it's the root node for multiple BlockBackends or for a
monitor-owned block driver tree, which would only complicate things.
The much easier and more obviously correct way is to fundamentally
change the way the functions work: Iterate over all BlockDriverStates,
no matter who owns them, and drain them individually. Compensation is
only necessary when a new BDS is created inside a drain_all section.
Removal of a BDS doesn't require any action because it's gone afterwards
anyway.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'include/block/block.h')
-rw-r--r-- | include/block/block.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/block/block.h b/include/block/block.h index 836746e4e1..b1d6fdb97a 100644 --- a/include/block/block.h +++ b/include/block/block.h @@ -421,6 +421,7 @@ BlockDriverState *bdrv_lookup_bs(const char *device, Error **errp); bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base); BlockDriverState *bdrv_next_node(BlockDriverState *bs); +BlockDriverState *bdrv_next_all_states(BlockDriverState *bs); typedef struct BdrvNextIterator { enum { |