Re: [PATCH v2 06/10] block: Restructure remove_file_or_backing_child()

2021-11-12 Thread Vladimir Sementsov-Ogievskiy

11.11.2021 15:08, Hanna Reitz wrote:

As of a future patch, bdrv_replace_child_tran() will take a BdrvChild **
pointer.  Prepare for that by getting such a pointer and using it where
applicable, and (dereferenced) as a parameter for
bdrv_replace_child_tran().

Signed-off-by: Hanna Reitz


Reviewed-by: Vladimir Sementsov-Ogievskiy 

--
Best regards,
Vladimir



[PATCH v2 06/10] block: Restructure remove_file_or_backing_child()

2021-11-11 Thread Hanna Reitz
As of a future patch, bdrv_replace_child_tran() will take a BdrvChild **
pointer.  Prepare for that by getting such a pointer and using it where
applicable, and (dereferenced) as a parameter for
bdrv_replace_child_tran().

Signed-off-by: Hanna Reitz 
---
 block.c | 21 -
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/block.c b/block.c
index d668156eca..8da057f800 100644
--- a/block.c
+++ b/block.c
@@ -4887,30 +4887,33 @@ static void 
bdrv_remove_file_or_backing_child(BlockDriverState *bs,
   BdrvChild *child,
   Transaction *tran)
 {
+BdrvChild **childp;
 BdrvRemoveFilterOrCowChild *s;
 
-assert(child == bs->backing || child == bs->file);
-
 if (!child) {
 return;
 }
 
+if (child == bs->backing) {
+childp = &bs->backing;
+} else if (child == bs->file) {
+childp = &bs->file;
+} else {
+g_assert_not_reached();
+}
+
 if (child->bs) {
-bdrv_replace_child_tran(child, NULL, tran);
+bdrv_replace_child_tran(*childp, NULL, tran);
 }
 
 s = g_new(BdrvRemoveFilterOrCowChild, 1);
 *s = (BdrvRemoveFilterOrCowChild) {
 .child = child,
-.is_backing = (child == bs->backing),
+.is_backing = (childp == &bs->backing),
 };
 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
 
-if (s->is_backing) {
-bs->backing = NULL;
-} else {
-bs->file = NULL;
-}
+*childp = NULL;
 }
 
 /*
-- 
2.33.1