diff options
author | Juan Quintela <quintela@redhat.com> | 2010-03-04 10:00:34 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-03-09 11:23:00 -0600 |
commit | b781cce53dddcbf3d881f8d923d87e54834a173b (patch) | |
tree | e60fc9b8427de3ddb61d0c1a807fd7721a6fca20 /block | |
parent | 98c2b2f4371f9a496c0dc479d7f86b086de3b4e0 (diff) |
vmdk: return errno instead of -1
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'block')
-rw-r--r-- | block/vmdk.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/block/vmdk.c b/block/vmdk.c index 56c28a0103..5b1d197c64 100644 --- a/block/vmdk.c +++ b/block/vmdk.c @@ -740,7 +740,7 @@ static int vmdk_create(const char *filename, QEMUOptionParameter *options) fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC | O_BINARY | O_LARGEFILE, 0644); if (fd < 0) - return -1; + return -errno; magic = cpu_to_be32(VMDK4_MAGIC); memset(&header, 0, sizeof(header)); header.version = cpu_to_le32(1); @@ -777,18 +777,18 @@ static int vmdk_create(const char *filename, QEMUOptionParameter *options) /* write all the data */ ret = qemu_write_full(fd, &magic, sizeof(magic)); if (ret != sizeof(magic)) { - ret = -1; + ret = -errno; goto exit; } ret = qemu_write_full(fd, &header, sizeof(header)); if (ret != sizeof(header)) { - ret = -1; + ret = -errno; goto exit; } ret = ftruncate(fd, header.grain_offset << 9); if (ret < 0) { - ret = -1; + ret = -errno; goto exit; } @@ -798,7 +798,7 @@ static int vmdk_create(const char *filename, QEMUOptionParameter *options) i < gt_count; i++, tmp += gt_size) { ret = qemu_write_full(fd, &tmp, sizeof(tmp)); if (ret != sizeof(tmp)) { - ret = -1; + ret = -errno; goto exit; } } @@ -809,7 +809,7 @@ static int vmdk_create(const char *filename, QEMUOptionParameter *options) i < gt_count; i++, tmp += gt_size) { ret = qemu_write_full(fd, &tmp, sizeof(tmp)); if (ret != sizeof(tmp)) { - ret = -1; + ret = -errno; goto exit; } } @@ -831,7 +831,7 @@ static int vmdk_create(const char *filename, QEMUOptionParameter *options) lseek(fd, le64_to_cpu(header.desc_offset) << 9, SEEK_SET); ret = qemu_write_full(fd, desc, strlen(desc)); if (ret != strlen(desc)) { - ret = -1; + ret = -errno; goto exit; } |