cryptospore / rpms / qemu-kvm

Forked from rpms/qemu-kvm 2 years ago
Clone

Blame SOURCES/kvm-blockjob-Introduce-block_job_ratelimit_get_delay.patch

ae23c9
From a266d0b6b07ddf185c5f2eaa05bda38e279ac36f Mon Sep 17 00:00:00 2001
ae23c9
From: Kevin Wolf <kwolf@redhat.com>
ae23c9
Date: Tue, 26 Jun 2018 09:47:55 +0200
ae23c9
Subject: [PATCH 087/268] blockjob: Introduce block_job_ratelimit_get_delay()
ae23c9
ae23c9
RH-Author: Kevin Wolf <kwolf@redhat.com>
ae23c9
Message-id: <20180626094856.6924-13-kwolf@redhat.com>
ae23c9
Patchwork-id: 81079
ae23c9
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH v2 12/73] blockjob: Introduce block_job_ratelimit_get_delay()
ae23c9
Bugzilla: 1513543
ae23c9
RH-Acked-by: Jeffrey Cody <jcody@redhat.com>
ae23c9
RH-Acked-by: Max Reitz <mreitz@redhat.com>
ae23c9
RH-Acked-by: Fam Zheng <famz@redhat.com>
ae23c9
ae23c9
This gets us rid of more direct accesses to BlockJob fields from the
ae23c9
job drivers.
ae23c9
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Reviewed-by: Eric Blake <eblake@redhat.com>
ae23c9
Reviewed-by: Max Reitz <mreitz@redhat.com>
ae23c9
Reviewed-by: John Snow <jsnow@redhat.com>
ae23c9
(cherry picked from commit dee81d5111ff0e24ac63ab0dbbd19e84c2f87904)
ae23c9
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
ae23c9
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ae23c9
---
ae23c9
 block/backup.c               | 18 +++++++-----------
ae23c9
 block/commit.c               |  4 ++--
ae23c9
 block/mirror.c               |  5 +----
ae23c9
 block/stream.c               |  4 ++--
ae23c9
 blockjob.c                   |  9 +++++++++
ae23c9
 include/block/blockjob_int.h |  8 ++++++++
ae23c9
 6 files changed, 29 insertions(+), 19 deletions(-)
ae23c9
ae23c9
diff --git a/block/backup.c b/block/backup.c
ae23c9
index 8468fd9..cfdb6ec 100644
ae23c9
--- a/block/backup.c
ae23c9
+++ b/block/backup.c
ae23c9
@@ -325,21 +325,17 @@ static void backup_complete(BlockJob *job, void *opaque)
ae23c9
 
ae23c9
 static bool coroutine_fn yield_and_check(BackupBlockJob *job)
ae23c9
 {
ae23c9
+    uint64_t delay_ns;
ae23c9
+
ae23c9
     if (block_job_is_cancelled(&job->common)) {
ae23c9
         return true;
ae23c9
     }
ae23c9
 
ae23c9
-    /* we need to yield so that bdrv_drain_all() returns.
ae23c9
-     * (without, VM does not reboot)
ae23c9
-     */
ae23c9
-    if (job->common.speed) {
ae23c9
-        uint64_t delay_ns = ratelimit_calculate_delay(&job->common.limit,
ae23c9
-                                                      job->bytes_read);
ae23c9
-        job->bytes_read = 0;
ae23c9
-        block_job_sleep_ns(&job->common, delay_ns);
ae23c9
-    } else {
ae23c9
-        block_job_sleep_ns(&job->common, 0);
ae23c9
-    }
ae23c9
+    /* We need to yield even for delay_ns = 0 so that bdrv_drain_all() can
ae23c9
+     * return. Without a yield, the VM would not reboot. */
ae23c9
+    delay_ns = block_job_ratelimit_get_delay(&job->common, job->bytes_read);
ae23c9
+    job->bytes_read = 0;
ae23c9
+    block_job_sleep_ns(&job->common, delay_ns);
ae23c9
 
ae23c9
     if (block_job_is_cancelled(&job->common)) {
ae23c9
         return true;
ae23c9
diff --git a/block/commit.c b/block/commit.c
ae23c9
index 46cbeae..ba5df6a 100644
ae23c9
--- a/block/commit.c
ae23c9
+++ b/block/commit.c
ae23c9
@@ -197,8 +197,8 @@ static void coroutine_fn commit_run(void *opaque)
ae23c9
         /* Publish progress */
ae23c9
         block_job_progress_update(&s->common, n);
ae23c9
 
ae23c9
-        if (copy && s->common.speed) {
ae23c9
-            delay_ns = ratelimit_calculate_delay(&s->common.limit, n);
ae23c9
+        if (copy) {
ae23c9
+            delay_ns = block_job_ratelimit_get_delay(&s->common, n);
ae23c9
         } else {
ae23c9
             delay_ns = 0;
ae23c9
         }
ae23c9
diff --git a/block/mirror.c b/block/mirror.c
ae23c9
index d5e0ff2..a4197bb 100644
ae23c9
--- a/block/mirror.c
ae23c9
+++ b/block/mirror.c
ae23c9
@@ -447,10 +447,7 @@ static uint64_t coroutine_fn mirror_iteration(MirrorBlockJob *s)
ae23c9
         assert(io_bytes);
ae23c9
         offset += io_bytes;
ae23c9
         nb_chunks -= DIV_ROUND_UP(io_bytes, s->granularity);
ae23c9
-        if (s->common.speed) {
ae23c9
-            delay_ns = ratelimit_calculate_delay(&s->common.limit,
ae23c9
-                                                 io_bytes_acct);
ae23c9
-        }
ae23c9
+        delay_ns = block_job_ratelimit_get_delay(&s->common, io_bytes_acct);
ae23c9
     }
ae23c9
     return delay_ns;
ae23c9
 }
ae23c9
diff --git a/block/stream.c b/block/stream.c
ae23c9
index 797d7c4..df9660d 100644
ae23c9
--- a/block/stream.c
ae23c9
+++ b/block/stream.c
ae23c9
@@ -185,8 +185,8 @@ static void coroutine_fn stream_run(void *opaque)
ae23c9
 
ae23c9
         /* Publish progress */
ae23c9
         block_job_progress_update(&s->common, n);
ae23c9
-        if (copy && s->common.speed) {
ae23c9
-            delay_ns = ratelimit_calculate_delay(&s->common.limit, n);
ae23c9
+        if (copy) {
ae23c9
+            delay_ns = block_job_ratelimit_get_delay(&s->common, n);
ae23c9
         } else {
ae23c9
             delay_ns = 0;
ae23c9
         }
ae23c9
diff --git a/blockjob.c b/blockjob.c
ae23c9
index 0f7214c..e30f5ec 100644
ae23c9
--- a/blockjob.c
ae23c9
+++ b/blockjob.c
ae23c9
@@ -688,6 +688,15 @@ void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp)
ae23c9
     block_job_enter_cond(job, block_job_timer_pending);
ae23c9
 }
ae23c9
 
ae23c9
+int64_t block_job_ratelimit_get_delay(BlockJob *job, uint64_t n)
ae23c9
+{
ae23c9
+    if (!job->speed) {
ae23c9
+        return 0;
ae23c9
+    }
ae23c9
+
ae23c9
+    return ratelimit_calculate_delay(&job->limit, n);
ae23c9
+}
ae23c9
+
ae23c9
 void block_job_complete(BlockJob *job, Error **errp)
ae23c9
 {
ae23c9
     /* Should not be reachable via external interface for internal jobs */
ae23c9
diff --git a/include/block/blockjob_int.h b/include/block/blockjob_int.h
ae23c9
index ad510d5..62ec964 100644
ae23c9
--- a/include/block/blockjob_int.h
ae23c9
+++ b/include/block/blockjob_int.h
ae23c9
@@ -166,6 +166,14 @@ void block_job_sleep_ns(BlockJob *job, int64_t ns);
ae23c9
 void block_job_yield(BlockJob *job);
ae23c9
 
ae23c9
 /**
ae23c9
+ * block_job_ratelimit_get_delay:
ae23c9
+ *
ae23c9
+ * Calculate and return delay for the next request in ns. See the documentation
ae23c9
+ * of ratelimit_calculate_delay() for details.
ae23c9
+ */
ae23c9
+int64_t block_job_ratelimit_get_delay(BlockJob *job, uint64_t n);
ae23c9
+
ae23c9
+/**
ae23c9
  * block_job_early_fail:
ae23c9
  * @bs: The block device.
ae23c9
  *
ae23c9
-- 
ae23c9
1.8.3.1
ae23c9