2015-06-08 16:17:42 +00:00
|
|
|
/*
|
|
|
|
* QEMU block throttling group infrastructure
|
|
|
|
*
|
|
|
|
* Copyright (C) Nodalink, EURL. 2014
|
|
|
|
* Copyright (C) Igalia, S.L. 2015
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Benoît Canet <benoit.canet@nodalink.com>
|
|
|
|
* Alberto Garcia <berto@igalia.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 or
|
|
|
|
* (at your option) version 3 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-18 18:01:42 +00:00
|
|
|
#include "qemu/osdep.h"
|
2016-03-21 10:30:57 +00:00
|
|
|
#include "sysemu/block-backend.h"
|
2015-06-08 16:17:42 +00:00
|
|
|
#include "block/throttle-groups.h"
|
2015-06-08 16:17:44 +00:00
|
|
|
#include "qemu/queue.h"
|
|
|
|
#include "qemu/thread.h"
|
|
|
|
#include "sysemu/qtest.h"
|
2015-06-08 16:17:42 +00:00
|
|
|
|
|
|
|
/* The ThrottleGroup structure (with its ThrottleState) is shared
|
2017-08-25 13:20:23 +00:00
|
|
|
* among different ThrottleGroupMembers and it's independent from
|
2015-06-08 16:17:42 +00:00
|
|
|
* AioContext, so in order to use it from different threads it needs
|
|
|
|
* its own locking.
|
|
|
|
*
|
|
|
|
* This locking is however handled internally in this file, so it's
|
2015-10-21 18:36:05 +00:00
|
|
|
* transparent to outside users.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
|
|
|
* The whole ThrottleGroup structure is private and invisible to
|
|
|
|
* outside users, that only use it through its ThrottleState.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* In addition to the ThrottleGroup structure, ThrottleGroupMember has
|
2015-06-08 16:17:42 +00:00
|
|
|
* fields that need to be accessed by other members of the group and
|
2016-03-21 11:56:44 +00:00
|
|
|
* therefore also need to be protected by this lock. Once a
|
2017-08-25 13:20:23 +00:00
|
|
|
* ThrottleGroupMember is registered in a group those fields can be accessed
|
2016-03-21 11:56:44 +00:00
|
|
|
* by other threads any time.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
|
|
|
* Again, all this is handled internally and is mostly transparent to
|
|
|
|
* the outside. The 'throttle_timers' field however has an additional
|
|
|
|
* constraint because it may be temporarily invalid (see for example
|
2017-06-13 21:16:12 +00:00
|
|
|
* blk_set_aio_context()). Therefore in this file a thread will
|
2017-08-25 13:20:23 +00:00
|
|
|
* access some other ThrottleGroupMember's timers only after verifying that
|
|
|
|
* that ThrottleGroupMember has throttled requests in the queue.
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
|
|
|
typedef struct ThrottleGroup {
|
|
|
|
char *name; /* This is constant during the lifetime of the group */
|
|
|
|
|
|
|
|
QemuMutex lock; /* This lock protects the following four fields */
|
|
|
|
ThrottleState ts;
|
2017-08-25 13:20:23 +00:00
|
|
|
QLIST_HEAD(, ThrottleGroupMember) head;
|
|
|
|
ThrottleGroupMember *tokens[2];
|
2015-06-08 16:17:42 +00:00
|
|
|
bool any_timer_armed[2];
|
2017-07-02 10:06:45 +00:00
|
|
|
QEMUClockType clock_type;
|
2015-06-08 16:17:42 +00:00
|
|
|
|
|
|
|
/* These two are protected by the global throttle_groups_lock */
|
|
|
|
unsigned refcount;
|
|
|
|
QTAILQ_ENTRY(ThrottleGroup) list;
|
|
|
|
} ThrottleGroup;
|
|
|
|
|
|
|
|
static QemuMutex throttle_groups_lock;
|
|
|
|
static QTAILQ_HEAD(, ThrottleGroup) throttle_groups =
|
|
|
|
QTAILQ_HEAD_INITIALIZER(throttle_groups);
|
|
|
|
|
|
|
|
/* Increments the reference count of a ThrottleGroup given its name.
|
|
|
|
*
|
|
|
|
* If no ThrottleGroup is found with the given name a new one is
|
|
|
|
* created.
|
|
|
|
*
|
|
|
|
* @name: the name of the ThrottleGroup
|
2015-10-19 15:53:23 +00:00
|
|
|
* @ret: the ThrottleState member of the ThrottleGroup
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
2015-10-19 15:53:23 +00:00
|
|
|
ThrottleState *throttle_group_incref(const char *name)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
|
|
|
ThrottleGroup *tg = NULL;
|
|
|
|
ThrottleGroup *iter;
|
|
|
|
|
|
|
|
qemu_mutex_lock(&throttle_groups_lock);
|
|
|
|
|
|
|
|
/* Look for an existing group with that name */
|
|
|
|
QTAILQ_FOREACH(iter, &throttle_groups, list) {
|
|
|
|
if (!strcmp(name, iter->name)) {
|
|
|
|
tg = iter;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a new one if not found */
|
|
|
|
if (!tg) {
|
|
|
|
tg = g_new0(ThrottleGroup, 1);
|
|
|
|
tg->name = g_strdup(name);
|
2017-07-02 10:06:45 +00:00
|
|
|
tg->clock_type = QEMU_CLOCK_REALTIME;
|
|
|
|
|
|
|
|
if (qtest_enabled()) {
|
|
|
|
/* For testing block IO throttling only */
|
|
|
|
tg->clock_type = QEMU_CLOCK_VIRTUAL;
|
|
|
|
}
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_init(&tg->lock);
|
|
|
|
throttle_init(&tg->ts);
|
|
|
|
QLIST_INIT(&tg->head);
|
|
|
|
|
|
|
|
QTAILQ_INSERT_TAIL(&throttle_groups, tg, list);
|
|
|
|
}
|
|
|
|
|
|
|
|
tg->refcount++;
|
|
|
|
|
|
|
|
qemu_mutex_unlock(&throttle_groups_lock);
|
|
|
|
|
2015-10-19 15:53:23 +00:00
|
|
|
return &tg->ts;
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Decrease the reference count of a ThrottleGroup.
|
|
|
|
*
|
|
|
|
* When the reference count reaches zero the ThrottleGroup is
|
|
|
|
* destroyed.
|
|
|
|
*
|
2015-10-19 15:53:23 +00:00
|
|
|
* @ts: The ThrottleGroup to unref, given by its ThrottleState member
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
2015-10-19 15:53:23 +00:00
|
|
|
void throttle_group_unref(ThrottleState *ts)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2015-10-19 15:53:23 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_lock(&throttle_groups_lock);
|
|
|
|
if (--tg->refcount == 0) {
|
|
|
|
QTAILQ_REMOVE(&throttle_groups, tg, list);
|
|
|
|
qemu_mutex_destroy(&tg->lock);
|
|
|
|
g_free(tg->name);
|
|
|
|
g_free(tg);
|
|
|
|
}
|
|
|
|
qemu_mutex_unlock(&throttle_groups_lock);
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Get the name from a ThrottleGroupMember's group. The name (and the pointer)
|
2016-03-21 10:58:21 +00:00
|
|
|
* is guaranteed to remain constant during the lifetime of the group.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: a ThrottleGroupMember
|
2015-06-08 16:17:42 +00:00
|
|
|
* @ret: the name of the group.
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
const char *throttle_group_get_name(ThrottleGroupMember *tgm)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroup *tg = container_of(tgm->throttle_state, ThrottleGroup, ts);
|
2015-06-08 16:17:42 +00:00
|
|
|
return tg->name;
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Return the next ThrottleGroupMember in the round-robin sequence, simulating
|
|
|
|
* a circular list.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
|
|
|
* This assumes that tg->lock is held.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
|
|
|
* @ret: the next ThrottleGroupMember in the sequence
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static ThrottleGroupMember *throttle_group_next_tgm(ThrottleGroupMember *tgm)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
2015-06-08 16:17:42 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroupMember *next = QLIST_NEXT(tgm, round_robin);
|
2015-06-08 16:17:42 +00:00
|
|
|
|
|
|
|
if (!next) {
|
2016-03-21 10:30:57 +00:00
|
|
|
next = QLIST_FIRST(&tg->head);
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
return next;
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
2016-10-17 15:46:02 +00:00
|
|
|
/*
|
2017-08-25 13:20:23 +00:00
|
|
|
* Return whether a ThrottleGroupMember has pending requests.
|
2016-10-17 15:46:02 +00:00
|
|
|
*
|
|
|
|
* This assumes that tg->lock is held.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the ThrottleGroupMember
|
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
* @ret: whether the ThrottleGroupMember has pending requests.
|
2016-10-17 15:46:02 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static inline bool tgm_has_pending_reqs(ThrottleGroupMember *tgm,
|
2016-10-17 15:46:02 +00:00
|
|
|
bool is_write)
|
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
return tgm->pending_reqs[is_write];
|
2016-10-17 15:46:02 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Return the next ThrottleGroupMember in the round-robin sequence with pending
|
|
|
|
* I/O requests.
|
2015-06-08 16:17:44 +00:00
|
|
|
*
|
|
|
|
* This assumes that tg->lock is held.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
2015-06-08 16:17:44 +00:00
|
|
|
* @is_write: the type of operation (read/write)
|
2017-08-25 13:20:23 +00:00
|
|
|
* @ret: the next ThrottleGroupMember with pending requests, or tgm if
|
|
|
|
* there is none.
|
2015-06-08 16:17:44 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static ThrottleGroupMember *next_throttle_token(ThrottleGroupMember *tgm,
|
|
|
|
bool is_write)
|
2015-06-08 16:17:44 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
ThrottleGroupMember *token, *start;
|
2015-06-08 16:17:44 +00:00
|
|
|
|
|
|
|
start = token = tg->tokens[is_write];
|
|
|
|
|
|
|
|
/* get next bs round in round robin style */
|
2017-08-25 13:20:23 +00:00
|
|
|
token = throttle_group_next_tgm(token);
|
|
|
|
while (token != start && !tgm_has_pending_reqs(token, is_write)) {
|
|
|
|
token = throttle_group_next_tgm(token);
|
2015-06-08 16:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* If no IO are queued for scheduling on the next round robin token
|
2017-08-25 13:20:23 +00:00
|
|
|
* then decide the token is the current tgm because chances are
|
|
|
|
* the current tgm got the current request queued.
|
2015-06-08 16:17:44 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
if (token == start && !tgm_has_pending_reqs(token, is_write)) {
|
|
|
|
token = tgm;
|
2015-06-08 16:17:44 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Either we return the original TGM, or one with pending requests */
|
|
|
|
assert(token == tgm || tgm_has_pending_reqs(token, is_write));
|
2016-10-17 15:46:02 +00:00
|
|
|
|
2015-06-08 16:17:44 +00:00
|
|
|
return token;
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Check if the next I/O request for a ThrottleGroupMember needs to be
|
|
|
|
* throttled or not. If there's no timer set in this group, set one and update
|
|
|
|
* the token accordingly.
|
2015-06-08 16:17:44 +00:00
|
|
|
*
|
|
|
|
* This assumes that tg->lock is held.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
2015-06-08 16:17:44 +00:00
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
* @ret: whether the I/O request needs to be throttled or not
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static bool throttle_group_schedule_timer(ThrottleGroupMember *tgm,
|
|
|
|
bool is_write)
|
2015-06-08 16:17:44 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
2015-06-08 16:17:44 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleTimers *tt = &tgm->throttle_timers;
|
2015-06-08 16:17:44 +00:00
|
|
|
bool must_wait;
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
if (atomic_read(&tgm->io_limits_disabled)) {
|
2016-04-07 16:33:33 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-06-08 16:17:44 +00:00
|
|
|
/* Check if any of the timers in this group is already armed */
|
|
|
|
if (tg->any_timer_armed[is_write]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
must_wait = throttle_schedule_timer(ts, tt, is_write);
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* If a timer just got armed, set tgm as the current token */
|
2015-06-08 16:17:44 +00:00
|
|
|
if (must_wait) {
|
2017-08-25 13:20:23 +00:00
|
|
|
tg->tokens[is_write] = tgm;
|
2015-06-08 16:17:44 +00:00
|
|
|
tg->any_timer_armed[is_write] = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return must_wait;
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Start the next pending I/O request for a ThrottleGroupMember. Return whether
|
2017-06-05 12:38:57 +00:00
|
|
|
* any request was actually pending.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
2017-06-05 12:38:57 +00:00
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static bool coroutine_fn throttle_group_co_restart_queue(ThrottleGroupMember *tgm,
|
2017-06-05 12:38:57 +00:00
|
|
|
bool is_write)
|
|
|
|
{
|
2017-06-05 12:38:58 +00:00
|
|
|
bool ret;
|
2017-06-05 12:38:57 +00:00
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
qemu_co_mutex_lock(&tgm->throttled_reqs_lock);
|
|
|
|
ret = qemu_co_queue_next(&tgm->throttled_reqs[is_write]);
|
|
|
|
qemu_co_mutex_unlock(&tgm->throttled_reqs_lock);
|
2017-06-05 12:38:58 +00:00
|
|
|
|
|
|
|
return ret;
|
2017-06-05 12:38:57 +00:00
|
|
|
}
|
|
|
|
|
2015-06-08 16:17:44 +00:00
|
|
|
/* Look for the next pending I/O request and schedule it.
|
|
|
|
*
|
|
|
|
* This assumes that tg->lock is held.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
2015-06-08 16:17:44 +00:00
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
static void schedule_next_request(ThrottleGroupMember *tgm, bool is_write)
|
2015-06-08 16:17:44 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
2015-06-08 16:17:44 +00:00
|
|
|
bool must_wait;
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroupMember *token;
|
2015-06-08 16:17:44 +00:00
|
|
|
|
|
|
|
/* Check if there's any pending request to schedule next */
|
2017-08-25 13:20:23 +00:00
|
|
|
token = next_throttle_token(tgm, is_write);
|
|
|
|
if (!tgm_has_pending_reqs(token, is_write)) {
|
2015-06-08 16:17:44 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set a timer for the request if it needs to be throttled */
|
|
|
|
must_wait = throttle_group_schedule_timer(token, is_write);
|
|
|
|
|
|
|
|
/* If it doesn't have to wait, queue it for immediate execution */
|
|
|
|
if (!must_wait) {
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Give preference to requests from the current tgm */
|
2015-06-08 16:17:44 +00:00
|
|
|
if (qemu_in_coroutine() &&
|
2017-08-25 13:20:23 +00:00
|
|
|
throttle_group_co_restart_queue(tgm, is_write)) {
|
|
|
|
token = tgm;
|
2015-06-08 16:17:44 +00:00
|
|
|
} else {
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleTimers *tt = &token->throttle_timers;
|
2017-07-02 10:06:45 +00:00
|
|
|
int64_t now = qemu_clock_get_ns(tg->clock_type);
|
2017-06-05 12:38:56 +00:00
|
|
|
timer_mod(tt->timers[is_write], now);
|
2015-06-08 16:17:44 +00:00
|
|
|
tg->any_timer_armed[is_write] = true;
|
|
|
|
}
|
|
|
|
tg->tokens[is_write] = token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check if an I/O request needs to be throttled, wait and set a timer
|
|
|
|
* if necessary, and schedule the next request using a round robin
|
|
|
|
* algorithm.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the current ThrottleGroupMember
|
2015-06-08 16:17:44 +00:00
|
|
|
* @bytes: the number of bytes for this I/O
|
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
void coroutine_fn throttle_group_co_io_limits_intercept(ThrottleGroupMember *tgm,
|
2015-06-08 16:17:44 +00:00
|
|
|
unsigned int bytes,
|
|
|
|
bool is_write)
|
|
|
|
{
|
|
|
|
bool must_wait;
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroupMember *token;
|
|
|
|
ThrottleGroup *tg = container_of(tgm->throttle_state, ThrottleGroup, ts);
|
2015-06-08 16:17:44 +00:00
|
|
|
qemu_mutex_lock(&tg->lock);
|
|
|
|
|
|
|
|
/* First we check if this I/O has to be throttled. */
|
2017-08-25 13:20:23 +00:00
|
|
|
token = next_throttle_token(tgm, is_write);
|
2015-06-08 16:17:44 +00:00
|
|
|
must_wait = throttle_group_schedule_timer(token, is_write);
|
|
|
|
|
|
|
|
/* Wait if there's a timer set or queued requests of this type */
|
2017-08-25 13:20:23 +00:00
|
|
|
if (must_wait || tgm->pending_reqs[is_write]) {
|
|
|
|
tgm->pending_reqs[is_write]++;
|
2015-06-08 16:17:44 +00:00
|
|
|
qemu_mutex_unlock(&tg->lock);
|
2017-08-25 13:20:23 +00:00
|
|
|
qemu_co_mutex_lock(&tgm->throttled_reqs_lock);
|
|
|
|
qemu_co_queue_wait(&tgm->throttled_reqs[is_write],
|
|
|
|
&tgm->throttled_reqs_lock);
|
|
|
|
qemu_co_mutex_unlock(&tgm->throttled_reqs_lock);
|
2015-06-08 16:17:44 +00:00
|
|
|
qemu_mutex_lock(&tg->lock);
|
2017-08-25 13:20:23 +00:00
|
|
|
tgm->pending_reqs[is_write]--;
|
2015-06-08 16:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The I/O will be executed, so do the accounting */
|
2017-08-25 13:20:23 +00:00
|
|
|
throttle_account(tgm->throttle_state, is_write, bytes);
|
2015-06-08 16:17:44 +00:00
|
|
|
|
|
|
|
/* Schedule the next request */
|
2017-08-25 13:20:23 +00:00
|
|
|
schedule_next_request(tgm, is_write);
|
2015-06-08 16:17:44 +00:00
|
|
|
|
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
}
|
|
|
|
|
2017-06-05 12:38:57 +00:00
|
|
|
typedef struct {
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroupMember *tgm;
|
2017-06-05 12:38:57 +00:00
|
|
|
bool is_write;
|
|
|
|
} RestartData;
|
|
|
|
|
|
|
|
static void coroutine_fn throttle_group_restart_queue_entry(void *opaque)
|
2017-06-05 12:38:56 +00:00
|
|
|
{
|
2017-06-05 12:38:57 +00:00
|
|
|
RestartData *data = opaque;
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleGroupMember *tgm = data->tgm;
|
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
2017-06-05 12:38:57 +00:00
|
|
|
bool is_write = data->is_write;
|
2017-06-05 12:38:56 +00:00
|
|
|
bool empty_queue;
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
empty_queue = !throttle_group_co_restart_queue(tgm, is_write);
|
2017-06-05 12:38:56 +00:00
|
|
|
|
|
|
|
/* If the request queue was empty then we have to take care of
|
|
|
|
* scheduling the next one */
|
|
|
|
if (empty_queue) {
|
|
|
|
qemu_mutex_lock(&tg->lock);
|
2017-08-25 13:20:23 +00:00
|
|
|
schedule_next_request(tgm, is_write);
|
2017-06-05 12:38:56 +00:00
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
static void throttle_group_restart_queue(ThrottleGroupMember *tgm, bool is_write)
|
2017-06-05 12:38:57 +00:00
|
|
|
{
|
|
|
|
Coroutine *co;
|
|
|
|
RestartData rd = {
|
2017-08-25 13:20:23 +00:00
|
|
|
.tgm = tgm,
|
2017-06-05 12:38:57 +00:00
|
|
|
.is_write = is_write
|
|
|
|
};
|
|
|
|
|
|
|
|
co = qemu_coroutine_create(throttle_group_restart_queue_entry, &rd);
|
2017-08-25 13:20:24 +00:00
|
|
|
aio_co_enter(tgm->aio_context, co);
|
2017-06-05 12:38:57 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
void throttle_group_restart_tgm(ThrottleGroupMember *tgm)
|
2016-04-07 16:33:31 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
if (tgm->throttle_state) {
|
|
|
|
throttle_group_restart_queue(tgm, 0);
|
|
|
|
throttle_group_restart_queue(tgm, 1);
|
2016-04-07 16:33:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-08 16:17:42 +00:00
|
|
|
/* Update the throttle configuration for a particular group. Similar
|
|
|
|
* to throttle_config(), but guarantees atomicity within the
|
|
|
|
* throttling group.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: a ThrottleGroupMember that is a member of the group
|
2015-06-08 16:17:42 +00:00
|
|
|
* @cfg: the configuration to set
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
void throttle_group_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
2015-06-08 16:17:42 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
qemu_mutex_lock(&tg->lock);
|
2017-07-02 10:06:46 +00:00
|
|
|
throttle_config(ts, tg->clock_type, cfg);
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_unlock(&tg->lock);
|
2016-04-07 16:33:31 +00:00
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
throttle_group_restart_tgm(tgm);
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the throttle configuration from a particular group. Similar to
|
|
|
|
* throttle_get_config(), but guarantees atomicity within the
|
|
|
|
* throttling group.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: a ThrottleGroupMember that is a member of the group
|
2015-06-08 16:17:42 +00:00
|
|
|
* @cfg: the configuration will be written here
|
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
void throttle_group_get_config(ThrottleGroupMember *tgm, ThrottleConfig *cfg)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
2015-06-08 16:17:42 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
qemu_mutex_lock(&tg->lock);
|
|
|
|
throttle_get_config(ts, cfg);
|
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
}
|
|
|
|
|
2015-06-08 16:17:44 +00:00
|
|
|
/* ThrottleTimers callback. This wakes up a request that was waiting
|
|
|
|
* because it had been throttled.
|
|
|
|
*
|
2017-08-25 13:20:24 +00:00
|
|
|
* @tgm: the ThrottleGroupMember whose request had been throttled
|
2015-06-08 16:17:44 +00:00
|
|
|
* @is_write: the type of operation (read/write)
|
|
|
|
*/
|
2017-08-25 13:20:24 +00:00
|
|
|
static void timer_cb(ThrottleGroupMember *tgm, bool is_write)
|
2015-06-08 16:17:44 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
2015-06-08 16:17:44 +00:00
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
|
|
|
|
/* The timer has just been fired, so we can update the flag */
|
|
|
|
qemu_mutex_lock(&tg->lock);
|
|
|
|
tg->any_timer_armed[is_write] = false;
|
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
|
|
|
|
/* Run the request that was waiting for this timer */
|
2017-08-25 13:20:23 +00:00
|
|
|
throttle_group_restart_queue(tgm, is_write);
|
2015-06-08 16:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void read_timer_cb(void *opaque)
|
|
|
|
{
|
|
|
|
timer_cb(opaque, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void write_timer_cb(void *opaque)
|
|
|
|
{
|
|
|
|
timer_cb(opaque, true);
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Register a ThrottleGroupMember from the throttling group, also initializing
|
|
|
|
* its timers and updating its throttle_state pointer to point to it. If a
|
2016-03-21 10:30:57 +00:00
|
|
|
* throttling group with that name does not exist yet, it will be created.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm: the ThrottleGroupMember to insert
|
2015-06-08 16:17:42 +00:00
|
|
|
* @groupname: the name of the group
|
2017-08-25 13:20:24 +00:00
|
|
|
* @ctx: the AioContext to use
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
void throttle_group_register_tgm(ThrottleGroupMember *tgm,
|
2017-08-25 13:20:24 +00:00
|
|
|
const char *groupname,
|
|
|
|
AioContext *ctx)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
|
|
|
int i;
|
2015-10-19 15:53:23 +00:00
|
|
|
ThrottleState *ts = throttle_group_incref(groupname);
|
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
2017-08-25 13:20:23 +00:00
|
|
|
|
|
|
|
tgm->throttle_state = ts;
|
2017-08-25 13:20:24 +00:00
|
|
|
tgm->aio_context = ctx;
|
2015-06-08 16:17:42 +00:00
|
|
|
|
|
|
|
qemu_mutex_lock(&tg->lock);
|
2017-08-25 13:20:23 +00:00
|
|
|
/* If the ThrottleGroup is new set this ThrottleGroupMember as the token */
|
2015-06-08 16:17:42 +00:00
|
|
|
for (i = 0; i < 2; i++) {
|
|
|
|
if (!tg->tokens[i]) {
|
2017-08-25 13:20:23 +00:00
|
|
|
tg->tokens[i] = tgm;
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
QLIST_INSERT_HEAD(&tg->head, tgm, round_robin);
|
2015-06-08 16:17:44 +00:00
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
throttle_timers_init(&tgm->throttle_timers,
|
2017-08-25 13:20:24 +00:00
|
|
|
tgm->aio_context,
|
2017-07-02 10:06:45 +00:00
|
|
|
tg->clock_type,
|
2015-06-08 16:17:44 +00:00
|
|
|
read_timer_cb,
|
|
|
|
write_timer_cb,
|
2017-08-25 13:20:24 +00:00
|
|
|
tgm);
|
2015-06-08 16:17:44 +00:00
|
|
|
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* Unregister a ThrottleGroupMember from its group, removing it from the list,
|
2016-03-21 10:30:57 +00:00
|
|
|
* destroying the timers and setting the throttle_state pointer to NULL.
|
2015-06-08 16:17:42 +00:00
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* The ThrottleGroupMember must not have pending throttled requests, so the
|
|
|
|
* caller has to drain them first.
|
2015-11-04 13:15:35 +00:00
|
|
|
*
|
2015-06-08 16:17:42 +00:00
|
|
|
* The group will be destroyed if it's empty after this operation.
|
|
|
|
*
|
2017-08-25 13:20:23 +00:00
|
|
|
* @tgm the ThrottleGroupMember to remove
|
2015-06-08 16:17:42 +00:00
|
|
|
*/
|
2017-08-25 13:20:23 +00:00
|
|
|
void throttle_group_unregister_tgm(ThrottleGroupMember *tgm)
|
2015-06-08 16:17:42 +00:00
|
|
|
{
|
2017-08-25 13:20:23 +00:00
|
|
|
ThrottleState *ts = tgm->throttle_state;
|
|
|
|
ThrottleGroup *tg = container_of(ts, ThrottleGroup, ts);
|
|
|
|
ThrottleGroupMember *token;
|
2015-06-08 16:17:42 +00:00
|
|
|
int i;
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
assert(tgm->pending_reqs[0] == 0 && tgm->pending_reqs[1] == 0);
|
|
|
|
assert(qemu_co_queue_empty(&tgm->throttled_reqs[0]));
|
|
|
|
assert(qemu_co_queue_empty(&tgm->throttled_reqs[1]));
|
2015-11-04 13:15:35 +00:00
|
|
|
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_lock(&tg->lock);
|
|
|
|
for (i = 0; i < 2; i++) {
|
2017-08-25 13:20:23 +00:00
|
|
|
if (tg->tokens[i] == tgm) {
|
|
|
|
token = throttle_group_next_tgm(tgm);
|
|
|
|
/* Take care of the case where this is the last tgm in the group */
|
|
|
|
if (token == tgm) {
|
2015-06-08 16:17:42 +00:00
|
|
|
token = NULL;
|
|
|
|
}
|
|
|
|
tg->tokens[i] = token;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:23 +00:00
|
|
|
/* remove the current tgm from the list */
|
|
|
|
QLIST_REMOVE(tgm, round_robin);
|
|
|
|
throttle_timers_destroy(&tgm->throttle_timers);
|
2015-06-08 16:17:42 +00:00
|
|
|
qemu_mutex_unlock(&tg->lock);
|
|
|
|
|
2015-10-19 15:53:23 +00:00
|
|
|
throttle_group_unref(&tg->ts);
|
2017-08-25 13:20:23 +00:00
|
|
|
tgm->throttle_state = NULL;
|
2015-06-08 16:17:42 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 13:20:24 +00:00
|
|
|
void throttle_group_attach_aio_context(ThrottleGroupMember *tgm,
|
|
|
|
AioContext *new_context)
|
|
|
|
{
|
|
|
|
ThrottleTimers *tt = &tgm->throttle_timers;
|
|
|
|
throttle_timers_attach_aio_context(tt, new_context);
|
|
|
|
tgm->aio_context = new_context;
|
|
|
|
}
|
|
|
|
|
|
|
|
void throttle_group_detach_aio_context(ThrottleGroupMember *tgm)
|
|
|
|
{
|
|
|
|
ThrottleTimers *tt = &tgm->throttle_timers;
|
|
|
|
throttle_timers_detach_aio_context(tt);
|
|
|
|
tgm->aio_context = NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-08 16:17:42 +00:00
|
|
|
static void throttle_groups_init(void)
|
|
|
|
{
|
|
|
|
qemu_mutex_init(&throttle_groups_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
block_init(throttle_groups_init);
|