aboutsummaryrefslogtreecommitdiff
path: root/block/commit.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2018-01-18 21:19:38 +0100
committerKevin Wolf <kwolf@redhat.com>2018-05-15 16:11:50 +0200
commitdee81d5111ff0e24ac63ab0dbbd19e84c2f87904 (patch)
treed6199ff2f563422fc6b79be2bc718e165113a738 /block/commit.c
parent18bb69287ea522ab696e1bea818b93e5eaa85745 (diff)
downloadqemu-dee81d5111ff0e24ac63ab0dbbd19e84c2f87904.zip
qemu-dee81d5111ff0e24ac63ab0dbbd19e84c2f87904.tar.gz
qemu-dee81d5111ff0e24ac63ab0dbbd19e84c2f87904.tar.bz2
blockjob: Introduce block_job_ratelimit_get_delay()
This gets us rid of more direct accesses to BlockJob fields from the job drivers. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'block/commit.c')
-rw-r--r--block/commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/commit.c b/block/commit.c
index 46cbeae..ba5df6a 100644
--- a/block/commit.c
+++ b/block/commit.c
@@ -197,8 +197,8 @@ static void coroutine_fn commit_run(void *opaque)
/* Publish progress */
block_job_progress_update(&s->common, n);
- if (copy && s->common.speed) {
- delay_ns = ratelimit_calculate_delay(&s->common.limit, n);
+ if (copy) {
+ delay_ns = block_job_ratelimit_get_delay(&s->common, n);
} else {
delay_ns = 0;
}