2 * Throttle infrastructure tests
4 * Copyright Nodalink, EURL. 2013-2014
5 * Copyright Igalia, S.L. 2015
8 * BenoƮt Canet <benoit.canet@nodalink.com>
9 * Alberto Garcia <berto@igalia.com>
11 * This work is licensed under the terms of the GNU LGPL, version 2 or later.
12 * See the COPYING.LIB file in the top-level directory.
15 #include "qemu/osdep.h"
17 #include "block/aio.h"
18 #include "qapi/error.h"
19 #include "qemu/throttle.h"
20 #include "qemu/error-report.h"
21 #include "qemu/module.h"
22 #include "block/throttle-groups.h"
23 #include "sysemu/block-backend.h"
25 static AioContext
*ctx
;
26 static LeakyBucket bkt
;
27 static ThrottleConfig cfg
;
28 static ThrottleGroupMember tgm
;
29 static ThrottleState ts
;
30 static ThrottleTimers
*tt
;
33 static bool double_cmp(double x
, double y
)
35 return fabsl(x
- y
) < 1e-6;
38 /* tests for single bucket operations */
39 static void test_leak_bucket(void)
41 throttle_config_init(&cfg
);
42 bkt
= cfg
.buckets
[THROTTLE_BPS_TOTAL
];
44 /* set initial value */
49 /* leak an op work of time */
50 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
51 g_assert(bkt
.avg
== 150);
52 g_assert(bkt
.max
== 15);
53 g_assert(double_cmp(bkt
.level
, 0.5));
55 /* leak again emptying the bucket */
56 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
57 g_assert(bkt
.avg
== 150);
58 g_assert(bkt
.max
== 15);
59 g_assert(double_cmp(bkt
.level
, 0));
61 /* check that the bucket level won't go lower */
62 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 150);
63 g_assert(bkt
.avg
== 150);
64 g_assert(bkt
.max
== 15);
65 g_assert(double_cmp(bkt
.level
, 0));
67 /* check that burst_level leaks correctly */
70 bkt
.burst_length
= 2; /* otherwise burst_level will not leak */
71 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 100);
72 g_assert(double_cmp(bkt
.burst_level
, 3.5));
74 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 100);
75 g_assert(double_cmp(bkt
.burst_level
, 1));
77 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 100);
78 g_assert(double_cmp(bkt
.burst_level
, 0));
80 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 100);
81 g_assert(double_cmp(bkt
.burst_level
, 0));
84 static void test_compute_wait(void)
90 throttle_config_init(&cfg
);
91 bkt
= cfg
.buckets
[THROTTLE_BPS_TOTAL
];
93 /* no operation limit set */
97 wait
= throttle_compute_wait(&bkt
);
104 wait
= throttle_compute_wait(&bkt
);
107 /* below zero delta */
111 wait
= throttle_compute_wait(&bkt
);
114 /* half an operation above max */
118 wait
= throttle_compute_wait(&bkt
);
119 /* time required to do half an operation */
120 result
= (int64_t) NANOSECONDS_PER_SECOND
/ 150 / 2;
121 g_assert(wait
== result
);
123 /* Perform I/O for 2.2 seconds at a rate of bkt.max */
124 bkt
.burst_length
= 2;
128 for (i
= 0; i
< 22; i
++) {
129 double units
= bkt
.max
/ 10;
131 bkt
.burst_level
+= units
;
132 throttle_leak_bucket(&bkt
, NANOSECONDS_PER_SECOND
/ 10);
133 wait
= throttle_compute_wait(&bkt
);
134 g_assert(double_cmp(bkt
.burst_level
, 0));
135 g_assert(double_cmp(bkt
.level
, (i
+ 1) * (bkt
.max
- bkt
.avg
) / 10));
136 /* We can do bursts for the 2 seconds we have configured in
137 * burst_length. We have 100 extra miliseconds of burst
138 * because bkt.level has been leaking during this time.
139 * After that, we have to wait. */
140 result
= i
< 21 ? 0 : 1.8 * NANOSECONDS_PER_SECOND
;
141 g_assert(wait
== result
);
145 /* functions to test ThrottleState initialization/destroy methods */
146 static void read_timer_cb(void *opaque
)
150 static void write_timer_cb(void *opaque
)
154 static void test_init(void)
158 tt
= &tgm
.throttle_timers
;
160 /* fill the structures with crap */
161 memset(&ts
, 1, sizeof(ts
));
162 memset(tt
, 1, sizeof(*tt
));
164 /* init structures */
166 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
167 read_timer_cb
, write_timer_cb
, &ts
);
169 /* check initialized fields */
170 g_assert(tt
->clock_type
== QEMU_CLOCK_VIRTUAL
);
171 g_assert(tt
->timers
[0]);
172 g_assert(tt
->timers
[1]);
174 /* check other fields where cleared */
175 g_assert(!ts
.previous_leak
);
176 g_assert(!ts
.cfg
.op_size
);
177 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
178 g_assert(!ts
.cfg
.buckets
[i
].avg
);
179 g_assert(!ts
.cfg
.buckets
[i
].max
);
180 g_assert(!ts
.cfg
.buckets
[i
].level
);
183 throttle_timers_destroy(tt
);
186 static void test_destroy(void)
190 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
191 read_timer_cb
, write_timer_cb
, &ts
);
192 throttle_timers_destroy(tt
);
193 for (i
= 0; i
< 2; i
++) {
194 g_assert(!tt
->timers
[i
]);
198 /* function to test throttle_config and throttle_get_config */
199 static void test_config_functions(void)
202 ThrottleConfig orig_cfg
, final_cfg
;
204 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
= 153;
205 orig_cfg
.buckets
[THROTTLE_BPS_READ
].avg
= 56;
206 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
= 1;
208 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
= 150;
209 orig_cfg
.buckets
[THROTTLE_OPS_READ
].avg
= 69;
210 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
= 23;
212 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
= 0;
213 orig_cfg
.buckets
[THROTTLE_BPS_READ
].max
= 56;
214 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].max
= 120;
216 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
= 150;
217 orig_cfg
.buckets
[THROTTLE_OPS_READ
].max
= 400;
218 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].max
= 500;
220 orig_cfg
.buckets
[THROTTLE_BPS_TOTAL
].level
= 45;
221 orig_cfg
.buckets
[THROTTLE_BPS_READ
].level
= 65;
222 orig_cfg
.buckets
[THROTTLE_BPS_WRITE
].level
= 23;
224 orig_cfg
.buckets
[THROTTLE_OPS_TOTAL
].level
= 1;
225 orig_cfg
.buckets
[THROTTLE_OPS_READ
].level
= 90;
226 orig_cfg
.buckets
[THROTTLE_OPS_WRITE
].level
= 75;
228 orig_cfg
.op_size
= 1;
231 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
232 read_timer_cb
, write_timer_cb
, &ts
);
233 /* structure reset by throttle_init previous_leak should be null */
234 g_assert(!ts
.previous_leak
);
235 throttle_config(&ts
, QEMU_CLOCK_VIRTUAL
, &orig_cfg
);
237 /* has previous leak been initialized by throttle_config ? */
238 g_assert(ts
.previous_leak
);
240 /* get back the fixed configuration */
241 throttle_get_config(&ts
, &final_cfg
);
243 throttle_timers_destroy(tt
);
245 g_assert(final_cfg
.buckets
[THROTTLE_BPS_TOTAL
].avg
== 153);
246 g_assert(final_cfg
.buckets
[THROTTLE_BPS_READ
].avg
== 56);
247 g_assert(final_cfg
.buckets
[THROTTLE_BPS_WRITE
].avg
== 1);
249 g_assert(final_cfg
.buckets
[THROTTLE_OPS_TOTAL
].avg
== 150);
250 g_assert(final_cfg
.buckets
[THROTTLE_OPS_READ
].avg
== 69);
251 g_assert(final_cfg
.buckets
[THROTTLE_OPS_WRITE
].avg
== 23);
253 g_assert(final_cfg
.buckets
[THROTTLE_BPS_TOTAL
].max
== 0);
254 g_assert(final_cfg
.buckets
[THROTTLE_BPS_READ
].max
== 56);
255 g_assert(final_cfg
.buckets
[THROTTLE_BPS_WRITE
].max
== 120);
257 g_assert(final_cfg
.buckets
[THROTTLE_OPS_TOTAL
].max
== 150);
258 g_assert(final_cfg
.buckets
[THROTTLE_OPS_READ
].max
== 400);
259 g_assert(final_cfg
.buckets
[THROTTLE_OPS_WRITE
].max
== 500);
261 g_assert(final_cfg
.op_size
== 1);
263 /* check bucket have been cleared */
264 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
265 g_assert(!final_cfg
.buckets
[i
].level
);
269 /* functions to test is throttle is enabled by a config */
270 static void set_cfg_value(bool is_max
, int index
, int value
)
273 cfg
.buckets
[index
].max
= value
;
274 /* If max is set, avg should never be 0 */
275 cfg
.buckets
[index
].avg
= MAX(cfg
.buckets
[index
].avg
, 1);
277 cfg
.buckets
[index
].avg
= value
;
281 static void test_enabled(void)
285 throttle_config_init(&cfg
);
286 g_assert(!throttle_enabled(&cfg
));
288 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
289 throttle_config_init(&cfg
);
290 set_cfg_value(false, i
, 150);
291 g_assert(throttle_is_valid(&cfg
, NULL
));
292 g_assert(throttle_enabled(&cfg
));
295 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
296 throttle_config_init(&cfg
);
297 set_cfg_value(false, i
, -150);
298 g_assert(!throttle_is_valid(&cfg
, NULL
));
302 /* tests functions for throttle_conflicting */
304 static void test_conflicts_for_one_set(bool is_max
,
309 throttle_config_init(&cfg
);
310 g_assert(throttle_is_valid(&cfg
, NULL
));
312 set_cfg_value(is_max
, total
, 1);
313 set_cfg_value(is_max
, read
, 1);
314 g_assert(!throttle_is_valid(&cfg
, NULL
));
316 throttle_config_init(&cfg
);
317 set_cfg_value(is_max
, total
, 1);
318 set_cfg_value(is_max
, write
, 1);
319 g_assert(!throttle_is_valid(&cfg
, NULL
));
321 throttle_config_init(&cfg
);
322 set_cfg_value(is_max
, total
, 1);
323 set_cfg_value(is_max
, read
, 1);
324 set_cfg_value(is_max
, write
, 1);
325 g_assert(!throttle_is_valid(&cfg
, NULL
));
327 throttle_config_init(&cfg
);
328 set_cfg_value(is_max
, total
, 1);
329 g_assert(throttle_is_valid(&cfg
, NULL
));
331 throttle_config_init(&cfg
);
332 set_cfg_value(is_max
, read
, 1);
333 set_cfg_value(is_max
, write
, 1);
334 g_assert(throttle_is_valid(&cfg
, NULL
));
337 static void test_conflicting_config(void)
339 /* bps average conflicts */
340 test_conflicts_for_one_set(false,
345 /* ops average conflicts */
346 test_conflicts_for_one_set(false,
351 /* bps average conflicts */
352 test_conflicts_for_one_set(true,
356 /* ops average conflicts */
357 test_conflicts_for_one_set(true,
362 /* functions to test the throttle_is_valid function */
363 static void test_is_valid_for_value(int value
, bool should_be_valid
)
366 for (is_max
= 0; is_max
< 2; is_max
++) {
367 for (index
= 0; index
< BUCKETS_COUNT
; index
++) {
368 throttle_config_init(&cfg
);
369 set_cfg_value(is_max
, index
, value
);
370 g_assert(throttle_is_valid(&cfg
, NULL
) == should_be_valid
);
375 static void test_is_valid(void)
377 /* negative number are invalid */
378 test_is_valid_for_value(-1, false);
379 /* zero are valids */
380 test_is_valid_for_value(0, true);
381 /* positives numers are valids */
382 test_is_valid_for_value(1, true);
385 static void test_ranges(void)
389 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
390 LeakyBucket
*b
= &cfg
.buckets
[i
];
391 throttle_config_init(&cfg
);
393 /* avg = 0 means throttling is disabled, but the config is valid */
395 g_assert(throttle_is_valid(&cfg
, NULL
));
396 g_assert(!throttle_enabled(&cfg
));
398 /* These are valid configurations (values <= THROTTLE_VALUE_MAX) */
400 g_assert(throttle_is_valid(&cfg
, NULL
));
402 b
->avg
= THROTTLE_VALUE_MAX
;
403 g_assert(throttle_is_valid(&cfg
, NULL
));
405 b
->avg
= THROTTLE_VALUE_MAX
;
406 b
->max
= THROTTLE_VALUE_MAX
;
407 g_assert(throttle_is_valid(&cfg
, NULL
));
409 /* Values over THROTTLE_VALUE_MAX are not allowed */
410 b
->avg
= THROTTLE_VALUE_MAX
+ 1;
411 g_assert(!throttle_is_valid(&cfg
, NULL
));
413 b
->avg
= THROTTLE_VALUE_MAX
;
414 b
->max
= THROTTLE_VALUE_MAX
+ 1;
415 g_assert(!throttle_is_valid(&cfg
, NULL
));
417 /* burst_length must be between 1 and THROTTLE_VALUE_MAX */
421 g_assert(!throttle_is_valid(&cfg
, NULL
));
426 g_assert(throttle_is_valid(&cfg
, NULL
));
430 b
->burst_length
= THROTTLE_VALUE_MAX
;
431 g_assert(throttle_is_valid(&cfg
, NULL
));
435 b
->burst_length
= THROTTLE_VALUE_MAX
+ 1;
436 g_assert(!throttle_is_valid(&cfg
, NULL
));
438 /* burst_length * max cannot exceed THROTTLE_VALUE_MAX */
441 b
->burst_length
= THROTTLE_VALUE_MAX
/ 2;
442 g_assert(throttle_is_valid(&cfg
, NULL
));
446 b
->burst_length
= THROTTLE_VALUE_MAX
/ 2;
447 g_assert(!throttle_is_valid(&cfg
, NULL
));
450 b
->max
= THROTTLE_VALUE_MAX
;
452 g_assert(throttle_is_valid(&cfg
, NULL
));
455 b
->max
= THROTTLE_VALUE_MAX
;
457 g_assert(!throttle_is_valid(&cfg
, NULL
));
461 static void test_max_is_missing_limit(void)
465 for (i
= 0; i
< BUCKETS_COUNT
; i
++) {
466 throttle_config_init(&cfg
);
467 cfg
.buckets
[i
].max
= 100;
468 cfg
.buckets
[i
].avg
= 0;
469 g_assert(!throttle_is_valid(&cfg
, NULL
));
471 cfg
.buckets
[i
].max
= 0;
472 cfg
.buckets
[i
].avg
= 0;
473 g_assert(throttle_is_valid(&cfg
, NULL
));
475 cfg
.buckets
[i
].max
= 0;
476 cfg
.buckets
[i
].avg
= 100;
477 g_assert(throttle_is_valid(&cfg
, NULL
));
479 cfg
.buckets
[i
].max
= 30;
480 cfg
.buckets
[i
].avg
= 100;
481 g_assert(!throttle_is_valid(&cfg
, NULL
));
483 cfg
.buckets
[i
].max
= 100;
484 cfg
.buckets
[i
].avg
= 100;
485 g_assert(throttle_is_valid(&cfg
, NULL
));
489 static void test_iops_size_is_missing_limit(void)
491 /* A total/read/write iops limit is required */
492 throttle_config_init(&cfg
);
494 g_assert(!throttle_is_valid(&cfg
, NULL
));
497 static void test_have_timer(void)
499 /* zero structures */
500 memset(&ts
, 0, sizeof(ts
));
501 memset(tt
, 0, sizeof(*tt
));
503 /* no timer set should return false */
504 g_assert(!throttle_timers_are_initialized(tt
));
506 /* init structures */
508 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
509 read_timer_cb
, write_timer_cb
, &ts
);
511 /* timer set by init should return true */
512 g_assert(throttle_timers_are_initialized(tt
));
514 throttle_timers_destroy(tt
);
517 static void test_detach_attach(void)
519 /* zero structures */
520 memset(&ts
, 0, sizeof(ts
));
521 memset(tt
, 0, sizeof(*tt
));
523 /* init the structure */
525 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
526 read_timer_cb
, write_timer_cb
, &ts
);
528 /* timer set by init should return true */
529 g_assert(throttle_timers_are_initialized(tt
));
531 /* timer should no longer exist after detaching */
532 throttle_timers_detach_aio_context(tt
);
533 g_assert(!throttle_timers_are_initialized(tt
));
535 /* timer should exist again after attaching */
536 throttle_timers_attach_aio_context(tt
, ctx
);
537 g_assert(throttle_timers_are_initialized(tt
));
539 throttle_timers_destroy(tt
);
542 static bool do_test_accounting(bool is_ops
, /* are we testing bps or ops */
543 int size
, /* size of the operation to do */
544 double avg
, /* io limit */
545 uint64_t op_size
, /* ideal size of an io */
550 BucketType to_test
[2][3] = { { THROTTLE_BPS_TOTAL
,
552 THROTTLE_BPS_WRITE
, },
553 { THROTTLE_OPS_TOTAL
,
555 THROTTLE_OPS_WRITE
, } };
560 for (i
= 0; i
< 3; i
++) {
561 BucketType index
= to_test
[is_ops
][i
];
562 cfg
.buckets
[index
].avg
= avg
;
565 cfg
.op_size
= op_size
;
568 throttle_timers_init(tt
, ctx
, QEMU_CLOCK_VIRTUAL
,
569 read_timer_cb
, write_timer_cb
, &ts
);
570 throttle_config(&ts
, QEMU_CLOCK_VIRTUAL
, &cfg
);
573 throttle_account(&ts
, false, size
);
574 /* account a write */
575 throttle_account(&ts
, true, size
);
577 /* check total result */
578 index
= to_test
[is_ops
][0];
579 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, total_result
)) {
583 /* check read result */
584 index
= to_test
[is_ops
][1];
585 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, read_result
)) {
589 /* check write result */
590 index
= to_test
[is_ops
][2];
591 if (!double_cmp(ts
.cfg
.buckets
[index
].level
, write_result
)) {
595 throttle_timers_destroy(tt
);
600 static void test_accounting(void)
605 g_assert(do_test_accounting(false,
614 g_assert(do_test_accounting(false,
622 /* op of size 2 and orthogonal parameter change */
623 g_assert(do_test_accounting(false,
635 g_assert(do_test_accounting(true,
644 g_assert(do_test_accounting(true,
652 /* jumbo op accounting fragmentation : size 64 with op size of 13 units */
653 g_assert(do_test_accounting(true,
661 /* same with orthogonal parameters changes */
662 g_assert(do_test_accounting(true,
671 static void test_groups(void)
673 ThrottleConfig cfg1
, cfg2
;
674 BlockBackend
*blk1
, *blk2
, *blk3
;
675 BlockBackendPublic
*blkp1
, *blkp2
, *blkp3
;
676 ThrottleGroupMember
*tgm1
, *tgm2
, *tgm3
;
678 /* No actual I/O is performed on these devices */
679 blk1
= blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL
);
680 blk2
= blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL
);
681 blk3
= blk_new(qemu_get_aio_context(), 0, BLK_PERM_ALL
);
683 blkp1
= blk_get_public(blk1
);
684 blkp2
= blk_get_public(blk2
);
685 blkp3
= blk_get_public(blk3
);
687 tgm1
= &blkp1
->throttle_group_member
;
688 tgm2
= &blkp2
->throttle_group_member
;
689 tgm3
= &blkp3
->throttle_group_member
;
691 g_assert(tgm1
->throttle_state
== NULL
);
692 g_assert(tgm2
->throttle_state
== NULL
);
693 g_assert(tgm3
->throttle_state
== NULL
);
695 throttle_group_register_tgm(tgm1
, "bar", blk_get_aio_context(blk1
));
696 throttle_group_register_tgm(tgm2
, "foo", blk_get_aio_context(blk2
));
697 throttle_group_register_tgm(tgm3
, "bar", blk_get_aio_context(blk3
));
699 g_assert(tgm1
->throttle_state
!= NULL
);
700 g_assert(tgm2
->throttle_state
!= NULL
);
701 g_assert(tgm3
->throttle_state
!= NULL
);
703 g_assert(!strcmp(throttle_group_get_name(tgm1
), "bar"));
704 g_assert(!strcmp(throttle_group_get_name(tgm2
), "foo"));
705 g_assert(tgm1
->throttle_state
== tgm3
->throttle_state
);
707 /* Setting the config of a group member affects the whole group */
708 throttle_config_init(&cfg1
);
709 cfg1
.buckets
[THROTTLE_BPS_READ
].avg
= 500000;
710 cfg1
.buckets
[THROTTLE_BPS_WRITE
].avg
= 285000;
711 cfg1
.buckets
[THROTTLE_OPS_READ
].avg
= 20000;
712 cfg1
.buckets
[THROTTLE_OPS_WRITE
].avg
= 12000;
713 throttle_group_config(tgm1
, &cfg1
);
715 throttle_group_get_config(tgm1
, &cfg1
);
716 throttle_group_get_config(tgm3
, &cfg2
);
717 g_assert(!memcmp(&cfg1
, &cfg2
, sizeof(cfg1
)));
719 cfg2
.buckets
[THROTTLE_BPS_READ
].avg
= 4547;
720 cfg2
.buckets
[THROTTLE_BPS_WRITE
].avg
= 1349;
721 cfg2
.buckets
[THROTTLE_OPS_READ
].avg
= 123;
722 cfg2
.buckets
[THROTTLE_OPS_WRITE
].avg
= 86;
723 throttle_group_config(tgm3
, &cfg1
);
725 throttle_group_get_config(tgm1
, &cfg1
);
726 throttle_group_get_config(tgm3
, &cfg2
);
727 g_assert(!memcmp(&cfg1
, &cfg2
, sizeof(cfg1
)));
729 throttle_group_unregister_tgm(tgm1
);
730 throttle_group_unregister_tgm(tgm2
);
731 throttle_group_unregister_tgm(tgm3
);
733 g_assert(tgm1
->throttle_state
== NULL
);
734 g_assert(tgm2
->throttle_state
== NULL
);
735 g_assert(tgm3
->throttle_state
== NULL
);
738 int main(int argc
, char **argv
)
740 qemu_init_main_loop(&error_fatal
);
741 ctx
= qemu_get_aio_context();
743 module_call_init(MODULE_INIT_QOM
);
745 do {} while (g_main_context_iteration(NULL
, false));
747 /* tests in the same order as the header function declarations */
748 g_test_init(&argc
, &argv
, NULL
);
749 g_test_add_func("/throttle/leak_bucket", test_leak_bucket
);
750 g_test_add_func("/throttle/compute_wait", test_compute_wait
);
751 g_test_add_func("/throttle/init", test_init
);
752 g_test_add_func("/throttle/destroy", test_destroy
);
753 g_test_add_func("/throttle/have_timer", test_have_timer
);
754 g_test_add_func("/throttle/detach_attach", test_detach_attach
);
755 g_test_add_func("/throttle/config/enabled", test_enabled
);
756 g_test_add_func("/throttle/config/conflicting", test_conflicting_config
);
757 g_test_add_func("/throttle/config/is_valid", test_is_valid
);
758 g_test_add_func("/throttle/config/ranges", test_ranges
);
759 g_test_add_func("/throttle/config/max", test_max_is_missing_limit
);
760 g_test_add_func("/throttle/config/iops_size",
761 test_iops_size_is_missing_limit
);
762 g_test_add_func("/throttle/config_functions", test_config_functions
);
763 g_test_add_func("/throttle/accounting", test_accounting
);
764 g_test_add_func("/throttle/groups", test_groups
);