cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone
9ae3a8
From 231ea3db5b4c6b9de25fa62b2e6c39ebc4987a6f Mon Sep 17 00:00:00 2001
9ae3a8
From: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
Date: Fri, 18 Oct 2013 08:14:41 +0200
9ae3a8
Subject: [PATCH 16/81] block: return BDRV_BLOCK_ZERO past end of backing file
9ae3a8
9ae3a8
RH-Author: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
Message-id: <1382084091-16636-17-git-send-email-pbonzini@redhat.com>
9ae3a8
Patchwork-id: 54999
9ae3a8
O-Subject: [RHEL 7.0 qemu-kvm PATCH 16/26] block: return BDRV_BLOCK_ZERO past end of backing file
9ae3a8
Bugzilla: 989646
9ae3a8
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
9ae3a8
RH-Acked-by: Max Reitz <mreitz@redhat.com>
9ae3a8
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
9ae3a8
9ae3a8
If the sectors are unallocated and we are past the end of the
9ae3a8
backing file, they will read as zero.
9ae3a8
9ae3a8
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
9ae3a8
(cherry picked from commit f0ad5712d5d15ff272b9e107910be4aae468fb3d)
9ae3a8
---
9ae3a8
 block.c | 12 ++++++++++--
9ae3a8
 1 file changed, 10 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
9ae3a8
---
9ae3a8
 block.c |   12 ++++++++++--
9ae3a8
 1 files changed, 10 insertions(+), 2 deletions(-)
9ae3a8
9ae3a8
diff --git a/block.c b/block.c
9ae3a8
index 00bc3b2..36a2f24 100644
9ae3a8
--- a/block.c
9ae3a8
+++ b/block.c
9ae3a8
@@ -3068,8 +3068,16 @@ static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
9ae3a8
         return ret;
9ae3a8
     }
9ae3a8
 
9ae3a8
-    if (!(ret & BDRV_BLOCK_DATA) && bdrv_has_zero_init(bs)) {
9ae3a8
-        ret |= BDRV_BLOCK_ZERO;
9ae3a8
+    if (!(ret & BDRV_BLOCK_DATA)) {
9ae3a8
+        if (bdrv_has_zero_init(bs)) {
9ae3a8
+            ret |= BDRV_BLOCK_ZERO;
9ae3a8
+        } else {
9ae3a8
+            BlockDriverState *bs2 = bs->backing_hd;
9ae3a8
+            int64_t length2 = bdrv_getlength(bs2);
9ae3a8
+            if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) {
9ae3a8
+                ret |= BDRV_BLOCK_ZERO;
9ae3a8
+            }
9ae3a8
+        }
9ae3a8
     }
9ae3a8
     return ret;
9ae3a8
 }
9ae3a8
-- 
9ae3a8
1.7.1
9ae3a8