blob: 80f5481fe9f6c1603e477349732dac62c3baf204 [file] [log] [blame]
Vivek Goyale43473b2010-09-15 17:06:35 -04001/*
2 * Interface for controlling IO bandwidth on a request queue
3 *
4 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/blkdev.h>
10#include <linux/bio.h>
11#include <linux/blktrace_api.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040012#include <linux/blk-cgroup.h>
Tejun Heobc9fcbf2011-10-19 14:31:18 +020013#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040014
15/* Max dispatch from a group in 1 round */
16static int throtl_grp_quantum = 8;
17
18/* Total max dispatch from all groups in one round */
19static int throtl_quantum = 32;
20
Shaohua Lid61fcfa2017-03-27 10:51:38 -070021/* Throttling is performed over a slice and after that slice is renewed */
22#define DFL_THROTL_SLICE_HD (HZ / 10)
23#define DFL_THROTL_SLICE_SSD (HZ / 50)
Shaohua Li297e3d82017-03-27 10:51:37 -070024#define MAX_THROTL_SLICE (HZ)
Shaohua Li9e234ee2017-03-27 10:51:41 -070025#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
Shaohua Li9bb67ae2017-05-17 13:07:26 -070026#define MIN_THROTL_BPS (320 * 1024)
27#define MIN_THROTL_IOPS (10)
Shaohua Lib4f428e2017-05-17 13:07:27 -070028#define DFL_LATENCY_TARGET (-1L)
29#define DFL_IDLE_THRESHOLD (0)
Shaohua Li6679a902017-06-06 12:40:43 -070030#define DFL_HD_BASELINE_LATENCY (4000L) /* 4ms */
31#define LATENCY_FILTERED_SSD (0)
32/*
33 * For HD, very small latency comes from sequential IO. Such IO is helpless to
34 * help determine if its IO is impacted by others, hence we ignore the IO
35 */
36#define LATENCY_FILTERED_HD (1000L) /* 1ms */
Vivek Goyale43473b2010-09-15 17:06:35 -040037
Shaohua Lib9147dd2017-03-27 15:19:42 -070038#define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT)
39
Tejun Heo3c798392012-04-16 13:57:25 -070040static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080041
Vivek Goyal450adcb2011-03-01 13:40:54 -050042/* A workqueue to queue throttle related work */
43static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050044
Tejun Heoc5cc2072013-05-14 13:52:38 -070045/*
46 * To implement hierarchical throttling, throtl_grps form a tree and bios
47 * are dispatched upwards level by level until they reach the top and get
48 * issued. When dispatching bios from the children and local group at each
49 * level, if the bios are dispatched into a single bio_list, there's a risk
50 * of a local or child group which can queue many bios at once filling up
51 * the list starving others.
52 *
53 * To avoid such starvation, dispatched bios are queued separately
54 * according to where they came from. When they are again dispatched to
55 * the parent, they're popped in round-robin order so that no single source
56 * hogs the dispatch window.
57 *
58 * throtl_qnode is used to keep the queued bios separated by their sources.
59 * Bios are queued to throtl_qnode which in turn is queued to
60 * throtl_service_queue and then dispatched in round-robin order.
61 *
62 * It's also used to track the reference counts on blkg's. A qnode always
63 * belongs to a throtl_grp and gets queued on itself or the parent, so
64 * incrementing the reference of the associated throtl_grp when a qnode is
65 * queued and decrementing when dequeued is enough to keep the whole blkg
66 * tree pinned while bios are in flight.
67 */
68struct throtl_qnode {
69 struct list_head node; /* service_queue->queued[] */
70 struct bio_list bios; /* queued bios */
71 struct throtl_grp *tg; /* tg this qnode belongs to */
72};
73
Tejun Heoc9e03322013-05-14 13:52:32 -070074struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070075 struct throtl_service_queue *parent_sq; /* the parent service_queue */
76
Tejun Heo73f0d492013-05-14 13:52:35 -070077 /*
78 * Bios queued directly to this service_queue or dispatched from
79 * children throtl_grp's.
80 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070081 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070082 unsigned int nr_queued[2]; /* number of queued bios */
83
84 /*
85 * RB tree of active children throtl_grp's, which are sorted by
86 * their ->disptime.
87 */
Tejun Heoc9e03322013-05-14 13:52:32 -070088 struct rb_root pending_tree; /* RB tree of active tgs */
89 struct rb_node *first_pending; /* first node in the tree */
90 unsigned int nr_pending; /* # queued in the tree */
91 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070092 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040093};
94
Tejun Heo5b2c16a2013-05-14 13:52:32 -070095enum tg_state_flags {
96 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070097 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070098};
99
Vivek Goyale43473b2010-09-15 17:06:35 -0400100#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
101
Shaohua Li9f626e32017-03-27 10:51:30 -0700102enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700103 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -0700104 LIMIT_MAX,
105 LIMIT_CNT,
106};
107
Vivek Goyale43473b2010-09-15 17:06:35 -0400108struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700109 /* must be the first member */
110 struct blkg_policy_data pd;
111
Tejun Heoc9e03322013-05-14 13:52:32 -0700112 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400113 struct rb_node rb_node;
114
Tejun Heo0f3457f2013-05-14 13:52:32 -0700115 /* throtl_data this group belongs to */
116 struct throtl_data *td;
117
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700118 /* this group's service queue */
119 struct throtl_service_queue service_queue;
120
Vivek Goyale43473b2010-09-15 17:06:35 -0400121 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700122 * qnode_on_self is used when bios are directly queued to this
123 * throtl_grp so that local bios compete fairly with bios
124 * dispatched from children. qnode_on_parent is used when bios are
125 * dispatched from this throtl_grp into its parent and will compete
126 * with the sibling qnode_on_parents and the parent's
127 * qnode_on_self.
128 */
129 struct throtl_qnode qnode_on_self[2];
130 struct throtl_qnode qnode_on_parent[2];
131
132 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400133 * Dispatch time in jiffies. This is the estimated time when group
134 * will unthrottle and is ready to dispatch more bio. It is used as
135 * key to sort active groups in service tree.
136 */
137 unsigned long disptime;
138
Vivek Goyale43473b2010-09-15 17:06:35 -0400139 unsigned int flags;
140
Tejun Heo693e7512013-05-14 13:52:38 -0700141 /* are there any throtl rules between this group and td? */
142 bool has_rules[2];
143
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700144 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700145 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700146 /* user configured bps limits */
147 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400148
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700149 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700150 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700151 /* user configured IOPS limits */
152 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400153
Vivek Goyale43473b2010-09-15 17:06:35 -0400154 /* Number of bytes disptached in current slice */
155 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400156 /* Number of bio's dispatched in current slice */
157 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400158
Shaohua Li3f0abd82017-03-27 10:51:35 -0700159 unsigned long last_low_overflow_time[2];
160
161 uint64_t last_bytes_disp[2];
162 unsigned int last_io_disp[2];
163
164 unsigned long last_check_time;
165
Shaohua Liec809912017-03-27 10:51:44 -0700166 unsigned long latency_target; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700167 unsigned long latency_target_conf; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400168 /* When did we start a new slice */
169 unsigned long slice_start[2];
170 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700171
172 unsigned long last_finish_time; /* ns / 1024 */
173 unsigned long checked_last_finish_time; /* ns / 1024 */
174 unsigned long avg_idletime; /* ns / 1024 */
175 unsigned long idletime_threshold; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700176 unsigned long idletime_threshold_conf; /* us */
Shaohua Li53696b82017-03-27 15:19:43 -0700177
178 unsigned int bio_cnt; /* total bios */
179 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
180 unsigned long bio_cnt_reset_time;
Vivek Goyale43473b2010-09-15 17:06:35 -0400181};
182
Shaohua Lib9147dd2017-03-27 15:19:42 -0700183/* We measure latency for request size from <= 4k to >= 1M */
184#define LATENCY_BUCKET_SIZE 9
185
186struct latency_bucket {
187 unsigned long total_latency; /* ns / 1024 */
188 int samples;
189};
190
191struct avg_latency_bucket {
192 unsigned long latency; /* ns / 1024 */
193 bool valid;
194};
195
Vivek Goyale43473b2010-09-15 17:06:35 -0400196struct throtl_data
197{
Vivek Goyale43473b2010-09-15 17:06:35 -0400198 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700199 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400200
Vivek Goyale43473b2010-09-15 17:06:35 -0400201 struct request_queue *queue;
202
203 /* Total Number of queued bios on READ and WRITE lists */
204 unsigned int nr_queued[2];
205
Shaohua Li297e3d82017-03-27 10:51:37 -0700206 unsigned int throtl_slice;
207
Vivek Goyale43473b2010-09-15 17:06:35 -0400208 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700209 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700210 unsigned int limit_index;
211 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700212
213 unsigned long low_upgrade_time;
214 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700215
216 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700217
218 struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE];
219 struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE];
220 struct latency_bucket __percpu *latency_buckets;
221 unsigned long last_calculate_time;
Shaohua Li6679a902017-06-06 12:40:43 -0700222 unsigned long filtered_latency;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700223
224 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400225};
226
Tejun Heo69df0ab2013-05-14 13:52:36 -0700227static void throtl_pending_timer_fn(unsigned long arg);
228
Tejun Heof95a04a2012-04-16 13:57:26 -0700229static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
230{
231 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
232}
233
Tejun Heo3c798392012-04-16 13:57:25 -0700234static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800235{
Tejun Heof95a04a2012-04-16 13:57:26 -0700236 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800237}
238
Tejun Heo3c798392012-04-16 13:57:25 -0700239static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800240{
Tejun Heof95a04a2012-04-16 13:57:26 -0700241 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800242}
243
Tejun Heofda6f272013-05-14 13:52:36 -0700244/**
245 * sq_to_tg - return the throl_grp the specified service queue belongs to
246 * @sq: the throtl_service_queue of interest
247 *
248 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
249 * embedded in throtl_data, %NULL is returned.
250 */
251static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
252{
253 if (sq && sq->parent_sq)
254 return container_of(sq, struct throtl_grp, service_queue);
255 else
256 return NULL;
257}
Vivek Goyale43473b2010-09-15 17:06:35 -0400258
Tejun Heofda6f272013-05-14 13:52:36 -0700259/**
260 * sq_to_td - return throtl_data the specified service queue belongs to
261 * @sq: the throtl_service_queue of interest
262 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800263 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700264 * Determine the associated throtl_data accordingly and return it.
265 */
266static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
267{
268 struct throtl_grp *tg = sq_to_tg(sq);
269
270 if (tg)
271 return tg->td;
272 else
273 return container_of(sq, struct throtl_data, service_queue);
274}
275
Shaohua Li7394e312017-03-27 10:51:40 -0700276/*
277 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
278 * make the IO dispatch more smooth.
279 * Scale up: linearly scale up according to lapsed time since upgrade. For
280 * every throtl_slice, the limit scales up 1/2 .low limit till the
281 * limit hits .max limit
282 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
283 */
284static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
285{
286 /* arbitrary value to avoid too big scale */
287 if (td->scale < 4096 && time_after_eq(jiffies,
288 td->low_upgrade_time + td->scale * td->throtl_slice))
289 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
290
291 return low + (low >> 1) * td->scale;
292}
293
Shaohua Li9f626e32017-03-27 10:51:30 -0700294static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
295{
Shaohua Lib22c4172017-03-27 10:51:33 -0700296 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700297 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700298 uint64_t ret;
299
300 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
301 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700302
303 td = tg->td;
304 ret = tg->bps[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700305 if (ret == 0 && td->limit_index == LIMIT_LOW) {
306 /* intermediate node or iops isn't 0 */
307 if (!list_empty(&blkg->blkcg->css.children) ||
308 tg->iops[rw][td->limit_index])
309 return U64_MAX;
310 else
311 return MIN_THROTL_BPS;
312 }
Shaohua Li7394e312017-03-27 10:51:40 -0700313
314 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
315 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
316 uint64_t adjusted;
317
318 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
319 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
320 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700321 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700322}
323
324static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
325{
Shaohua Lib22c4172017-03-27 10:51:33 -0700326 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700327 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700328 unsigned int ret;
329
330 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
331 return UINT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700332
Shaohua Li7394e312017-03-27 10:51:40 -0700333 td = tg->td;
334 ret = tg->iops[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700335 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
336 /* intermediate node or bps isn't 0 */
337 if (!list_empty(&blkg->blkcg->css.children) ||
338 tg->bps[rw][td->limit_index])
339 return UINT_MAX;
340 else
341 return MIN_THROTL_IOPS;
342 }
Shaohua Li7394e312017-03-27 10:51:40 -0700343
344 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
345 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
346 uint64_t adjusted;
347
348 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
349 if (adjusted > UINT_MAX)
350 adjusted = UINT_MAX;
351 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
352 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700353 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700354}
355
Shaohua Lib9147dd2017-03-27 15:19:42 -0700356#define request_bucket_index(sectors) \
357 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
358
Tejun Heofda6f272013-05-14 13:52:36 -0700359/**
360 * throtl_log - log debug message via blktrace
361 * @sq: the service_queue being reported
362 * @fmt: printf format string
363 * @args: printf args
364 *
365 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
366 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700367 */
368#define throtl_log(sq, fmt, args...) do { \
369 struct throtl_grp *__tg = sq_to_tg((sq)); \
370 struct throtl_data *__td = sq_to_td((sq)); \
371 \
372 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700373 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
374 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700375 if ((__tg)) { \
376 char __pbuf[128]; \
377 \
378 blkg_path(tg_to_blkg(__tg), __pbuf, sizeof(__pbuf)); \
379 blk_add_trace_msg(__td->queue, "throtl %s " fmt, __pbuf, ##args); \
380 } else { \
381 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
382 } \
383} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400384
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700385static inline unsigned int throtl_bio_data_size(struct bio *bio)
386{
387 /* assume it's one sector */
388 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
389 return 512;
390 return bio->bi_iter.bi_size;
391}
392
Tejun Heoc5cc2072013-05-14 13:52:38 -0700393static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
394{
395 INIT_LIST_HEAD(&qn->node);
396 bio_list_init(&qn->bios);
397 qn->tg = tg;
398}
399
400/**
401 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
402 * @bio: bio being added
403 * @qn: qnode to add bio to
404 * @queued: the service_queue->queued[] list @qn belongs to
405 *
406 * Add @bio to @qn and put @qn on @queued if it's not already on.
407 * @qn->tg's reference count is bumped when @qn is activated. See the
408 * comment on top of throtl_qnode definition for details.
409 */
410static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
411 struct list_head *queued)
412{
413 bio_list_add(&qn->bios, bio);
414 if (list_empty(&qn->node)) {
415 list_add_tail(&qn->node, queued);
416 blkg_get(tg_to_blkg(qn->tg));
417 }
418}
419
420/**
421 * throtl_peek_queued - peek the first bio on a qnode list
422 * @queued: the qnode list to peek
423 */
424static struct bio *throtl_peek_queued(struct list_head *queued)
425{
426 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
427 struct bio *bio;
428
429 if (list_empty(queued))
430 return NULL;
431
432 bio = bio_list_peek(&qn->bios);
433 WARN_ON_ONCE(!bio);
434 return bio;
435}
436
437/**
438 * throtl_pop_queued - pop the first bio form a qnode list
439 * @queued: the qnode list to pop a bio from
440 * @tg_to_put: optional out argument for throtl_grp to put
441 *
442 * Pop the first bio from the qnode list @queued. After popping, the first
443 * qnode is removed from @queued if empty or moved to the end of @queued so
444 * that the popping order is round-robin.
445 *
446 * When the first qnode is removed, its associated throtl_grp should be put
447 * too. If @tg_to_put is NULL, this function automatically puts it;
448 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
449 * responsible for putting it.
450 */
451static struct bio *throtl_pop_queued(struct list_head *queued,
452 struct throtl_grp **tg_to_put)
453{
454 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
455 struct bio *bio;
456
457 if (list_empty(queued))
458 return NULL;
459
460 bio = bio_list_pop(&qn->bios);
461 WARN_ON_ONCE(!bio);
462
463 if (bio_list_empty(&qn->bios)) {
464 list_del_init(&qn->node);
465 if (tg_to_put)
466 *tg_to_put = qn->tg;
467 else
468 blkg_put(tg_to_blkg(qn->tg));
469 } else {
470 list_move_tail(&qn->node, queued);
471 }
472
473 return bio;
474}
475
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700476/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700477static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700478{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700479 INIT_LIST_HEAD(&sq->queued[0]);
480 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700481 sq->pending_tree = RB_ROOT;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700482 setup_timer(&sq->pending_timer, throtl_pending_timer_fn,
483 (unsigned long)sq);
484}
485
Tejun Heo001bea72015-08-18 14:55:11 -0700486static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
487{
Tejun Heo4fb72032015-08-18 14:55:12 -0700488 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700489 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700490
491 tg = kzalloc_node(sizeof(*tg), gfp, node);
492 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700493 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700494
Tejun Heob2ce2642015-08-18 14:55:13 -0700495 throtl_service_queue_init(&tg->service_queue);
496
497 for (rw = READ; rw <= WRITE; rw++) {
498 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
499 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
500 }
501
502 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700503 tg->bps[READ][LIMIT_MAX] = U64_MAX;
504 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
505 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
506 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700507 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
508 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
509 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
510 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
511 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700512
Shaohua Liec809912017-03-27 10:51:44 -0700513 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700514 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700515 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
516 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700517
Tejun Heo4fb72032015-08-18 14:55:12 -0700518 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700519}
520
Tejun Heoa9520cd2015-08-18 14:55:14 -0700521static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400522{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700523 struct throtl_grp *tg = pd_to_tg(pd);
524 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700525 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700526 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800527
Tejun Heo91381252013-05-14 13:52:38 -0700528 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400529 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700530 * behavior where limits on a given throtl_grp are applied to the
531 * whole subtree rather than just the group itself. e.g. If 16M
532 * read_bps limit is set on the root group, the whole system can't
533 * exceed 16M for the device.
534 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400535 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700536 * behavior is retained where all throtl_grps are treated as if
537 * they're all separate root groups right below throtl_data.
538 * Limits of a group don't interact with limits of other groups
539 * regardless of the position of the group in the hierarchy.
540 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700541 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400542 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700543 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700544 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700545}
546
Tejun Heo693e7512013-05-14 13:52:38 -0700547/*
548 * Set has_rules[] if @tg or any of its parents have limits configured.
549 * This doesn't require walking up to the top of the hierarchy as the
550 * parent's has_rules[] is guaranteed to be correct.
551 */
552static void tg_update_has_rules(struct throtl_grp *tg)
553{
554 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700555 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700556 int rw;
557
558 for (rw = READ; rw <= WRITE; rw++)
559 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700560 (td->limit_valid[td->limit_index] &&
561 (tg_bps_limit(tg, rw) != U64_MAX ||
562 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700563}
564
Tejun Heoa9520cd2015-08-18 14:55:14 -0700565static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700566{
Shaohua Liaec24242017-03-27 10:51:39 -0700567 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700568 /*
569 * We don't want new groups to escape the limits of its ancestors.
570 * Update has_rules[] after a new group is brought online.
571 */
Shaohua Liaec24242017-03-27 10:51:39 -0700572 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700573}
574
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700575static void blk_throtl_update_limit_valid(struct throtl_data *td)
576{
577 struct cgroup_subsys_state *pos_css;
578 struct blkcg_gq *blkg;
579 bool low_valid = false;
580
581 rcu_read_lock();
582 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
583 struct throtl_grp *tg = blkg_to_tg(blkg);
584
585 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
586 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
587 low_valid = true;
588 }
589 rcu_read_unlock();
590
591 td->limit_valid[LIMIT_LOW] = low_valid;
592}
593
Shaohua Lic79892c2017-03-27 10:51:34 -0700594static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700595static void throtl_pd_offline(struct blkg_policy_data *pd)
596{
597 struct throtl_grp *tg = pd_to_tg(pd);
598
599 tg->bps[READ][LIMIT_LOW] = 0;
600 tg->bps[WRITE][LIMIT_LOW] = 0;
601 tg->iops[READ][LIMIT_LOW] = 0;
602 tg->iops[WRITE][LIMIT_LOW] = 0;
603
604 blk_throtl_update_limit_valid(tg->td);
605
Shaohua Lic79892c2017-03-27 10:51:34 -0700606 if (!tg->td->limit_valid[tg->td->limit_index])
607 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700608}
609
Tejun Heo001bea72015-08-18 14:55:11 -0700610static void throtl_pd_free(struct blkg_policy_data *pd)
611{
Tejun Heo4fb72032015-08-18 14:55:12 -0700612 struct throtl_grp *tg = pd_to_tg(pd);
613
Tejun Heob2ce2642015-08-18 14:55:13 -0700614 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700615 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700616}
617
Tejun Heo0049af72013-05-14 13:52:33 -0700618static struct throtl_grp *
619throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400620{
621 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700622 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400623 return NULL;
624
Tejun Heo0049af72013-05-14 13:52:33 -0700625 if (!parent_sq->first_pending)
626 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400627
Tejun Heo0049af72013-05-14 13:52:33 -0700628 if (parent_sq->first_pending)
629 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400630
631 return NULL;
632}
633
634static void rb_erase_init(struct rb_node *n, struct rb_root *root)
635{
636 rb_erase(n, root);
637 RB_CLEAR_NODE(n);
638}
639
Tejun Heo0049af72013-05-14 13:52:33 -0700640static void throtl_rb_erase(struct rb_node *n,
641 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400642{
Tejun Heo0049af72013-05-14 13:52:33 -0700643 if (parent_sq->first_pending == n)
644 parent_sq->first_pending = NULL;
645 rb_erase_init(n, &parent_sq->pending_tree);
646 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400647}
648
Tejun Heo0049af72013-05-14 13:52:33 -0700649static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400650{
651 struct throtl_grp *tg;
652
Tejun Heo0049af72013-05-14 13:52:33 -0700653 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400654 if (!tg)
655 return;
656
Tejun Heo0049af72013-05-14 13:52:33 -0700657 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400658}
659
Tejun Heo77216b02013-05-14 13:52:36 -0700660static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400661{
Tejun Heo77216b02013-05-14 13:52:36 -0700662 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700663 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400664 struct rb_node *parent = NULL;
665 struct throtl_grp *__tg;
666 unsigned long key = tg->disptime;
667 int left = 1;
668
669 while (*node != NULL) {
670 parent = *node;
671 __tg = rb_entry_tg(parent);
672
673 if (time_before(key, __tg->disptime))
674 node = &parent->rb_left;
675 else {
676 node = &parent->rb_right;
677 left = 0;
678 }
679 }
680
681 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700682 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400683
684 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700685 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400686}
687
Tejun Heo77216b02013-05-14 13:52:36 -0700688static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400689{
Tejun Heo77216b02013-05-14 13:52:36 -0700690 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700691 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700692 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400693}
694
Tejun Heo77216b02013-05-14 13:52:36 -0700695static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400696{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700697 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700698 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400699}
700
Tejun Heo77216b02013-05-14 13:52:36 -0700701static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400702{
Tejun Heo77216b02013-05-14 13:52:36 -0700703 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700704 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400705}
706
Tejun Heo77216b02013-05-14 13:52:36 -0700707static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400708{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700709 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700710 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400711}
712
Tejun Heoa9131a22013-05-14 13:52:31 -0700713/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700714static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
715 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700716{
Joseph Qia41b8162017-06-07 11:36:14 +0800717 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700718
719 /*
720 * Since we are adjusting the throttle limit dynamically, the sleep
721 * time calculated according to previous limit might be invalid. It's
722 * possible the cgroup sleep time is very long and no other cgroups
723 * have IO running so notify the limit changes. Make sure the cgroup
724 * doesn't sleep too long to avoid the missed notification.
725 */
726 if (time_after(expires, max_expire))
727 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700728 mod_timer(&sq->pending_timer, expires);
729 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
730 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700731}
732
Tejun Heo7f52f982013-05-14 13:52:37 -0700733/**
734 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
735 * @sq: the service_queue to schedule dispatch for
736 * @force: force scheduling
737 *
738 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
739 * dispatch time of the first pending child. Returns %true if either timer
740 * is armed or there's no pending child left. %false if the current
741 * dispatch window is still open and the caller should continue
742 * dispatching.
743 *
744 * If @force is %true, the dispatch timer is always scheduled and this
745 * function is guaranteed to return %true. This is to be used when the
746 * caller can't dispatch itself and needs to invoke pending_timer
747 * unconditionally. Note that forced scheduling is likely to induce short
748 * delay before dispatch starts even if @sq->first_pending_disptime is not
749 * in the future and thus shouldn't be used in hot paths.
750 */
751static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
752 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400753{
Tejun Heo6a525602013-05-14 13:52:32 -0700754 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700755 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700756 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400757
Tejun Heoc9e03322013-05-14 13:52:32 -0700758 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400759
Tejun Heo69df0ab2013-05-14 13:52:36 -0700760 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700761 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700762 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700763 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700764 }
765
Tejun Heo7f52f982013-05-14 13:52:37 -0700766 /* tell the caller to continue dispatching */
767 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400768}
769
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700770static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
771 bool rw, unsigned long start)
772{
773 tg->bytes_disp[rw] = 0;
774 tg->io_disp[rw] = 0;
775
776 /*
777 * Previous slice has expired. We must have trimmed it after last
778 * bio dispatch. That means since start of last slice, we never used
779 * that bandwidth. Do try to make use of that bandwidth while giving
780 * credit.
781 */
782 if (time_after_eq(start, tg->slice_start[rw]))
783 tg->slice_start[rw] = start;
784
Shaohua Li297e3d82017-03-27 10:51:37 -0700785 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700786 throtl_log(&tg->service_queue,
787 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
788 rw == READ ? 'R' : 'W', tg->slice_start[rw],
789 tg->slice_end[rw], jiffies);
790}
791
Tejun Heo0f3457f2013-05-14 13:52:32 -0700792static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400793{
794 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400795 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400796 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700797 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700798 throtl_log(&tg->service_queue,
799 "[%c] new slice start=%lu end=%lu jiffies=%lu",
800 rw == READ ? 'R' : 'W', tg->slice_start[rw],
801 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400802}
803
Tejun Heo0f3457f2013-05-14 13:52:32 -0700804static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
805 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100806{
Shaohua Li297e3d82017-03-27 10:51:37 -0700807 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100808}
809
Tejun Heo0f3457f2013-05-14 13:52:32 -0700810static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
811 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400812{
Shaohua Li297e3d82017-03-27 10:51:37 -0700813 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700814 throtl_log(&tg->service_queue,
815 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
816 rw == READ ? 'R' : 'W', tg->slice_start[rw],
817 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400818}
819
820/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700821static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400822{
823 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200824 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400825
826 return 1;
827}
828
829/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700830static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400831{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200832 unsigned long nr_slices, time_elapsed, io_trim;
833 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400834
835 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
836
837 /*
838 * If bps are unlimited (-1), then time slice don't get
839 * renewed. Don't try to trim the slice if slice is used. A new
840 * slice will start when appropriate.
841 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700842 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400843 return;
844
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100845 /*
846 * A bio has been dispatched. Also adjust slice_end. It might happen
847 * that initially cgroup limit was very low resulting in high
848 * slice_end, but later limit was bumped up and bio was dispached
849 * sooner, then we need to reduce slice_end. A high bogus slice_end
850 * is bad because it does not allow new slice to start.
851 */
852
Shaohua Li297e3d82017-03-27 10:51:37 -0700853 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100854
Vivek Goyale43473b2010-09-15 17:06:35 -0400855 time_elapsed = jiffies - tg->slice_start[rw];
856
Shaohua Li297e3d82017-03-27 10:51:37 -0700857 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400858
859 if (!nr_slices)
860 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700861 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200862 do_div(tmp, HZ);
863 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400864
Shaohua Li297e3d82017-03-27 10:51:37 -0700865 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
866 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400867
Vivek Goyal8e89d132010-09-15 17:06:37 -0400868 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400869 return;
870
871 if (tg->bytes_disp[rw] >= bytes_trim)
872 tg->bytes_disp[rw] -= bytes_trim;
873 else
874 tg->bytes_disp[rw] = 0;
875
Vivek Goyal8e89d132010-09-15 17:06:37 -0400876 if (tg->io_disp[rw] >= io_trim)
877 tg->io_disp[rw] -= io_trim;
878 else
879 tg->io_disp[rw] = 0;
880
Shaohua Li297e3d82017-03-27 10:51:37 -0700881 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400882
Tejun Heofda6f272013-05-14 13:52:36 -0700883 throtl_log(&tg->service_queue,
884 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
885 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
886 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400887}
888
Tejun Heo0f3457f2013-05-14 13:52:32 -0700889static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
890 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400891{
892 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400893 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400894 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200895 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400896
Vivek Goyal8e89d132010-09-15 17:06:37 -0400897 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400898
Vivek Goyal8e89d132010-09-15 17:06:37 -0400899 /* Slice has just started. Consider one slice interval */
900 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700901 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400902
Shaohua Li297e3d82017-03-27 10:51:37 -0700903 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400904
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200905 /*
906 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
907 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
908 * will allow dispatch after 1 second and after that slice should
909 * have been trimmed.
910 */
911
Shaohua Li9f626e32017-03-27 10:51:30 -0700912 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200913 do_div(tmp, HZ);
914
915 if (tmp > UINT_MAX)
916 io_allowed = UINT_MAX;
917 else
918 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400919
920 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400921 if (wait)
922 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200923 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400924 }
925
Vivek Goyal8e89d132010-09-15 17:06:37 -0400926 /* Calc approx time to dispatch */
Shaohua Li9f626e32017-03-27 10:51:30 -0700927 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400928
929 if (jiffy_wait > jiffy_elapsed)
930 jiffy_wait = jiffy_wait - jiffy_elapsed;
931 else
932 jiffy_wait = 1;
933
934 if (wait)
935 *wait = jiffy_wait;
936 return 0;
937}
938
Tejun Heo0f3457f2013-05-14 13:52:32 -0700939static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
940 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400941{
942 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200943 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400944 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700945 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400946
947 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
948
949 /* Slice has just started. Consider one slice interval */
950 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700951 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400952
Shaohua Li297e3d82017-03-27 10:51:37 -0700953 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400954
Shaohua Li9f626e32017-03-27 10:51:30 -0700955 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200956 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200957 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400958
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700959 if (tg->bytes_disp[rw] + bio_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400960 if (wait)
961 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200962 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400963 }
964
965 /* Calc approx time to dispatch */
Shaohua Liea0ea2b2017-08-18 16:08:13 -0700966 extra_bytes = tg->bytes_disp[rw] + bio_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700967 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400968
969 if (!jiffy_wait)
970 jiffy_wait = 1;
971
972 /*
973 * This wait time is without taking into consideration the rounding
974 * up we did. Add that time also.
975 */
976 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400977 if (wait)
978 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400979 return 0;
980}
Vivek Goyale43473b2010-09-15 17:06:35 -0400981
Vivek Goyal8e89d132010-09-15 17:06:37 -0400982/*
983 * Returns whether one can dispatch a bio or not. Also returns approx number
984 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
985 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700986static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
987 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400988{
989 bool rw = bio_data_dir(bio);
990 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
991
992 /*
993 * Currently whole state machine of group depends on first bio
994 * queued in the group bio list. So one should not be calling
995 * this function with a different bio if there are other bios
996 * queued.
997 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700998 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700999 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -04001000
1001 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -07001002 if (tg_bps_limit(tg, rw) == U64_MAX &&
1003 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001004 if (wait)
1005 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +02001006 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001007 }
1008
1009 /*
1010 * If previous slice expired, start a new one otherwise renew/extend
1011 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -06001012 * long since now. New slice is started only for empty throttle group.
1013 * If there is queued bio, that means there should be an active
1014 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -04001015 */
Vivek Goyal164c80e2016-09-19 15:12:41 -06001016 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001017 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001018 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001019 if (time_before(tg->slice_end[rw],
1020 jiffies + tg->td->throtl_slice))
1021 throtl_extend_slice(tg, rw,
1022 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001023 }
1024
Tejun Heo0f3457f2013-05-14 13:52:32 -07001025 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1026 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001027 if (wait)
1028 *wait = 0;
1029 return 1;
1030 }
1031
1032 max_wait = max(bps_wait, iops_wait);
1033
1034 if (wait)
1035 *wait = max_wait;
1036
1037 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001038 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001039
1040 return 0;
1041}
1042
1043static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1044{
1045 bool rw = bio_data_dir(bio);
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001046 unsigned int bio_size = throtl_bio_data_size(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001047
1048 /* Charge the bio to the group */
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001049 tg->bytes_disp[rw] += bio_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001050 tg->io_disp[rw]++;
Shaohua Liea0ea2b2017-08-18 16:08:13 -07001051 tg->last_bytes_disp[rw] += bio_size;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001052 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001053
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001054 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001055 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001056 * more than once as a throttled bio will go through blk-throtl the
1057 * second time when it eventually gets issued. Set it when a bio
1058 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001059 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001060 if (!bio_flagged(bio, BIO_THROTTLED))
1061 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001062}
1063
Tejun Heoc5cc2072013-05-14 13:52:38 -07001064/**
1065 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1066 * @bio: bio to add
1067 * @qn: qnode to use
1068 * @tg: the target throtl_grp
1069 *
1070 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1071 * tg->qnode_on_self[] is used.
1072 */
1073static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1074 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001075{
Tejun Heo73f0d492013-05-14 13:52:35 -07001076 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001077 bool rw = bio_data_dir(bio);
1078
Tejun Heoc5cc2072013-05-14 13:52:38 -07001079 if (!qn)
1080 qn = &tg->qnode_on_self[rw];
1081
Tejun Heo0e9f4162013-05-14 13:52:35 -07001082 /*
1083 * If @tg doesn't currently have any bios queued in the same
1084 * direction, queueing @bio can change when @tg should be
1085 * dispatched. Mark that @tg was empty. This is automatically
1086 * cleaered on the next tg_update_disptime().
1087 */
1088 if (!sq->nr_queued[rw])
1089 tg->flags |= THROTL_TG_WAS_EMPTY;
1090
Tejun Heoc5cc2072013-05-14 13:52:38 -07001091 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1092
Tejun Heo73f0d492013-05-14 13:52:35 -07001093 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001094 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001095}
1096
Tejun Heo77216b02013-05-14 13:52:36 -07001097static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001098{
Tejun Heo73f0d492013-05-14 13:52:35 -07001099 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001100 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1101 struct bio *bio;
1102
Markus Elfringd609af32017-01-21 22:15:33 +01001103 bio = throtl_peek_queued(&sq->queued[READ]);
1104 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001105 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001106
Markus Elfringd609af32017-01-21 22:15:33 +01001107 bio = throtl_peek_queued(&sq->queued[WRITE]);
1108 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001109 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001110
1111 min_wait = min(read_wait, write_wait);
1112 disptime = jiffies + min_wait;
1113
Vivek Goyale43473b2010-09-15 17:06:35 -04001114 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001115 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001116 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001117 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001118
1119 /* see throtl_add_bio_tg() */
1120 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001121}
1122
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001123static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1124 struct throtl_grp *parent_tg, bool rw)
1125{
1126 if (throtl_slice_used(parent_tg, rw)) {
1127 throtl_start_new_slice_with_credit(parent_tg, rw,
1128 child_tg->slice_start[rw]);
1129 }
1130
1131}
1132
Tejun Heo77216b02013-05-14 13:52:36 -07001133static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001134{
Tejun Heo73f0d492013-05-14 13:52:35 -07001135 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001136 struct throtl_service_queue *parent_sq = sq->parent_sq;
1137 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001138 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001139 struct bio *bio;
1140
Tejun Heoc5cc2072013-05-14 13:52:38 -07001141 /*
1142 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1143 * from @tg may put its reference and @parent_sq might end up
1144 * getting released prematurely. Remember the tg to put and put it
1145 * after @bio is transferred to @parent_sq.
1146 */
1147 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001148 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001149
1150 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001151
1152 /*
1153 * If our parent is another tg, we just need to transfer @bio to
1154 * the parent using throtl_add_bio_tg(). If our parent is
1155 * @td->service_queue, @bio is ready to be issued. Put it on its
1156 * bio_lists[] and decrease total number queued. The caller is
1157 * responsible for issuing these bios.
1158 */
1159 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001160 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001161 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001162 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001163 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1164 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001165 BUG_ON(tg->td->nr_queued[rw] <= 0);
1166 tg->td->nr_queued[rw]--;
1167 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001168
Tejun Heo0f3457f2013-05-14 13:52:32 -07001169 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001170
Tejun Heoc5cc2072013-05-14 13:52:38 -07001171 if (tg_to_put)
1172 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001173}
1174
Tejun Heo77216b02013-05-14 13:52:36 -07001175static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001176{
Tejun Heo73f0d492013-05-14 13:52:35 -07001177 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001178 unsigned int nr_reads = 0, nr_writes = 0;
1179 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001180 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001181 struct bio *bio;
1182
1183 /* Try to dispatch 75% READS and 25% WRITES */
1184
Tejun Heoc5cc2072013-05-14 13:52:38 -07001185 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001186 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001187
Tejun Heo77216b02013-05-14 13:52:36 -07001188 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001189 nr_reads++;
1190
1191 if (nr_reads >= max_nr_reads)
1192 break;
1193 }
1194
Tejun Heoc5cc2072013-05-14 13:52:38 -07001195 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001196 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001197
Tejun Heo77216b02013-05-14 13:52:36 -07001198 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001199 nr_writes++;
1200
1201 if (nr_writes >= max_nr_writes)
1202 break;
1203 }
1204
1205 return nr_reads + nr_writes;
1206}
1207
Tejun Heo651930b2013-05-14 13:52:35 -07001208static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001209{
1210 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001211
1212 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001213 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1214 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001215
1216 if (!tg)
1217 break;
1218
1219 if (time_before(jiffies, tg->disptime))
1220 break;
1221
Tejun Heo77216b02013-05-14 13:52:36 -07001222 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001223
Tejun Heo77216b02013-05-14 13:52:36 -07001224 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001225
Tejun Heo73f0d492013-05-14 13:52:35 -07001226 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001227 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001228
1229 if (nr_disp >= throtl_quantum)
1230 break;
1231 }
1232
1233 return nr_disp;
1234}
1235
Shaohua Lic79892c2017-03-27 10:51:34 -07001236static bool throtl_can_upgrade(struct throtl_data *td,
1237 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001238/**
1239 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1240 * @arg: the throtl_service_queue being serviced
1241 *
1242 * This timer is armed when a child throtl_grp with active bio's become
1243 * pending and queued on the service_queue's pending_tree and expires when
1244 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001245 * dispatches bio's from the children throtl_grps to the parent
1246 * service_queue.
1247 *
1248 * If the parent's parent is another throtl_grp, dispatching is propagated
1249 * by either arming its pending_timer or repeating dispatch directly. If
1250 * the top-level service_tree is reached, throtl_data->dispatch_work is
1251 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001252 */
Tejun Heo69df0ab2013-05-14 13:52:36 -07001253static void throtl_pending_timer_fn(unsigned long arg)
1254{
1255 struct throtl_service_queue *sq = (void *)arg;
Tejun Heo2e48a532013-05-14 13:52:38 -07001256 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001257 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001258 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001259 struct throtl_service_queue *parent_sq;
1260 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001261 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001262
1263 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001264 if (throtl_can_upgrade(td, NULL))
1265 throtl_upgrade_state(td);
1266
Tejun Heo2e48a532013-05-14 13:52:38 -07001267again:
1268 parent_sq = sq->parent_sq;
1269 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001270
Tejun Heo7f52f982013-05-14 13:52:37 -07001271 while (true) {
1272 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001273 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1274 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001275
Tejun Heo7f52f982013-05-14 13:52:37 -07001276 ret = throtl_select_dispatch(sq);
1277 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001278 throtl_log(sq, "bios disp=%u", ret);
1279 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001280 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001281
Tejun Heo7f52f982013-05-14 13:52:37 -07001282 if (throtl_schedule_next_dispatch(sq, false))
1283 break;
1284
1285 /* this dispatch windows is still open, relax and repeat */
1286 spin_unlock_irq(q->queue_lock);
1287 cpu_relax();
1288 spin_lock_irq(q->queue_lock);
1289 }
Tejun Heo6a525602013-05-14 13:52:32 -07001290
Tejun Heo2e48a532013-05-14 13:52:38 -07001291 if (!dispatched)
1292 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001293
Tejun Heo2e48a532013-05-14 13:52:38 -07001294 if (parent_sq) {
1295 /* @parent_sq is another throl_grp, propagate dispatch */
1296 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1297 tg_update_disptime(tg);
1298 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1299 /* window is already open, repeat dispatching */
1300 sq = parent_sq;
1301 tg = sq_to_tg(sq);
1302 goto again;
1303 }
1304 }
1305 } else {
1306 /* reached the top-level, queue issueing */
1307 queue_work(kthrotld_workqueue, &td->dispatch_work);
1308 }
1309out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001310 spin_unlock_irq(q->queue_lock);
1311}
1312
1313/**
1314 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1315 * @work: work item being executed
1316 *
1317 * This function is queued for execution when bio's reach the bio_lists[]
1318 * of throtl_data->service_queue. Those bio's are ready and issued by this
1319 * function.
1320 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001321static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001322{
1323 struct throtl_data *td = container_of(work, struct throtl_data,
1324 dispatch_work);
1325 struct throtl_service_queue *td_sq = &td->service_queue;
1326 struct request_queue *q = td->queue;
1327 struct bio_list bio_list_on_stack;
1328 struct bio *bio;
1329 struct blk_plug plug;
1330 int rw;
1331
1332 bio_list_init(&bio_list_on_stack);
1333
1334 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001335 for (rw = READ; rw <= WRITE; rw++)
1336 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1337 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001338 spin_unlock_irq(q->queue_lock);
1339
Tejun Heo6e1a5702013-05-14 13:52:37 -07001340 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001341 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001342 while((bio = bio_list_pop(&bio_list_on_stack)))
1343 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001344 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001345 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001346}
1347
Tejun Heof95a04a2012-04-16 13:57:26 -07001348static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1349 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001350{
Tejun Heof95a04a2012-04-16 13:57:26 -07001351 struct throtl_grp *tg = pd_to_tg(pd);
1352 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001353
Shaohua Li2ab54922017-03-27 10:51:29 -07001354 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001355 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001356 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001357}
1358
Tejun Heof95a04a2012-04-16 13:57:26 -07001359static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1360 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001361{
Tejun Heof95a04a2012-04-16 13:57:26 -07001362 struct throtl_grp *tg = pd_to_tg(pd);
1363 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001364
Shaohua Li2ab54922017-03-27 10:51:29 -07001365 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001366 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001367 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001368}
1369
Tejun Heo2da8ca82013-12-05 12:28:04 -05001370static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001371{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001372 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1373 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001374 return 0;
1375}
1376
Tejun Heo2da8ca82013-12-05 12:28:04 -05001377static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001378{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001379 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1380 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001381 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001382}
1383
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001384static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001385{
Tejun Heo69948b02015-08-18 14:55:32 -07001386 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001387 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001388 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001389
Tejun Heofda6f272013-05-14 13:52:36 -07001390 throtl_log(&tg->service_queue,
1391 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001392 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1393 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001394
1395 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001396 * Update has_rules[] flags for the updated tg's subtree. A tg is
1397 * considered to have rules if either the tg itself or any of its
1398 * ancestors has rules. This identifies groups without any
1399 * restrictions in the whole hierarchy and allows them to bypass
1400 * blk-throttle.
1401 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001402 blkg_for_each_descendant_pre(blkg, pos_css,
1403 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001404 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1405 struct throtl_grp *parent_tg;
1406
1407 tg_update_has_rules(this_tg);
1408 /* ignore root/second level */
1409 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1410 !blkg->parent->parent)
1411 continue;
1412 parent_tg = blkg_to_tg(blkg->parent);
1413 /*
1414 * make sure all children has lower idle time threshold and
1415 * higher latency target
1416 */
1417 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1418 parent_tg->idletime_threshold);
1419 this_tg->latency_target = max(this_tg->latency_target,
1420 parent_tg->latency_target);
1421 }
Tejun Heo693e7512013-05-14 13:52:38 -07001422
1423 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001424 * We're already holding queue_lock and know @tg is valid. Let's
1425 * apply the new config directly.
1426 *
1427 * Restart the slices for both READ and WRITES. It might happen
1428 * that a group's limit are dropped suddenly and we don't want to
1429 * account recently dispatched IO with new low rate.
1430 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001431 throtl_start_new_slice(tg, 0);
1432 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001433
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001434 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001435 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001436 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001437 }
Tejun Heo69948b02015-08-18 14:55:32 -07001438}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001439
Tejun Heo69948b02015-08-18 14:55:32 -07001440static ssize_t tg_set_conf(struct kernfs_open_file *of,
1441 char *buf, size_t nbytes, loff_t off, bool is_u64)
1442{
1443 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1444 struct blkg_conf_ctx ctx;
1445 struct throtl_grp *tg;
1446 int ret;
1447 u64 v;
1448
1449 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1450 if (ret)
1451 return ret;
1452
1453 ret = -EINVAL;
1454 if (sscanf(ctx.body, "%llu", &v) != 1)
1455 goto out_finish;
1456 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001457 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001458
1459 tg = blkg_to_tg(ctx.blkg);
1460
1461 if (is_u64)
1462 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1463 else
1464 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1465
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001466 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001467 ret = 0;
1468out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001469 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001470 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001471}
1472
Tejun Heo451af502014-05-13 12:16:21 -04001473static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1474 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001475{
Tejun Heo451af502014-05-13 12:16:21 -04001476 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001477}
1478
Tejun Heo451af502014-05-13 12:16:21 -04001479static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1480 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001481{
Tejun Heo451af502014-05-13 12:16:21 -04001482 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001483}
1484
Tejun Heo880f50e2015-08-18 14:55:30 -07001485static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001486 {
1487 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001488 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001489 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001490 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001491 },
1492 {
1493 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001494 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001495 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001496 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001497 },
1498 {
1499 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001500 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001501 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001502 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001503 },
1504 {
1505 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001506 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001507 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001508 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001509 },
1510 {
1511 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001512 .private = (unsigned long)&blkcg_policy_throtl,
1513 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001514 },
1515 {
1516 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001517 .private = (unsigned long)&blkcg_policy_throtl,
1518 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001519 },
1520 { } /* terminate */
1521};
1522
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001523static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001524 int off)
1525{
1526 struct throtl_grp *tg = pd_to_tg(pd);
1527 const char *dname = blkg_dev_name(pd->blkg);
1528 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001529 u64 bps_dft;
1530 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001531 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001532 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001533
1534 if (!dname)
1535 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001536
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001537 if (off == LIMIT_LOW) {
1538 bps_dft = 0;
1539 iops_dft = 0;
1540 } else {
1541 bps_dft = U64_MAX;
1542 iops_dft = UINT_MAX;
1543 }
1544
1545 if (tg->bps_conf[READ][off] == bps_dft &&
1546 tg->bps_conf[WRITE][off] == bps_dft &&
1547 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001548 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001549 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001550 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001551 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001552 return 0;
1553
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001554 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001555 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001556 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001557 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001558 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001559 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001560 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001561 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001562 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001563 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001564 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001565 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001566 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001567 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001568 strcpy(idle_time, " idle=max");
1569 else
1570 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001571 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001572
Shaohua Li5b81fc32017-05-17 13:07:24 -07001573 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001574 strcpy(latency_time, " latency=max");
1575 else
1576 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001577 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001578 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001579
Shaohua Liec809912017-03-27 10:51:44 -07001580 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1581 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1582 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001583 return 0;
1584}
1585
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001586static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001587{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001588 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001589 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1590 return 0;
1591}
1592
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001593static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001594 char *buf, size_t nbytes, loff_t off)
1595{
1596 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1597 struct blkg_conf_ctx ctx;
1598 struct throtl_grp *tg;
1599 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001600 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001601 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001602 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001603 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001604
1605 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1606 if (ret)
1607 return ret;
1608
1609 tg = blkg_to_tg(ctx.blkg);
1610
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001611 v[0] = tg->bps_conf[READ][index];
1612 v[1] = tg->bps_conf[WRITE][index];
1613 v[2] = tg->iops_conf[READ][index];
1614 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001615
Shaohua Li5b81fc32017-05-17 13:07:24 -07001616 idle_time = tg->idletime_threshold_conf;
1617 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001618 while (true) {
1619 char tok[27]; /* wiops=18446744073709551616 */
1620 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001621 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001622 int len;
1623
1624 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1625 break;
1626 if (tok[0] == '\0')
1627 break;
1628 ctx.body += len;
1629
1630 ret = -EINVAL;
1631 p = tok;
1632 strsep(&p, "=");
1633 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1634 goto out_finish;
1635
1636 ret = -ERANGE;
1637 if (!val)
1638 goto out_finish;
1639
1640 ret = -EINVAL;
1641 if (!strcmp(tok, "rbps"))
1642 v[0] = val;
1643 else if (!strcmp(tok, "wbps"))
1644 v[1] = val;
1645 else if (!strcmp(tok, "riops"))
1646 v[2] = min_t(u64, val, UINT_MAX);
1647 else if (!strcmp(tok, "wiops"))
1648 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001649 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1650 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001651 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1652 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001653 else
1654 goto out_finish;
1655 }
1656
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001657 tg->bps_conf[READ][index] = v[0];
1658 tg->bps_conf[WRITE][index] = v[1];
1659 tg->iops_conf[READ][index] = v[2];
1660 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001661
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001662 if (index == LIMIT_MAX) {
1663 tg->bps[READ][index] = v[0];
1664 tg->bps[WRITE][index] = v[1];
1665 tg->iops[READ][index] = v[2];
1666 tg->iops[WRITE][index] = v[3];
1667 }
1668 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1669 tg->bps_conf[READ][LIMIT_MAX]);
1670 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1671 tg->bps_conf[WRITE][LIMIT_MAX]);
1672 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1673 tg->iops_conf[READ][LIMIT_MAX]);
1674 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1675 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001676 tg->idletime_threshold_conf = idle_time;
1677 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001678
Shaohua Lib4f428e2017-05-17 13:07:27 -07001679 /* force user to configure all settings for low limit */
1680 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1681 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1682 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1683 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1684 tg->bps[READ][LIMIT_LOW] = 0;
1685 tg->bps[WRITE][LIMIT_LOW] = 0;
1686 tg->iops[READ][LIMIT_LOW] = 0;
1687 tg->iops[WRITE][LIMIT_LOW] = 0;
1688 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1689 tg->latency_target = DFL_LATENCY_TARGET;
1690 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001691 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001692 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001693 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001694
1695 blk_throtl_update_limit_valid(tg->td);
1696 if (tg->td->limit_valid[LIMIT_LOW]) {
1697 if (index == LIMIT_LOW)
1698 tg->td->limit_index = LIMIT_LOW;
1699 } else
1700 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001701 tg_conf_updated(tg, index == LIMIT_LOW &&
1702 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001703 ret = 0;
1704out_finish:
1705 blkg_conf_finish(&ctx);
1706 return ret ?: nbytes;
1707}
1708
1709static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001710#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1711 {
1712 .name = "low",
1713 .flags = CFTYPE_NOT_ON_ROOT,
1714 .seq_show = tg_print_limit,
1715 .write = tg_set_limit,
1716 .private = LIMIT_LOW,
1717 },
1718#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001719 {
1720 .name = "max",
1721 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001722 .seq_show = tg_print_limit,
1723 .write = tg_set_limit,
1724 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001725 },
1726 { } /* terminate */
1727};
1728
Vivek Goyalda527772011-03-02 19:05:33 -05001729static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001730{
1731 struct throtl_data *td = q->td;
1732
Tejun Heo69df0ab2013-05-14 13:52:36 -07001733 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001734}
1735
Tejun Heo3c798392012-04-16 13:57:25 -07001736static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001737 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001738 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001739
Tejun Heo001bea72015-08-18 14:55:11 -07001740 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001741 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001742 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001743 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001744 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001745};
1746
Shaohua Li3f0abd82017-03-27 10:51:35 -07001747static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1748{
1749 unsigned long rtime = jiffies, wtime = jiffies;
1750
1751 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1752 rtime = tg->last_low_overflow_time[READ];
1753 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1754 wtime = tg->last_low_overflow_time[WRITE];
1755 return min(rtime, wtime);
1756}
1757
1758/* tg should not be an intermediate node */
1759static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1760{
1761 struct throtl_service_queue *parent_sq;
1762 struct throtl_grp *parent = tg;
1763 unsigned long ret = __tg_last_low_overflow_time(tg);
1764
1765 while (true) {
1766 parent_sq = parent->service_queue.parent_sq;
1767 parent = sq_to_tg(parent_sq);
1768 if (!parent)
1769 break;
1770
1771 /*
1772 * The parent doesn't have low limit, it always reaches low
1773 * limit. Its overflow time is useless for children
1774 */
1775 if (!parent->bps[READ][LIMIT_LOW] &&
1776 !parent->iops[READ][LIMIT_LOW] &&
1777 !parent->bps[WRITE][LIMIT_LOW] &&
1778 !parent->iops[WRITE][LIMIT_LOW])
1779 continue;
1780 if (time_after(__tg_last_low_overflow_time(parent), ret))
1781 ret = __tg_last_low_overflow_time(parent);
1782 }
1783 return ret;
1784}
1785
Shaohua Li9e234ee2017-03-27 10:51:41 -07001786static bool throtl_tg_is_idle(struct throtl_grp *tg)
1787{
1788 /*
1789 * cgroup is idle if:
1790 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001791 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001792 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001793 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001794 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001795 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001796 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001797
Shaohua Lib4f428e2017-05-17 13:07:27 -07001798 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1799 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1800 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1801 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1802 tg->avg_idletime > tg->idletime_threshold ||
1803 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001804 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001805 throtl_log(&tg->service_queue,
1806 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1807 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1808 tg->bio_cnt, ret, tg->td->scale);
1809 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001810}
1811
Shaohua Lic79892c2017-03-27 10:51:34 -07001812static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1813{
1814 struct throtl_service_queue *sq = &tg->service_queue;
1815 bool read_limit, write_limit;
1816
1817 /*
1818 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1819 * reaches), it's ok to upgrade to next limit
1820 */
1821 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1822 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1823 if (!read_limit && !write_limit)
1824 return true;
1825 if (read_limit && sq->nr_queued[READ] &&
1826 (!write_limit || sq->nr_queued[WRITE]))
1827 return true;
1828 if (write_limit && sq->nr_queued[WRITE] &&
1829 (!read_limit || sq->nr_queued[READ]))
1830 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001831
1832 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001833 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1834 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001835 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001836 return false;
1837}
1838
1839static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1840{
1841 while (true) {
1842 if (throtl_tg_can_upgrade(tg))
1843 return true;
1844 tg = sq_to_tg(tg->service_queue.parent_sq);
1845 if (!tg || !tg_to_blkg(tg)->parent)
1846 return false;
1847 }
1848 return false;
1849}
1850
1851static bool throtl_can_upgrade(struct throtl_data *td,
1852 struct throtl_grp *this_tg)
1853{
1854 struct cgroup_subsys_state *pos_css;
1855 struct blkcg_gq *blkg;
1856
1857 if (td->limit_index != LIMIT_LOW)
1858 return false;
1859
Shaohua Li297e3d82017-03-27 10:51:37 -07001860 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001861 return false;
1862
Shaohua Lic79892c2017-03-27 10:51:34 -07001863 rcu_read_lock();
1864 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1865 struct throtl_grp *tg = blkg_to_tg(blkg);
1866
1867 if (tg == this_tg)
1868 continue;
1869 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1870 continue;
1871 if (!throtl_hierarchy_can_upgrade(tg)) {
1872 rcu_read_unlock();
1873 return false;
1874 }
1875 }
1876 rcu_read_unlock();
1877 return true;
1878}
1879
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001880static void throtl_upgrade_check(struct throtl_grp *tg)
1881{
1882 unsigned long now = jiffies;
1883
1884 if (tg->td->limit_index != LIMIT_LOW)
1885 return;
1886
1887 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1888 return;
1889
1890 tg->last_check_time = now;
1891
1892 if (!time_after_eq(now,
1893 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1894 return;
1895
1896 if (throtl_can_upgrade(tg->td, NULL))
1897 throtl_upgrade_state(tg->td);
1898}
1899
Shaohua Lic79892c2017-03-27 10:51:34 -07001900static void throtl_upgrade_state(struct throtl_data *td)
1901{
1902 struct cgroup_subsys_state *pos_css;
1903 struct blkcg_gq *blkg;
1904
Shaohua Li4cff7292017-05-17 13:07:25 -07001905 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001906 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001907 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001908 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001909 rcu_read_lock();
1910 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1911 struct throtl_grp *tg = blkg_to_tg(blkg);
1912 struct throtl_service_queue *sq = &tg->service_queue;
1913
1914 tg->disptime = jiffies - 1;
1915 throtl_select_dispatch(sq);
1916 throtl_schedule_next_dispatch(sq, false);
1917 }
1918 rcu_read_unlock();
1919 throtl_select_dispatch(&td->service_queue);
1920 throtl_schedule_next_dispatch(&td->service_queue, false);
1921 queue_work(kthrotld_workqueue, &td->dispatch_work);
1922}
1923
Shaohua Li3f0abd82017-03-27 10:51:35 -07001924static void throtl_downgrade_state(struct throtl_data *td, int new)
1925{
Shaohua Li7394e312017-03-27 10:51:40 -07001926 td->scale /= 2;
1927
Shaohua Li4cff7292017-05-17 13:07:25 -07001928 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001929 if (td->scale) {
1930 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1931 return;
1932 }
1933
Shaohua Li3f0abd82017-03-27 10:51:35 -07001934 td->limit_index = new;
1935 td->low_downgrade_time = jiffies;
1936}
1937
1938static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1939{
1940 struct throtl_data *td = tg->td;
1941 unsigned long now = jiffies;
1942
1943 /*
1944 * If cgroup is below low limit, consider downgrade and throttle other
1945 * cgroups
1946 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001947 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1948 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001949 td->throtl_slice) &&
1950 (!throtl_tg_is_idle(tg) ||
1951 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001952 return true;
1953 return false;
1954}
1955
1956static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1957{
1958 while (true) {
1959 if (!throtl_tg_can_downgrade(tg))
1960 return false;
1961 tg = sq_to_tg(tg->service_queue.parent_sq);
1962 if (!tg || !tg_to_blkg(tg)->parent)
1963 break;
1964 }
1965 return true;
1966}
1967
1968static void throtl_downgrade_check(struct throtl_grp *tg)
1969{
1970 uint64_t bps;
1971 unsigned int iops;
1972 unsigned long elapsed_time;
1973 unsigned long now = jiffies;
1974
1975 if (tg->td->limit_index != LIMIT_MAX ||
1976 !tg->td->limit_valid[LIMIT_LOW])
1977 return;
1978 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1979 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001980 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001981 return;
1982
1983 elapsed_time = now - tg->last_check_time;
1984 tg->last_check_time = now;
1985
Shaohua Li297e3d82017-03-27 10:51:37 -07001986 if (time_before(now, tg_last_low_overflow_time(tg) +
1987 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001988 return;
1989
1990 if (tg->bps[READ][LIMIT_LOW]) {
1991 bps = tg->last_bytes_disp[READ] * HZ;
1992 do_div(bps, elapsed_time);
1993 if (bps >= tg->bps[READ][LIMIT_LOW])
1994 tg->last_low_overflow_time[READ] = now;
1995 }
1996
1997 if (tg->bps[WRITE][LIMIT_LOW]) {
1998 bps = tg->last_bytes_disp[WRITE] * HZ;
1999 do_div(bps, elapsed_time);
2000 if (bps >= tg->bps[WRITE][LIMIT_LOW])
2001 tg->last_low_overflow_time[WRITE] = now;
2002 }
2003
2004 if (tg->iops[READ][LIMIT_LOW]) {
2005 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
2006 if (iops >= tg->iops[READ][LIMIT_LOW])
2007 tg->last_low_overflow_time[READ] = now;
2008 }
2009
2010 if (tg->iops[WRITE][LIMIT_LOW]) {
2011 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2012 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2013 tg->last_low_overflow_time[WRITE] = now;
2014 }
2015
2016 /*
2017 * If cgroup is below low limit, consider downgrade and throttle other
2018 * cgroups
2019 */
2020 if (throtl_hierarchy_can_downgrade(tg))
2021 throtl_downgrade_state(tg->td, LIMIT_LOW);
2022
2023 tg->last_bytes_disp[READ] = 0;
2024 tg->last_bytes_disp[WRITE] = 0;
2025 tg->last_io_disp[READ] = 0;
2026 tg->last_io_disp[WRITE] = 0;
2027}
2028
Shaohua Li9e234ee2017-03-27 10:51:41 -07002029static void blk_throtl_update_idletime(struct throtl_grp *tg)
2030{
2031 unsigned long now = ktime_get_ns() >> 10;
2032 unsigned long last_finish_time = tg->last_finish_time;
2033
2034 if (now <= last_finish_time || last_finish_time == 0 ||
2035 last_finish_time == tg->checked_last_finish_time)
2036 return;
2037
2038 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2039 tg->checked_last_finish_time = last_finish_time;
2040}
2041
Shaohua Lib9147dd2017-03-27 15:19:42 -07002042#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2043static void throtl_update_latency_buckets(struct throtl_data *td)
2044{
2045 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
2046 int i, cpu;
2047 unsigned long last_latency = 0;
2048 unsigned long latency;
2049
2050 if (!blk_queue_nonrot(td->queue))
2051 return;
2052 if (time_before(jiffies, td->last_calculate_time + HZ))
2053 return;
2054 td->last_calculate_time = jiffies;
2055
2056 memset(avg_latency, 0, sizeof(avg_latency));
2057 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2058 struct latency_bucket *tmp = &td->tmp_buckets[i];
2059
2060 for_each_possible_cpu(cpu) {
2061 struct latency_bucket *bucket;
2062
2063 /* this isn't race free, but ok in practice */
2064 bucket = per_cpu_ptr(td->latency_buckets, cpu);
2065 tmp->total_latency += bucket[i].total_latency;
2066 tmp->samples += bucket[i].samples;
2067 bucket[i].total_latency = 0;
2068 bucket[i].samples = 0;
2069 }
2070
2071 if (tmp->samples >= 32) {
2072 int samples = tmp->samples;
2073
2074 latency = tmp->total_latency;
2075
2076 tmp->total_latency = 0;
2077 tmp->samples = 0;
2078 latency /= samples;
2079 if (latency == 0)
2080 continue;
2081 avg_latency[i].latency = latency;
2082 }
2083 }
2084
2085 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2086 if (!avg_latency[i].latency) {
2087 if (td->avg_buckets[i].latency < last_latency)
2088 td->avg_buckets[i].latency = last_latency;
2089 continue;
2090 }
2091
2092 if (!td->avg_buckets[i].valid)
2093 latency = avg_latency[i].latency;
2094 else
2095 latency = (td->avg_buckets[i].latency * 7 +
2096 avg_latency[i].latency) >> 3;
2097
2098 td->avg_buckets[i].latency = max(latency, last_latency);
2099 td->avg_buckets[i].valid = true;
2100 last_latency = td->avg_buckets[i].latency;
2101 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002102
2103 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2104 throtl_log(&td->service_queue,
2105 "Latency bucket %d: latency=%ld, valid=%d", i,
2106 td->avg_buckets[i].latency, td->avg_buckets[i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002107}
2108#else
2109static inline void throtl_update_latency_buckets(struct throtl_data *td)
2110{
2111}
2112#endif
2113
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002114static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2115{
2116#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2117 int ret;
2118
2119 ret = bio_associate_current(bio);
2120 if (ret == 0 || ret == -EBUSY)
2121 bio->bi_cg_private = tg;
2122 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
2123#else
2124 bio_associate_current(bio);
2125#endif
2126}
2127
Tejun Heoae118892015-08-18 14:55:20 -07002128bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2129 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002130{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002131 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002132 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002133 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002134 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002135 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002136 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002137
Tejun Heoae118892015-08-18 14:55:20 -07002138 WARN_ON_ONCE(!rcu_read_lock_held());
2139
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002140 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002141 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002142 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002143
2144 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002145
Shaohua Lib9147dd2017-03-27 15:19:42 -07002146 throtl_update_latency_buckets(td);
2147
Tejun Heoc9589f02015-08-18 14:55:19 -07002148 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002149 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002150
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002151 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002152 blk_throtl_update_idletime(tg);
2153
Tejun Heo73f0d492013-05-14 13:52:35 -07002154 sq = &tg->service_queue;
2155
Shaohua Lic79892c2017-03-27 10:51:34 -07002156again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002157 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002158 if (tg->last_low_overflow_time[rw] == 0)
2159 tg->last_low_overflow_time[rw] = jiffies;
2160 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002161 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002162 /* throtl is FIFO - if bios are already queued, should queue */
2163 if (sq->nr_queued[rw])
2164 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002165
Tejun Heo9e660ac2013-05-14 13:52:38 -07002166 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002167 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002168 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002169 if (throtl_can_upgrade(td, tg)) {
2170 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002171 goto again;
2172 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002173 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002174 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002175
2176 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002177 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002178
2179 /*
2180 * We need to trim slice even when bios are not being queued
2181 * otherwise it might happen that a bio is not queued for
2182 * a long time and slice keeps on extending and trim is not
2183 * called for a long time. Now if limits are reduced suddenly
2184 * we take into account all the IO dispatched so far at new
2185 * low rate and * newly queued IO gets a really long dispatch
2186 * time.
2187 *
2188 * So keep on trimming slice even if bio is not queued.
2189 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002190 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002191
2192 /*
2193 * @bio passed through this layer without being throttled.
2194 * Climb up the ladder. If we''re already at the top, it
2195 * can be executed directly.
2196 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002197 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002198 sq = sq->parent_sq;
2199 tg = sq_to_tg(sq);
2200 if (!tg)
2201 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002202 }
2203
Tejun Heo9e660ac2013-05-14 13:52:38 -07002204 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002205 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2206 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002207 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2208 tg_bps_limit(tg, rw),
2209 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002210 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002211
Shaohua Li3f0abd82017-03-27 10:51:35 -07002212 tg->last_low_overflow_time[rw] = jiffies;
2213
Shaohua Lib9147dd2017-03-27 15:19:42 -07002214 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002215 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002216 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002217
Tejun Heo7f52f982013-05-14 13:52:37 -07002218 /*
2219 * Update @tg's dispatch time and force schedule dispatch if @tg
2220 * was empty before @bio. The forced scheduling isn't likely to
2221 * cause undue delay as @bio is likely to be dispatched directly if
2222 * its @tg's disptime is not in the future.
2223 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002224 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002225 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002226 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002227 }
2228
Tejun Heobc16a4f2011-10-19 14:33:01 +02002229out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002230 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002231out:
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002232 /*
2233 * As multiple blk-throtls may stack in the same issue path, we
2234 * don't want bios to leave with the flag set. Clear the flag if
2235 * being issued.
2236 */
2237 if (!throttled)
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002238 bio_clear_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002239
2240#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2241 if (throttled || !td->track_bio_latency)
2242 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2243#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002244 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002245}
2246
Shaohua Li9e234ee2017-03-27 10:51:41 -07002247#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002248static void throtl_track_latency(struct throtl_data *td, sector_t size,
2249 int op, unsigned long time)
2250{
2251 struct latency_bucket *latency;
2252 int index;
2253
2254 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2255 !blk_queue_nonrot(td->queue))
2256 return;
2257
2258 index = request_bucket_index(size);
2259
2260 latency = get_cpu_ptr(td->latency_buckets);
2261 latency[index].total_latency += time;
2262 latency[index].samples++;
2263 put_cpu_ptr(td->latency_buckets);
2264}
2265
2266void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2267{
2268 struct request_queue *q = rq->q;
2269 struct throtl_data *td = q->td;
2270
2271 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2272 req_op(rq), time_ns >> 10);
2273}
2274
Shaohua Li9e234ee2017-03-27 10:51:41 -07002275void blk_throtl_bio_endio(struct bio *bio)
2276{
2277 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002278 u64 finish_time_ns;
2279 unsigned long finish_time;
2280 unsigned long start_time;
2281 unsigned long lat;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002282
2283 tg = bio->bi_cg_private;
2284 if (!tg)
2285 return;
2286 bio->bi_cg_private = NULL;
2287
Shaohua Lib9147dd2017-03-27 15:19:42 -07002288 finish_time_ns = ktime_get_ns();
2289 tg->last_finish_time = finish_time_ns >> 10;
2290
2291 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2292 finish_time = __blk_stat_time(finish_time_ns) >> 10;
Shaohua Li53696b82017-03-27 15:19:43 -07002293 if (!start_time || finish_time <= start_time)
2294 return;
2295
2296 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002297 /* this is only for bio based driver */
Shaohua Li53696b82017-03-27 15:19:43 -07002298 if (!(bio->bi_issue_stat.stat & SKIP_LATENCY))
Shaohua Lib9147dd2017-03-27 15:19:42 -07002299 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2300 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002301
Shaohua Li6679a902017-06-06 12:40:43 -07002302 if (tg->latency_target && lat >= tg->td->filtered_latency) {
Shaohua Li53696b82017-03-27 15:19:43 -07002303 int bucket;
2304 unsigned int threshold;
2305
2306 bucket = request_bucket_index(
2307 blk_stat_size(&bio->bi_issue_stat));
2308 threshold = tg->td->avg_buckets[bucket].latency +
2309 tg->latency_target;
2310 if (lat > threshold)
2311 tg->bad_bio_cnt++;
2312 /*
2313 * Not race free, could get wrong count, which means cgroups
2314 * will be throttled
2315 */
2316 tg->bio_cnt++;
2317 }
2318
2319 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2320 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2321 tg->bio_cnt /= 2;
2322 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002323 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002324}
2325#endif
2326
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002327/*
2328 * Dispatch all bios from all children tg's queued on @parent_sq. On
2329 * return, @parent_sq is guaranteed to not have any active children tg's
2330 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2331 */
2332static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2333{
2334 struct throtl_grp *tg;
2335
2336 while ((tg = throtl_rb_first(parent_sq))) {
2337 struct throtl_service_queue *sq = &tg->service_queue;
2338 struct bio *bio;
2339
2340 throtl_dequeue_tg(tg);
2341
Tejun Heoc5cc2072013-05-14 13:52:38 -07002342 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002343 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002344 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002345 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2346 }
2347}
2348
Tejun Heoc9a929d2011-10-19 14:42:16 +02002349/**
2350 * blk_throtl_drain - drain throttled bios
2351 * @q: request_queue to drain throttled bios for
2352 *
2353 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2354 */
2355void blk_throtl_drain(struct request_queue *q)
2356 __releases(q->queue_lock) __acquires(q->queue_lock)
2357{
2358 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002359 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002360 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002361 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002362 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002363
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002364 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002365 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002366
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002367 /*
2368 * Drain each tg while doing post-order walk on the blkg tree, so
2369 * that all bios are propagated to td->service_queue. It'd be
2370 * better to walk service_queue tree directly but blkg walk is
2371 * easier.
2372 */
Tejun Heo492eb212013-08-08 20:11:25 -04002373 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002374 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002375
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002376 /* finally, transfer bios from top-level tg's into the td */
2377 tg_drain_bios(&td->service_queue);
2378
2379 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002380 spin_unlock_irq(q->queue_lock);
2381
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002382 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002383 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002384 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2385 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002386 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002387
2388 spin_lock_irq(q->queue_lock);
2389}
2390
Vivek Goyale43473b2010-09-15 17:06:35 -04002391int blk_throtl_init(struct request_queue *q)
2392{
2393 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002394 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002395
2396 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2397 if (!td)
2398 return -ENOMEM;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002399 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2400 LATENCY_BUCKET_SIZE, __alignof__(u64));
2401 if (!td->latency_buckets) {
2402 kfree(td);
2403 return -ENOMEM;
2404 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002405
Tejun Heo69df0ab2013-05-14 13:52:36 -07002406 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002407 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002408
Tejun Heocd1604f2012-03-05 13:15:06 -08002409 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002410 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002411
Shaohua Li9f626e32017-03-27 10:51:30 -07002412 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002413 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002414 td->low_upgrade_time = jiffies;
2415 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002416
Tejun Heoa2b16932012-04-13 13:11:33 -07002417 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002418 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002419 if (ret) {
2420 free_percpu(td->latency_buckets);
Vivek Goyal29b12582011-05-19 15:38:24 -04002421 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002422 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002423 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002424}
2425
2426void blk_throtl_exit(struct request_queue *q)
2427{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002428 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002429 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002430 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002431 free_percpu(q->td->latency_buckets);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002432 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002433}
2434
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002435void blk_throtl_register_queue(struct request_queue *q)
2436{
2437 struct throtl_data *td;
Shaohua Li6679a902017-06-06 12:40:43 -07002438 int i;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002439
2440 td = q->td;
2441 BUG_ON(!td);
2442
Shaohua Li6679a902017-06-06 12:40:43 -07002443 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002444 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Li6679a902017-06-06 12:40:43 -07002445 td->filtered_latency = LATENCY_FILTERED_SSD;
2446 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002447 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Li6679a902017-06-06 12:40:43 -07002448 td->filtered_latency = LATENCY_FILTERED_HD;
2449 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2450 td->avg_buckets[i].latency = DFL_HD_BASELINE_LATENCY;
2451 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002452#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2453 /* if no low limit, use previous default */
2454 td->throtl_slice = DFL_THROTL_SLICE_HD;
2455#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002456
Shaohua Lib9147dd2017-03-27 15:19:42 -07002457 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2458 if (!td->track_bio_latency)
2459 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002460}
2461
Shaohua Li297e3d82017-03-27 10:51:37 -07002462#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2463ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2464{
2465 if (!q->td)
2466 return -EINVAL;
2467 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2468}
2469
2470ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2471 const char *page, size_t count)
2472{
2473 unsigned long v;
2474 unsigned long t;
2475
2476 if (!q->td)
2477 return -EINVAL;
2478 if (kstrtoul(page, 10, &v))
2479 return -EINVAL;
2480 t = msecs_to_jiffies(v);
2481 if (t == 0 || t > MAX_THROTL_SLICE)
2482 return -EINVAL;
2483 q->td->throtl_slice = t;
2484 return count;
2485}
2486#endif
2487
Vivek Goyale43473b2010-09-15 17:06:35 -04002488static int __init throtl_init(void)
2489{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002490 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2491 if (!kthrotld_workqueue)
2492 panic("Failed to create kthrotld\n");
2493
Tejun Heo3c798392012-04-16 13:57:25 -07002494 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002495}
2496
2497module_init(throtl_init);