26ba25
From f0b9cea2fd575e86a3d2d2c8ca7b7f6b65cd7b08 Mon Sep 17 00:00:00 2001
26ba25
From: Kevin Wolf <kwolf@redhat.com>
26ba25
Date: Thu, 12 Jul 2018 14:42:53 +0200
26ba25
Subject: [PATCH 208/268] qcow2: Fix qcow2_truncate() error return value
26ba25
26ba25
RH-Author: Kevin Wolf <kwolf@redhat.com>
26ba25
Message-id: <20180712144258.17303-2-kwolf@redhat.com>
26ba25
Patchwork-id: 81325
26ba25
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 1/6] qcow2: Fix qcow2_truncate() error return value
26ba25
Bugzilla: 1595173
26ba25
RH-Acked-by: Max Reitz <mreitz@redhat.com>
26ba25
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
26ba25
RH-Acked-by: John Snow <jsnow@redhat.com>
26ba25
26ba25
If qcow2_alloc_clusters_at() returns an error, we do need to negate it
26ba25
to get back the positive errno code for error_setg_errno(), but we still
26ba25
need to return the negative error code.
26ba25
26ba25
Fixes: 772d1f973f87269f6a4a4ea4b880680f3779bbdf
26ba25
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
26ba25
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
26ba25
(cherry picked from commit ae5475e82fd1ebb24f4f77cf28f59ca6548c6136)
26ba25
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
26ba25
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
---
26ba25
 block/qcow2.c | 2 +-
26ba25
 1 file changed, 1 insertion(+), 1 deletion(-)
26ba25
26ba25
diff --git a/block/qcow2.c b/block/qcow2.c
26ba25
index da74e2a..dbd448c 100644
26ba25
--- a/block/qcow2.c
26ba25
+++ b/block/qcow2.c
26ba25
@@ -3594,7 +3594,7 @@ static int qcow2_truncate(BlockDriverState *bs, int64_t offset,
26ba25
         if (clusters_allocated < 0) {
26ba25
             error_setg_errno(errp, -clusters_allocated,
26ba25
                              "Failed to allocate data clusters");
26ba25
-            return -clusters_allocated;
26ba25
+            return clusters_allocated;
26ba25
         }
26ba25
 
26ba25
         assert(clusters_allocated == nb_new_data_clusters);
26ba25
-- 
26ba25
1.8.3.1
26ba25