Blame SOURCES/kvm-block-quorum-Support-BDRV_REQ_WRITE_UNCHANGED.patch

1bdc94
From 34e748aa7dc2215fd2d8f03e491f1a2a450ba5d0 Mon Sep 17 00:00:00 2001
1bdc94
From: Max Reitz <mreitz@redhat.com>
1bdc94
Date: Mon, 18 Jun 2018 16:12:08 +0200
1bdc94
Subject: [PATCH 32/54] block/quorum: Support BDRV_REQ_WRITE_UNCHANGED
1bdc94
1bdc94
RH-Author: Max Reitz <mreitz@redhat.com>
1bdc94
Message-id: <20180618161212.14444-7-mreitz@redhat.com>
1bdc94
Patchwork-id: 80770
1bdc94
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 06/10] block/quorum: Support BDRV_REQ_WRITE_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
We just need to forward it to quorum's children (except in case of a
1bdc94
rewrite because of corruption), but for that we first have to support
1bdc94
flags in child requests at all.
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-6-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 1b1a920b713af6af795d49d0e3d2a8a65020bf82)
1bdc94
Signed-off-by: Max Reitz <mreitz@redhat.com>
1bdc94
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
1bdc94
---
1bdc94
 block/quorum.c | 19 +++++++++++++------
1bdc94
 1 file changed, 13 insertions(+), 6 deletions(-)
1bdc94
1bdc94
diff --git a/block/quorum.c b/block/quorum.c
1bdc94
index f1f39ba..0d90a02 100644
1bdc94
--- a/block/quorum.c
1bdc94
+++ b/block/quorum.c
1bdc94
@@ -116,6 +116,7 @@ struct QuorumAIOCB {
1bdc94
     /* Request metadata */
1bdc94
     uint64_t offset;
1bdc94
     uint64_t bytes;
1bdc94
+    int flags;
1bdc94
 
1bdc94
     QEMUIOVector *qiov;         /* calling IOV */
1bdc94
 
1bdc94
@@ -158,7 +159,8 @@ static bool quorum_64bits_compare(QuorumVoteValue *a, QuorumVoteValue *b)
1bdc94
 static QuorumAIOCB *quorum_aio_get(BlockDriverState *bs,
1bdc94
                                    QEMUIOVector *qiov,
1bdc94
                                    uint64_t offset,
1bdc94
-                                   uint64_t bytes)
1bdc94
+                                   uint64_t bytes,
1bdc94
+                                   int flags)
1bdc94
 {
1bdc94
     BDRVQuorumState *s = bs->opaque;
1bdc94
     QuorumAIOCB *acb = g_new(QuorumAIOCB, 1);
1bdc94
@@ -169,6 +171,7 @@ static QuorumAIOCB *quorum_aio_get(BlockDriverState *bs,
1bdc94
         .bs                 = bs,
1bdc94
         .offset             = offset,
1bdc94
         .bytes              = bytes,
1bdc94
+        .flags              = flags,
1bdc94
         .qiov               = qiov,
1bdc94
         .votes.compare      = quorum_sha256_compare,
1bdc94
         .votes.vote_list    = QLIST_HEAD_INITIALIZER(acb.votes.vote_list),
1bdc94
@@ -272,9 +275,11 @@ static void quorum_rewrite_entry(void *opaque)
1bdc94
     BDRVQuorumState *s = acb->bs->opaque;
1bdc94
 
1bdc94
     /* Ignore any errors, it's just a correction attempt for already
1bdc94
-     * corrupted data. */
1bdc94
+     * corrupted data.
1bdc94
+     * Mask out BDRV_REQ_WRITE_UNCHANGED because this overwrites the
1bdc94
+     * area with different data from the other children. */
1bdc94
     bdrv_co_pwritev(s->children[co->idx], acb->offset, acb->bytes,
1bdc94
-                    acb->qiov, 0);
1bdc94
+                    acb->qiov, acb->flags & ~BDRV_REQ_WRITE_UNCHANGED);
1bdc94
 
1bdc94
     /* Wake up the caller after the last rewrite */
1bdc94
     acb->rewrite_count--;
1bdc94
@@ -674,7 +679,7 @@ static int quorum_co_preadv(BlockDriverState *bs, uint64_t offset,
1bdc94
                             uint64_t bytes, QEMUIOVector *qiov, int flags)
1bdc94
 {
1bdc94
     BDRVQuorumState *s = bs->opaque;
1bdc94
-    QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes);
1bdc94
+    QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags);
1bdc94
     int ret;
1bdc94
 
1bdc94
     acb->is_read = true;
1bdc94
@@ -700,7 +705,7 @@ static void write_quorum_entry(void *opaque)
1bdc94
 
1bdc94
     sacb->bs = s->children[i]->bs;
1bdc94
     sacb->ret = bdrv_co_pwritev(s->children[i], acb->offset, acb->bytes,
1bdc94
-                                acb->qiov, 0);
1bdc94
+                                acb->qiov, acb->flags);
1bdc94
     if (sacb->ret == 0) {
1bdc94
         acb->success_count++;
1bdc94
     } else {
1bdc94
@@ -720,7 +725,7 @@ static int quorum_co_pwritev(BlockDriverState *bs, uint64_t offset,
1bdc94
                              uint64_t bytes, QEMUIOVector *qiov, int flags)
1bdc94
 {
1bdc94
     BDRVQuorumState *s = bs->opaque;
1bdc94
-    QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes);
1bdc94
+    QuorumAIOCB *acb = quorum_aio_get(bs, qiov, offset, bytes, flags);
1bdc94
     int i, ret;
1bdc94
 
1bdc94
     for (i = 0; i < s->num_children; i++) {
1bdc94
@@ -962,6 +967,8 @@ static int quorum_open(BlockDriverState *bs, QDict *options, int flags,
1bdc94
     }
1bdc94
     s->next_child_index = s->num_children;
1bdc94
 
1bdc94
+    bs->supported_write_flags = BDRV_REQ_WRITE_UNCHANGED;
1bdc94
+
1bdc94
     g_free(opened);
1bdc94
     goto exit;
1bdc94
 
1bdc94
-- 
1bdc94
1.8.3.1
1bdc94