diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2017-11-29 11:25:11 +0100 |
|---|---|---|
| committer | Kevin Wolf <kwolf@redhat.com> | 2017-11-29 15:11:02 +0100 |
| commit | 5bf1d5a73a4a6d0e2d692bd02b6d7f3eedeed3b7 (patch) | |
| tree | 7e046c3c194dc003a2e81fb3c9e949532276264f /block/commit.c | |
| parent | 02d213009d571bcd7171e3ff9234722a11d30d1b (diff) | |
| download | focaccia-qemu-5bf1d5a73a4a6d0e2d692bd02b6d7f3eedeed3b7.tar.gz focaccia-qemu-5bf1d5a73a4a6d0e2d692bd02b6d7f3eedeed3b7.zip | |
blockjob: remove clock argument from block_job_sleep_ns
All callers are using QEMU_CLOCK_REALTIME, and it will not be possible to support more than one clock when block_job_sleep_ns switches to a single timer stored in the BlockJob struct. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Reviewed-by: Alberto Garcia <berto@igalia.com> Tested-By: Jeff Cody <jcody@redhat.com> Reviewed-by: Fam Zheng <famz@redhat.com> Reviewed-by: Jeff Cody <jcody@redhat.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/commit.c')
| -rw-r--r-- | block/commit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/commit.c b/block/commit.c index 5036eec434..c5327551ce 100644 --- a/block/commit.c +++ b/block/commit.c @@ -174,7 +174,7 @@ static void coroutine_fn commit_run(void *opaque) /* Note that even when no rate limit is applied we need to yield * with no pending I/O here so that bdrv_drain_all() returns. */ - block_job_sleep_ns(&s->common, QEMU_CLOCK_REALTIME, delay_ns); + block_job_sleep_ns(&s->common, delay_ns); if (block_job_is_cancelled(&s->common)) { break; } |