Blame SOURCES/kvm-job-Move-progress-fields-to-Job.patch

383d26
From 1da3dfa844e67f9948eddd18188307acb7f9fe95 Mon Sep 17 00:00:00 2001
383d26
From: Kevin Wolf <kwolf@redhat.com>
383d26
Date: Tue, 26 Jun 2018 09:48:29 +0200
383d26
Subject: [PATCH 60/89] job: Move progress fields to Job
383d26
383d26
RH-Author: Kevin Wolf <kwolf@redhat.com>
383d26
Message-id: <20180626094856.6924-47-kwolf@redhat.com>
383d26
Patchwork-id: 81115
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 46/73] job: Move progress fields 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
BlockJob has fields .offset and .len, which are actually misnomers today
383d26
because they are no longer tied to block device sizes, but just progress
383d26
counters. As such they make a lot of sense in generic Jobs.
383d26
383d26
This patch moves the fields to Job and renames them to .progress_current
383d26
and .progress_total to describe their function better.
383d26
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Reviewed-by: Max Reitz <mreitz@redhat.com>
383d26
(cherry picked from commit 30a5c887bf4a7e00d0e0ecbb08509e8ba2902620)
383d26
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/backup.c           |  8 ++++----
383d26
 block/commit.c           |  4 ++--
383d26
 block/mirror.c           |  4 ++--
383d26
 block/stream.c           |  4 ++--
383d26
 blockjob.c               | 26 ++++++++------------------
383d26
 include/block/blockjob.h | 25 -------------------------
383d26
 include/qemu/job.h       | 28 ++++++++++++++++++++++++++++
383d26
 job.c                    | 10 ++++++++++
383d26
 qemu-img.c               |  8 ++++++--
383d26
 9 files changed, 62 insertions(+), 55 deletions(-)
383d26
383d26
diff --git a/block/backup.c b/block/backup.c
383d26
index 6f4f3df..4e228e9 100644
383d26
--- a/block/backup.c
383d26
+++ b/block/backup.c
383d26
@@ -160,7 +160,7 @@ static int coroutine_fn backup_do_cow(BackupBlockJob *job,
383d26
          * offset field is an opaque progress value, it is not a disk offset.
383d26
          */
383d26
         job->bytes_read += n;
383d26
-        block_job_progress_update(&job->common, n);
383d26
+        job_progress_update(&job->common.job, n);
383d26
     }
383d26
 
383d26
 out:
383d26
@@ -406,8 +406,8 @@ static void backup_incremental_init_copy_bitmap(BackupBlockJob *job)
383d26
         bdrv_set_dirty_iter(dbi, next_cluster * job->cluster_size);
383d26
     }
383d26
 
383d26
-    /* TODO block_job_progress_set_remaining() would make more sense */
383d26
-    block_job_progress_update(&job->common,
383d26
+    /* TODO job_progress_set_remaining() would make more sense */
383d26
+    job_progress_update(&job->common.job,
383d26
         job->len - hbitmap_count(job->copy_bitmap) * job->cluster_size);
383d26
 
383d26
     bdrv_dirty_iter_free(dbi);
383d26
@@ -425,7 +425,7 @@ static void coroutine_fn backup_run(void *opaque)
383d26
     qemu_co_rwlock_init(&job->flush_rwlock);
383d26
 
383d26
     nb_clusters = DIV_ROUND_UP(job->len, job->cluster_size);
383d26
-    block_job_progress_set_remaining(&job->common, job->len);
383d26
+    job_progress_set_remaining(&job->common.job, job->len);
383d26
 
383d26
     job->copy_bitmap = hbitmap_alloc(nb_clusters, 0);
383d26
     if (job->sync_mode == MIRROR_SYNC_MODE_INCREMENTAL) {
383d26
diff --git a/block/commit.c b/block/commit.c
383d26
index b0a847e..6206661 100644
383d26
--- a/block/commit.c
383d26
+++ b/block/commit.c
383d26
@@ -150,7 +150,7 @@ static void coroutine_fn commit_run(void *opaque)
383d26
     if (len < 0) {
383d26
         goto out;
383d26
     }
383d26
-    block_job_progress_set_remaining(&s->common, len);
383d26
+    job_progress_set_remaining(&s->common.job, len);
383d26
 
383d26
     ret = base_len = blk_getlength(s->base);
383d26
     if (base_len < 0) {
383d26
@@ -196,7 +196,7 @@ static void coroutine_fn commit_run(void *opaque)
383d26
             }
383d26
         }
383d26
         /* Publish progress */
383d26
-        block_job_progress_update(&s->common, n);
383d26
+        job_progress_update(&s->common.job, n);
383d26
 
383d26
         if (copy) {
383d26
             delay_ns = block_job_ratelimit_get_delay(&s->common, n);
383d26
diff --git a/block/mirror.c b/block/mirror.c
383d26
index bdc1b5b..dcb66ec 100644
383d26
--- a/block/mirror.c
383d26
+++ b/block/mirror.c
383d26
@@ -119,7 +119,7 @@ static void mirror_iteration_done(MirrorOp *op, int ret)
383d26
             bitmap_set(s->cow_bitmap, chunk_num, nb_chunks);
383d26
         }
383d26
         if (!s->initial_zeroing_ongoing) {
383d26
-            block_job_progress_update(&s->common, op->bytes);
383d26
+            job_progress_update(&s->common.job, op->bytes);
383d26
         }
383d26
     }
383d26
     qemu_iovec_destroy(&op->qiov);
383d26
@@ -792,7 +792,7 @@ static void coroutine_fn mirror_run(void *opaque)
383d26
         /* cnt is the number of dirty bytes remaining and s->bytes_in_flight is
383d26
          * the number of bytes currently being processed; together those are
383d26
          * the current remaining operation length */
383d26
-        block_job_progress_set_remaining(&s->common, s->bytes_in_flight + cnt);
383d26
+        job_progress_set_remaining(&s->common.job, s->bytes_in_flight + cnt);
383d26
 
383d26
         /* Note that even when no rate limit is applied we need to yield
383d26
          * periodically with no pending I/O so that bdrv_drain_all() returns.
383d26
diff --git a/block/stream.c b/block/stream.c
383d26
index 8546c41..a5d6e0c 100644
383d26
--- a/block/stream.c
383d26
+++ b/block/stream.c
383d26
@@ -121,7 +121,7 @@ static void coroutine_fn stream_run(void *opaque)
383d26
         ret = len;
383d26
         goto out;
383d26
     }
383d26
-    block_job_progress_set_remaining(&s->common, len);
383d26
+    job_progress_set_remaining(&s->common.job, len);
383d26
 
383d26
     buf = qemu_blockalign(bs, STREAM_BUFFER_SIZE);
383d26
 
383d26
@@ -184,7 +184,7 @@ static void coroutine_fn stream_run(void *opaque)
383d26
         ret = 0;
383d26
 
383d26
         /* Publish progress */
383d26
-        block_job_progress_update(&s->common, n);
383d26
+        job_progress_update(&s->common.job, n);
383d26
         if (copy) {
383d26
             delay_ns = block_job_ratelimit_get_delay(&s->common, n);
383d26
         } else {
383d26
diff --git a/blockjob.c b/blockjob.c
383d26
index da11b3b..5c8ff6f 100644
383d26
--- a/blockjob.c
383d26
+++ b/blockjob.c
383d26
@@ -242,16 +242,6 @@ int64_t block_job_ratelimit_get_delay(BlockJob *job, uint64_t n)
383d26
     return ratelimit_calculate_delay(&job->limit, n);
383d26
 }
383d26
 
383d26
-void block_job_progress_update(BlockJob *job, uint64_t done)
383d26
-{
383d26
-    job->offset += done;
383d26
-}
383d26
-
383d26
-void block_job_progress_set_remaining(BlockJob *job, uint64_t remaining)
383d26
-{
383d26
-    job->len = job->offset + remaining;
383d26
-}
383d26
-
383d26
 BlockJobInfo *block_job_query(BlockJob *job, Error **errp)
383d26
 {
383d26
     BlockJobInfo *info;
383d26
@@ -263,10 +253,10 @@ BlockJobInfo *block_job_query(BlockJob *job, Error **errp)
383d26
     info = g_new0(BlockJobInfo, 1);
383d26
     info->type      = g_strdup(job_type_str(&job->job));
383d26
     info->device    = g_strdup(job->job.id);
383d26
-    info->len       = job->len;
383d26
     info->busy      = atomic_read(&job->job.busy);
383d26
     info->paused    = job->job.pause_count > 0;
383d26
-    info->offset    = job->offset;
383d26
+    info->offset    = job->job.progress_current;
383d26
+    info->len       = job->job.progress_total;
383d26
     info->speed     = job->speed;
383d26
     info->io_status = job->iostatus;
383d26
     info->ready     = job_is_ready(&job->job),
383d26
@@ -296,8 +286,8 @@ static void block_job_event_cancelled(Notifier *n, void *opaque)
383d26
 
383d26
     qapi_event_send_block_job_cancelled(job_type(&job->job),
383d26
                                         job->job.id,
383d26
-                                        job->len,
383d26
-                                        job->offset,
383d26
+                                        job->job.progress_total,
383d26
+                                        job->job.progress_current,
383d26
                                         job->speed,
383d26
                                         &error_abort);
383d26
 }
383d26
@@ -317,8 +307,8 @@ static void block_job_event_completed(Notifier *n, void *opaque)
383d26
 
383d26
     qapi_event_send_block_job_completed(job_type(&job->job),
383d26
                                         job->job.id,
383d26
-                                        job->len,
383d26
-                                        job->offset,
383d26
+                                        job->job.progress_total,
383d26
+                                        job->job.progress_current,
383d26
                                         job->speed,
383d26
                                         !!msg,
383d26
                                         msg,
383d26
@@ -348,8 +338,8 @@ static void block_job_event_ready(Notifier *n, void *opaque)
383d26
 
383d26
     qapi_event_send_block_job_ready(job_type(&job->job),
383d26
                                     job->job.id,
383d26
-                                    job->len,
383d26
-                                    job->offset,
383d26
+                                    job->job.progress_total,
383d26
+                                    job->job.progress_current,
383d26
                                     job->speed, &error_abort);
383d26
 }
383d26
 
383d26
diff --git a/include/block/blockjob.h b/include/block/blockjob.h
383d26
index 4fca45f..3021d11 100644
383d26
--- a/include/block/blockjob.h
383d26
+++ b/include/block/blockjob.h
383d26
@@ -52,12 +52,6 @@ typedef struct BlockJob {
383d26
     /** Status that is published by the query-block-jobs QMP API */
383d26
     BlockDeviceIoStatus iostatus;
383d26
 
383d26
-    /** Offset that is published by the query-block-jobs QMP API */
383d26
-    int64_t offset;
383d26
-
383d26
-    /** Length that is published by the query-block-jobs QMP API */
383d26
-    int64_t len;
383d26
-
383d26
     /** Speed that was set with @block_job_set_speed.  */
383d26
     int64_t speed;
383d26
 
383d26
@@ -139,25 +133,6 @@ void block_job_remove_all_bdrv(BlockJob *job);
383d26
 void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp);
383d26
 
383d26
 /**
383d26
- * block_job_progress_update:
383d26
- * @job: The job that has made progress
383d26
- * @done: How much progress the job made
383d26
- *
383d26
- * Updates the progress counter of the job.
383d26
- */
383d26
-void block_job_progress_update(BlockJob *job, uint64_t done);
383d26
-
383d26
-/**
383d26
- * block_job_progress_set_remaining:
383d26
- * @job: The job whose expected progress end value is set
383d26
- * @remaining: Expected end value of the progress counter of the job
383d26
- *
383d26
- * Sets the expected end value of the progress counter of a job so that a
383d26
- * completion percentage can be calculated when the progress is updated.
383d26
- */
383d26
-void block_job_progress_set_remaining(BlockJob *job, uint64_t remaining);
383d26
-
383d26
-/**
383d26
  * block_job_query:
383d26
  * @job: The job to get information about.
383d26
  *
383d26
diff --git a/include/qemu/job.h b/include/qemu/job.h
383d26
index bfc2bc5..92d1d24 100644
383d26
--- a/include/qemu/job.h
383d26
+++ b/include/qemu/job.h
383d26
@@ -114,6 +114,16 @@ typedef struct Job {
383d26
     /** True if this job should automatically dismiss itself */
383d26
     bool auto_dismiss;
383d26
 
383d26
+    /**
383d26
+     * Current progress. The unit is arbitrary as long as the ratio between
383d26
+     * progress_current and progress_total represents the estimated percentage
383d26
+     * of work already done.
383d26
+     */
383d26
+    int64_t progress_current;
383d26
+
383d26
+    /** Estimated progress_current value at the completion of the job */
383d26
+    int64_t progress_total;
383d26
+
383d26
     /** ret code passed to job_completed. */
383d26
     int ret;
383d26
 
383d26
@@ -304,6 +314,24 @@ void job_ref(Job *job);
383d26
  */
383d26
 void job_unref(Job *job);
383d26
 
383d26
+/**
383d26
+ * @job: The job that has made progress
383d26
+ * @done: How much progress the job made since the last call
383d26
+ *
383d26
+ * Updates the progress counter of the job.
383d26
+ */
383d26
+void job_progress_update(Job *job, uint64_t done);
383d26
+
383d26
+/**
383d26
+ * @job: The job whose expected progress end value is set
383d26
+ * @remaining: Missing progress (on top of the current progress counter value)
383d26
+ *             until the new expected end value is reached
383d26
+ *
383d26
+ * Sets the expected end value of the progress counter of a job so that a
383d26
+ * completion percentage can be calculated when the progress is updated.
383d26
+ */
383d26
+void job_progress_set_remaining(Job *job, uint64_t remaining);
383d26
+
383d26
 /** To be called when a cancelled job is finalised. */
383d26
 void job_event_cancelled(Job *job);
383d26
 
383d26
diff --git a/job.c b/job.c
383d26
index b5bd51b..2046d2f 100644
383d26
--- a/job.c
383d26
+++ b/job.c
383d26
@@ -364,6 +364,16 @@ void job_unref(Job *job)
383d26
     }
383d26
 }
383d26
 
383d26
+void job_progress_update(Job *job, uint64_t done)
383d26
+{
383d26
+    job->progress_current += done;
383d26
+}
383d26
+
383d26
+void job_progress_set_remaining(Job *job, uint64_t remaining)
383d26
+{
383d26
+    job->progress_total = job->progress_current + remaining;
383d26
+}
383d26
+
383d26
 void job_event_cancelled(Job *job)
383d26
 {
383d26
     notifier_list_notify(&job->on_finalize_cancelled, job);
383d26
diff --git a/qemu-img.c b/qemu-img.c
383d26
index 3c449a2..9fc8e66 100644
383d26
--- a/qemu-img.c
383d26
+++ b/qemu-img.c
383d26
@@ -875,9 +875,13 @@ static void run_block_job(BlockJob *job, Error **errp)
383d26
     aio_context_acquire(aio_context);
383d26
     job_ref(&job->job);
383d26
     do {
383d26
+        float progress = 0.0f;
383d26
         aio_poll(aio_context, true);
383d26
-        qemu_progress_print(job->len ?
383d26
-                            ((float)job->offset / job->len * 100.f) : 0.0f, 0);
383d26
+        if (job->job.progress_total) {
383d26
+            progress = (float)job->job.progress_current /
383d26
+                       job->job.progress_total * 100.f;
383d26
+        }
383d26
+        qemu_progress_print(progress, 0);
383d26
     } while (!job_is_ready(&job->job) && !job_is_completed(&job->job));
383d26
 
383d26
     if (!job_is_completed(&job->job)) {
383d26
-- 
383d26
1.8.3.1
383d26