Blame SOURCES/kvm-block-Add-BDRV_REQ_WRITE_UNCHANGED-flag.patch

357786
From c757f534ae34ad858e0d706e0fb893ef5f3aeb28 Mon Sep 17 00:00:00 2001
357786
From: Max Reitz <mreitz@redhat.com>
357786
Date: Mon, 18 Jun 2018 16:12:06 +0200
357786
Subject: [PATCH 30/54] block: Add BDRV_REQ_WRITE_UNCHANGED flag
357786
357786
RH-Author: Max Reitz <mreitz@redhat.com>
357786
Message-id: <20180618161212.14444-5-mreitz@redhat.com>
357786
Patchwork-id: 80764
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 04/10] block: Add BDRV_REQ_WRITE_UNCHANGED flag
357786
Bugzilla: 1518738
357786
RH-Acked-by: John Snow <jsnow@redhat.com>
357786
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
357786
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
357786
This flag signifies that a write request will not change the visible
357786
disk content.  With this flag set, it is sufficient to have the
357786
BLK_PERM_WRITE_UNCHANGED permission instead of BLK_PERM_WRITE.
357786
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
Reviewed-by: Alberto Garcia <berto@igalia.com>
357786
Message-id: 20180421132929.21610-4-mreitz@redhat.com
357786
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
(cherry picked from commit c6035964f8316b504060618d05b5dd434f18595b)
357786
Signed-off-by: Max Reitz <mreitz@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/io.c            | 6 +++++-
357786
 include/block/block.h | 6 +++++-
357786
 2 files changed, 10 insertions(+), 2 deletions(-)
357786
357786
diff --git a/block/io.c b/block/io.c
357786
index bd9a19a..134b2a4 100644
357786
--- a/block/io.c
357786
+++ b/block/io.c
357786
@@ -1501,7 +1501,11 @@ static int coroutine_fn bdrv_aligned_pwritev(BdrvChild *child,
357786
     assert(!waited || !req->serialising);
357786
     assert(req->overlap_offset <= offset);
357786
     assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
357786
-    assert(child->perm & BLK_PERM_WRITE);
357786
+    if (flags & BDRV_REQ_WRITE_UNCHANGED) {
357786
+        assert(child->perm & (BLK_PERM_WRITE_UNCHANGED | BLK_PERM_WRITE));
357786
+    } else {
357786
+        assert(child->perm & BLK_PERM_WRITE);
357786
+    }
357786
     assert(end_sector <= bs->total_sectors || child->perm & BLK_PERM_RESIZE);
357786
 
357786
     ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);
357786
diff --git a/include/block/block.h b/include/block/block.h
357786
index 397b5e8..3894edd 100644
357786
--- a/include/block/block.h
357786
+++ b/include/block/block.h
357786
@@ -54,8 +54,12 @@ typedef enum {
357786
     BDRV_REQ_FUA                = 0x10,
357786
     BDRV_REQ_WRITE_COMPRESSED   = 0x20,
357786
 
357786
+    /* Signifies that this write request will not change the visible disk
357786
+     * content. */
357786
+    BDRV_REQ_WRITE_UNCHANGED    = 0x40,
357786
+
357786
     /* Mask of valid flags */
357786
-    BDRV_REQ_MASK               = 0x3f,
357786
+    BDRV_REQ_MASK               = 0x7f,
357786
 } BdrvRequestFlags;
357786
 
357786
 typedef struct BlockSizes {
357786
-- 
357786
1.8.3.1
357786