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