diff mbox

[v3] qemu-img: check block status of backing file when converting.

Message ID 1460867433-13251-1-git-send-email-rkx1209dev@gmail.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ren Kimura April 17, 2016, 4:30 a.m. UTC
When converting images, check the block status of its backing file chain
to avoid needlessly reading zeros.

Signed-off-by: Ren Kimura <rkx1209dev@gmail.com>
---
 qemu-img.c | 27 +++++++++++++++++++++++++--
 1 file changed, 25 insertions(+), 2 deletions(-)

Comments

Ren Kimura April 21, 2016, 5:28 a.m. UTC | #1
ping
Denis V. Lunev April 21, 2016, 6:53 a.m. UTC | #2
On 04/17/2016 07:30 AM, Ren Kimura wrote:
> When converting images, check the block status of its backing file chain
> to avoid needlessly reading zeros.
>
> Signed-off-by: Ren Kimura <rkx1209dev@gmail.com>

IMHO bdrv_get_block_status_above(bs, NULL, ...) should do the job 
without recursion.
diff mbox

Patch

diff --git a/qemu-img.c b/qemu-img.c
index 06264d9..ad1df5f 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -1451,6 +1451,22 @@  static void convert_select_part(ImgConvertState *s, int64_t sector_num)
     }
 }
 
+static int64_t get_backing_status(BlockDriverState *bs,
+                                  int64_t sector_num,
+                                  int nb_sectors, int *pnum)
+{
+    int64_t ret;
+    BlockDriverState *file;
+    ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum, &file);
+    if (!(ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO))) {
+        if (bs->backing) {
+            ret = get_backing_status(bs->backing->bs, sector_num,
+                                     nb_sectors, pnum);
+        }
+    }
+    return ret;
+}
+
 static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
 {
     int64_t ret;
@@ -1477,10 +1493,17 @@  static int convert_iteration_sectors(ImgConvertState *s, int64_t sector_num)
         } else if (!s->target_has_backing) {
             /* Without a target backing file we must copy over the contents of
              * the backing file as well. */
-            /* TODO Check block status of the backing file chain to avoid
+            /* Check block status of the backing file chain to avoid
              * needlessly reading zeroes and limiting the iteration to the
              * buffer size */
-            s->status = BLK_DATA;
+            ret = get_backing_status(blk_bs(s->src[s->src_cur]),
+                                     sector_num - s->src_cur_offset,
+                                     n, &n);
+            if (ret & BDRV_BLOCK_ZERO) {
+                s->status = BLK_ZERO;
+            } else {
+                s->status = BLK_DATA;
+            }
         } else {
             s->status = BLK_BACKING_FILE;
         }