From: Kevin Wolf Date: Thu, 6 Apr 2017 17:07:14 +0000 (+0200) Subject: commit: Set commit_top_bs->total_sectors X-Git-Tag: v2.9.0-rc4~9^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d0676a1040d34339731a4e26a9b39b78c8a1fdf;p=thirdparty%2Fqemu.git commit: Set commit_top_bs->total_sectors Like in the mirror filter driver, we also need to set the image size for the commit filter driver. This is less likely to be a problem in practice than for the mirror because we're not at the active layer here, but attaching new parents to a node in the middle of the chain is possible, so the size needs to be correct anyway. Signed-off-by: Kevin Wolf Reviewed-by: Eric Blake Reviewed-by: Fam Zheng --- diff --git a/block/commit.c b/block/commit.c index 4c3822080eb..91d2c344f62 100644 --- a/block/commit.c +++ b/block/commit.c @@ -335,6 +335,7 @@ void commit_start(const char *job_id, BlockDriverState *bs, if (commit_top_bs == NULL) { goto fail; } + commit_top_bs->total_sectors = top->total_sectors; bdrv_set_aio_context(commit_top_bs, bdrv_get_aio_context(top)); bdrv_set_backing_hd(commit_top_bs, top, &local_err);