Blame SOURCES/kvm-qcow2-Fix-qcow2_truncate-error-return-value.patch

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