ae23c9
From 1680cb0e35f1a465feb93ade536c630f62ef23be Mon Sep 17 00:00:00 2001
ae23c9
From: Kevin Wolf <kwolf@redhat.com>
ae23c9
Date: Tue, 26 Jun 2018 09:48:20 +0200
ae23c9
Subject: [PATCH 112/268] job: Move job_finish_sync() to Job
ae23c9
ae23c9
RH-Author: Kevin Wolf <kwolf@redhat.com>
ae23c9
Message-id: <20180626094856.6924-38-kwolf@redhat.com>
ae23c9
Patchwork-id: 81076
ae23c9
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 37/73] job: Move job_finish_sync() to Job
ae23c9
Bugzilla: 1513543
ae23c9
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
ae23c9
RH-Acked-by: Max Reitz <mreitz@redhat.com>
ae23c9
RH-Acked-by: Fam Zheng <famz@redhat.com>
ae23c9
ae23c9
block_job_finish_sync() doesn't contain anything block job specific any
ae23c9
more, so it can be moved to Job.
ae23c9
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Reviewed-by: Max Reitz <mreitz@redhat.com>
ae23c9
(cherry picked from commit 6a74c075aca731e7e945201a4ae2336b8e328433)
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ae23c9
---
ae23c9
 block/commit.c     |  6 +++---
ae23c9
 blockjob.c         | 55 +++++++++---------------------------------------------
ae23c9
 include/qemu/job.h |  9 +++++++++
ae23c9
 job.c              | 28 +++++++++++++++++++++++++++
ae23c9
 4 files changed, 49 insertions(+), 49 deletions(-)
ae23c9
ae23c9
diff --git a/block/commit.c b/block/commit.c
ae23c9
index 02a8af9..40d97a3 100644
ae23c9
--- a/block/commit.c
ae23c9
+++ b/block/commit.c
ae23c9
@@ -112,9 +112,9 @@ static void commit_complete(Job *job, void *opaque)
ae23c9
     blk_unref(s->top);
ae23c9
 
ae23c9
     /* If there is more than one reference to the job (e.g. if called from
ae23c9
-     * block_job_finish_sync()), block_job_completed() won't free it and
ae23c9
-     * therefore the blockers on the intermediate nodes remain. This would
ae23c9
-     * cause bdrv_set_backing_hd() to fail. */
ae23c9
+     * job_finish_sync()), block_job_completed() won't free it and therefore
ae23c9
+     * the blockers on the intermediate nodes remain. This would cause
ae23c9
+     * bdrv_set_backing_hd() to fail. */
ae23c9
     block_job_remove_all_bdrv(bjob);
ae23c9
 
ae23c9
     block_job_completed(&s->common, ret);
ae23c9
diff --git a/blockjob.c b/blockjob.c
ae23c9
index 0ca7672..1ed3e9c 100644
ae23c9
--- a/blockjob.c
ae23c9
+++ b/blockjob.c
ae23c9
@@ -307,40 +307,6 @@ static int block_job_txn_apply(BlockJobTxn *txn, int fn(BlockJob *), bool lock)
ae23c9
     return rc;
ae23c9
 }
ae23c9
 
ae23c9
-static int block_job_finish_sync(BlockJob *job,
ae23c9
-                                 void (*finish)(BlockJob *, Error **errp),
ae23c9
-                                 Error **errp)
ae23c9
-{
ae23c9
-    Error *local_err = NULL;
ae23c9
-    int ret;
ae23c9
-
ae23c9
-    assert(blk_bs(job->blk)->job == job);
ae23c9
-
ae23c9
-    job_ref(&job->job);
ae23c9
-
ae23c9
-    if (finish) {
ae23c9
-        finish(job, &local_err);
ae23c9
-    }
ae23c9
-    if (local_err) {
ae23c9
-        error_propagate(errp, local_err);
ae23c9
-        job_unref(&job->job);
ae23c9
-        return -EBUSY;
ae23c9
-    }
ae23c9
-    /* job_drain calls job_enter, and it should be enough to induce progress
ae23c9
-     * until the job completes or moves to the main thread.
ae23c9
-    */
ae23c9
-    while (!job->job.deferred_to_main_loop && !job_is_completed(&job->job)) {
ae23c9
-        job_drain(&job->job);
ae23c9
-    }
ae23c9
-    while (!job_is_completed(&job->job)) {
ae23c9
-        aio_poll(qemu_get_aio_context(), true);
ae23c9
-    }
ae23c9
-    ret = (job_is_cancelled(&job->job) && job->job.ret == 0)
ae23c9
-          ? -ECANCELED : job->job.ret;
ae23c9
-    job_unref(&job->job);
ae23c9
-    return ret;
ae23c9
-}
ae23c9
-
ae23c9
 static void block_job_completed_txn_abort(BlockJob *job)
ae23c9
 {
ae23c9
     AioContext *ctx;
ae23c9
@@ -375,7 +341,7 @@ static void block_job_completed_txn_abort(BlockJob *job)
ae23c9
         ctx = blk_get_aio_context(other_job->blk);
ae23c9
         if (!job_is_completed(&other_job->job)) {
ae23c9
             assert(job_is_cancelled(&other_job->job));
ae23c9
-            block_job_finish_sync(other_job, NULL, NULL);
ae23c9
+            job_finish_sync(&other_job->job, NULL, NULL);
ae23c9
         }
ae23c9
         job_finalize_single(&other_job->job);
ae23c9
         aio_context_release(ctx);
ae23c9
@@ -528,16 +494,18 @@ void block_job_user_cancel(BlockJob *job, bool force, Error **errp)
ae23c9
 }
ae23c9
 
ae23c9
 /* A wrapper around block_job_cancel() taking an Error ** parameter so it may be
ae23c9
- * used with block_job_finish_sync() without the need for (rather nasty)
ae23c9
- * function pointer casts there. */
ae23c9
-static void block_job_cancel_err(BlockJob *job, Error **errp)
ae23c9
+ * used with job_finish_sync() without the need for (rather nasty) function
ae23c9
+ * pointer casts there. */
ae23c9
+static void block_job_cancel_err(Job *job, Error **errp)
ae23c9
 {
ae23c9
-    block_job_cancel(job, false);
ae23c9
+    BlockJob *bjob = container_of(job, BlockJob, job);
ae23c9
+    assert(is_block_job(job));
ae23c9
+    block_job_cancel(bjob, false);
ae23c9
 }
ae23c9
 
ae23c9
 int block_job_cancel_sync(BlockJob *job)
ae23c9
 {
ae23c9
-    return block_job_finish_sync(job, &block_job_cancel_err, NULL);
ae23c9
+    return job_finish_sync(&job->job, &block_job_cancel_err, NULL);
ae23c9
 }
ae23c9
 
ae23c9
 void block_job_cancel_sync_all(void)
ae23c9
@@ -553,14 +521,9 @@ void block_job_cancel_sync_all(void)
ae23c9
     }
ae23c9
 }
ae23c9
 
ae23c9
-static void block_job_complete(BlockJob *job, Error **errp)
ae23c9
-{
ae23c9
-    job_complete(&job->job, errp);
ae23c9
-}
ae23c9
-
ae23c9
 int block_job_complete_sync(BlockJob *job, Error **errp)
ae23c9
 {
ae23c9
-    return block_job_finish_sync(job, &block_job_complete, errp);
ae23c9
+    return job_finish_sync(&job->job, job_complete, errp);
ae23c9
 }
ae23c9
 
ae23c9
 void block_job_progress_update(BlockJob *job, uint64_t done)
ae23c9
diff --git a/include/qemu/job.h b/include/qemu/job.h
ae23c9
index 8f7f71a..17e2cec 100644
ae23c9
--- a/include/qemu/job.h
ae23c9
+++ b/include/qemu/job.h
ae23c9
@@ -389,6 +389,15 @@ typedef void JobDeferToMainLoopFn(Job *job, void *opaque);
ae23c9
  */
ae23c9
 void job_defer_to_main_loop(Job *job, JobDeferToMainLoopFn *fn, void *opaque);
ae23c9
 
ae23c9
+/**
ae23c9
+ * Synchronously finishes the given @job. If @finish is given, it is called to
ae23c9
+ * trigger completion or cancellation of the job.
ae23c9
+ *
ae23c9
+ * Returns 0 if the job is successfully completed, -ECANCELED if the job was
ae23c9
+ * cancelled before completing, and -errno in other error cases.
ae23c9
+ */
ae23c9
+int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp);
ae23c9
+
ae23c9
 /* TODO To be removed from the public interface */
ae23c9
 void job_state_transition(Job *job, JobStatus s1);
ae23c9
 void coroutine_fn job_do_yield(Job *job, uint64_t ns);
ae23c9
diff --git a/job.c b/job.c
ae23c9
index 8ceac0b..aa74b4c 100644
ae23c9
--- a/job.c
ae23c9
+++ b/job.c
ae23c9
@@ -603,3 +603,31 @@ void job_defer_to_main_loop(Job *job, JobDeferToMainLoopFn *fn, void *opaque)
ae23c9
     aio_bh_schedule_oneshot(qemu_get_aio_context(),
ae23c9
                             job_defer_to_main_loop_bh, data);
ae23c9
 }
ae23c9
+
ae23c9
+int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp)
ae23c9
+{
ae23c9
+    Error *local_err = NULL;
ae23c9
+    int ret;
ae23c9
+
ae23c9
+    job_ref(job);
ae23c9
+
ae23c9
+    if (finish) {
ae23c9
+        finish(job, &local_err);
ae23c9
+    }
ae23c9
+    if (local_err) {
ae23c9
+        error_propagate(errp, local_err);
ae23c9
+        job_unref(job);
ae23c9
+        return -EBUSY;
ae23c9
+    }
ae23c9
+    /* job_drain calls job_enter, and it should be enough to induce progress
ae23c9
+     * until the job completes or moves to the main thread. */
ae23c9
+    while (!job->deferred_to_main_loop && !job_is_completed(job)) {
ae23c9
+        job_drain(job);
ae23c9
+    }
ae23c9
+    while (!job_is_completed(job)) {
ae23c9
+        aio_poll(qemu_get_aio_context(), true);
ae23c9
+    }
ae23c9
+    ret = (job_is_cancelled(job) && job->ret == 0) ? -ECANCELED : job->ret;
ae23c9
+    job_unref(job);
ae23c9
+    return ret;
ae23c9
+}
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9