Now all drivers should return a correct "file", we can make use of it, even with the recursion into backing chain above.
Signed-off-by: Fam Zheng <f...@redhat.com> --- qemu-img.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-img.c b/qemu-img.c index 7954242..a7fa794 100644 --- a/qemu-img.c +++ b/qemu-img.c @@ -2222,7 +2222,7 @@ static int get_block_status(BlockDriverState *bs, int64_t sector_num, e->flags = ret & ~BDRV_BLOCK_OFFSET_MASK; e->offset = ret & BDRV_BLOCK_OFFSET_MASK; e->depth = depth; - e->bs = bs; + e->bs = file; return 0; } -- 2.4.3