blob: ff282fc0f8ab1b3cac5527fe11fdfe216fb7a1f6 [file] [log] [blame]
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +02001/*
2 * QEMU block throttling group infrastructure
3 *
4 * Copyright (C) Nodalink, EURL. 2014
5 * Copyright (C) Igalia, S.L. 2015
6 *
7 * Authors:
8 * BenoƮt Canet <benoit.canet@nodalink.com>
9 * Alberto Garcia <berto@igalia.com>
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 or
14 * (at your option) version 3 of the License.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <http://www.gnu.org/licenses/>.
23 */
24
25#ifndef THROTTLE_GROUPS_H
26#define THROTTLE_GROUPS_H
27
Markus Armbrustere2c1c342022-12-21 14:35:49 +010028#include "qemu/coroutine.h"
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020029#include "qemu/throttle.h"
Eduardo Habkostdb1015e2020-09-03 16:43:22 -040030#include "qom/object.h"
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020031
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030032/* The ThrottleGroupMember structure indicates membership in a ThrottleGroup
33 * and holds related data.
34 */
35
36typedef struct ThrottleGroupMember {
Manos Pitsidianakisc61791f2017-08-25 16:20:24 +030037 AioContext *aio_context;
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030038 /* throttled_reqs_lock protects the CoQueues for throttled requests. */
39 CoMutex throttled_reqs_lock;
40 CoQueue throttled_reqs[2];
41
42 /* Nonzero if the I/O limits are currently being ignored; generally
43 * it is zero. Accessed with atomic operations.
44 */
45 unsigned int io_limits_disabled;
46
Stefan Hajnoczibc19a0a2019-01-14 13:32:56 +000047 /* Number of pending throttle_group_restart_queue_entry() coroutines.
48 * Accessed with atomic operations.
49 */
50 unsigned int restart_pending;
51
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030052 /* The following fields are protected by the ThrottleGroup lock.
53 * See the ThrottleGroup documentation for details.
54 * throttle_state tells us if I/O limits are configured. */
55 ThrottleState *throttle_state;
56 ThrottleTimers throttle_timers;
57 unsigned pending_reqs[2];
58 QLIST_ENTRY(ThrottleGroupMember) round_robin;
59
60} ThrottleGroupMember;
61
Manos Pitsidianakis432d8892017-08-25 16:20:26 +030062#define TYPE_THROTTLE_GROUP "throttle-group"
Eduardo Habkost80633962020-09-16 14:25:19 -040063OBJECT_DECLARE_SIMPLE_TYPE(ThrottleGroup, THROTTLE_GROUP)
Manos Pitsidianakis432d8892017-08-25 16:20:26 +030064
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030065const char *throttle_group_get_name(ThrottleGroupMember *tgm);
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020066
Max Reitz973f2dd2015-10-19 17:53:23 +020067ThrottleState *throttle_group_incref(const char *name);
68void throttle_group_unref(ThrottleState *ts);
69
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030070void throttle_group_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg);
71void throttle_group_get_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg);
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020072
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030073void throttle_group_register_tgm(ThrottleGroupMember *tgm,
Manos Pitsidianakisc61791f2017-08-25 16:20:24 +030074 const char *groupname,
75 AioContext *ctx);
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030076void throttle_group_unregister_tgm(ThrottleGroupMember *tgm);
77void throttle_group_restart_tgm(ThrottleGroupMember *tgm);
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020078
Manos Pitsidianakis022cdc92017-08-25 16:20:23 +030079void coroutine_fn throttle_group_co_io_limits_intercept(ThrottleGroupMember *tgm,
Vladimir Sementsov-Ogievskiy801625e2020-12-11 21:39:24 +030080 int64_t bytes,
Alberto Garcia76f4afb2015-06-08 18:17:44 +020081 bool is_write);
Manos Pitsidianakisc61791f2017-08-25 16:20:24 +030082void throttle_group_attach_aio_context(ThrottleGroupMember *tgm,
83 AioContext *new_context);
84void throttle_group_detach_aio_context(ThrottleGroupMember *tgm);
Manos Pitsidianakisd8e7d872017-08-25 16:20:27 +030085/*
86 * throttle_group_exists() must be called under the global
87 * mutex.
88 */
89bool throttle_group_exists(const char *name);
Alberto Garcia76f4afb2015-06-08 18:17:44 +020090
Alberto Garcia2ff1f2e2015-06-08 18:17:42 +020091#endif