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