Blame SOURCES/kvm-block-BLK_PERM_WRITE-includes-._UNCHANGED.patch

1bdc94
From 68b3e533a4531486fe346f042e190fb5c426f24f Mon Sep 17 00:00:00 2001
1bdc94
From: Max Reitz <mreitz@redhat.com>
1bdc94
Date: Mon, 18 Jun 2018 16:12:05 +0200
1bdc94
Subject: [PATCH 29/54] block: BLK_PERM_WRITE includes ..._UNCHANGED
1bdc94
1bdc94
RH-Author: Max Reitz <mreitz@redhat.com>
1bdc94
Message-id: <20180618161212.14444-4-mreitz@redhat.com>
1bdc94
Patchwork-id: 80763
1bdc94
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 03/10] block: BLK_PERM_WRITE includes ..._UNCHANGED
1bdc94
Bugzilla: 1518738
1bdc94
RH-Acked-by: John Snow <jsnow@redhat.com>
1bdc94
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
1bdc94
Currently we never actually check whether the WRITE_UNCHANGED
1bdc94
permission has been taken for unchanging writes.  But the one check that
1bdc94
is commented out checks both WRITE and WRITE_UNCHANGED; and considering
1bdc94
that WRITE_UNCHANGED is already documented as being weaker than WRITE,
1bdc94
we should probably explicitly document WRITE to include WRITE_UNCHANGED.
1bdc94
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
1bdc94
Reviewed-by: Alberto Garcia <berto@igalia.com>
1bdc94
Message-id: 20180421132929.21610-3-mreitz@redhat.com
1bdc94
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
(cherry picked from commit 24b7c538fea86b598e2a335f4805a0ab50a30e98)
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 include/block/block.h | 3 +++
1bdc94
 1 file changed, 3 insertions(+)
1bdc94
1bdc94
diff --git a/include/block/block.h b/include/block/block.h
1bdc94
index cdec363..397b5e8 100644
1bdc94
--- a/include/block/block.h
1bdc94
+++ b/include/block/block.h
1bdc94
@@ -205,6 +205,9 @@ enum {
1bdc94
      * This permission (which is weaker than BLK_PERM_WRITE) is both enough and
1bdc94
      * required for writes to the block node when the caller promises that
1bdc94
      * the visible disk content doesn't change.
1bdc94
+     *
1bdc94
+     * As the BLK_PERM_WRITE permission is strictly stronger, either is
1bdc94
+     * sufficient to perform an unchanging write.
1bdc94
      */
1bdc94
     BLK_PERM_WRITE_UNCHANGED    = 0x04,
1bdc94
 
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94