Blame SOURCES/kvm-job-Add-job_transition_to_ready.patch

357786
From 0bf028e317ae12d5559465d15a5780de8abfe464 Mon Sep 17 00:00:00 2001
357786
From: Kevin Wolf <kwolf@redhat.com>
357786
Date: Tue, 26 Jun 2018 09:48:28 +0200
357786
Subject: [PATCH 59/89] job: Add job_transition_to_ready()
357786
357786
RH-Author: Kevin Wolf <kwolf@redhat.com>
357786
Message-id: <20180626094856.6924-46-kwolf@redhat.com>
357786
Patchwork-id: 81114
357786
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 45/73] job: Add job_transition_to_ready()
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
The transition to the READY state was still performed in the BlockJob
357786
layer, in the same function that sent the BLOCK_JOB_READY QMP event.
357786
357786
This patch brings the state transition to the Job layer and implements
357786
the QMP event using a notifier called from the Job layer, like we
357786
already do for other events related to state transitions.
357786
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Reviewed-by: Max Reitz <mreitz@redhat.com>
357786
(cherry picked from commit 2e1795b58131427719c7cd11f8b9b6984b3f24f8)
357786
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
357786
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
357786
---
357786
 block/mirror.c               |  6 +++---
357786
 blockjob.c                   | 33 ++++++++++++++++++---------------
357786
 include/block/blockjob.h     |  3 +++
357786
 include/block/blockjob_int.h |  8 --------
357786
 include/qemu/job.h           |  9 ++++++---
357786
 job.c                        | 16 +++++++++++++---
357786
 tests/test-bdrv-drain.c      |  2 +-
357786
 tests/test-blockjob.c        |  2 +-
357786
 8 files changed, 45 insertions(+), 34 deletions(-)
357786
357786
diff --git a/block/mirror.c b/block/mirror.c
357786
index 687f955..bdc1b5b 100644
357786
--- a/block/mirror.c
357786
+++ b/block/mirror.c
357786
@@ -727,8 +727,8 @@ static void coroutine_fn mirror_run(void *opaque)
357786
     }
357786
 
357786
     if (s->bdev_length == 0) {
357786
-        /* Report BLOCK_JOB_READY and wait for complete. */
357786
-        block_job_event_ready(&s->common);
357786
+        /* Transition to the READY state and wait for complete. */
357786
+        job_transition_to_ready(&s->common.job);
357786
         s->synced = true;
357786
         while (!job_is_cancelled(&s->common.job) && !s->should_complete) {
357786
             job_yield(&s->common.job);
357786
@@ -824,7 +824,7 @@ static void coroutine_fn mirror_run(void *opaque)
357786
                  * report completion.  This way, block-job-cancel will leave
357786
                  * the target in a consistent state.
357786
                  */
357786
-                block_job_event_ready(&s->common);
357786
+                job_transition_to_ready(&s->common.job);
357786
                 s->synced = true;
357786
             }
357786
 
357786
diff --git a/blockjob.c b/blockjob.c
357786
index 38f18e9..da11b3b 100644
357786
--- a/blockjob.c
357786
+++ b/blockjob.c
357786
@@ -338,6 +338,22 @@ static void block_job_event_pending(Notifier *n, void *opaque)
357786
                                       &error_abort);
357786
 }
357786
 
357786
+static void block_job_event_ready(Notifier *n, void *opaque)
357786
+{
357786
+    BlockJob *job = opaque;
357786
+
357786
+    if (block_job_is_internal(job)) {
357786
+        return;
357786
+    }
357786
+
357786
+    qapi_event_send_block_job_ready(job_type(&job->job),
357786
+                                    job->job.id,
357786
+                                    job->len,
357786
+                                    job->offset,
357786
+                                    job->speed, &error_abort);
357786
+}
357786
+
357786
+
357786
 /*
357786
  * API for block job drivers and the block layer.  These functions are
357786
  * declared in blockjob_int.h.
357786
@@ -386,12 +402,14 @@ void *block_job_create(const char *job_id, const BlockJobDriver *driver,
357786
     job->finalize_cancelled_notifier.notify = block_job_event_cancelled;
357786
     job->finalize_completed_notifier.notify = block_job_event_completed;
357786
     job->pending_notifier.notify = block_job_event_pending;
357786
+    job->ready_notifier.notify = block_job_event_ready;
357786
 
357786
     notifier_list_add(&job->job.on_finalize_cancelled,
357786
                       &job->finalize_cancelled_notifier);
357786
     notifier_list_add(&job->job.on_finalize_completed,
357786
                       &job->finalize_completed_notifier);
357786
     notifier_list_add(&job->job.on_pending, &job->pending_notifier);
357786
+    notifier_list_add(&job->job.on_ready, &job->ready_notifier);
357786
 
357786
     error_setg(&job->blocker, "block device is in use by block job: %s",
357786
                job_type_str(&job->job));
357786
@@ -433,21 +451,6 @@ void block_job_user_resume(Job *job)
357786
     block_job_iostatus_reset(bjob);
357786
 }
357786
 
357786
-void block_job_event_ready(BlockJob *job)
357786
-{
357786
-    job_state_transition(&job->job, JOB_STATUS_READY);
357786
-
357786
-    if (block_job_is_internal(job)) {
357786
-        return;
357786
-    }
357786
-
357786
-    qapi_event_send_block_job_ready(job_type(&job->job),
357786
-                                    job->job.id,
357786
-                                    job->len,
357786
-                                    job->offset,
357786
-                                    job->speed, &error_abort);
357786
-}
357786
-
357786
 BlockErrorAction block_job_error_action(BlockJob *job, BlockdevOnError on_err,
357786
                                         int is_read, int error)
357786
 {
357786
diff --git a/include/block/blockjob.h b/include/block/blockjob.h
357786
index 8e1e1ee..4fca45f 100644
357786
--- a/include/block/blockjob.h
357786
+++ b/include/block/blockjob.h
357786
@@ -76,6 +76,9 @@ typedef struct BlockJob {
357786
     /** Called when the job transitions to PENDING */
357786
     Notifier pending_notifier;
357786
 
357786
+    /** Called when the job transitions to READY */
357786
+    Notifier ready_notifier;
357786
+
357786
     /** BlockDriverStates that are involved in this block job */
357786
     GSList *nodes;
357786
 } BlockJob;
357786
diff --git a/include/block/blockjob_int.h b/include/block/blockjob_int.h
357786
index 806ac64..5cd50c6 100644
357786
--- a/include/block/blockjob_int.h
357786
+++ b/include/block/blockjob_int.h
357786
@@ -116,14 +116,6 @@ void block_job_drain(Job *job);
357786
 int64_t block_job_ratelimit_get_delay(BlockJob *job, uint64_t n);
357786
 
357786
 /**
357786
- * block_job_event_ready:
357786
- * @job: The job which is now ready to be completed.
357786
- *
357786
- * Send a BLOCK_JOB_READY event for the specified job.
357786
- */
357786
-void block_job_event_ready(BlockJob *job);
357786
-
357786
-/**
357786
  * block_job_error_action:
357786
  * @job: The job to signal an error for.
357786
  * @on_err: The error action setting.
357786
diff --git a/include/qemu/job.h b/include/qemu/job.h
357786
index 487f9d9..bfc2bc5 100644
357786
--- a/include/qemu/job.h
357786
+++ b/include/qemu/job.h
357786
@@ -132,6 +132,9 @@ typedef struct Job {
357786
     /** Notifiers called when the job transitions to PENDING */
357786
     NotifierList on_pending;
357786
 
357786
+    /** Notifiers called when the job transitions to READY */
357786
+    NotifierList on_ready;
357786
+
357786
     /** Element of the list of jobs */
357786
     QLIST_ENTRY(Job) job_list;
357786
 
357786
@@ -426,6 +429,9 @@ 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
+/** Moves the @job from RUNNING to READY */
357786
+void job_transition_to_ready(Job *job);
357786
+
357786
 /**
357786
  * @job: The job being completed.
357786
  * @ret: The status code.
357786
@@ -522,7 +528,4 @@ void job_defer_to_main_loop(Job *job, JobDeferToMainLoopFn *fn, void *opaque);
357786
  */
357786
 int job_finish_sync(Job *job, void (*finish)(Job *, Error **errp), Error **errp);
357786
 
357786
-/* TODO To be removed from the public interface */
357786
-void job_state_transition(Job *job, JobStatus s1);
357786
-
357786
 #endif
357786
diff --git a/job.c b/job.c
357786
index aa4c746..b5bd51b 100644
357786
--- a/job.c
357786
+++ b/job.c
357786
@@ -157,9 +157,7 @@ static int job_txn_apply(JobTxn *txn, int fn(Job *), bool lock)
357786
     return rc;
357786
 }
357786
 
357786
-
357786
-/* TODO Make static once the whole state machine is in job.c */
357786
-void job_state_transition(Job *job, JobStatus s1)
357786
+static void job_state_transition(Job *job, JobStatus s1)
357786
 {
357786
     JobStatus s0 = job->status;
357786
     assert(s1 >= 0 && s1 <= JOB_STATUS__MAX);
357786
@@ -321,6 +319,7 @@ void *job_create(const char *job_id, const JobDriver *driver, JobTxn *txn,
357786
     notifier_list_init(&job->on_finalize_cancelled);
357786
     notifier_list_init(&job->on_finalize_completed);
357786
     notifier_list_init(&job->on_pending);
357786
+    notifier_list_init(&job->on_ready);
357786
 
357786
     job_state_transition(job, JOB_STATUS_CREATED);
357786
     aio_timer_init(qemu_get_aio_context(), &job->sleep_timer,
357786
@@ -380,6 +379,11 @@ static void job_event_pending(Job *job)
357786
     notifier_list_notify(&job->on_pending, job);
357786
 }
357786
 
357786
+static void job_event_ready(Job *job)
357786
+{
357786
+    notifier_list_notify(&job->on_ready, job);
357786
+}
357786
+
357786
 void job_enter_cond(Job *job, bool(*fn)(Job *job))
357786
 {
357786
     if (!job_started(job)) {
357786
@@ -799,6 +803,12 @@ static int job_transition_to_pending(Job *job)
357786
     return 0;
357786
 }
357786
 
357786
+void job_transition_to_ready(Job *job)
357786
+{
357786
+    job_state_transition(job, JOB_STATUS_READY);
357786
+    job_event_ready(job);
357786
+}
357786
+
357786
 static void job_completed_txn_success(Job *job)
357786
 {
357786
     JobTxn *txn = job->txn;
357786
diff --git a/tests/test-bdrv-drain.c b/tests/test-bdrv-drain.c
357786
index 3600ffd..2cba63b 100644
357786
--- a/tests/test-bdrv-drain.c
357786
+++ b/tests/test-bdrv-drain.c
357786
@@ -505,7 +505,7 @@ static void coroutine_fn test_job_start(void *opaque)
357786
 {
357786
     TestBlockJob *s = opaque;
357786
 
357786
-    block_job_event_ready(&s->common);
357786
+    job_transition_to_ready(&s->common.job);
357786
     while (!s->should_complete) {
357786
         job_sleep_ns(&s->common.job, 100000);
357786
     }
357786
diff --git a/tests/test-blockjob.c b/tests/test-blockjob.c
357786
index 8180d03..e408d52 100644
357786
--- a/tests/test-blockjob.c
357786
+++ b/tests/test-blockjob.c
357786
@@ -186,7 +186,7 @@ static void coroutine_fn cancel_job_start(void *opaque)
357786
         }
357786
 
357786
         if (!job_is_ready(&s->common.job) && s->should_converge) {
357786
-            block_job_event_ready(&s->common);
357786
+            job_transition_to_ready(&s->common.job);
357786
         }
357786
 
357786
         job_sleep_ns(&s->common.job, 100000);
357786
-- 
357786
1.8.3.1
357786