Blame SOURCES/kvm-nbd-server-fix-nbd_co_send_block_status.patch

357786
From 947350f0e713e80320519fb4131f10ed607d657f Mon Sep 17 00:00:00 2001
357786
From: John Snow <jsnow@redhat.com>
357786
Date: Wed, 18 Jul 2018 22:55:09 +0200
357786
Subject: [PATCH 84/89] nbd/server: fix nbd_co_send_block_status
357786
357786
RH-Author: John Snow <jsnow@redhat.com>
357786
Message-id: <20180718225511.14878-34-jsnow@redhat.com>
357786
Patchwork-id: 81418
357786
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH 33/35] nbd/server: fix nbd_co_send_block_status
357786
Bugzilla: 1207657
357786
RH-Acked-by: Eric Blake <eblake@redhat.com>
357786
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
RH-Acked-by: Fam Zheng <famz@redhat.com>
357786
357786
From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
357786
357786
Call nbd_co_send_extents() with correct length parameter
357786
(extent.length may be smaller than original length).
357786
357786
Also, switch length parameter type to uint32_t, to correspond with
357786
request->len and similar nbd_co_send_bitmap().
357786
357786
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
357786
Message-Id: <20180704112302.471456-2-vsementsov@virtuozzo.com>
357786
Signed-off-by: Eric Blake <eblake@redhat.com>
357786
(cherry picked from commit 0c0eaed14721f8a9db334deb35316411c512059a)
357786
Signed-off-by: John Snow <jsnow@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 nbd/server.c | 5 +++--
357786
 1 file changed, 3 insertions(+), 2 deletions(-)
357786
357786
diff --git a/nbd/server.c b/nbd/server.c
357786
index e52b76b..ea5fe0e 100644
357786
--- a/nbd/server.c
357786
+++ b/nbd/server.c
357786
@@ -1910,7 +1910,7 @@ static int nbd_co_send_extents(NBDClient *client, uint64_t handle,
357786
 /* Get block status from the exported device and send it to the client */
357786
 static int nbd_co_send_block_status(NBDClient *client, uint64_t handle,
357786
                                     BlockDriverState *bs, uint64_t offset,
357786
-                                    uint64_t length, bool last,
357786
+                                    uint32_t length, bool last,
357786
                                     uint32_t context_id, Error **errp)
357786
 {
357786
     int ret;
357786
@@ -1922,7 +1922,8 @@ static int nbd_co_send_block_status(NBDClient *client, uint64_t handle,
357786
                 client, handle, -ret, "can't get block status", errp);
357786
     }
357786
 
357786
-    return nbd_co_send_extents(client, handle, &extent, 1, length, last,
357786
+    return nbd_co_send_extents(client, handle, &extent, 1,
357786
+                               be32_to_cpu(extent.length), last,
357786
                                context_id, errp);
357786
 }
357786
 
357786
-- 
357786
1.8.3.1
357786