diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2013-09-04 19:00:32 +0200 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2013-09-06 15:25:09 +0200 |
commit | f0ad5712d5d15ff272b9e107910be4aae468fb3d (patch) | |
tree | 27c4b94a31686151d51f5fa75660a1f63ea478c0 /block.c | |
parent | 415b5b013ce74126e71459b922a92377918ae2ef (diff) | |
download | qemu-f0ad5712d5d15ff272b9e107910be4aae468fb3d.tar.gz qemu-f0ad5712d5d15ff272b9e107910be4aae468fb3d.tar.bz2 qemu-f0ad5712d5d15ff272b9e107910be4aae468fb3d.zip |
block: return BDRV_BLOCK_ZERO past end of backing file
If the sectors are unallocated and we are past the end of the
backing file, they will read as zero.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block.c')
-rw-r--r-- | block.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -3102,8 +3102,16 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs, return ret; } - if (!(ret & BDRV_BLOCK_DATA) && bdrv_has_zero_init(bs)) { - ret |= BDRV_BLOCK_ZERO; + if (!(ret & BDRV_BLOCK_DATA)) { + if (bdrv_has_zero_init(bs)) { + ret |= BDRV_BLOCK_ZERO; + } else { + BlockDriverState *bs2 = bs->backing_hd; + int64_t length2 = bdrv_getlength(bs2); + if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) { + ret |= BDRV_BLOCK_ZERO; + } + } } return ret; } |