From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>, John Snow <jsnow@redhat.com>,
qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>
Subject: [PATCH 2/3] mirror: Freeze backing chain for sync=top
Date: Wed, 2 Sep 2020 18:48:40 +0200 [thread overview]
Message-ID: <20200902164841.214948-3-mreitz@redhat.com> (raw)
In-Reply-To: <20200902164841.214948-1-mreitz@redhat.com>
Reported-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
---
block/mirror.c | 20 +++++++++++++++++---
1 file changed, 17 insertions(+), 3 deletions(-)
diff --git a/block/mirror.c b/block/mirror.c
index 11ebffdf99..27422ab7a5 100644
--- a/block/mirror.c
+++ b/block/mirror.c
@@ -649,8 +649,8 @@ static int mirror_exit_common(Job *job)
src = mirror_top_bs->backing->bs;
target_bs = blk_bs(s->target);
- if (bdrv_chain_contains(src, target_bs)) {
- bdrv_unfreeze_backing_chain(mirror_top_bs, target_bs);
+ if (s->base) {
+ bdrv_unfreeze_backing_chain(mirror_top_bs, s->base);
}
bdrv_release_dirty_bitmap(s->dirty_bitmap);
@@ -1780,8 +1780,22 @@ static BlockJob *mirror_start_job(
goto fail;
}
}
+ }
+
+ if (s->base) {
+ /*
+ * For active commit or mirror with sync=top, we need to
+ * freeze the backing chain down to the base, because we keep
+ * pointers to it and its overlay. For other cases (mirror
+ * with sync=full or sync=none), we do not, so there is no
+ * need to freeze any part of the chain.
+ * (s->base is non-NULL only in these cases.)
+ */
+ if (target_is_backing) {
+ assert(s->base == target);
+ }
- if (bdrv_freeze_backing_chain(mirror_top_bs, target, errp) < 0) {
+ if (bdrv_freeze_backing_chain(mirror_top_bs, s->base, errp) < 0) {
goto fail;
}
}
--
2.26.2
next prev parent reply other threads:[~2020-09-02 16:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-09-02 16:48 [PATCH 0/3] mirror: Freeze backing chain for sync=top Max Reitz
2020-09-02 16:48 ` [PATCH 1/3] mirror: Set s->base_overlay only if s->base is set Max Reitz
2020-09-02 16:48 ` Max Reitz [this message]
2020-09-02 17:00 ` [PATCH 2/3] mirror: Freeze backing chain for sync=top Max Reitz
2020-09-02 16:48 ` [PATCH 3/3] iotests/041: x-blockdev-reopen during mirror Max Reitz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200902164841.214948-3-mreitz@redhat.com \
--to=mreitz@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).