[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/6] block.c: bdrv_replace_child_noperm: first remove the child,
From: |
Emanuele Giuseppe Esposito |
Subject: |
[PATCH 2/6] block.c: bdrv_replace_child_noperm: first remove the child, and then call ->detach() |
Date: |
Tue, 8 Feb 2022 10:36:51 -0500 |
Doing the opposite can make ->detach() (more precisely
bdrv_unapply_subtree_drain() in bdrv_child_cb_detach) undo the subtree_drain
just performed to protect the removal of the child from the graph,
thus making the fully-enabled assert_bdrv_graph_writable fail.
Note that assert_bdrv_graph_writable is not yet fully enabled.
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
---
block.c | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/block.c b/block.c
index 4551eba2aa..ec346a7e2e 100644
--- a/block.c
+++ b/block.c
@@ -2854,14 +2854,16 @@ static void bdrv_replace_child_noperm(BdrvChild
**childp,
}
if (old_bs) {
- /* Detach first so that the recursive drain sections coming from @child
+ assert_bdrv_graph_writable(old_bs);
+ QLIST_REMOVE(child, next_parent);
+ /*
+ * Detach first so that the recursive drain sections coming from @child
* are already gone and we only end the drain sections that came from
- * elsewhere. */
+ * elsewhere.
+ */
if (child->klass->detach) {
child->klass->detach(child);
}
- assert_bdrv_graph_writable(old_bs);
- QLIST_REMOVE(child, next_parent);
}
child->bs = new_bs;
--
2.31.1
[PATCH 2/6] block.c: bdrv_replace_child_noperm: first remove the child, and then call ->detach(),
Emanuele Giuseppe Esposito <=
[PATCH 4/6] test-bdrv-drain.c: adapt test to the coming subtree drains, Emanuele Giuseppe Esposito, 2022/02/08
[PATCH 6/6] jobs: ensure sleep in job_sleep_ns is fully performed, Emanuele Giuseppe Esposito, 2022/02/08
[PATCH 3/6] block.c: bdrv_replace_child_noperm: first call ->attach(), and then add child, Emanuele Giuseppe Esposito, 2022/02/08