summary refs log tree commit diff stats
path: root/qemu-img.c
diff options
context:
space:
mode:
authorMax Reitz <mreitz@redhat.com>2017-06-13 22:20:54 +0200
committerMax Reitz <mreitz@redhat.com>2017-07-11 17:45:01 +0200
commit3a691c50f10344b052ad70a4d0ed935276ccca3c (patch)
tree7987afc8abe63f577c59a11e698ea4536cf2c0d5 /qemu-img.c
parent7ea37c30660d4cd6aca21a324fabefe23b89f931 (diff)
downloadfocaccia-qemu-3a691c50f10344b052ad70a4d0ed935276ccca3c.tar.gz
focaccia-qemu-3a691c50f10344b052ad70a4d0ed935276ccca3c.zip
block: Add PreallocMode to blk_truncate()
blk_truncate() itself will pass that value to bdrv_truncate(), and all
callers of blk_truncate() just set the parameter to PREALLOC_MODE_OFF
for now.

Signed-off-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Message-id: 20170613202107.10125-4-mreitz@redhat.com
Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'qemu-img.c')
-rw-r--r--qemu-img.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-img.c b/qemu-img.c
index 930ae88a0d..1b741956bc 100644
--- a/qemu-img.c
+++ b/qemu-img.c
@@ -3537,7 +3537,7 @@ static int img_resize(int argc, char **argv)
         goto out;
     }
 
-    ret = blk_truncate(blk, total_size, &err);
+    ret = blk_truncate(blk, total_size, PREALLOC_MODE_OFF, &err);
     if (!ret) {
         qprintf(quiet, "Image resized.\n");
     } else {