in case the image size changed we should adjust our internally stored size as well.
Signed-off-by: Peter Lieven <pl@kamp.de>
---
block/rbd.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/block/rbd.c b/block/rbd.c
index 1028596c68..f68ebcf240 100644
--- a/block/rbd.c
+++ b/block/rbd.c
@@ -964,6 +964,7 @@ static int64_t qemu_rbd_getlength(BlockDriverState *bs)
return r;
}
+ s->image_size = info.size;
return info.size;
}
--
2.17.1