Blame SOURCES/kvm-job-Convert-block_job_cancel_async-to-Job.patch

383d26
From c1d6c990e959598f6a1269756b481e4e4230ded8 Mon Sep 17 00:00:00 2001
383d26
From: Kevin Wolf <kwolf@redhat.com>
383d26
Date: Tue, 26 Jun 2018 09:48:17 +0200
383d26
Subject: [PATCH 48/89] job: Convert block_job_cancel_async() to Job
383d26
383d26
RH-Author: Kevin Wolf <kwolf@redhat.com>
383d26
Message-id: <20180626094856.6924-35-kwolf@redhat.com>
383d26
Patchwork-id: 81072
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 34/73] job: Convert block_job_cancel_async() to Job
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
block_job_cancel_async() did two things that were still block job
383d26
specific:
383d26
383d26
* Setting job->force. This field makes sense on the Job level, so we can
383d26
  just move it. While at it, rename it to job->force_cancel to make its
383d26
  purpose more obvious.
383d26
383d26
* Resetting the I/O status. This can't be moved because generic Jobs
383d26
  don't have an I/O status. What the function really implements is a
383d26
  user resume, except without entering the coroutine. Consequently, it
383d26
  makes sense to call the .user_resume driver callback here which
383d26
  already resets the I/O status.
383d26
383d26
  The old block_job_cancel_async() has two separate if statements that
383d26
  check job->iostatus != BLOCK_DEVICE_IO_STATUS_OK and job->user_paused.
383d26
  However, the former condition always implies the latter (as is
383d26
  asserted in block_job_iostatus_reset()), so changing the explicit call
383d26
  of block_job_iostatus_reset() on the former condition with the
383d26
  .user_resume callback on the latter condition is equivalent and
383d26
  doesn't need to access any BlockJob specific state.
383d26
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Reviewed-by: Max Reitz <mreitz@redhat.com>
383d26
(cherry picked from commit 004e95df98266da33e08c9f1731aca71b6d6d7c4)
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/mirror.c           |  4 ++--
383d26
 blockjob.c               | 25 +++++++++++++------------
383d26
 include/block/blockjob.h |  6 ------
383d26
 include/qemu/job.h       |  6 ++++++
383d26
 4 files changed, 21 insertions(+), 20 deletions(-)
383d26
383d26
diff --git a/block/mirror.c b/block/mirror.c
383d26
index e9a90ea..c3951d1 100644
383d26
--- a/block/mirror.c
383d26
+++ b/block/mirror.c
383d26
@@ -871,7 +871,7 @@ static void coroutine_fn mirror_run(void *opaque)
383d26
         trace_mirror_before_sleep(s, cnt, s->synced, delay_ns);
383d26
         job_sleep_ns(&s->common.job, delay_ns);
383d26
         if (job_is_cancelled(&s->common.job) &&
383d26
-            (!s->synced || s->common.force))
383d26
+            (!s->synced || s->common.job.force_cancel))
383d26
         {
383d26
             break;
383d26
         }
383d26
@@ -884,7 +884,7 @@ immediate_exit:
383d26
          * or it was cancelled prematurely so that we do not guarantee that
383d26
          * the target is a copy of the source.
383d26
          */
383d26
-        assert(ret < 0 || ((s->common.force || !s->synced) &&
383d26
+        assert(ret < 0 || ((s->common.job.force_cancel || !s->synced) &&
383d26
                job_is_cancelled(&s->common.job)));
383d26
         assert(need_drain);
383d26
         mirror_wait_for_all_io(s);
383d26
diff --git a/blockjob.c b/blockjob.c
383d26
index 34c57da..4cac367 100644
383d26
--- a/blockjob.c
383d26
+++ b/blockjob.c
383d26
@@ -270,19 +270,20 @@ static int block_job_prepare(BlockJob *job)
383d26
     return job->job.ret;
383d26
 }
383d26
 
383d26
-static void block_job_cancel_async(BlockJob *job, bool force)
383d26
+static void job_cancel_async(Job *job, bool force)
383d26
 {
383d26
-    if (job->iostatus != BLOCK_DEVICE_IO_STATUS_OK) {
383d26
-        block_job_iostatus_reset(job);
383d26
-    }
383d26
-    if (job->job.user_paused) {
383d26
-        /* Do not call block_job_enter here, the caller will handle it.  */
383d26
-        job->job.user_paused = false;
383d26
-        job->job.pause_count--;
383d26
+    if (job->user_paused) {
383d26
+        /* Do not call job_enter here, the caller will handle it.  */
383d26
+        job->user_paused = false;
383d26
+        if (job->driver->user_resume) {
383d26
+            job->driver->user_resume(job);
383d26
+        }
383d26
+        assert(job->pause_count > 0);
383d26
+        job->pause_count--;
383d26
     }
383d26
-    job->job.cancelled = true;
383d26
+    job->cancelled = true;
383d26
     /* To prevent 'force == false' overriding a previous 'force == true' */
383d26
-    job->force |= force;
383d26
+    job->force_cancel |= force;
383d26
 }
383d26
 
383d26
 static int block_job_txn_apply(BlockJobTxn *txn, int fn(BlockJob *), bool lock)
383d26
@@ -367,7 +368,7 @@ static void block_job_completed_txn_abort(BlockJob *job)
383d26
      * on the caller, so leave it. */
383d26
     QLIST_FOREACH(other_job, &txn->jobs, txn_list) {
383d26
         if (other_job != job) {
383d26
-            block_job_cancel_async(other_job, false);
383d26
+            job_cancel_async(&other_job->job, false);
383d26
         }
383d26
     }
383d26
     while (!QLIST_EMPTY(&txn->jobs)) {
383d26
@@ -527,7 +528,7 @@ void block_job_cancel(BlockJob *job, bool force)
383d26
         job_do_dismiss(&job->job);
383d26
         return;
383d26
     }
383d26
-    block_job_cancel_async(job, force);
383d26
+    job_cancel_async(&job->job, force);
383d26
     if (!job_started(&job->job)) {
383d26
         block_job_completed(job, -ECANCELED);
383d26
     } else if (job->job.deferred_to_main_loop) {
383d26
diff --git a/include/block/blockjob.h b/include/block/blockjob.h
383d26
index 3f405d1..d975efe 100644
383d26
--- a/include/block/blockjob.h
383d26
+++ b/include/block/blockjob.h
383d26
@@ -51,12 +51,6 @@ typedef struct BlockJob {
383d26
     BlockBackend *blk;
383d26
 
383d26
     /**
383d26
-     * Set to true if the job should abort immediately without waiting
383d26
-     * for data to be in sync.
383d26
-     */
383d26
-    bool force;
383d26
-
383d26
-    /**
383d26
      * Set to true when the job is ready to be completed.
383d26
      */
383d26
     bool ready;
383d26
diff --git a/include/qemu/job.h b/include/qemu/job.h
383d26
index 3e817be..2648c74 100644
383d26
--- a/include/qemu/job.h
383d26
+++ b/include/qemu/job.h
383d26
@@ -97,6 +97,12 @@ typedef struct Job {
383d26
      */
383d26
     bool cancelled;
383d26
 
383d26
+    /**
383d26
+     * Set to true if the job should abort immediately without waiting
383d26
+     * for data to be in sync.
383d26
+     */
383d26
+    bool force_cancel;
383d26
+
383d26
     /** Set to true when the job has deferred work to the main loop. */
383d26
     bool deferred_to_main_loop;
383d26
 
383d26
-- 
383d26
1.8.3.1
383d26