Blame SOURCES/kvm-block-backend-Add-blk_co_copy_range.patch

383d26
From 6f8e77a19dc072d428624f521e35a82a80893d25 Mon Sep 17 00:00:00 2001
383d26
From: Fam Zheng <famz@redhat.com>
383d26
Date: Fri, 29 Jun 2018 06:11:49 +0200
383d26
Subject: [PATCH 45/57] block-backend: Add blk_co_copy_range
383d26
383d26
RH-Author: Fam Zheng <famz@redhat.com>
383d26
Message-id: <20180629061153.12687-10-famz@redhat.com>
383d26
Patchwork-id: 81161
383d26
O-Subject: [RHEL-7.6 qemu-kvm-rhev PATCH v2 09/13] block-backend: Add blk_co_copy_range
383d26
Bugzilla: 1482537
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
RH-Acked-by: Max Reitz <mreitz@redhat.com>
383d26
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
383d26
383d26
It's a BlockBackend wrapper of the BDS interface.
383d26
383d26
Signed-off-by: Fam Zheng <famz@redhat.com>
383d26
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
Message-id: 20180601092648.24614-10-famz@redhat.com
383d26
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
(cherry picked from commit b5679fa49c9a70efa7bf01f6efad1a65e2349a0b)
383d26
Signed-off-by: Fam Zheng <famz@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/block-backend.c          | 18 ++++++++++++++++++
383d26
 include/sysemu/block-backend.h |  4 ++++
383d26
 2 files changed, 22 insertions(+)
383d26
383d26
diff --git a/block/block-backend.c b/block/block-backend.c
383d26
index fd342db..56ae535 100644
383d26
--- a/block/block-backend.c
383d26
+++ b/block/block-backend.c
383d26
@@ -2236,3 +2236,21 @@ void blk_unregister_buf(BlockBackend *blk, void *host)
383d26
 {
383d26
     bdrv_unregister_buf(blk_bs(blk), host);
383d26
 }
383d26
+
383d26
+int coroutine_fn blk_co_copy_range(BlockBackend *blk_in, int64_t off_in,
383d26
+                                   BlockBackend *blk_out, int64_t off_out,
383d26
+                                   int bytes, BdrvRequestFlags flags)
383d26
+{
383d26
+    int r;
383d26
+    r = blk_check_byte_request(blk_in, off_in, bytes);
383d26
+    if (r) {
383d26
+        return r;
383d26
+    }
383d26
+    r = blk_check_byte_request(blk_out, off_out, bytes);
383d26
+    if (r) {
383d26
+        return r;
383d26
+    }
383d26
+    return bdrv_co_copy_range(blk_in->root, off_in,
383d26
+                              blk_out->root, off_out,
383d26
+                              bytes, flags);
383d26
+}
383d26
diff --git a/include/sysemu/block-backend.h b/include/sysemu/block-backend.h
383d26
index 92ab624..8d03d49 100644
383d26
--- a/include/sysemu/block-backend.h
383d26
+++ b/include/sysemu/block-backend.h
383d26
@@ -232,4 +232,8 @@ void blk_set_force_allow_inactivate(BlockBackend *blk);
383d26
 void blk_register_buf(BlockBackend *blk, void *host, size_t size);
383d26
 void blk_unregister_buf(BlockBackend *blk, void *host);
383d26
 
383d26
+int coroutine_fn blk_co_copy_range(BlockBackend *blk_in, int64_t off_in,
383d26
+                                   BlockBackend *blk_out, int64_t off_out,
383d26
+                                   int bytes, BdrvRequestFlags flags);
383d26
+
383d26
 #endif
383d26
-- 
383d26
1.8.3.1
383d26