Blame SOURCES/kvm-block-Defer-.bdrv_drain_begin-callback-to-polling-ph.patch

357786
From 2e9423c192511fd2704eea357403f6817cb9aae7 Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Fri, 14 Sep 2018 10:55:12 +0200
357786
Subject: [PATCH 21/49] block: Defer .bdrv_drain_begin callback to polling
357786
 phase
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180914105540.18077-15-kwolf@redhat.com>
357786
Patchwork-id: 82166
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 14/42] block: Defer .bdrv_drain_begin callback to polling phase
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
We cannot allow aio_poll() in bdrv_drain_invoke(begin=true) until we're
357786
done with propagating the drain through the graph and are doing the
357786
single final BDRV_POLL_WHILE().
357786
357786
Just schedule the coroutine with the callback and increase bs->in_flight
357786
to make sure that the polling phase will wait for it.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
(cherry picked from commit 0109e7e6f83ae5166b81bbd9a4319d60be49985a)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/io.c | 28 +++++++++++++++++++++++-----
357786
 1 file changed, 23 insertions(+), 5 deletions(-)
357786
357786
diff --git a/block/io.c b/block/io.c
357786
index 9c41ff9..23fe069 100644
357786
--- a/block/io.c
357786
+++ b/block/io.c
357786
@@ -181,22 +181,40 @@ static void coroutine_fn bdrv_drain_invoke_entry(void *opaque)
357786
 
357786
     /* Set data->done before reading bs->wakeup.  */
357786
     atomic_mb_set(&data->done, true);
357786
-    bdrv_wakeup(bs);
357786
+    bdrv_dec_in_flight(bs);
357786
+
357786
+    if (data->begin) {
357786
+        g_free(data);
357786
+    }
357786
 }
357786
 
357786
 /* Recursively call BlockDriver.bdrv_co_drain_begin/end callbacks */
357786
 static void bdrv_drain_invoke(BlockDriverState *bs, bool begin)
357786
 {
357786
-    BdrvCoDrainData data = { .bs = bs, .done = false, .begin = begin};
357786
+    BdrvCoDrainData *data;
357786
 
357786
     if (!bs->drv || (begin && !bs->drv->bdrv_co_drain_begin) ||
357786
             (!begin && !bs->drv->bdrv_co_drain_end)) {
357786
         return;
357786
     }
357786
 
357786
-    data.co = qemu_coroutine_create(bdrv_drain_invoke_entry, &data);
357786
-    bdrv_coroutine_enter(bs, data.co);
357786
-    BDRV_POLL_WHILE(bs, !data.done);
357786
+    data = g_new(BdrvCoDrainData, 1);
357786
+    *data = (BdrvCoDrainData) {
357786
+        .bs = bs,
357786
+        .done = false,
357786
+        .begin = begin
357786
+    };
357786
+
357786
+    /* Make sure the driver callback completes during the polling phase for
357786
+     * drain_begin. */
357786
+    bdrv_inc_in_flight(bs);
357786
+    data->co = qemu_coroutine_create(bdrv_drain_invoke_entry, data);
357786
+    aio_co_schedule(bdrv_get_aio_context(bs), data->co);
357786
+
357786
+    if (!begin) {
357786
+        BDRV_POLL_WHILE(bs, !data->done);
357786
+        g_free(data);
357786
+    }
357786
 }
357786
 
357786
 /* Returns true if BDRV_POLL_WHILE() should go into a blocking aio_poll() */
357786
-- 
357786
1.8.3.1
357786