]> git.proxmox.com Git - mirror_qemu.git/commitdiff
commit: Set commit_top_bs->total_sectors
authorKevin Wolf <kwolf@redhat.com>
Thu, 6 Apr 2017 17:07:14 +0000 (19:07 +0200)
committerKevin Wolf <kwolf@redhat.com>
Fri, 7 Apr 2017 12:44:05 +0000 (14:44 +0200)
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 <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
block/commit.c

index 4c3822080eb5ced214773130b2f076e5c84c47d3..91d2c344f62cc723e7f94cf5364de4763247c5d3 100644 (file)
@@ -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);