From: Fam Zheng <famz@redhat.com>
To: Eric Blake <eblake@redhat.com>
Cc: qemu-devel@nongnu.org, kwolf@redhat.com, jsnow@redhat.com,
vsementsov@virtuozzo.com, qemu-block@nongnu.org,
Max Reitz <mreitz@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v8 05/20] dirty-bitmap: Avoid size query failure during truncate
Date: Tue, 19 Sep 2017 17:17:19 +0800 [thread overview]
Message-ID: <20170919091719.GE11534@lemon.lan> (raw)
In-Reply-To: <20170918185819.5984-6-eblake@redhat.com>
On Mon, 09/18 13:58, Eric Blake wrote:
> We've previously fixed several places where we failed to account
> for possible errors from bdrv_nb_sectors(). Fix another one by
> making bdrv_dirty_bitmap_truncate() take the new size from the
> caller instead of querying itself; then adjust the sole caller
> bdrv_truncate() to pass the size just determined by a successful
> resize, or to skip the bitmap resize on failure, thus avoiding
> sizing the bitmaps to -1.
>
> Signed-off-by: Eric Blake <eblake@redhat.com>
>
> ---
> v8: retitle and rework to avoid possibility of secondary failure [John]
> v7: new patch [Kevin]
> ---
> include/block/dirty-bitmap.h | 2 +-
> block.c | 15 ++++++++++-----
> block/dirty-bitmap.c | 6 +++---
> 3 files changed, 14 insertions(+), 9 deletions(-)
>
> diff --git a/include/block/dirty-bitmap.h b/include/block/dirty-bitmap.h
> index 8fd842eac9..7a27590047 100644
> --- a/include/block/dirty-bitmap.h
> +++ b/include/block/dirty-bitmap.h
> @@ -83,7 +83,7 @@ int64_t bdrv_dirty_iter_next(BdrvDirtyBitmapIter *iter);
> void bdrv_set_dirty_iter(BdrvDirtyBitmapIter *hbi, int64_t sector_num);
> int64_t bdrv_get_dirty_count(BdrvDirtyBitmap *bitmap);
> int64_t bdrv_get_meta_dirty_count(BdrvDirtyBitmap *bitmap);
> -void bdrv_dirty_bitmap_truncate(BlockDriverState *bs);
> +void bdrv_dirty_bitmap_truncate(BlockDriverState *bs, int64_t bytes);
> bool bdrv_dirty_bitmap_readonly(const BdrvDirtyBitmap *bitmap);
> bool bdrv_has_readonly_bitmaps(BlockDriverState *bs);
> bool bdrv_dirty_bitmap_get_autoload(const BdrvDirtyBitmap *bitmap);
> diff --git a/block.c b/block.c
> index ee6a48976e..61ee9d4b83 100644
> --- a/block.c
> +++ b/block.c
> @@ -3450,12 +3450,17 @@ int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
> assert(!(bs->open_flags & BDRV_O_INACTIVE));
>
> ret = drv->bdrv_truncate(bs, offset, prealloc, errp);
> - if (ret == 0) {
> - ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
> - bdrv_dirty_bitmap_truncate(bs);
> - bdrv_parent_cb_resize(bs);
> - atomic_inc(&bs->write_gen);
> + if (ret < 0) {
> + return ret;
> }
> + ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
> + if (ret < 0) {
Ugh, if we get here the situation is a bit embarrassing, because...
> + error_setg_errno(errp, -ret, "Could not refresh total sector count");
> + return ret;
> + }
> + bdrv_dirty_bitmap_truncate(bs, bs->total_sectors * BDRV_SECTOR_SIZE);
> + bdrv_parent_cb_resize(bs);
> + atomic_inc(&bs->write_gen);
I think we still want to inc write_gen even if refresh_total_sectors failed, if
drv->bdrv_truncate has succeeded? That way the next bdrv_co_flush will actually
flush the metadata change to disk.
Maybe similarly call bdrv_parent_cb_resize() as long as drv->bdrv_truncate()
succeeded? The effect is the virtual devices notify guest about this "resized"
event, which I think is correct.
Fam
next prev parent reply other threads:[~2017-09-19 9:17 UTC|newest]
Thread overview: 27+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-18 18:57 [Qemu-devel] [PATCH v8 00/20] make dirty-bitmap byte-based Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 01/20] block: Make bdrv_img_create() size selection easier to read Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 02/20] hbitmap: Rename serialization_granularity to serialization_align Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 03/20] qcow2: Ensure bitmap serialization is aligned Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 04/20] dirty-bitmap: Drop unused functions Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 05/20] dirty-bitmap: Avoid size query failure during truncate Eric Blake
2017-09-19 9:17 ` Fam Zheng [this message]
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 06/20] dirty-bitmap: Change bdrv_dirty_bitmap_size() to report bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 07/20] dirty-bitmap: Track bitmap size by bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 08/20] dirty-bitmap: Change bdrv_dirty_bitmap_*serialize*() to take bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 09/20] qcow2: Switch sectors_covered_by_bitmap_cluster() to byte-based Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 10/20] dirty-bitmap: Set iterator start by offset, not sector Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 11/20] dirty-bitmap: Change bdrv_dirty_iter_next() to report byte offset Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 12/20] dirty-bitmap: Change bdrv_get_dirty_count() to report bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 13/20] dirty-bitmap: Change bdrv_get_dirty_locked() to take bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 14/20] dirty-bitmap: Change bdrv_[re]set_dirty_bitmap() to use bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 15/20] mirror: Switch mirror_dirty_init() to byte-based iteration Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 16/20] qcow2: Switch qcow2_measure() " Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 17/20] qcow2: Switch load_bitmap_data() " Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 18/20] qcow2: Switch store_bitmap_data() " Eric Blake
2017-09-19 12:44 ` Kevin Wolf
2017-09-19 19:42 ` Eric Blake
2017-09-20 6:22 ` Kevin Wolf
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 19/20] dirty-bitmap: Switch bdrv_set_dirty() to bytes Eric Blake
2017-09-18 18:58 ` [Qemu-devel] [PATCH v8 20/20] dirty-bitmap: Convert internal hbitmap size/granularity Eric Blake
2017-09-19 12:46 ` [Qemu-devel] [PATCH v8 00/20] make dirty-bitmap byte-based Kevin Wolf
2017-09-19 14:42 ` Fam Zheng
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=20170919091719.GE11534@lemon.lan \
--to=famz@redhat.com \
--cc=eblake@redhat.com \
--cc=jsnow@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=vsementsov@virtuozzo.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.