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