Blame SOURCES/kvm-block-Formats-don-t-need-CONSISTENT_READ-with-NO_IO.patch

4a2fec
From a80280654277c361714ec5f3925d2d6b077eca7b Mon Sep 17 00:00:00 2001
4a2fec
From: Kevin Wolf <kwolf@redhat.com>
4a2fec
Date: Mon, 15 Jan 2018 11:23:37 +0100
4a2fec
Subject: [PATCH 12/12] block: Formats don't need CONSISTENT_READ with NO_IO
4a2fec
4a2fec
RH-Author: Kevin Wolf <kwolf@redhat.com>
4a2fec
Message-id: <20180115112337.20885-4-kwolf@redhat.com>
4a2fec
Patchwork-id: 78574
4a2fec
O-Subject: [RHV-7.5 qemu-kvm-rhev PATCH 3/3] block: Formats don't need CONSISTENT_READ with NO_IO
4a2fec
Bugzilla: 1515604
4a2fec
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
4a2fec
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
4a2fec
RH-Acked-by: John Snow <jsnow@redhat.com>
4a2fec
4a2fec
Commit 1f4ad7d fixed 'qemu-img info' for raw images that are currently
4a2fec
in use as a mirror target. It is not enough for image formats, though,
4a2fec
as these still unconditionally request BLK_PERM_CONSISTENT_READ.
4a2fec
4a2fec
As this permission is geared towards whether the guest-visible data is
4a2fec
consistent, and has no impact on whether the metadata is sane, and
4a2fec
'qemu-img info' does not read guest-visible data (except for the raw
4a2fec
format), it makes sense to not require BLK_PERM_CONSISTENT_READ if there
4a2fec
is not going to be any guest I/O performed, regardless of image format.
4a2fec
4a2fec
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
4a2fec
(cherry picked from commit 5fbfabd313b77e1cc7038ae8c4481c4b9f8b650a)
4a2fec
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
4a2fec
---
4a2fec
 block.c | 6 +++++-
4a2fec
 1 file changed, 5 insertions(+), 1 deletion(-)
4a2fec
4a2fec
diff --git a/block.c b/block.c
4a2fec
index 90a60bc..ca8a46b 100644
4a2fec
--- a/block.c
4a2fec
+++ b/block.c
4a2fec
@@ -1885,6 +1885,8 @@ void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
4a2fec
     assert(role == &child_backing || role == &child_file);
4a2fec
 
4a2fec
     if (!backing) {
4a2fec
+        int flags = bdrv_reopen_get_flags(reopen_queue, bs);
4a2fec
+
4a2fec
         /* Apart from the modifications below, the same permissions are
4a2fec
          * forwarded and left alone as for filters */
4a2fec
         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
4a2fec
@@ -1897,7 +1899,9 @@ void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
4a2fec
 
4a2fec
         /* bs->file always needs to be consistent because of the metadata. We
4a2fec
          * can never allow other users to resize or write to it. */
4a2fec
-        perm |= BLK_PERM_CONSISTENT_READ;
4a2fec
+        if (!(flags & BDRV_O_NO_IO)) {
4a2fec
+            perm |= BLK_PERM_CONSISTENT_READ;
4a2fec
+        }
4a2fec
         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
4a2fec
     } else {
4a2fec
         /* We want consistent read from backing files if the parent needs it.
4a2fec
-- 
4a2fec
1.8.3.1
4a2fec