From 3456a8d1852e970688b73d03fdc44dde851759e1 Mon Sep 17 00:00:00 2001 From: Kevin Wolf Date: Tue, 11 Mar 2014 10:58:39 +0100 Subject: block: Update image size in bdrv_invalidate_cache() After migration has completed, we call bdrv_invalidate_cache() so that drivers which cache some data drop their stale copy of the data and reread it from the image file to get a new version of data that the source modified while the migration was running. Reloading metadata from the image file is useless, though, if the size of the image file stays stale (this is a value that is cached for all image formats in block.c). Reads from (meta)data after the old EOF return only zeroes, causing image corruption. We need to update bs->total_sectors in all layers that could potentially have changed their size (i.e. backing files are not a concern - if they are changed, we're in bigger trouble) Signed-off-by: Kevin Wolf Signed-off-by: Stefan Hajnoczi --- block.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'block.c') diff --git a/block.c b/block.c index f1ef4b0109..7b306fb62f 100644 --- a/block.c +++ b/block.c @@ -4776,9 +4776,17 @@ flush_parent: void bdrv_invalidate_cache(BlockDriverState *bs) { - if (bs->drv && bs->drv->bdrv_invalidate_cache) { + if (!bs->drv) { + return; + } + + if (bs->drv->bdrv_invalidate_cache) { bs->drv->bdrv_invalidate_cache(bs); + } else if (bs->file) { + bdrv_invalidate_cache(bs->file); } + + refresh_total_sectors(bs, bs->total_sectors); } void bdrv_invalidate_cache_all(void) -- cgit v1.2.1