summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDietmar Maurer <dietmar@proxmox.com>2012-10-24 12:10:47 +0200
committerMichael Roth <mdroth@linux.vnet.ibm.com>2012-12-03 15:02:28 -0600
commit178ef3a43ad24d074c683e2fe0658e589747c823 (patch)
treec58e3f29b04ccdfe987e3e8d0203e80c9c7fb953
parentcd00334f1ae587aee146517af295adbfd7ab702a (diff)
downloadqemu-178ef3a43ad24d074c683e2fe0658e589747c823.tar.gz
stream: fix ratelimit_set_speed
The formula to compute slice_quota was wrong since commit 6ef228fc. Signed-off-by: Dietmar Maurer <dietmar@proxmox.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com> (cherry picked from commit e3980e28bb888bf643054770452998d1b4319609) Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
-rw-r--r--include/qemu/ratelimit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/ratelimit.h b/include/qemu/ratelimit.h
index c6ac281141..d1610f135b 100644
--- a/include/qemu/ratelimit.h
+++ b/include/qemu/ratelimit.h
@@ -42,7 +42,7 @@ static inline void ratelimit_set_speed(RateLimit *limit, uint64_t speed,
uint64_t slice_ns)
{
limit->slice_ns = slice_ns;
- limit->slice_quota = ((double)speed * 1000000000ULL) / slice_ns;
+ limit->slice_quota = ((double)speed * slice_ns)/1000000000ULL;
}
#endif