]> git.proxmox.com Git - mirror_qemu.git/blame - include/qemu/ratelimit.h
parallels: wrong call to bdrv_truncate
[mirror_qemu.git] / include / qemu / ratelimit.h
CommitLineData
6ef228fc
PB
1/*
2 * Ratelimiting calculations
3 *
4 * Copyright IBM, Corp. 2011
5 *
6 * Authors:
7 * Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
10 * See the COPYING.LIB file in the top-level directory.
11 *
12 */
13
14#ifndef QEMU_RATELIMIT_H
175de524 15#define QEMU_RATELIMIT_H
6ef228fc
PB
16
17typedef struct {
f14a39cc
SS
18 int64_t slice_start_time;
19 int64_t slice_end_time;
6ef228fc
PB
20 uint64_t slice_quota;
21 uint64_t slice_ns;
22 uint64_t dispatched;
23} RateLimit;
24
f14a39cc
SS
25/** Calculate and return delay for next request in ns
26 *
27 * Record that we sent @p n data units. If we may send more data units
28 * in the current time slice, return 0 (i.e. no delay). Otherwise
29 * return the amount of time (in ns) until the start of the next time
30 * slice that will permit sending the next chunk of data.
31 *
32 * Recording sent data units even after exceeding the quota is
33 * permitted; the time slice will be extended accordingly.
34 */
6ef228fc
PB
35static inline int64_t ratelimit_calculate_delay(RateLimit *limit, uint64_t n)
36{
bc72ad67 37 int64_t now = qemu_clock_get_ns(QEMU_CLOCK_REALTIME);
f14a39cc 38 uint64_t delay_slices;
6ef228fc 39
f14a39cc
SS
40 assert(limit->slice_quota && limit->slice_ns);
41
42 if (limit->slice_end_time < now) {
43 /* Previous, possibly extended, time slice finished; reset the
44 * accounting. */
45 limit->slice_start_time = now;
46 limit->slice_end_time = now + limit->slice_ns;
6ef228fc
PB
47 limit->dispatched = 0;
48 }
f14a39cc
SS
49
50 limit->dispatched += n;
51 if (limit->dispatched < limit->slice_quota) {
52 /* We may send further data within the current time slice, no
53 * need to delay the next request. */
6ef228fc 54 return 0;
6ef228fc 55 }
f14a39cc
SS
56
57 /* Quota exceeded. Calculate the next time slice we may start
58 * sending data again. */
59 delay_slices = (limit->dispatched + limit->slice_quota - 1) /
60 limit->slice_quota;
61 limit->slice_end_time = limit->slice_start_time +
62 delay_slices * limit->slice_ns;
63 return limit->slice_end_time - now;
6ef228fc
PB
64}
65
66static inline void ratelimit_set_speed(RateLimit *limit, uint64_t speed,
67 uint64_t slice_ns)
68{
69 limit->slice_ns = slice_ns;
f14a39cc 70 limit->slice_quota = MAX(((double)speed * slice_ns) / 1000000000ULL, 1);
6ef228fc
PB
71}
72
73#endif