[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v2 12/13] qcow2: Respect bdrv_truncate() error
From: |
Max Reitz |
Subject: |
[Qemu-devel] [PATCH v2 12/13] qcow2: Respect bdrv_truncate() error |
Date: |
Thu, 27 Nov 2014 15:48:39 +0100 |
bdrv_truncate() may fail and qcow2_write_compressed() should return the
error code in that case.
Cc: address@hidden
Signed-off-by: Max Reitz <address@hidden>
---
block/qcow2.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/block/qcow2.c b/block/qcow2.c
index 41f896f..7a28169 100644
--- a/block/qcow2.c
+++ b/block/qcow2.c
@@ -2163,8 +2163,7 @@ static int qcow2_write_compressed(BlockDriverState *bs,
int64_t sector_num,
/* align end of file to a sector boundary to ease reading with
sector based I/Os */
cluster_offset = bdrv_getlength(bs->file);
- bdrv_truncate(bs->file, cluster_offset);
- return 0;
+ return bdrv_truncate(bs->file, cluster_offset);
}
if (nb_sectors != s->cluster_sectors) {
--
1.9.3
- [Qemu-devel] [PATCH v2 01/13] block: Make essential BlockDriver objects public, (continued)
- [Qemu-devel] [PATCH v2 01/13] block: Make essential BlockDriver objects public, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 02/13] block: Omit bdrv_find_format for essential drivers, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 03/13] block/vvfat: qcow driver may not be found, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 04/13] block/nfs: Add create_opts, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 05/13] block: Check create_opts before image creation, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 06/13] qemu-img: Check create_opts before image creation, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 07/13] qemu-img: Check create_opts before image amendment, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 08/13] iotests: Only kill NBD server if it runs, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 09/13] iotests: Add test for unsupported image creation, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 10/13] qcow2: Prevent numerical overflow, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 12/13] qcow2: Respect bdrv_truncate() error,
Max Reitz <=
- [Qemu-devel] [PATCH v2 11/13] qcow2: Flushing the caches in qcow2_close may fail, Max Reitz, 2014/11/27
- [Qemu-devel] [PATCH v2 13/13] block/raw-posix: Fix ret in raw_open_common(), Max Reitz, 2014/11/27