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

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