Blame SOURCES/kvm-block-Use-bdrv_do_drain_begin-end-in-bdrv_drain_all.patch

357786
From 21362b70047568949d14388b254e4b87674a2730 Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Fri, 14 Sep 2018 10:55:00 +0200
357786
Subject: [PATCH 09/49] block: Use bdrv_do_drain_begin/end in bdrv_drain_all()
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180914105540.18077-3-kwolf@redhat.com>
357786
Patchwork-id: 82154
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 02/42] block: Use bdrv_do_drain_begin/end in bdrv_drain_all()
357786
Bugzilla: 1601212
357786
RH-Acked-by: John Snow <jsnow@redhat.com>
357786
RH-Acked-by: Max Reitz <mreitz@redhat.com>
357786
RH-Acked-by: Fam Zheng <famz@redhat.com>
357786
357786
bdrv_do_drain_begin/end() implement already everything that
357786
bdrv_drain_all_begin/end() need and currently still do manually: Disable
357786
external events, call parent drain callbacks, call block driver
357786
callbacks.
357786
357786
It also does two more things:
357786
357786
The first is incrementing bs->quiesce_counter. bdrv_drain_all() already
357786
stood out in the test case by behaving different from the other drain
357786
variants. Adding this is not only safe, but in fact a bug fix.
357786
357786
The second is calling bdrv_drain_recurse(). We already do that later in
357786
the same function in a loop, so basically doing an early first iteration
357786
doesn't hurt.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
357786
(cherry picked from commit 79ab8b21dc19c08adc407504e456ff64b9dacb66)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/io.c              | 10 ++--------
357786
 tests/test-bdrv-drain.c | 14 ++++----------
357786
 2 files changed, 6 insertions(+), 18 deletions(-)
357786
357786
diff --git a/block/io.c b/block/io.c
357786
index 7e0a169..230b551 100644
357786
--- a/block/io.c
357786
+++ b/block/io.c
357786
@@ -412,11 +412,8 @@ void bdrv_drain_all_begin(void)
357786
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
357786
         AioContext *aio_context = bdrv_get_aio_context(bs);
357786
 
357786
-        /* Stop things in parent-to-child order */
357786
         aio_context_acquire(aio_context);
357786
-        aio_disable_external(aio_context);
357786
-        bdrv_parent_drained_begin(bs, NULL);
357786
-        bdrv_drain_invoke(bs, true, true);
357786
+        bdrv_do_drained_begin(bs, true, NULL);
357786
         aio_context_release(aio_context);
357786
 
357786
         if (!g_slist_find(aio_ctxs, aio_context)) {
357786
@@ -457,11 +454,8 @@ void bdrv_drain_all_end(void)
357786
     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
357786
         AioContext *aio_context = bdrv_get_aio_context(bs);
357786
 
357786
-        /* Re-enable things in child-to-parent order */
357786
         aio_context_acquire(aio_context);
357786
-        bdrv_drain_invoke(bs, false, true);
357786
-        bdrv_parent_drained_end(bs, NULL);
357786
-        aio_enable_external(aio_context);
357786
+        bdrv_do_drained_end(bs, true, NULL);
357786
         aio_context_release(aio_context);
357786
     }
357786
 }
357786
diff --git a/tests/test-bdrv-drain.c b/tests/test-bdrv-drain.c
357786
index dee0a10..f1276a1 100644
357786
--- a/tests/test-bdrv-drain.c
357786
+++ b/tests/test-bdrv-drain.c
357786
@@ -276,8 +276,7 @@ static void test_quiesce_common(enum drain_type drain_type, bool recursive)
357786
 
357786
 static void test_quiesce_drain_all(void)
357786
 {
357786
-    // XXX drain_all doesn't quiesce
357786
-    //test_quiesce_common(BDRV_DRAIN_ALL, true);
357786
+    test_quiesce_common(BDRV_DRAIN_ALL, true);
357786
 }
357786
 
357786
 static void test_quiesce_drain(void)
357786
@@ -319,12 +318,7 @@ static void test_nested(void)
357786
 
357786
     for (outer = 0; outer < DRAIN_TYPE_MAX; outer++) {
357786
         for (inner = 0; inner < DRAIN_TYPE_MAX; inner++) {
357786
-            /* XXX bdrv_drain_all() doesn't increase the quiesce_counter */
357786
-            int bs_quiesce      = (outer != BDRV_DRAIN_ALL) +
357786
-                                  (inner != BDRV_DRAIN_ALL);
357786
-            int backing_quiesce = (outer == BDRV_SUBTREE_DRAIN) +
357786
-                                  (inner == BDRV_SUBTREE_DRAIN);
357786
-            int backing_cb_cnt  = (outer != BDRV_DRAIN) +
357786
+            int backing_quiesce = (outer != BDRV_DRAIN) +
357786
                                   (inner != BDRV_DRAIN);
357786
 
357786
             g_assert_cmpint(bs->quiesce_counter, ==, 0);
357786
@@ -335,10 +329,10 @@ static void test_nested(void)
357786
             do_drain_begin(outer, bs);
357786
             do_drain_begin(inner, bs);
357786
 
357786
-            g_assert_cmpint(bs->quiesce_counter, ==, bs_quiesce);
357786
+            g_assert_cmpint(bs->quiesce_counter, ==, 2);
357786
             g_assert_cmpint(backing->quiesce_counter, ==, backing_quiesce);
357786
             g_assert_cmpint(s->drain_count, ==, 2);
357786
-            g_assert_cmpint(backing_s->drain_count, ==, backing_cb_cnt);
357786
+            g_assert_cmpint(backing_s->drain_count, ==, backing_quiesce);
357786
 
357786
             do_drain_end(inner, bs);
357786
             do_drain_end(outer, bs);
357786
-- 
357786
1.8.3.1
357786