Skip to content

Commit

Permalink
Revert "block: Restructure remove_file_or_backing_child()"
Browse files Browse the repository at this point in the history
That's a preparation to previously reverted
"block: Let replace_child_noperm free children". Drop it too, we don't
need it for a new approach.

This reverts commit 562bda8.

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Reviewed-by: Hanna Reitz <hreitz@redhat.com>
Message-Id: <20220726201134.924743-12-vsementsov@yandex-team.ru>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
  • Loading branch information
Vladimir Sementsov-Ogievskiy authored and kevmw committed Oct 27, 2022
1 parent 0f0b1e2 commit a2c37a3
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions block.c
Expand Up @@ -5055,33 +5055,30 @@ 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(*childp, NULL, tran);
bdrv_replace_child_tran(child, NULL, tran);
}

s = g_new(BdrvRemoveFilterOrCowChild, 1);
*s = (BdrvRemoveFilterOrCowChild) {
.child = child,
.is_backing = (childp == &bs->backing),
.is_backing = (child == bs->backing),
};
tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);

*childp = NULL;
if (s->is_backing) {
bs->backing = NULL;
} else {
bs->file = NULL;
}
}

/*
Expand Down

0 comments on commit a2c37a3

Please sign in to comment.