qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [RFC PATCH 02/14] quorom: add a new read pattern


From: Max Reitz
Subject: Re: [Qemu-devel] [RFC PATCH 02/14] quorom: add a new read pattern
Date: Mon, 23 Feb 2015 15:36:28 -0500
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0

On 2015-02-11 at 22:07, Wen Congyang wrote:
To block replication, we only need to read from the first child.

Signed-off-by: Wen Congyang <address@hidden>
Signed-off-by: zhanghailiang <address@hidden>
Signed-off-by: Gonglei <address@hidden>
Cc: Luiz Capitulino <address@hidden>
Cc: Michael Roth <address@hidden>
---
  block/quorum.c       | 5 +++--
  qapi/block-core.json | 4 +++-
  2 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/block/quorum.c b/block/quorum.c
index 437b122..5ed1ff8 100644
--- a/block/quorum.c
+++ b/block/quorum.c
@@ -286,9 +286,10 @@ static void quorum_aio_cb(void *opaque, int ret)
      BDRVQuorumState *s = acb->common.bs->opaque;
      bool rewrite = false;
- if (acb->is_read && s->read_pattern == QUORUM_READ_PATTERN_FIFO) {
+    if (acb->is_read && s->read_pattern != QUORUM_READ_PATTERN_QUORUM) {

Maybe I'd prefer "&& (s->read_pattern == QUORUM_READ_PATTERN_FIFO || s->read_pattern == QUORUM_READ_PATTERN_FIRST)"; but it does fit with what quorum_aio_readv() does, so I'm fine with it.

          /* We try to read next child in FIFO order if we fail to read */

However, I think this comment should be modified, because in fact we do not try to read the next child if s->read_pattern == QUORUM_READ_PATTERN_FIRST.

-        if (ret < 0 && ++acb->child_iter < s->num_children) {
+        if (s->read_pattern == QUORUM_READ_PATTERN_FIFO &&
+            ret < 0 && ++acb->child_iter < s->num_children) {
              read_fifo_child(acb);
              return;
          }
diff --git a/qapi/block-core.json b/qapi/block-core.json
index a3fdaf0..d6382e9 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -1618,9 +1618,11 @@
  #
  # @fifo: read only from the first child that has not failed
  #
+# @first: read only from the first child

There should be version info here (like "(Since 2.3)").

Max

+#
  # Since: 2.2
  ##
-{ 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo' ] }
+{ 'enum': 'QuorumReadPattern', 'data': [ 'quorum', 'fifo', 'first' ] }
##
  # @BlockdevOptionsQuorum




reply via email to

[Prev in Thread] Current Thread [Next in Thread]