From: Jeff Cody <jcody@redhat.com>
To: Fam Zheng <famz@redhat.com>
Cc: kwolf@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com
Subject: Re: [Qemu-devel] [PATCH 2/2] block: resize backing image during active layer commit, if needed
Date: Fri, 17 Jan 2014 11:29:31 -0500 [thread overview]
Message-ID: <20140117162931.GC1485@localhost.localdomain> (raw)
In-Reply-To: <20140115055829.GA25475@T430.nay.redhat.com>
On Wed, Jan 15, 2014 at 01:58:29PM +0800, Fam Zheng wrote:
> On Mon, 01/13 15:18, Jeff Cody wrote:
> > If the top image to commit is the active layer, and also larger than
> > the base image, then an I/O error will likely be returned during
> > block-commit.
> >
> > For instance, if we have a base image with a virtual size 10G, and a
> > active layer image of size 20G, then committing the snapshot via
> > 'block-commit' will likely fail.
> >
> > This will automatically attempt to resize the base image, if the
> > active layer image to be committed is larger.
> >
> > Signed-off-by: Jeff Cody <jcody@redhat.com>
> > ---
> > block/mirror.c | 13 +++++++++++++
> > 1 file changed, 13 insertions(+)
> >
> > diff --git a/block/mirror.c b/block/mirror.c
> > index 2932bab..c4e42fa 100644
> > --- a/block/mirror.c
> > +++ b/block/mirror.c
> > @@ -630,9 +630,22 @@ void commit_active_start(BlockDriverState *bs, BlockDriverState *base,
> > BlockDriverCompletionFunc *cb,
> > void *opaque, Error **errp)
> > {
> > + int64_t length;
> > if (bdrv_reopen(base, bs->open_flags, errp)) {
> > return;
> > }
>
> "base" is already reopened here.
>
> > +
> > + length = bdrv_getlength(bs);
> > +
> > + if (length > bdrv_getlength(base)) {
> > + if (bdrv_truncate(base, length) < 0) {
> > + error_setg(errp, "Top image %s is larger than base image %s, and "
> > + "resize of base image failed.",
> > + bs->filename, base->filename);
> > + return;
>
> Should we restore open flags for base?
>
Good catch. Yes, I think we should; and I think we should also do it
after the call to mirror_start_job, if errp is set. I'll add that in
for v2.
> > + }
> > + }
> > +
> > bdrv_ref(base);
> > mirror_start_job(bs, base, speed, 0, 0,
> > on_error, on_error, cb, opaque, errp,
> > --
> > 1.8.3.1
> >
next prev parent reply other threads:[~2014-01-17 16:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-13 20:18 [Qemu-devel] [PATCH 0/2] block: commits of snapshots larger than backing files Jeff Cody
2014-01-13 20:18 ` [Qemu-devel] [PATCH 1/2] block: resize backing file image during offline commit, if necessary Jeff Cody
2014-01-17 7:23 ` Stefan Hajnoczi
2014-01-13 20:18 ` [Qemu-devel] [PATCH 2/2] block: resize backing image during active layer commit, if needed Jeff Cody
2014-01-15 5:58 ` Fam Zheng
2014-01-17 16:29 ` Jeff Cody [this message]
2014-01-17 7:17 ` [Qemu-devel] [PATCH 0/2] block: commits of snapshots larger than backing files Stefan Hajnoczi
2014-01-17 16:10 ` Jeff Cody
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=20140117162931.GC1485@localhost.localdomain \
--to=jcody@redhat.com \
--cc=famz@redhat.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.