blob: 8631763866c6d973225cd643f3d422c9c6a21845 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Vivek Goyale43473b2010-09-15 17:06:35 -04002/*
3 * Interface for controlling IO bandwidth on a request queue
4 *
5 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
6 */
7
8#include <linux/module.h>
9#include <linux/slab.h>
10#include <linux/blkdev.h>
11#include <linux/bio.h>
12#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040013#include <linux/blk-cgroup.h>
Tejun Heobc9fcbf2011-10-19 14:31:18 +020014#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040015
16/* Max dispatch from a group in 1 round */
17static int throtl_grp_quantum = 8;
18
19/* Total max dispatch from all groups in one round */
20static int throtl_quantum = 32;
21
Shaohua Lid61fcfa2017-03-27 10:51:38 -070022/* Throttling is performed over a slice and after that slice is renewed */
23#define DFL_THROTL_SLICE_HD (HZ / 10)
24#define DFL_THROTL_SLICE_SSD (HZ / 50)
Shaohua Li297e3d82017-03-27 10:51:37 -070025#define MAX_THROTL_SLICE (HZ)
Shaohua Li9e234ee2017-03-27 10:51:41 -070026#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
Shaohua Li9bb67ae2017-05-17 13:07:26 -070027#define MIN_THROTL_BPS (320 * 1024)
28#define MIN_THROTL_IOPS (10)
Shaohua Lib4f428e2017-05-17 13:07:27 -070029#define DFL_LATENCY_TARGET (-1L)
30#define DFL_IDLE_THRESHOLD (0)
Shaohua Li6679a902017-06-06 12:40:43 -070031#define DFL_HD_BASELINE_LATENCY (4000L) /* 4ms */
32#define LATENCY_FILTERED_SSD (0)
33/*
34 * For HD, very small latency comes from sequential IO. Such IO is helpless to
35 * help determine if its IO is impacted by others, hence we ignore the IO
36 */
37#define LATENCY_FILTERED_HD (1000L) /* 1ms */
Vivek Goyale43473b2010-09-15 17:06:35 -040038
Shaohua Lib9147dd2017-03-27 15:19:42 -070039#define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT)
40
Tejun Heo3c798392012-04-16 13:57:25 -070041static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080042
Vivek Goyal450adcb2011-03-01 13:40:54 -050043/* A workqueue to queue throttle related work */
44static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050045
Tejun Heoc5cc2072013-05-14 13:52:38 -070046/*
47 * To implement hierarchical throttling, throtl_grps form a tree and bios
48 * are dispatched upwards level by level until they reach the top and get
49 * issued. When dispatching bios from the children and local group at each
50 * level, if the bios are dispatched into a single bio_list, there's a risk
51 * of a local or child group which can queue many bios at once filling up
52 * the list starving others.
53 *
54 * To avoid such starvation, dispatched bios are queued separately
55 * according to where they came from. When they are again dispatched to
56 * the parent, they're popped in round-robin order so that no single source
57 * hogs the dispatch window.
58 *
59 * throtl_qnode is used to keep the queued bios separated by their sources.
60 * Bios are queued to throtl_qnode which in turn is queued to
61 * throtl_service_queue and then dispatched in round-robin order.
62 *
63 * It's also used to track the reference counts on blkg's. A qnode always
64 * belongs to a throtl_grp and gets queued on itself or the parent, so
65 * incrementing the reference of the associated throtl_grp when a qnode is
66 * queued and decrementing when dequeued is enough to keep the whole blkg
67 * tree pinned while bios are in flight.
68 */
69struct throtl_qnode {
70 struct list_head node; /* service_queue->queued[] */
71 struct bio_list bios; /* queued bios */
72 struct throtl_grp *tg; /* tg this qnode belongs to */
73};
74
Tejun Heoc9e03322013-05-14 13:52:32 -070075struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070076 struct throtl_service_queue *parent_sq; /* the parent service_queue */
77
Tejun Heo73f0d492013-05-14 13:52:35 -070078 /*
79 * Bios queued directly to this service_queue or dispatched from
80 * children throtl_grp's.
81 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070082 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070083 unsigned int nr_queued[2]; /* number of queued bios */
84
85 /*
86 * RB tree of active children throtl_grp's, which are sorted by
87 * their ->disptime.
88 */
Tejun Heoc9e03322013-05-14 13:52:32 -070089 struct rb_root pending_tree; /* RB tree of active tgs */
90 struct rb_node *first_pending; /* first node in the tree */
91 unsigned int nr_pending; /* # queued in the tree */
92 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070093 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040094};
95
Tejun Heo5b2c16a2013-05-14 13:52:32 -070096enum tg_state_flags {
97 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070098 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070099};
100
Vivek Goyale43473b2010-09-15 17:06:35 -0400101#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
102
Shaohua Li9f626e32017-03-27 10:51:30 -0700103enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700104 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -0700105 LIMIT_MAX,
106 LIMIT_CNT,
107};
108
Vivek Goyale43473b2010-09-15 17:06:35 -0400109struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700110 /* must be the first member */
111 struct blkg_policy_data pd;
112
Tejun Heoc9e03322013-05-14 13:52:32 -0700113 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400114 struct rb_node rb_node;
115
Tejun Heo0f3457f2013-05-14 13:52:32 -0700116 /* throtl_data this group belongs to */
117 struct throtl_data *td;
118
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700119 /* this group's service queue */
120 struct throtl_service_queue service_queue;
121
Vivek Goyale43473b2010-09-15 17:06:35 -0400122 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700123 * qnode_on_self is used when bios are directly queued to this
124 * throtl_grp so that local bios compete fairly with bios
125 * dispatched from children. qnode_on_parent is used when bios are
126 * dispatched from this throtl_grp into its parent and will compete
127 * with the sibling qnode_on_parents and the parent's
128 * qnode_on_self.
129 */
130 struct throtl_qnode qnode_on_self[2];
131 struct throtl_qnode qnode_on_parent[2];
132
133 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400134 * Dispatch time in jiffies. This is the estimated time when group
135 * will unthrottle and is ready to dispatch more bio. It is used as
136 * key to sort active groups in service tree.
137 */
138 unsigned long disptime;
139
Vivek Goyale43473b2010-09-15 17:06:35 -0400140 unsigned int flags;
141
Tejun Heo693e7512013-05-14 13:52:38 -0700142 /* are there any throtl rules between this group and td? */
143 bool has_rules[2];
144
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700145 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700146 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700147 /* user configured bps limits */
148 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400149
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700150 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700151 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700152 /* user configured IOPS limits */
153 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400154
Vivek Goyale43473b2010-09-15 17:06:35 -0400155 /* Number of bytes disptached in current slice */
156 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400157 /* Number of bio's dispatched in current slice */
158 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400159
Shaohua Li3f0abd82017-03-27 10:51:35 -0700160 unsigned long last_low_overflow_time[2];
161
162 uint64_t last_bytes_disp[2];
163 unsigned int last_io_disp[2];
164
165 unsigned long last_check_time;
166
Shaohua Liec809912017-03-27 10:51:44 -0700167 unsigned long latency_target; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700168 unsigned long latency_target_conf; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400169 /* When did we start a new slice */
170 unsigned long slice_start[2];
171 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700172
173 unsigned long last_finish_time; /* ns / 1024 */
174 unsigned long checked_last_finish_time; /* ns / 1024 */
175 unsigned long avg_idletime; /* ns / 1024 */
176 unsigned long idletime_threshold; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700177 unsigned long idletime_threshold_conf; /* us */
Shaohua Li53696b82017-03-27 15:19:43 -0700178
179 unsigned int bio_cnt; /* total bios */
180 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
181 unsigned long bio_cnt_reset_time;
Vivek Goyale43473b2010-09-15 17:06:35 -0400182};
183
Shaohua Lib9147dd2017-03-27 15:19:42 -0700184/* We measure latency for request size from <= 4k to >= 1M */
185#define LATENCY_BUCKET_SIZE 9
186
187struct latency_bucket {
188 unsigned long total_latency; /* ns / 1024 */
189 int samples;
190};
191
192struct avg_latency_bucket {
193 unsigned long latency; /* ns / 1024 */
194 bool valid;
195};
196
Vivek Goyale43473b2010-09-15 17:06:35 -0400197struct throtl_data
198{
Vivek Goyale43473b2010-09-15 17:06:35 -0400199 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700200 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400201
Vivek Goyale43473b2010-09-15 17:06:35 -0400202 struct request_queue *queue;
203
204 /* Total Number of queued bios on READ and WRITE lists */
205 unsigned int nr_queued[2];
206
Shaohua Li297e3d82017-03-27 10:51:37 -0700207 unsigned int throtl_slice;
208
Vivek Goyale43473b2010-09-15 17:06:35 -0400209 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700210 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700211 unsigned int limit_index;
212 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700213
214 unsigned long low_upgrade_time;
215 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700216
217 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700218
219 struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE];
220 struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE];
221 struct latency_bucket __percpu *latency_buckets;
222 unsigned long last_calculate_time;
Shaohua Li6679a902017-06-06 12:40:43 -0700223 unsigned long filtered_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700224
225 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400226};
227
Tejun Heo69df0ab2013-05-14 13:52:36 -0700228static void throtl_pending_timer_fn(unsigned long arg);
229
Tejun Heof95a04a2012-04-16 13:57:26 -0700230static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
231{
232 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
233}
234
Tejun Heo3c798392012-04-16 13:57:25 -0700235static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800236{
Tejun Heof95a04a2012-04-16 13:57:26 -0700237 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800238}
239
Tejun Heo3c798392012-04-16 13:57:25 -0700240static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800241{
Tejun Heof95a04a2012-04-16 13:57:26 -0700242 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800243}
244
Tejun Heofda6f272013-05-14 13:52:36 -0700245/**
246 * sq_to_tg - return the throl_grp the specified service queue belongs to
247 * @sq: the throtl_service_queue of interest
248 *
249 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
250 * embedded in throtl_data, %NULL is returned.
251 */
252static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
253{
254 if (sq && sq->parent_sq)
255 return container_of(sq, struct throtl_grp, service_queue);
256 else
257 return NULL;
258}
Vivek Goyale43473b2010-09-15 17:06:35 -0400259
Tejun Heofda6f272013-05-14 13:52:36 -0700260/**
261 * sq_to_td - return throtl_data the specified service queue belongs to
262 * @sq: the throtl_service_queue of interest
263 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800264 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700265 * Determine the associated throtl_data accordingly and return it.
266 */
267static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
268{
269 struct throtl_grp *tg = sq_to_tg(sq);
270
271 if (tg)
272 return tg->td;
273 else
274 return container_of(sq, struct throtl_data, service_queue);
275}
276
Shaohua Li7394e312017-03-27 10:51:40 -0700277/*
278 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
279 * make the IO dispatch more smooth.
280 * Scale up: linearly scale up according to lapsed time since upgrade. For
281 * every throtl_slice, the limit scales up 1/2 .low limit till the
282 * limit hits .max limit
283 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
284 */
285static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
286{
287 /* arbitrary value to avoid too big scale */
288 if (td->scale < 4096 && time_after_eq(jiffies,
289 td->low_upgrade_time + td->scale * td->throtl_slice))
290 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
291
292 return low + (low >> 1) * td->scale;
293}
294
Shaohua Li9f626e32017-03-27 10:51:30 -0700295static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
296{
Shaohua Lib22c4172017-03-27 10:51:33 -0700297 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700298 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700299 uint64_t ret;
300
301 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
302 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700303
304 td = tg->td;
305 ret = tg->bps[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700306 if (ret == 0 && td->limit_index == LIMIT_LOW) {
307 /* intermediate node or iops isn't 0 */
308 if (!list_empty(&blkg->blkcg->css.children) ||
309 tg->iops[rw][td->limit_index])
310 return U64_MAX;
311 else
312 return MIN_THROTL_BPS;
313 }
Shaohua Li7394e312017-03-27 10:51:40 -0700314
315 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
316 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
317 uint64_t adjusted;
318
319 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
320 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
321 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700322 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700323}
324
325static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
326{
Shaohua Lib22c4172017-03-27 10:51:33 -0700327 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700328 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700329 unsigned int ret;
330
331 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
332 return UINT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700333
Shaohua Li7394e312017-03-27 10:51:40 -0700334 td = tg->td;
335 ret = tg->iops[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700336 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
337 /* intermediate node or bps isn't 0 */
338 if (!list_empty(&blkg->blkcg->css.children) ||
339 tg->bps[rw][td->limit_index])
340 return UINT_MAX;
341 else
342 return MIN_THROTL_IOPS;
343 }
Shaohua Li7394e312017-03-27 10:51:40 -0700344
345 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
346 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
347 uint64_t adjusted;
348
349 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
350 if (adjusted > UINT_MAX)
351 adjusted = UINT_MAX;
352 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
353 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700354 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700355}
356
Shaohua Lib9147dd2017-03-27 15:19:42 -0700357#define request_bucket_index(sectors) \
358 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
359
Tejun Heofda6f272013-05-14 13:52:36 -0700360/**
361 * throtl_log - log debug message via blktrace
362 * @sq: the service_queue being reported
363 * @fmt: printf format string
364 * @args: printf args
365 *
366 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
367 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700368 */
369#define throtl_log(sq, fmt, args...) do { \
370 struct throtl_grp *__tg = sq_to_tg((sq)); \
371 struct throtl_data *__td = sq_to_td((sq)); \
372 \
373 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700374 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
375 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700376 if ((__tg)) { \
Shaohua Li35fe6d72017-07-12 11:49:56 -0700377 blk_add_cgroup_trace_msg(__td->queue, \
378 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
Tejun Heofda6f272013-05-14 13:52:36 -0700379 } else { \
380 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
381 } \
382} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400383
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700384static inline unsigned int throtl_bio_data_size(struct bio *bio)
385{
386 /* assume it's one sector */
387 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
388 return 512;
389 return bio->bi_iter.bi_size;
390}
391
Tejun Heoc5cc2072013-05-14 13:52:38 -0700392static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
393{
394 INIT_LIST_HEAD(&qn->node);
395 bio_list_init(&qn->bios);
396 qn->tg = tg;
397}
398
399/**
400 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
401 * @bio: bio being added
402 * @qn: qnode to add bio to
403 * @queued: the service_queue->queued[] list @qn belongs to
404 *
405 * Add @bio to @qn and put @qn on @queued if it's not already on.
406 * @qn->tg's reference count is bumped when @qn is activated. See the
407 * comment on top of throtl_qnode definition for details.
408 */
409static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
410 struct list_head *queued)
411{
412 bio_list_add(&qn->bios, bio);
413 if (list_empty(&qn->node)) {
414 list_add_tail(&qn->node, queued);
415 blkg_get(tg_to_blkg(qn->tg));
416 }
417}
418
419/**
420 * throtl_peek_queued - peek the first bio on a qnode list
421 * @queued: the qnode list to peek
422 */
423static struct bio *throtl_peek_queued(struct list_head *queued)
424{
425 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
426 struct bio *bio;
427
428 if (list_empty(queued))
429 return NULL;
430
431 bio = bio_list_peek(&qn->bios);
432 WARN_ON_ONCE(!bio);
433 return bio;
434}
435
436/**
437 * throtl_pop_queued - pop the first bio form a qnode list
438 * @queued: the qnode list to pop a bio from
439 * @tg_to_put: optional out argument for throtl_grp to put
440 *
441 * Pop the first bio from the qnode list @queued. After popping, the first
442 * qnode is removed from @queued if empty or moved to the end of @queued so
443 * that the popping order is round-robin.
444 *
445 * When the first qnode is removed, its associated throtl_grp should be put
446 * too. If @tg_to_put is NULL, this function automatically puts it;
447 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
448 * responsible for putting it.
449 */
450static struct bio *throtl_pop_queued(struct list_head *queued,
451 struct throtl_grp **tg_to_put)
452{
453 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
454 struct bio *bio;
455
456 if (list_empty(queued))
457 return NULL;
458
459 bio = bio_list_pop(&qn->bios);
460 WARN_ON_ONCE(!bio);
461
462 if (bio_list_empty(&qn->bios)) {
463 list_del_init(&qn->node);
464 if (tg_to_put)
465 *tg_to_put = qn->tg;
466 else
467 blkg_put(tg_to_blkg(qn->tg));
468 } else {
469 list_move_tail(&qn->node, queued);
470 }
471
472 return bio;
473}
474
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700475/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700476static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700477{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700478 INIT_LIST_HEAD(&sq->queued[0]);
479 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700480 sq->pending_tree = RB_ROOT;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700481 setup_timer(&sq->pending_timer, throtl_pending_timer_fn,
482 (unsigned long)sq);
483}
484
Tejun Heo001bea72015-08-18 14:55:11 -0700485static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
486{
Tejun Heo4fb72032015-08-18 14:55:12 -0700487 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700488 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700489
490 tg = kzalloc_node(sizeof(*tg), gfp, node);
491 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700492 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700493
Tejun Heob2ce2642015-08-18 14:55:13 -0700494 throtl_service_queue_init(&tg->service_queue);
495
496 for (rw = READ; rw <= WRITE; rw++) {
497 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
498 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
499 }
500
501 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700502 tg->bps[READ][LIMIT_MAX] = U64_MAX;
503 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
504 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
505 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700506 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
507 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
508 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
509 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
510 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700511
Shaohua Liec809912017-03-27 10:51:44 -0700512 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700513 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700514 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
515 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700516
Tejun Heo4fb72032015-08-18 14:55:12 -0700517 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700518}
519
Tejun Heoa9520cd2015-08-18 14:55:14 -0700520static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400521{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700522 struct throtl_grp *tg = pd_to_tg(pd);
523 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700524 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700525 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800526
Tejun Heo91381252013-05-14 13:52:38 -0700527 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400528 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700529 * behavior where limits on a given throtl_grp are applied to the
530 * whole subtree rather than just the group itself. e.g. If 16M
531 * read_bps limit is set on the root group, the whole system can't
532 * exceed 16M for the device.
533 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400534 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700535 * behavior is retained where all throtl_grps are treated as if
536 * they're all separate root groups right below throtl_data.
537 * Limits of a group don't interact with limits of other groups
538 * regardless of the position of the group in the hierarchy.
539 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700540 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400541 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700542 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700543 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700544}
545
Tejun Heo693e7512013-05-14 13:52:38 -0700546/*
547 * Set has_rules[] if @tg or any of its parents have limits configured.
548 * This doesn't require walking up to the top of the hierarchy as the
549 * parent's has_rules[] is guaranteed to be correct.
550 */
551static void tg_update_has_rules(struct throtl_grp *tg)
552{
553 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700554 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700555 int rw;
556
557 for (rw = READ; rw <= WRITE; rw++)
558 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700559 (td->limit_valid[td->limit_index] &&
560 (tg_bps_limit(tg, rw) != U64_MAX ||
561 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700562}
563
Tejun Heoa9520cd2015-08-18 14:55:14 -0700564static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700565{
Shaohua Liaec24242017-03-27 10:51:39 -0700566 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700567 /*
568 * We don't want new groups to escape the limits of its ancestors.
569 * Update has_rules[] after a new group is brought online.
570 */
Shaohua Liaec24242017-03-27 10:51:39 -0700571 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700572}
573
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700574static void blk_throtl_update_limit_valid(struct throtl_data *td)
575{
576 struct cgroup_subsys_state *pos_css;
577 struct blkcg_gq *blkg;
578 bool low_valid = false;
579
580 rcu_read_lock();
581 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
582 struct throtl_grp *tg = blkg_to_tg(blkg);
583
584 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
585 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
586 low_valid = true;
587 }
588 rcu_read_unlock();
589
590 td->limit_valid[LIMIT_LOW] = low_valid;
591}
592
Shaohua Lic79892c2017-03-27 10:51:34 -0700593static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700594static void throtl_pd_offline(struct blkg_policy_data *pd)
595{
596 struct throtl_grp *tg = pd_to_tg(pd);
597
598 tg->bps[READ][LIMIT_LOW] = 0;
599 tg->bps[WRITE][LIMIT_LOW] = 0;
600 tg->iops[READ][LIMIT_LOW] = 0;
601 tg->iops[WRITE][LIMIT_LOW] = 0;
602
603 blk_throtl_update_limit_valid(tg->td);
604
Shaohua Lic79892c2017-03-27 10:51:34 -0700605 if (!tg->td->limit_valid[tg->td->limit_index])
606 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700607}
608
Tejun Heo001bea72015-08-18 14:55:11 -0700609static void throtl_pd_free(struct blkg_policy_data *pd)
610{
Tejun Heo4fb72032015-08-18 14:55:12 -0700611 struct throtl_grp *tg = pd_to_tg(pd);
612
Tejun Heob2ce2642015-08-18 14:55:13 -0700613 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700614 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700615}
616
Tejun Heo0049af72013-05-14 13:52:33 -0700617static struct throtl_grp *
618throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400619{
620 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700621 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400622 return NULL;
623
Tejun Heo0049af72013-05-14 13:52:33 -0700624 if (!parent_sq->first_pending)
625 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400626
Tejun Heo0049af72013-05-14 13:52:33 -0700627 if (parent_sq->first_pending)
628 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400629
630 return NULL;
631}
632
633static void rb_erase_init(struct rb_node *n, struct rb_root *root)
634{
635 rb_erase(n, root);
636 RB_CLEAR_NODE(n);
637}
638
Tejun Heo0049af72013-05-14 13:52:33 -0700639static void throtl_rb_erase(struct rb_node *n,
640 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400641{
Tejun Heo0049af72013-05-14 13:52:33 -0700642 if (parent_sq->first_pending == n)
643 parent_sq->first_pending = NULL;
644 rb_erase_init(n, &parent_sq->pending_tree);
645 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400646}
647
Tejun Heo0049af72013-05-14 13:52:33 -0700648static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400649{
650 struct throtl_grp *tg;
651
Tejun Heo0049af72013-05-14 13:52:33 -0700652 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400653 if (!tg)
654 return;
655
Tejun Heo0049af72013-05-14 13:52:33 -0700656 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400657}
658
Tejun Heo77216b02013-05-14 13:52:36 -0700659static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400660{
Tejun Heo77216b02013-05-14 13:52:36 -0700661 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700662 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400663 struct rb_node *parent = NULL;
664 struct throtl_grp *__tg;
665 unsigned long key = tg->disptime;
666 int left = 1;
667
668 while (*node != NULL) {
669 parent = *node;
670 __tg = rb_entry_tg(parent);
671
672 if (time_before(key, __tg->disptime))
673 node = &parent->rb_left;
674 else {
675 node = &parent->rb_right;
676 left = 0;
677 }
678 }
679
680 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700681 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400682
683 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700684 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400685}
686
Tejun Heo77216b02013-05-14 13:52:36 -0700687static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400688{
Tejun Heo77216b02013-05-14 13:52:36 -0700689 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700690 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700691 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400692}
693
Tejun Heo77216b02013-05-14 13:52:36 -0700694static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400695{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700696 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700697 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400698}
699
Tejun Heo77216b02013-05-14 13:52:36 -0700700static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400701{
Tejun Heo77216b02013-05-14 13:52:36 -0700702 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700703 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400704}
705
Tejun Heo77216b02013-05-14 13:52:36 -0700706static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400707{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700708 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700709 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400710}
711
Tejun Heoa9131a22013-05-14 13:52:31 -0700712/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700713static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
714 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700715{
Joseph Qia41b8162017-06-07 11:36:14 +0800716 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700717
718 /*
719 * Since we are adjusting the throttle limit dynamically, the sleep
720 * time calculated according to previous limit might be invalid. It's
721 * possible the cgroup sleep time is very long and no other cgroups
722 * have IO running so notify the limit changes. Make sure the cgroup
723 * doesn't sleep too long to avoid the missed notification.
724 */
725 if (time_after(expires, max_expire))
726 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700727 mod_timer(&sq->pending_timer, expires);
728 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
729 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700730}
731
Tejun Heo7f52f982013-05-14 13:52:37 -0700732/**
733 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
734 * @sq: the service_queue to schedule dispatch for
735 * @force: force scheduling
736 *
737 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
738 * dispatch time of the first pending child. Returns %true if either timer
739 * is armed or there's no pending child left. %false if the current
740 * dispatch window is still open and the caller should continue
741 * dispatching.
742 *
743 * If @force is %true, the dispatch timer is always scheduled and this
744 * function is guaranteed to return %true. This is to be used when the
745 * caller can't dispatch itself and needs to invoke pending_timer
746 * unconditionally. Note that forced scheduling is likely to induce short
747 * delay before dispatch starts even if @sq->first_pending_disptime is not
748 * in the future and thus shouldn't be used in hot paths.
749 */
750static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
751 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400752{
Tejun Heo6a525602013-05-14 13:52:32 -0700753 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700754 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700755 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400756
Tejun Heoc9e03322013-05-14 13:52:32 -0700757 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400758
Tejun Heo69df0ab2013-05-14 13:52:36 -0700759 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700760 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700761 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700762 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700763 }
764
Tejun Heo7f52f982013-05-14 13:52:37 -0700765 /* tell the caller to continue dispatching */
766 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400767}
768
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700769static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
770 bool rw, unsigned long start)
771{
772 tg->bytes_disp[rw] = 0;
773 tg->io_disp[rw] = 0;
774
775 /*
776 * Previous slice has expired. We must have trimmed it after last
777 * bio dispatch. That means since start of last slice, we never used
778 * that bandwidth. Do try to make use of that bandwidth while giving
779 * credit.
780 */
781 if (time_after_eq(start, tg->slice_start[rw]))
782 tg->slice_start[rw] = start;
783
Shaohua Li297e3d82017-03-27 10:51:37 -0700784 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700785 throtl_log(&tg->service_queue,
786 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
787 rw == READ ? 'R' : 'W', tg->slice_start[rw],
788 tg->slice_end[rw], jiffies);
789}
790
Tejun Heo0f3457f2013-05-14 13:52:32 -0700791static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400792{
793 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400794 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400795 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700796 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700797 throtl_log(&tg->service_queue,
798 "[%c] new slice start=%lu end=%lu jiffies=%lu",
799 rw == READ ? 'R' : 'W', tg->slice_start[rw],
800 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400801}
802
Tejun Heo0f3457f2013-05-14 13:52:32 -0700803static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
804 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100805{
Shaohua Li297e3d82017-03-27 10:51:37 -0700806 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100807}
808
Tejun Heo0f3457f2013-05-14 13:52:32 -0700809static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
810 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400811{
Shaohua Li297e3d82017-03-27 10:51:37 -0700812 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700813 throtl_log(&tg->service_queue,
814 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
815 rw == READ ? 'R' : 'W', tg->slice_start[rw],
816 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400817}
818
819/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700820static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400821{
822 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200823 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400824
825 return 1;
826}
827
828/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700829static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400830{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200831 unsigned long nr_slices, time_elapsed, io_trim;
832 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400833
834 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
835
836 /*
837 * If bps are unlimited (-1), then time slice don't get
838 * renewed. Don't try to trim the slice if slice is used. A new
839 * slice will start when appropriate.
840 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700841 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400842 return;
843
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100844 /*
845 * A bio has been dispatched. Also adjust slice_end. It might happen
846 * that initially cgroup limit was very low resulting in high
847 * slice_end, but later limit was bumped up and bio was dispached
848 * sooner, then we need to reduce slice_end. A high bogus slice_end
849 * is bad because it does not allow new slice to start.
850 */
851
Shaohua Li297e3d82017-03-27 10:51:37 -0700852 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100853
Vivek Goyale43473b2010-09-15 17:06:35 -0400854 time_elapsed = jiffies - tg->slice_start[rw];
855
Shaohua Li297e3d82017-03-27 10:51:37 -0700856 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400857
858 if (!nr_slices)
859 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700860 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200861 do_div(tmp, HZ);
862 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400863
Shaohua Li297e3d82017-03-27 10:51:37 -0700864 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
865 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400866
Vivek Goyal8e89d132010-09-15 17:06:37 -0400867 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400868 return;
869
870 if (tg->bytes_disp[rw] >= bytes_trim)
871 tg->bytes_disp[rw] -= bytes_trim;
872 else
873 tg->bytes_disp[rw] = 0;
874
Vivek Goyal8e89d132010-09-15 17:06:37 -0400875 if (tg->io_disp[rw] >= io_trim)
876 tg->io_disp[rw] -= io_trim;
877 else
878 tg->io_disp[rw] = 0;
879
Shaohua Li297e3d82017-03-27 10:51:37 -0700880 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400881
Tejun Heofda6f272013-05-14 13:52:36 -0700882 throtl_log(&tg->service_queue,
883 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
884 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
885 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400886}
887
Tejun Heo0f3457f2013-05-14 13:52:32 -0700888static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
889 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400890{
891 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400892 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400893 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200894 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400895
Vivek Goyal8e89d132010-09-15 17:06:37 -0400896 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400897
Vivek Goyal8e89d132010-09-15 17:06:37 -0400898 /* Slice has just started. Consider one slice interval */
899 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700900 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400901
Shaohua Li297e3d82017-03-27 10:51:37 -0700902 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400903
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200904 /*
905 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
906 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
907 * will allow dispatch after 1 second and after that slice should
908 * have been trimmed.
909 */
910
Shaohua Li9f626e32017-03-27 10:51:30 -0700911 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200912 do_div(tmp, HZ);
913
914 if (tmp > UINT_MAX)
915 io_allowed = UINT_MAX;
916 else
917 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400918
919 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400920 if (wait)
921 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200922 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400923 }
924
Vivek Goyal8e89d132010-09-15 17:06:37 -0400925 /* Calc approx time to dispatch */
Shaohua Li9f626e32017-03-27 10:51:30 -0700926 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400927
928 if (jiffy_wait > jiffy_elapsed)
929 jiffy_wait = jiffy_wait - jiffy_elapsed;
930 else
931 jiffy_wait = 1;
932
933 if (wait)
934 *wait = jiffy_wait;
935 return 0;
936}
937
Tejun Heo0f3457f2013-05-14 13:52:32 -0700938static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
939 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400940{
941 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200942 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400943 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700944 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400945
946 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
947
948 /* Slice has just started. Consider one slice interval */
949 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700950 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400951
Shaohua Li297e3d82017-03-27 10:51:37 -0700952 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400953
Shaohua Li9f626e32017-03-27 10:51:30 -0700954 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200955 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200956 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400957
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700958 if (tg->bytes_disp[rw] + bio_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400959 if (wait)
960 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200961 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400962 }
963
964 /* Calc approx time to dispatch */
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700965 extra_bytes = tg->bytes_disp[rw] + bio_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700966 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400967
968 if (!jiffy_wait)
969 jiffy_wait = 1;
970
971 /*
972 * This wait time is without taking into consideration the rounding
973 * up we did. Add that time also.
974 */
975 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400976 if (wait)
977 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400978 return 0;
979}
Vivek Goyale43473b2010-09-15 17:06:35 -0400980
Vivek Goyal8e89d132010-09-15 17:06:37 -0400981/*
982 * Returns whether one can dispatch a bio or not. Also returns approx number
983 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
984 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700985static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
986 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400987{
988 bool rw = bio_data_dir(bio);
989 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
990
991 /*
992 * Currently whole state machine of group depends on first bio
993 * queued in the group bio list. So one should not be calling
994 * this function with a different bio if there are other bios
995 * queued.
996 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700997 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700998 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400999
1000 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -07001001 if (tg_bps_limit(tg, rw) == U64_MAX &&
1002 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001003 if (wait)
1004 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +02001005 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001006 }
1007
1008 /*
1009 * If previous slice expired, start a new one otherwise renew/extend
1010 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -06001011 * long since now. New slice is started only for empty throttle group.
1012 * If there is queued bio, that means there should be an active
1013 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -04001014 */
Vivek Goyal164c80e2016-09-19 15:12:41 -06001015 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001016 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001017 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001018 if (time_before(tg->slice_end[rw],
1019 jiffies + tg->td->throtl_slice))
1020 throtl_extend_slice(tg, rw,
1021 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001022 }
1023
Tejun Heo0f3457f2013-05-14 13:52:32 -07001024 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1025 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001026 if (wait)
1027 *wait = 0;
1028 return 1;
1029 }
1030
1031 max_wait = max(bps_wait, iops_wait);
1032
1033 if (wait)
1034 *wait = max_wait;
1035
1036 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001037 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001038
1039 return 0;
1040}
1041
1042static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1043{
1044 bool rw = bio_data_dir(bio);
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001045 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001046
1047 /* Charge the bio to the group */
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001048 tg->bytes_disp[rw] += bio_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001049 tg->io_disp[rw]++;
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001050 tg->last_bytes_disp[rw] += bio_size;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001051 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001052
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001053 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001054 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001055 * more than once as a throttled bio will go through blk-throtl the
1056 * second time when it eventually gets issued. Set it when a bio
1057 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001058 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001059 if (!bio_flagged(bio, BIO_THROTTLED))
1060 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001061}
1062
Tejun Heoc5cc2072013-05-14 13:52:38 -07001063/**
1064 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1065 * @bio: bio to add
1066 * @qn: qnode to use
1067 * @tg: the target throtl_grp
1068 *
1069 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1070 * tg->qnode_on_self[] is used.
1071 */
1072static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1073 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001074{
Tejun Heo73f0d492013-05-14 13:52:35 -07001075 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001076 bool rw = bio_data_dir(bio);
1077
Tejun Heoc5cc2072013-05-14 13:52:38 -07001078 if (!qn)
1079 qn = &tg->qnode_on_self[rw];
1080
Tejun Heo0e9f4162013-05-14 13:52:35 -07001081 /*
1082 * If @tg doesn't currently have any bios queued in the same
1083 * direction, queueing @bio can change when @tg should be
1084 * dispatched. Mark that @tg was empty. This is automatically
1085 * cleaered on the next tg_update_disptime().
1086 */
1087 if (!sq->nr_queued[rw])
1088 tg->flags |= THROTL_TG_WAS_EMPTY;
1089
Tejun Heoc5cc2072013-05-14 13:52:38 -07001090 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1091
Tejun Heo73f0d492013-05-14 13:52:35 -07001092 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001093 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001094}
1095
Tejun Heo77216b02013-05-14 13:52:36 -07001096static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001097{
Tejun Heo73f0d492013-05-14 13:52:35 -07001098 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001099 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1100 struct bio *bio;
1101
Markus Elfringd609af32017-01-21 22:15:33 +01001102 bio = throtl_peek_queued(&sq->queued[READ]);
1103 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001104 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001105
Markus Elfringd609af32017-01-21 22:15:33 +01001106 bio = throtl_peek_queued(&sq->queued[WRITE]);
1107 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001108 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001109
1110 min_wait = min(read_wait, write_wait);
1111 disptime = jiffies + min_wait;
1112
Vivek Goyale43473b2010-09-15 17:06:35 -04001113 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001114 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001115 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001116 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001117
1118 /* see throtl_add_bio_tg() */
1119 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001120}
1121
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001122static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1123 struct throtl_grp *parent_tg, bool rw)
1124{
1125 if (throtl_slice_used(parent_tg, rw)) {
1126 throtl_start_new_slice_with_credit(parent_tg, rw,
1127 child_tg->slice_start[rw]);
1128 }
1129
1130}
1131
Tejun Heo77216b02013-05-14 13:52:36 -07001132static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001133{
Tejun Heo73f0d492013-05-14 13:52:35 -07001134 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001135 struct throtl_service_queue *parent_sq = sq->parent_sq;
1136 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001137 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001138 struct bio *bio;
1139
Tejun Heoc5cc2072013-05-14 13:52:38 -07001140 /*
1141 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1142 * from @tg may put its reference and @parent_sq might end up
1143 * getting released prematurely. Remember the tg to put and put it
1144 * after @bio is transferred to @parent_sq.
1145 */
1146 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001147 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001148
1149 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001150
1151 /*
1152 * If our parent is another tg, we just need to transfer @bio to
1153 * the parent using throtl_add_bio_tg(). If our parent is
1154 * @td->service_queue, @bio is ready to be issued. Put it on its
1155 * bio_lists[] and decrease total number queued. The caller is
1156 * responsible for issuing these bios.
1157 */
1158 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001159 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001160 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001161 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001162 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1163 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001164 BUG_ON(tg->td->nr_queued[rw] <= 0);
1165 tg->td->nr_queued[rw]--;
1166 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001167
Tejun Heo0f3457f2013-05-14 13:52:32 -07001168 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001169
Tejun Heoc5cc2072013-05-14 13:52:38 -07001170 if (tg_to_put)
1171 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001172}
1173
Tejun Heo77216b02013-05-14 13:52:36 -07001174static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001175{
Tejun Heo73f0d492013-05-14 13:52:35 -07001176 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001177 unsigned int nr_reads = 0, nr_writes = 0;
1178 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001179 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001180 struct bio *bio;
1181
1182 /* Try to dispatch 75% READS and 25% WRITES */
1183
Tejun Heoc5cc2072013-05-14 13:52:38 -07001184 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001185 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001186
Tejun Heo77216b02013-05-14 13:52:36 -07001187 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001188 nr_reads++;
1189
1190 if (nr_reads >= max_nr_reads)
1191 break;
1192 }
1193
Tejun Heoc5cc2072013-05-14 13:52:38 -07001194 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001195 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001196
Tejun Heo77216b02013-05-14 13:52:36 -07001197 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001198 nr_writes++;
1199
1200 if (nr_writes >= max_nr_writes)
1201 break;
1202 }
1203
1204 return nr_reads + nr_writes;
1205}
1206
Tejun Heo651930b2013-05-14 13:52:35 -07001207static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001208{
1209 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001210
1211 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001212 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1213 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001214
1215 if (!tg)
1216 break;
1217
1218 if (time_before(jiffies, tg->disptime))
1219 break;
1220
Tejun Heo77216b02013-05-14 13:52:36 -07001221 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001222
Tejun Heo77216b02013-05-14 13:52:36 -07001223 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001224
Tejun Heo73f0d492013-05-14 13:52:35 -07001225 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001226 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001227
1228 if (nr_disp >= throtl_quantum)
1229 break;
1230 }
1231
1232 return nr_disp;
1233}
1234
Shaohua Lic79892c2017-03-27 10:51:34 -07001235static bool throtl_can_upgrade(struct throtl_data *td,
1236 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001237/**
1238 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1239 * @arg: the throtl_service_queue being serviced
1240 *
1241 * This timer is armed when a child throtl_grp with active bio's become
1242 * pending and queued on the service_queue's pending_tree and expires when
1243 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001244 * dispatches bio's from the children throtl_grps to the parent
1245 * service_queue.
1246 *
1247 * If the parent's parent is another throtl_grp, dispatching is propagated
1248 * by either arming its pending_timer or repeating dispatch directly. If
1249 * the top-level service_tree is reached, throtl_data->dispatch_work is
1250 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001251 */
Tejun Heo69df0ab2013-05-14 13:52:36 -07001252static void throtl_pending_timer_fn(unsigned long arg)
1253{
1254 struct throtl_service_queue *sq = (void *)arg;
Tejun Heo2e48a532013-05-14 13:52:38 -07001255 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001256 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001257 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001258 struct throtl_service_queue *parent_sq;
1259 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001260 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001261
1262 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001263 if (throtl_can_upgrade(td, NULL))
1264 throtl_upgrade_state(td);
1265
Tejun Heo2e48a532013-05-14 13:52:38 -07001266again:
1267 parent_sq = sq->parent_sq;
1268 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001269
Tejun Heo7f52f982013-05-14 13:52:37 -07001270 while (true) {
1271 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001272 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1273 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001274
Tejun Heo7f52f982013-05-14 13:52:37 -07001275 ret = throtl_select_dispatch(sq);
1276 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001277 throtl_log(sq, "bios disp=%u", ret);
1278 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001279 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001280
Tejun Heo7f52f982013-05-14 13:52:37 -07001281 if (throtl_schedule_next_dispatch(sq, false))
1282 break;
1283
1284 /* this dispatch windows is still open, relax and repeat */
1285 spin_unlock_irq(q->queue_lock);
1286 cpu_relax();
1287 spin_lock_irq(q->queue_lock);
1288 }
Tejun Heo6a525602013-05-14 13:52:32 -07001289
Tejun Heo2e48a532013-05-14 13:52:38 -07001290 if (!dispatched)
1291 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001292
Tejun Heo2e48a532013-05-14 13:52:38 -07001293 if (parent_sq) {
1294 /* @parent_sq is another throl_grp, propagate dispatch */
1295 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1296 tg_update_disptime(tg);
1297 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1298 /* window is already open, repeat dispatching */
1299 sq = parent_sq;
1300 tg = sq_to_tg(sq);
1301 goto again;
1302 }
1303 }
1304 } else {
1305 /* reached the top-level, queue issueing */
1306 queue_work(kthrotld_workqueue, &td->dispatch_work);
1307 }
1308out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001309 spin_unlock_irq(q->queue_lock);
1310}
1311
1312/**
1313 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1314 * @work: work item being executed
1315 *
1316 * This function is queued for execution when bio's reach the bio_lists[]
1317 * of throtl_data->service_queue. Those bio's are ready and issued by this
1318 * function.
1319 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001320static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001321{
1322 struct throtl_data *td = container_of(work, struct throtl_data,
1323 dispatch_work);
1324 struct throtl_service_queue *td_sq = &td->service_queue;
1325 struct request_queue *q = td->queue;
1326 struct bio_list bio_list_on_stack;
1327 struct bio *bio;
1328 struct blk_plug plug;
1329 int rw;
1330
1331 bio_list_init(&bio_list_on_stack);
1332
1333 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001334 for (rw = READ; rw <= WRITE; rw++)
1335 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1336 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001337 spin_unlock_irq(q->queue_lock);
1338
Tejun Heo6e1a5702013-05-14 13:52:37 -07001339 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001340 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001341 while((bio = bio_list_pop(&bio_list_on_stack)))
1342 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001343 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001344 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001345}
1346
Tejun Heof95a04a2012-04-16 13:57:26 -07001347static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1348 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001349{
Tejun Heof95a04a2012-04-16 13:57:26 -07001350 struct throtl_grp *tg = pd_to_tg(pd);
1351 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001352
Shaohua Li2ab54922017-03-27 10:51:29 -07001353 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001354 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001355 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001356}
1357
Tejun Heof95a04a2012-04-16 13:57:26 -07001358static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1359 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001360{
Tejun Heof95a04a2012-04-16 13:57:26 -07001361 struct throtl_grp *tg = pd_to_tg(pd);
1362 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001363
Shaohua Li2ab54922017-03-27 10:51:29 -07001364 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001365 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001366 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001367}
1368
Tejun Heo2da8ca82013-12-05 12:28:04 -05001369static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001370{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001371 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1372 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001373 return 0;
1374}
1375
Tejun Heo2da8ca82013-12-05 12:28:04 -05001376static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001377{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001378 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1379 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001380 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001381}
1382
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001383static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001384{
Tejun Heo69948b02015-08-18 14:55:32 -07001385 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001386 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001387 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001388
Tejun Heofda6f272013-05-14 13:52:36 -07001389 throtl_log(&tg->service_queue,
1390 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001391 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1392 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001393
1394 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001395 * Update has_rules[] flags for the updated tg's subtree. A tg is
1396 * considered to have rules if either the tg itself or any of its
1397 * ancestors has rules. This identifies groups without any
1398 * restrictions in the whole hierarchy and allows them to bypass
1399 * blk-throttle.
1400 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001401 blkg_for_each_descendant_pre(blkg, pos_css,
1402 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001403 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1404 struct throtl_grp *parent_tg;
1405
1406 tg_update_has_rules(this_tg);
1407 /* ignore root/second level */
1408 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1409 !blkg->parent->parent)
1410 continue;
1411 parent_tg = blkg_to_tg(blkg->parent);
1412 /*
1413 * make sure all children has lower idle time threshold and
1414 * higher latency target
1415 */
1416 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1417 parent_tg->idletime_threshold);
1418 this_tg->latency_target = max(this_tg->latency_target,
1419 parent_tg->latency_target);
1420 }
Tejun Heo693e7512013-05-14 13:52:38 -07001421
1422 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001423 * We're already holding queue_lock and know @tg is valid. Let's
1424 * apply the new config directly.
1425 *
1426 * Restart the slices for both READ and WRITES. It might happen
1427 * that a group's limit are dropped suddenly and we don't want to
1428 * account recently dispatched IO with new low rate.
1429 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001430 throtl_start_new_slice(tg, 0);
1431 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001432
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001433 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001434 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001435 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001436 }
Tejun Heo69948b02015-08-18 14:55:32 -07001437}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001438
Tejun Heo69948b02015-08-18 14:55:32 -07001439static ssize_t tg_set_conf(struct kernfs_open_file *of,
1440 char *buf, size_t nbytes, loff_t off, bool is_u64)
1441{
1442 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1443 struct blkg_conf_ctx ctx;
1444 struct throtl_grp *tg;
1445 int ret;
1446 u64 v;
1447
1448 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1449 if (ret)
1450 return ret;
1451
1452 ret = -EINVAL;
1453 if (sscanf(ctx.body, "%llu", &v) != 1)
1454 goto out_finish;
1455 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001456 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001457
1458 tg = blkg_to_tg(ctx.blkg);
1459
1460 if (is_u64)
1461 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1462 else
1463 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1464
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001465 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001466 ret = 0;
1467out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001468 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001469 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001470}
1471
Tejun Heo451af502014-05-13 12:16:21 -04001472static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1473 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001474{
Tejun Heo451af502014-05-13 12:16:21 -04001475 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001476}
1477
Tejun Heo451af502014-05-13 12:16:21 -04001478static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1479 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001480{
Tejun Heo451af502014-05-13 12:16:21 -04001481 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001482}
1483
Tejun Heo880f50e2015-08-18 14:55:30 -07001484static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001485 {
1486 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001487 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001488 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001489 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001490 },
1491 {
1492 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001493 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001494 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001495 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001496 },
1497 {
1498 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001499 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001500 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001501 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001502 },
1503 {
1504 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001505 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001506 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001507 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001508 },
1509 {
1510 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001511 .private = (unsigned long)&blkcg_policy_throtl,
1512 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001513 },
1514 {
1515 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001516 .private = (unsigned long)&blkcg_policy_throtl,
1517 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001518 },
1519 { } /* terminate */
1520};
1521
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001522static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001523 int off)
1524{
1525 struct throtl_grp *tg = pd_to_tg(pd);
1526 const char *dname = blkg_dev_name(pd->blkg);
1527 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001528 u64 bps_dft;
1529 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001530 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001531 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001532
1533 if (!dname)
1534 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001535
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001536 if (off == LIMIT_LOW) {
1537 bps_dft = 0;
1538 iops_dft = 0;
1539 } else {
1540 bps_dft = U64_MAX;
1541 iops_dft = UINT_MAX;
1542 }
1543
1544 if (tg->bps_conf[READ][off] == bps_dft &&
1545 tg->bps_conf[WRITE][off] == bps_dft &&
1546 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001547 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001548 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001549 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001550 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001551 return 0;
1552
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001553 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001554 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001555 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001556 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001557 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001558 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001559 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001560 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001561 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001562 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001563 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001564 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001565 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001566 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001567 strcpy(idle_time, " idle=max");
1568 else
1569 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001570 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001571
Shaohua Li5b81fc32017-05-17 13:07:24 -07001572 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001573 strcpy(latency_time, " latency=max");
1574 else
1575 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001576 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001577 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001578
Shaohua Liec809912017-03-27 10:51:44 -07001579 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1580 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1581 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001582 return 0;
1583}
1584
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001585static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001586{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001587 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001588 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1589 return 0;
1590}
1591
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001592static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001593 char *buf, size_t nbytes, loff_t off)
1594{
1595 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1596 struct blkg_conf_ctx ctx;
1597 struct throtl_grp *tg;
1598 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001599 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001600 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001601 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001602 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001603
1604 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1605 if (ret)
1606 return ret;
1607
1608 tg = blkg_to_tg(ctx.blkg);
1609
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001610 v[0] = tg->bps_conf[READ][index];
1611 v[1] = tg->bps_conf[WRITE][index];
1612 v[2] = tg->iops_conf[READ][index];
1613 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001614
Shaohua Li5b81fc32017-05-17 13:07:24 -07001615 idle_time = tg->idletime_threshold_conf;
1616 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001617 while (true) {
1618 char tok[27]; /* wiops=18446744073709551616 */
1619 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001620 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001621 int len;
1622
1623 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1624 break;
1625 if (tok[0] == '\0')
1626 break;
1627 ctx.body += len;
1628
1629 ret = -EINVAL;
1630 p = tok;
1631 strsep(&p, "=");
1632 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1633 goto out_finish;
1634
1635 ret = -ERANGE;
1636 if (!val)
1637 goto out_finish;
1638
1639 ret = -EINVAL;
1640 if (!strcmp(tok, "rbps"))
1641 v[0] = val;
1642 else if (!strcmp(tok, "wbps"))
1643 v[1] = val;
1644 else if (!strcmp(tok, "riops"))
1645 v[2] = min_t(u64, val, UINT_MAX);
1646 else if (!strcmp(tok, "wiops"))
1647 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001648 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1649 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001650 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1651 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001652 else
1653 goto out_finish;
1654 }
1655
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001656 tg->bps_conf[READ][index] = v[0];
1657 tg->bps_conf[WRITE][index] = v[1];
1658 tg->iops_conf[READ][index] = v[2];
1659 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001660
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001661 if (index == LIMIT_MAX) {
1662 tg->bps[READ][index] = v[0];
1663 tg->bps[WRITE][index] = v[1];
1664 tg->iops[READ][index] = v[2];
1665 tg->iops[WRITE][index] = v[3];
1666 }
1667 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1668 tg->bps_conf[READ][LIMIT_MAX]);
1669 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1670 tg->bps_conf[WRITE][LIMIT_MAX]);
1671 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1672 tg->iops_conf[READ][LIMIT_MAX]);
1673 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1674 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001675 tg->idletime_threshold_conf = idle_time;
1676 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001677
Shaohua Lib4f428e2017-05-17 13:07:27 -07001678 /* force user to configure all settings for low limit */
1679 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1680 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1681 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1682 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1683 tg->bps[READ][LIMIT_LOW] = 0;
1684 tg->bps[WRITE][LIMIT_LOW] = 0;
1685 tg->iops[READ][LIMIT_LOW] = 0;
1686 tg->iops[WRITE][LIMIT_LOW] = 0;
1687 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1688 tg->latency_target = DFL_LATENCY_TARGET;
1689 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001690 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001691 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001692 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001693
1694 blk_throtl_update_limit_valid(tg->td);
1695 if (tg->td->limit_valid[LIMIT_LOW]) {
1696 if (index == LIMIT_LOW)
1697 tg->td->limit_index = LIMIT_LOW;
1698 } else
1699 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001700 tg_conf_updated(tg, index == LIMIT_LOW &&
1701 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001702 ret = 0;
1703out_finish:
1704 blkg_conf_finish(&ctx);
1705 return ret ?: nbytes;
1706}
1707
1708static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001709#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1710 {
1711 .name = "low",
1712 .flags = CFTYPE_NOT_ON_ROOT,
1713 .seq_show = tg_print_limit,
1714 .write = tg_set_limit,
1715 .private = LIMIT_LOW,
1716 },
1717#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001718 {
1719 .name = "max",
1720 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001721 .seq_show = tg_print_limit,
1722 .write = tg_set_limit,
1723 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001724 },
1725 { } /* terminate */
1726};
1727
Vivek Goyalda527772011-03-02 19:05:33 -05001728static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001729{
1730 struct throtl_data *td = q->td;
1731
Tejun Heo69df0ab2013-05-14 13:52:36 -07001732 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001733}
1734
Tejun Heo3c798392012-04-16 13:57:25 -07001735static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001736 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001737 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001738
Tejun Heo001bea72015-08-18 14:55:11 -07001739 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001740 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001741 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001742 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001743 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001744};
1745
Shaohua Li3f0abd82017-03-27 10:51:35 -07001746static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1747{
1748 unsigned long rtime = jiffies, wtime = jiffies;
1749
1750 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1751 rtime = tg->last_low_overflow_time[READ];
1752 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1753 wtime = tg->last_low_overflow_time[WRITE];
1754 return min(rtime, wtime);
1755}
1756
1757/* tg should not be an intermediate node */
1758static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1759{
1760 struct throtl_service_queue *parent_sq;
1761 struct throtl_grp *parent = tg;
1762 unsigned long ret = __tg_last_low_overflow_time(tg);
1763
1764 while (true) {
1765 parent_sq = parent->service_queue.parent_sq;
1766 parent = sq_to_tg(parent_sq);
1767 if (!parent)
1768 break;
1769
1770 /*
1771 * The parent doesn't have low limit, it always reaches low
1772 * limit. Its overflow time is useless for children
1773 */
1774 if (!parent->bps[READ][LIMIT_LOW] &&
1775 !parent->iops[READ][LIMIT_LOW] &&
1776 !parent->bps[WRITE][LIMIT_LOW] &&
1777 !parent->iops[WRITE][LIMIT_LOW])
1778 continue;
1779 if (time_after(__tg_last_low_overflow_time(parent), ret))
1780 ret = __tg_last_low_overflow_time(parent);
1781 }
1782 return ret;
1783}
1784
Shaohua Li9e234ee2017-03-27 10:51:41 -07001785static bool throtl_tg_is_idle(struct throtl_grp *tg)
1786{
1787 /*
1788 * cgroup is idle if:
1789 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001790 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001791 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001792 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001793 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001794 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001795 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001796
Shaohua Lib4f428e2017-05-17 13:07:27 -07001797 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1798 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1799 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1800 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1801 tg->avg_idletime > tg->idletime_threshold ||
1802 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001803 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001804 throtl_log(&tg->service_queue,
1805 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1806 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1807 tg->bio_cnt, ret, tg->td->scale);
1808 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001809}
1810
Shaohua Lic79892c2017-03-27 10:51:34 -07001811static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1812{
1813 struct throtl_service_queue *sq = &tg->service_queue;
1814 bool read_limit, write_limit;
1815
1816 /*
1817 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1818 * reaches), it's ok to upgrade to next limit
1819 */
1820 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1821 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1822 if (!read_limit && !write_limit)
1823 return true;
1824 if (read_limit && sq->nr_queued[READ] &&
1825 (!write_limit || sq->nr_queued[WRITE]))
1826 return true;
1827 if (write_limit && sq->nr_queued[WRITE] &&
1828 (!read_limit || sq->nr_queued[READ]))
1829 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001830
1831 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001832 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1833 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001834 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001835 return false;
1836}
1837
1838static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1839{
1840 while (true) {
1841 if (throtl_tg_can_upgrade(tg))
1842 return true;
1843 tg = sq_to_tg(tg->service_queue.parent_sq);
1844 if (!tg || !tg_to_blkg(tg)->parent)
1845 return false;
1846 }
1847 return false;
1848}
1849
1850static bool throtl_can_upgrade(struct throtl_data *td,
1851 struct throtl_grp *this_tg)
1852{
1853 struct cgroup_subsys_state *pos_css;
1854 struct blkcg_gq *blkg;
1855
1856 if (td->limit_index != LIMIT_LOW)
1857 return false;
1858
Shaohua Li297e3d82017-03-27 10:51:37 -07001859 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001860 return false;
1861
Shaohua Lic79892c2017-03-27 10:51:34 -07001862 rcu_read_lock();
1863 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1864 struct throtl_grp *tg = blkg_to_tg(blkg);
1865
1866 if (tg == this_tg)
1867 continue;
1868 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1869 continue;
1870 if (!throtl_hierarchy_can_upgrade(tg)) {
1871 rcu_read_unlock();
1872 return false;
1873 }
1874 }
1875 rcu_read_unlock();
1876 return true;
1877}
1878
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001879static void throtl_upgrade_check(struct throtl_grp *tg)
1880{
1881 unsigned long now = jiffies;
1882
1883 if (tg->td->limit_index != LIMIT_LOW)
1884 return;
1885
1886 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1887 return;
1888
1889 tg->last_check_time = now;
1890
1891 if (!time_after_eq(now,
1892 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1893 return;
1894
1895 if (throtl_can_upgrade(tg->td, NULL))
1896 throtl_upgrade_state(tg->td);
1897}
1898
Shaohua Lic79892c2017-03-27 10:51:34 -07001899static void throtl_upgrade_state(struct throtl_data *td)
1900{
1901 struct cgroup_subsys_state *pos_css;
1902 struct blkcg_gq *blkg;
1903
Shaohua Li4cff7292017-05-17 13:07:25 -07001904 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001905 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001906 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001907 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001908 rcu_read_lock();
1909 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1910 struct throtl_grp *tg = blkg_to_tg(blkg);
1911 struct throtl_service_queue *sq = &tg->service_queue;
1912
1913 tg->disptime = jiffies - 1;
1914 throtl_select_dispatch(sq);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001915 throtl_schedule_next_dispatch(sq, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001916 }
1917 rcu_read_unlock();
1918 throtl_select_dispatch(&td->service_queue);
Joseph Qi4f02fb72017-09-30 14:38:49 +08001919 throtl_schedule_next_dispatch(&td->service_queue, true);
Shaohua Lic79892c2017-03-27 10:51:34 -07001920 queue_work(kthrotld_workqueue, &td->dispatch_work);
1921}
1922
Shaohua Li3f0abd82017-03-27 10:51:35 -07001923static void throtl_downgrade_state(struct throtl_data *td, int new)
1924{
Shaohua Li7394e312017-03-27 10:51:40 -07001925 td->scale /= 2;
1926
Shaohua Li4cff7292017-05-17 13:07:25 -07001927 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001928 if (td->scale) {
1929 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1930 return;
1931 }
1932
Shaohua Li3f0abd82017-03-27 10:51:35 -07001933 td->limit_index = new;
1934 td->low_downgrade_time = jiffies;
1935}
1936
1937static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1938{
1939 struct throtl_data *td = tg->td;
1940 unsigned long now = jiffies;
1941
1942 /*
1943 * If cgroup is below low limit, consider downgrade and throttle other
1944 * cgroups
1945 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001946 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1947 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001948 td->throtl_slice) &&
1949 (!throtl_tg_is_idle(tg) ||
1950 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001951 return true;
1952 return false;
1953}
1954
1955static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1956{
1957 while (true) {
1958 if (!throtl_tg_can_downgrade(tg))
1959 return false;
1960 tg = sq_to_tg(tg->service_queue.parent_sq);
1961 if (!tg || !tg_to_blkg(tg)->parent)
1962 break;
1963 }
1964 return true;
1965}
1966
1967static void throtl_downgrade_check(struct throtl_grp *tg)
1968{
1969 uint64_t bps;
1970 unsigned int iops;
1971 unsigned long elapsed_time;
1972 unsigned long now = jiffies;
1973
1974 if (tg->td->limit_index != LIMIT_MAX ||
1975 !tg->td->limit_valid[LIMIT_LOW])
1976 return;
1977 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1978 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001979 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001980 return;
1981
1982 elapsed_time = now - tg->last_check_time;
1983 tg->last_check_time = now;
1984
Shaohua Li297e3d82017-03-27 10:51:37 -07001985 if (time_before(now, tg_last_low_overflow_time(tg) +
1986 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001987 return;
1988
1989 if (tg->bps[READ][LIMIT_LOW]) {
1990 bps = tg->last_bytes_disp[READ] * HZ;
1991 do_div(bps, elapsed_time);
1992 if (bps >= tg->bps[READ][LIMIT_LOW])
1993 tg->last_low_overflow_time[READ] = now;
1994 }
1995
1996 if (tg->bps[WRITE][LIMIT_LOW]) {
1997 bps = tg->last_bytes_disp[WRITE] * HZ;
1998 do_div(bps, elapsed_time);
1999 if (bps >= tg->bps[WRITE][LIMIT_LOW])
2000 tg->last_low_overflow_time[WRITE] = now;
2001 }
2002
2003 if (tg->iops[READ][LIMIT_LOW]) {
2004 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
2005 if (iops >= tg->iops[READ][LIMIT_LOW])
2006 tg->last_low_overflow_time[READ] = now;
2007 }
2008
2009 if (tg->iops[WRITE][LIMIT_LOW]) {
2010 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2011 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2012 tg->last_low_overflow_time[WRITE] = now;
2013 }
2014
2015 /*
2016 * If cgroup is below low limit, consider downgrade and throttle other
2017 * cgroups
2018 */
2019 if (throtl_hierarchy_can_downgrade(tg))
2020 throtl_downgrade_state(tg->td, LIMIT_LOW);
2021
2022 tg->last_bytes_disp[READ] = 0;
2023 tg->last_bytes_disp[WRITE] = 0;
2024 tg->last_io_disp[READ] = 0;
2025 tg->last_io_disp[WRITE] = 0;
2026}
2027
Shaohua Li9e234ee2017-03-27 10:51:41 -07002028static void blk_throtl_update_idletime(struct throtl_grp *tg)
2029{
2030 unsigned long now = ktime_get_ns() >> 10;
2031 unsigned long last_finish_time = tg->last_finish_time;
2032
2033 if (now <= last_finish_time || last_finish_time == 0 ||
2034 last_finish_time == tg->checked_last_finish_time)
2035 return;
2036
2037 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2038 tg->checked_last_finish_time = last_finish_time;
2039}
2040
Shaohua Lib9147dd2017-03-27 15:19:42 -07002041#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2042static void throtl_update_latency_buckets(struct throtl_data *td)
2043{
2044 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
2045 int i, cpu;
2046 unsigned long last_latency = 0;
2047 unsigned long latency;
2048
2049 if (!blk_queue_nonrot(td->queue))
2050 return;
2051 if (time_before(jiffies, td->last_calculate_time + HZ))
2052 return;
2053 td->last_calculate_time = jiffies;
2054
2055 memset(avg_latency, 0, sizeof(avg_latency));
2056 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2057 struct latency_bucket *tmp = &td->tmp_buckets[i];
2058
2059 for_each_possible_cpu(cpu) {
2060 struct latency_bucket *bucket;
2061
2062 /* this isn't race free, but ok in practice */
2063 bucket = per_cpu_ptr(td->latency_buckets, cpu);
2064 tmp->total_latency += bucket[i].total_latency;
2065 tmp->samples += bucket[i].samples;
2066 bucket[i].total_latency = 0;
2067 bucket[i].samples = 0;
2068 }
2069
2070 if (tmp->samples >= 32) {
2071 int samples = tmp->samples;
2072
2073 latency = tmp->total_latency;
2074
2075 tmp->total_latency = 0;
2076 tmp->samples = 0;
2077 latency /= samples;
2078 if (latency == 0)
2079 continue;
2080 avg_latency[i].latency = latency;
2081 }
2082 }
2083
2084 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2085 if (!avg_latency[i].latency) {
2086 if (td->avg_buckets[i].latency < last_latency)
2087 td->avg_buckets[i].latency = last_latency;
2088 continue;
2089 }
2090
2091 if (!td->avg_buckets[i].valid)
2092 latency = avg_latency[i].latency;
2093 else
2094 latency = (td->avg_buckets[i].latency * 7 +
2095 avg_latency[i].latency) >> 3;
2096
2097 td->avg_buckets[i].latency = max(latency, last_latency);
2098 td->avg_buckets[i].valid = true;
2099 last_latency = td->avg_buckets[i].latency;
2100 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002101
2102 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2103 throtl_log(&td->service_queue,
2104 "Latency bucket %d: latency=%ld, valid=%d", i,
2105 td->avg_buckets[i].latency, td->avg_buckets[i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002106}
2107#else
2108static inline void throtl_update_latency_buckets(struct throtl_data *td)
2109{
2110}
2111#endif
2112
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002113static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2114{
2115#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Li007cc562017-07-12 11:49:54 -07002116 if (bio->bi_css)
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002117 bio->bi_cg_private = tg;
2118 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002119#endif
2120}
2121
Tejun Heoae118892015-08-18 14:55:20 -07002122bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2123 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002124{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002125 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002126 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002127 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002128 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002129 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002130 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002131
Tejun Heoae118892015-08-18 14:55:20 -07002132 WARN_ON_ONCE(!rcu_read_lock_held());
2133
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002134 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002135 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002136 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002137
2138 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002139
Shaohua Lib9147dd2017-03-27 15:19:42 -07002140 throtl_update_latency_buckets(td);
2141
Tejun Heoc9589f02015-08-18 14:55:19 -07002142 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002143 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002144
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002145 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002146 blk_throtl_update_idletime(tg);
2147
Tejun Heo73f0d492013-05-14 13:52:35 -07002148 sq = &tg->service_queue;
2149
Shaohua Lic79892c2017-03-27 10:51:34 -07002150again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002151 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002152 if (tg->last_low_overflow_time[rw] == 0)
2153 tg->last_low_overflow_time[rw] = jiffies;
2154 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002155 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002156 /* throtl is FIFO - if bios are already queued, should queue */
2157 if (sq->nr_queued[rw])
2158 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002159
Tejun Heo9e660ac2013-05-14 13:52:38 -07002160 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002161 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002162 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002163 if (throtl_can_upgrade(td, tg)) {
2164 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002165 goto again;
2166 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002167 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002168 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002169
2170 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002171 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002172
2173 /*
2174 * We need to trim slice even when bios are not being queued
2175 * otherwise it might happen that a bio is not queued for
2176 * a long time and slice keeps on extending and trim is not
2177 * called for a long time. Now if limits are reduced suddenly
2178 * we take into account all the IO dispatched so far at new
2179 * low rate and * newly queued IO gets a really long dispatch
2180 * time.
2181 *
2182 * So keep on trimming slice even if bio is not queued.
2183 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002184 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002185
2186 /*
2187 * @bio passed through this layer without being throttled.
2188 * Climb up the ladder. If we''re already at the top, it
2189 * can be executed directly.
2190 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002191 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002192 sq = sq->parent_sq;
2193 tg = sq_to_tg(sq);
2194 if (!tg)
2195 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002196 }
2197
Tejun Heo9e660ac2013-05-14 13:52:38 -07002198 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002199 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2200 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002201 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2202 tg_bps_limit(tg, rw),
2203 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002204 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002205
Shaohua Li3f0abd82017-03-27 10:51:35 -07002206 tg->last_low_overflow_time[rw] = jiffies;
2207
Shaohua Lib9147dd2017-03-27 15:19:42 -07002208 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002209 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002210 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002211
Tejun Heo7f52f982013-05-14 13:52:37 -07002212 /*
2213 * Update @tg's dispatch time and force schedule dispatch if @tg
2214 * was empty before @bio. The forced scheduling isn't likely to
2215 * cause undue delay as @bio is likely to be dispatched directly if
2216 * its @tg's disptime is not in the future.
2217 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002218 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002219 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002220 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002221 }
2222
Tejun Heobc16a4f2011-10-19 14:33:01 +02002223out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002224 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002225out:
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002226 /*
2227 * As multiple blk-throtls may stack in the same issue path, we
2228 * don't want bios to leave with the flag set. Clear the flag if
2229 * being issued.
2230 */
2231 if (!throttled)
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002232 bio_clear_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002233
2234#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2235 if (throttled || !td->track_bio_latency)
2236 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2237#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002238 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002239}
2240
Shaohua Li9e234ee2017-03-27 10:51:41 -07002241#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002242static void throtl_track_latency(struct throtl_data *td, sector_t size,
2243 int op, unsigned long time)
2244{
2245 struct latency_bucket *latency;
2246 int index;
2247
2248 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2249 !blk_queue_nonrot(td->queue))
2250 return;
2251
2252 index = request_bucket_index(size);
2253
2254 latency = get_cpu_ptr(td->latency_buckets);
2255 latency[index].total_latency += time;
2256 latency[index].samples++;
2257 put_cpu_ptr(td->latency_buckets);
2258}
2259
2260void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2261{
2262 struct request_queue *q = rq->q;
2263 struct throtl_data *td = q->td;
2264
2265 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2266 req_op(rq), time_ns >> 10);
2267}
2268
Shaohua Li9e234ee2017-03-27 10:51:41 -07002269void blk_throtl_bio_endio(struct bio *bio)
2270{
2271 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002272 u64 finish_time_ns;
2273 unsigned long finish_time;
2274 unsigned long start_time;
2275 unsigned long lat;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002276
2277 tg = bio->bi_cg_private;
2278 if (!tg)
2279 return;
2280 bio->bi_cg_private = NULL;
2281
Shaohua Lib9147dd2017-03-27 15:19:42 -07002282 finish_time_ns = ktime_get_ns();
2283 tg->last_finish_time = finish_time_ns >> 10;
2284
2285 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2286 finish_time = __blk_stat_time(finish_time_ns) >> 10;
Shaohua Li53696b82017-03-27 15:19:43 -07002287 if (!start_time || finish_time <= start_time)
2288 return;
2289
2290 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002291 /* this is only for bio based driver */
Shaohua Li53696b82017-03-27 15:19:43 -07002292 if (!(bio->bi_issue_stat.stat & SKIP_LATENCY))
Shaohua Lib9147dd2017-03-27 15:19:42 -07002293 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2294 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002295
Shaohua Li6679a902017-06-06 12:40:43 -07002296 if (tg->latency_target && lat >= tg->td->filtered_latency) {
Shaohua Li53696b82017-03-27 15:19:43 -07002297 int bucket;
2298 unsigned int threshold;
2299
2300 bucket = request_bucket_index(
2301 blk_stat_size(&bio->bi_issue_stat));
2302 threshold = tg->td->avg_buckets[bucket].latency +
2303 tg->latency_target;
2304 if (lat > threshold)
2305 tg->bad_bio_cnt++;
2306 /*
2307 * Not race free, could get wrong count, which means cgroups
2308 * will be throttled
2309 */
2310 tg->bio_cnt++;
2311 }
2312
2313 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2314 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2315 tg->bio_cnt /= 2;
2316 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002317 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002318}
2319#endif
2320
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002321/*
2322 * Dispatch all bios from all children tg's queued on @parent_sq. On
2323 * return, @parent_sq is guaranteed to not have any active children tg's
2324 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2325 */
2326static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2327{
2328 struct throtl_grp *tg;
2329
2330 while ((tg = throtl_rb_first(parent_sq))) {
2331 struct throtl_service_queue *sq = &tg->service_queue;
2332 struct bio *bio;
2333
2334 throtl_dequeue_tg(tg);
2335
Tejun Heoc5cc2072013-05-14 13:52:38 -07002336 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002337 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002338 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002339 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2340 }
2341}
2342
Tejun Heoc9a929d2011-10-19 14:42:16 +02002343/**
2344 * blk_throtl_drain - drain throttled bios
2345 * @q: request_queue to drain throttled bios for
2346 *
2347 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2348 */
2349void blk_throtl_drain(struct request_queue *q)
2350 __releases(q->queue_lock) __acquires(q->queue_lock)
2351{
2352 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002353 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002354 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002355 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002356 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002357
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002358 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002359 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002360
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002361 /*
2362 * Drain each tg while doing post-order walk on the blkg tree, so
2363 * that all bios are propagated to td->service_queue. It'd be
2364 * better to walk service_queue tree directly but blkg walk is
2365 * easier.
2366 */
Tejun Heo492eb212013-08-08 20:11:25 -04002367 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002368 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002369
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002370 /* finally, transfer bios from top-level tg's into the td */
2371 tg_drain_bios(&td->service_queue);
2372
2373 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002374 spin_unlock_irq(q->queue_lock);
2375
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002376 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002377 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002378 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2379 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002380 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002381
2382 spin_lock_irq(q->queue_lock);
2383}
2384
Vivek Goyale43473b2010-09-15 17:06:35 -04002385int blk_throtl_init(struct request_queue *q)
2386{
2387 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002388 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002389
2390 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2391 if (!td)
2392 return -ENOMEM;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002393 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2394 LATENCY_BUCKET_SIZE, __alignof__(u64));
2395 if (!td->latency_buckets) {
2396 kfree(td);
2397 return -ENOMEM;
2398 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002399
Tejun Heo69df0ab2013-05-14 13:52:36 -07002400 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002401 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002402
Tejun Heocd1604f2012-03-05 13:15:06 -08002403 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002404 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002405
Shaohua Li9f626e32017-03-27 10:51:30 -07002406 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002407 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002408 td->low_upgrade_time = jiffies;
2409 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002410
Tejun Heoa2b16932012-04-13 13:11:33 -07002411 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002412 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002413 if (ret) {
2414 free_percpu(td->latency_buckets);
Vivek Goyal29b12582011-05-19 15:38:24 -04002415 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002416 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002417 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002418}
2419
2420void blk_throtl_exit(struct request_queue *q)
2421{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002422 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002423 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002424 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002425 free_percpu(q->td->latency_buckets);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002426 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002427}
2428
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002429void blk_throtl_register_queue(struct request_queue *q)
2430{
2431 struct throtl_data *td;
Shaohua Li6679a902017-06-06 12:40:43 -07002432 int i;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002433
2434 td = q->td;
2435 BUG_ON(!td);
2436
Shaohua Li6679a902017-06-06 12:40:43 -07002437 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002438 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Li6679a902017-06-06 12:40:43 -07002439 td->filtered_latency = LATENCY_FILTERED_SSD;
2440 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002441 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Li6679a902017-06-06 12:40:43 -07002442 td->filtered_latency = LATENCY_FILTERED_HD;
2443 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2444 td->avg_buckets[i].latency = DFL_HD_BASELINE_LATENCY;
2445 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002446#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2447 /* if no low limit, use previous default */
2448 td->throtl_slice = DFL_THROTL_SLICE_HD;
2449#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002450
Shaohua Lib9147dd2017-03-27 15:19:42 -07002451 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2452 if (!td->track_bio_latency)
2453 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002454}
2455
Shaohua Li297e3d82017-03-27 10:51:37 -07002456#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2457ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2458{
2459 if (!q->td)
2460 return -EINVAL;
2461 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2462}
2463
2464ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2465 const char *page, size_t count)
2466{
2467 unsigned long v;
2468 unsigned long t;
2469
2470 if (!q->td)
2471 return -EINVAL;
2472 if (kstrtoul(page, 10, &v))
2473 return -EINVAL;
2474 t = msecs_to_jiffies(v);
2475 if (t == 0 || t > MAX_THROTL_SLICE)
2476 return -EINVAL;
2477 q->td->throtl_slice = t;
2478 return count;
2479}
2480#endif
2481
Vivek Goyale43473b2010-09-15 17:06:35 -04002482static int __init throtl_init(void)
2483{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002484 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2485 if (!kthrotld_workqueue)
2486 panic("Failed to create kthrotld\n");
2487
Tejun Heo3c798392012-04-16 13:57:25 -07002488 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002489}
2490
2491module_init(throtl_init);