Blame SOURCES/kvm-job-Use-AIO_WAIT_WHILE-in-job_finish_sync.patch

357786
From 1c16ba251ec8d0bf64ee34a0ef71b5912907de12 Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Fri, 14 Sep 2018 10:55:29 +0200
357786
Subject: [PATCH 38/49] job: Use AIO_WAIT_WHILE() in job_finish_sync()
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180914105540.18077-32-kwolf@redhat.com>
357786
Patchwork-id: 82184
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 31/42] job: Use AIO_WAIT_WHILE() in job_finish_sync()
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
job_finish_sync() needs to release the AioContext lock of the job before
357786
calling aio_poll(). Otherwise, callbacks called by aio_poll() would
357786
possibly take the lock a second time and run into a deadlock with a
357786
nested AIO_WAIT_WHILE() call.
357786
357786
Also, job_drain() without aio_poll() isn't necessarily enough to make
357786
progress on a job, it could depend on bottom halves to be executed.
357786
357786
Combine both open-coded while loops into a single AIO_WAIT_WHILE() call
357786
that solves both of these problems.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Fam Zheng <famz@redhat.com>
357786
Reviewed-by: Max Reitz <mreitz@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 job.c | 14 ++++++--------
357786
 1 file changed, 6 insertions(+), 8 deletions(-)
357786
357786
diff --git a/job.c b/job.c
357786
index 5a0ccc7..47b5a11 100644
357786
--- a/job.c
357786
+++ b/job.c
357786
@@ -29,6 +29,7 @@
357786
 #include "qemu/job.h"
357786
 #include "qemu/id.h"
357786
 #include "qemu/main-loop.h"
357786
+#include "block/aio-wait.h"
357786
 #include "trace-root.h"
357786
 #include "qapi/qapi-events-job.h"
357786
 
357786
@@ -957,6 +958,7 @@ void job_complete(Job *job, Error **errp)
357786
 int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp)
357786
 {
357786
     Error *local_err = NULL;
357786
+    AioWait dummy_wait = {};
357786
     int ret;
357786
 
357786
     job_ref(job);
357786
@@ -969,14 +971,10 @@ int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp)
357786
         job_unref(job);
357786
         return -EBUSY;
357786
     }
357786
-    /* job_drain calls job_enter, and it should be enough to induce progress
357786
-     * until the job completes or moves to the main thread. */
357786
-    while (!job->deferred_to_main_loop && !job_is_completed(job)) {
357786
-        job_drain(job);
357786
-    }
357786
-    while (!job_is_completed(job)) {
357786
-        aio_poll(qemu_get_aio_context(), true);
357786
-    }
357786
+
357786
+    AIO_WAIT_WHILE(&dummy_wait, job->aio_context,
357786
+                   (job_drain(job), !job_is_completed(job)));
357786
+
357786
     ret = (job_is_cancelled(job) && job->ret == 0) ? -ECANCELED : job->ret;
357786
     job_unref(job);
357786
     return ret;
357786
-- 
357786
1.8.3.1
357786