Blame SOURCES/kvm-job-Move-.complete-callback-to-Job.patch

357786
From dcfc2f6514b672e68b62effbbc04c88ca16ac89a Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Tue, 26 Jun 2018 09:48:19 +0200
357786
Subject: [PATCH 50/89] job: Move .complete callback to Job
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180626094856.6924-37-kwolf@redhat.com>
357786
Patchwork-id: 81084
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 36/73] job: Move .complete callback to Job
357786
Bugzilla: 1513543
357786
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
357786
RH-Acked-by: Max Reitz <mreitz@redhat.com>
357786
RH-Acked-by: Fam Zheng <famz@redhat.com>
357786
357786
This moves the .complete callback that tells a READY job to complete
357786
from BlockJobDriver to JobDriver. The wrapper function job_complete()
357786
doesn't require anything block job specific any more and can be moved
357786
to Job.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Max Reitz <mreitz@redhat.com>
357786
(cherry picked from commit 3453d97243c72988c89a0105fa9546890eae7bd4)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/mirror.c               | 10 +++++-----
357786
 blockdev.c                   |  2 +-
357786
 blockjob.c                   | 23 +++++------------------
357786
 include/block/blockjob.h     | 10 ----------
357786
 include/block/blockjob_int.h |  6 ------
357786
 include/qemu/job.h           |  8 ++++++++
357786
 job.c                        | 16 ++++++++++++++++
357786
 tests/test-bdrv-drain.c      |  6 +++---
357786
 tests/test-blockjob.c        | 10 +++++-----
357786
 9 files changed, 43 insertions(+), 48 deletions(-)
357786
357786
diff --git a/block/mirror.c b/block/mirror.c
357786
index a579bd8..656237a 100644
357786
--- a/block/mirror.c
357786
+++ b/block/mirror.c
357786
@@ -905,16 +905,16 @@ immediate_exit:
357786
     job_defer_to_main_loop(&s->common.job, mirror_exit, data);
357786
 }
357786
 
357786
-static void mirror_complete(BlockJob *job, Error **errp)
357786
+static void mirror_complete(Job *job, Error **errp)
357786
 {
357786
-    MirrorBlockJob *s = container_of(job, MirrorBlockJob, common);
357786
+    MirrorBlockJob *s = container_of(job, MirrorBlockJob, common.job);
357786
     BlockDriverState *target;
357786
 
357786
     target = blk_bs(s->target);
357786
 
357786
     if (!s->synced) {
357786
         error_setg(errp, "The active block job '%s' cannot be completed",
357786
-                   job->job.id);
357786
+                   job->id);
357786
         return;
357786
     }
357786
 
357786
@@ -995,8 +995,8 @@ static const BlockJobDriver mirror_job_driver = {
357786
         .drain                  = block_job_drain,
357786
         .start                  = mirror_run,
357786
         .pause                  = mirror_pause,
357786
+        .complete               = mirror_complete,
357786
     },
357786
-    .complete               = mirror_complete,
357786
     .attached_aio_context   = mirror_attached_aio_context,
357786
     .drain                  = mirror_drain,
357786
 };
357786
@@ -1010,8 +1010,8 @@ static const BlockJobDriver commit_active_job_driver = {
357786
         .drain                  = block_job_drain,
357786
         .start                  = mirror_run,
357786
         .pause                  = mirror_pause,
357786
+        .complete               = mirror_complete,
357786
     },
357786
-    .complete               = mirror_complete,
357786
     .attached_aio_context   = mirror_attached_aio_context,
357786
     .drain                  = mirror_drain,
357786
 };
357786
diff --git a/blockdev.c b/blockdev.c
357786
index 89df7d9..c2b2be1 100644
357786
--- a/blockdev.c
357786
+++ b/blockdev.c
357786
@@ -3941,7 +3941,7 @@ void qmp_block_job_complete(const char *device, Error **errp)
357786
     }
357786
 
357786
     trace_qmp_block_job_complete(job);
357786
-    block_job_complete(job, errp);
357786
+    job_complete(&job->job, errp);
357786
     aio_context_release(aio_context);
357786
 }
357786
 
357786
diff --git a/blockjob.c b/blockjob.c
357786
index 63e1669..0ca7672 100644
357786
--- a/blockjob.c
357786
+++ b/blockjob.c
357786
@@ -481,24 +481,6 @@ int64_t block_job_ratelimit_get_delay(BlockJob *job, uint64_t n)
357786
     return ratelimit_calculate_delay(&job->limit, n);
357786
 }
357786
 
357786
-void block_job_complete(BlockJob *job, Error **errp)
357786
-{
357786
-    /* Should not be reachable via external interface for internal jobs */
357786
-    assert(job->job.id);
357786
-    if (job_apply_verb(&job->job, JOB_VERB_COMPLETE, errp)) {
357786
-        return;
357786
-    }
357786
-    if (job->job.pause_count || job_is_cancelled(&job->job) ||
357786
-        !job->driver->complete)
357786
-    {
357786
-        error_setg(errp, "The active block job '%s' cannot be completed",
357786
-                   job->job.id);
357786
-        return;
357786
-    }
357786
-
357786
-    job->driver->complete(job, errp);
357786
-}
357786
-
357786
 void block_job_finalize(BlockJob *job, Error **errp)
357786
 {
357786
     assert(job && job->job.id);
357786
@@ -571,6 +553,11 @@ void block_job_cancel_sync_all(void)
357786
     }
357786
 }
357786
 
357786
+static void block_job_complete(BlockJob *job, Error **errp)
357786
+{
357786
+    job_complete(&job->job, errp);
357786
+}
357786
+
357786
 int block_job_complete_sync(BlockJob *job, Error **errp)
357786
 {
357786
     return block_job_finish_sync(job, &block_job_complete, errp);
357786
diff --git a/include/block/blockjob.h b/include/block/blockjob.h
357786
index d975efe..85ce18a 100644
357786
--- a/include/block/blockjob.h
357786
+++ b/include/block/blockjob.h
357786
@@ -154,16 +154,6 @@ void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp);
357786
 void block_job_cancel(BlockJob *job, bool force);
357786
 
357786
 /**
357786
- * block_job_complete:
357786
- * @job: The job to be completed.
357786
- * @errp: Error object.
357786
- *
357786
- * Asynchronously complete the specified job.
357786
- */
357786
-void block_job_complete(BlockJob *job, Error **errp);
357786
-
357786
-
357786
-/**
357786
  * block_job_finalize:
357786
  * @job: The job to fully commit and finish.
357786
  * @errp: Error object.
357786
diff --git a/include/block/blockjob_int.h b/include/block/blockjob_int.h
357786
index 38fe22d..b8ca7bb 100644
357786
--- a/include/block/blockjob_int.h
357786
+++ b/include/block/blockjob_int.h
357786
@@ -39,12 +39,6 @@ struct BlockJobDriver {
357786
     JobDriver job_driver;
357786
 
357786
     /**
357786
-     * Optional callback for job types whose completion must be triggered
357786
-     * manually.
357786
-     */
357786
-    void (*complete)(BlockJob *job, Error **errp);
357786
-
357786
-    /**
357786
      * If the callback is not NULL, prepare will be invoked when all the jobs
357786
      * belonging to the same transaction complete; or upon this job's completion
357786
      * if it is not in a transaction.
357786
diff --git a/include/qemu/job.h b/include/qemu/job.h
357786
index aebc195..8f7f71a 100644
357786
--- a/include/qemu/job.h
357786
+++ b/include/qemu/job.h
357786
@@ -167,6 +167,12 @@ struct JobDriver {
357786
      */
357786
     void (*user_resume)(Job *job);
357786
 
357786
+    /**
357786
+     * Optional callback for job types whose completion must be triggered
357786
+     * manually.
357786
+     */
357786
+    void (*complete)(Job *job, Error **errp);
357786
+
357786
     /*
357786
      * If the callback is not NULL, it will be invoked when the job has to be
357786
      * synchronously cancelled or completed; it should drain any activities
357786
@@ -363,6 +369,8 @@ int job_apply_verb(Job *job, JobVerb verb, Error **errp);
357786
 /** The @job could not be started, free it. */
357786
 void job_early_fail(Job *job);
357786
 
357786
+/** Asynchronously complete the specified @job. */
357786
+void job_complete(Job *job, Error **errp);;
357786
 
357786
 typedef void JobDeferToMainLoopFn(Job *job, void *opaque);
357786
 
357786
diff --git a/job.c b/job.c
357786
index 3772a35..8ceac0b 100644
357786
--- a/job.c
357786
+++ b/job.c
357786
@@ -556,6 +556,22 @@ int job_finalize_single(Job *job)
357786
     return 0;
357786
 }
357786
 
357786
+void job_complete(Job *job, Error **errp)
357786
+{
357786
+    /* Should not be reachable via external interface for internal jobs */
357786
+    assert(job->id);
357786
+    if (job_apply_verb(job, JOB_VERB_COMPLETE, errp)) {
357786
+        return;
357786
+    }
357786
+    if (job->pause_count || job_is_cancelled(job) || !job->driver->complete) {
357786
+        error_setg(errp, "The active block job '%s' cannot be completed",
357786
+                   job->id);
357786
+        return;
357786
+    }
357786
+
357786
+    job->driver->complete(job, errp);
357786
+}
357786
+
357786
 
357786
 typedef struct {
357786
     Job *job;
357786
diff --git a/tests/test-bdrv-drain.c b/tests/test-bdrv-drain.c
357786
index 58ea566..b428aac 100644
357786
--- a/tests/test-bdrv-drain.c
357786
+++ b/tests/test-bdrv-drain.c
357786
@@ -514,9 +514,9 @@ static void coroutine_fn test_job_start(void *opaque)
357786
     job_defer_to_main_loop(&s->common.job, test_job_completed, NULL);
357786
 }
357786
 
357786
-static void test_job_complete(BlockJob *job, Error **errp)
357786
+static void test_job_complete(Job *job, Error **errp)
357786
 {
357786
-    TestBlockJob *s = container_of(job, TestBlockJob, common);
357786
+    TestBlockJob *s = container_of(job, TestBlockJob, common.job);
357786
     s->should_complete = true;
357786
 }
357786
 
357786
@@ -527,8 +527,8 @@ BlockJobDriver test_job_driver = {
357786
         .user_resume    = block_job_user_resume,
357786
         .drain          = block_job_drain,
357786
         .start          = test_job_start,
357786
+        .complete       = test_job_complete,
357786
     },
357786
-    .complete       = test_job_complete,
357786
 };
357786
 
357786
 static void test_blockjob_common(enum drain_type drain_type)
357786
diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c
357786
index 592a136..e44c608 100644
357786
--- a/tests/test-blockjob.c
357786
+++ b/tests/test-blockjob.c
357786
@@ -171,9 +171,9 @@ static void cancel_job_completed(Job *job, void *opaque)
357786
     block_job_completed(bjob, 0);
357786
 }
357786
 
357786
-static void cancel_job_complete(BlockJob *job, Error **errp)
357786
+static void cancel_job_complete(Job *job, Error **errp)
357786
 {
357786
-    CancelJob *s = container_of(job, CancelJob, common);
357786
+    CancelJob *s = container_of(job, CancelJob, common.job);
357786
     s->should_complete = true;
357786
 }
357786
 
357786
@@ -204,8 +204,8 @@ static const BlockJobDriver test_cancel_driver = {
357786
         .user_resume   = block_job_user_resume,
357786
         .drain         = block_job_drain,
357786
         .start         = cancel_job_start,
357786
+        .complete      = cancel_job_complete,
357786
     },
357786
-    .complete      = cancel_job_complete,
357786
 };
357786
 
357786
 static CancelJob *create_common(BlockJob **pjob)
357786
@@ -333,7 +333,7 @@ static void test_cancel_pending(void)
357786
     block_job_enter(job);
357786
     assert(job->job.status == JOB_STATUS_READY);
357786
 
357786
-    block_job_complete(job, &error_abort);
357786
+    job_complete(&job->job, &error_abort);
357786
     block_job_enter(job);
357786
     while (!s->completed) {
357786
         aio_poll(qemu_get_aio_context(), true);
357786
@@ -357,7 +357,7 @@ static void test_cancel_concluded(void)
357786
     block_job_enter(job);
357786
     assert(job->job.status == JOB_STATUS_READY);
357786
 
357786
-    block_job_complete(job, &error_abort);
357786
+    job_complete(&job->job, &error_abort);
357786
     block_job_enter(job);
357786
     while (!s->completed) {
357786
         aio_poll(qemu_get_aio_context(), true);
357786
-- 
357786
1.8.3.1
357786