qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Max Reitz <mreitz@redhat.com>
To: qemu-block@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
	qemu-devel@nongnu.org, Stefan Hajnoczi <stefanha@redhat.com>,
	Max Reitz <mreitz@redhat.com>
Subject: [Qemu-devel] [PATCH v2 3/9] block: Add bdrv_poll_drain_data_objs()
Date: Wed, 19 Jun 2019 17:25:57 +0200	[thread overview]
Message-ID: <20190619152603.5937-4-mreitz@redhat.com> (raw)
In-Reply-To: <20190619152603.5937-1-mreitz@redhat.com>

This function polls all of the involved AioContexts for a GSList of
BdrvCoDrainData objects until all objects' .done is true.

Signed-off-by: Max Reitz <mreitz@redhat.com>
---
 block/io.c | 57 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 57 insertions(+)

diff --git a/block/io.c b/block/io.c
index 6b518e5eb0..eb84774abd 100644
--- a/block/io.c
+++ b/block/io.c
@@ -255,6 +255,63 @@ static void bdrv_drain_invoke(BlockDriverState *bs, bool begin,
     }
 }
 
+/* TODO: Actually use this function and drop this forward declaration */
+static void bdrv_poll_drain_data_objs(GSList **data_objs, bool acquire_ctx)
+    __attribute__((unused));
+
+/*
+ * Poll the AioContexts in the given list of BdrvCoDrainData objects
+ * until all of those objects are "done" (i.e. their .done field is
+ * true).
+ * Also, free all objects and the list.
+ *
+ * If @acquire_ctx is true, the AioContexts are locked while they are
+ * polled.
+ */
+static void bdrv_poll_drain_data_objs(GSList **data_objs, bool acquire_ctx)
+{
+    GSList *contexts = NULL;
+    GSList *iter;
+
+    /* First collect the contexts while the BDSs are not gone */
+    for (iter = *data_objs; iter; iter = iter->next) {
+        BdrvCoDrainData *drain_data = iter->data;
+        contexts = g_slist_prepend(contexts,
+                                   bdrv_get_aio_context(drain_data->bs));
+    }
+
+    /*
+     * Reverse the list so it is in the same order as *data_objs
+     * (prepend and then reverse has better performance than appending)
+     */
+    contexts = g_slist_reverse(contexts);
+
+    /* The BDSs may disappear here, but we only need their contexts */
+    while (*data_objs) {
+        GSList *next;
+        BdrvCoDrainData *drain_data = (*data_objs)->data;
+        AioContext *ctx = contexts->data;
+
+        if (acquire_ctx) {
+            aio_context_acquire(ctx);
+        }
+        AIO_WAIT_WHILE(ctx, !drain_data->done);
+        if (acquire_ctx) {
+            aio_context_release(ctx);
+        }
+
+        g_free(drain_data);
+
+        next = (*data_objs)->next;
+        g_slist_free_1(*data_objs);
+        *data_objs = next;
+
+        next = contexts->next;
+        g_slist_free_1(contexts);
+        contexts = next;
+    }
+}
+
 /* Returns true if BDRV_POLL_WHILE() should go into a blocking aio_poll() */
 bool bdrv_drain_poll(BlockDriverState *bs, bool recursive,
                      BdrvChild *ignore_parent, bool ignore_bds_parents)
-- 
2.21.0



  parent reply	other threads:[~2019-06-19 15:39 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-19 15:25 [Qemu-devel] [PATCH v2 0/9] block: Delay poll when ending drained sections Max Reitz
2019-06-19 15:25 ` [Qemu-devel] [PATCH v2 1/9] block: Introduce BdrvChild.parent_quiesce_counter Max Reitz
2019-06-19 15:25 ` [Qemu-devel] [PATCH v2 2/9] block: Add @data_objs to bdrv_drain_invoke() Max Reitz
2019-06-19 15:25 ` Max Reitz [this message]
2019-06-19 15:25 ` [Qemu-devel] [PATCH v2 4/9] block: Move polling out of bdrv_drain_invoke() Max Reitz
2019-06-19 15:25 ` [Qemu-devel] [PATCH v2 5/9] block: Add @poll to bdrv_parent_drained_end_single() Max Reitz
2019-06-19 15:26 ` [Qemu-devel] [PATCH v2 6/9] block: Add bdrv_drained_end_no_poll() Max Reitz
2019-06-19 15:26 ` [Qemu-devel] [PATCH v2 7/9] block: Fix BDS children's .drained_end() Max Reitz
2019-06-19 15:26 ` [Qemu-devel] [PATCH v2 8/9] iotests: Add @has_quit to vm.shutdown() Max Reitz
2019-06-19 15:26 ` [Qemu-devel] [PATCH v2 9/9] iotests: Test commit with a filter on the chain Max Reitz
2019-07-15 13:24 ` [Qemu-devel] [PATCH v2 0/9] block: Delay poll when ending drained sections Max Reitz
2019-07-16 14:40 ` Kevin Wolf
2019-07-16 16:24   ` Max Reitz
2019-07-16 16:37     ` Kevin Wolf
2019-07-17 13:20       ` Max Reitz

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190619152603.5937-4-mreitz@redhat.com \
    --to=mreitz@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).