blob: 6a4c4c493dd57cf9f2ef807eae142abf9a10be48 [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)) { \
Shaohua Li35fe6d72017-07-12 11:49:56 -0700376 blk_add_cgroup_trace_msg(__td->queue, \
377 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
Tejun Heofda6f272013-05-14 13:52:36 -0700378 } else { \
379 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
380 } \
381} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400382
Tejun Heoc5cc2072013-05-14 13:52:38 -0700383static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
384{
385 INIT_LIST_HEAD(&qn->node);
386 bio_list_init(&qn->bios);
387 qn->tg = tg;
388}
389
390/**
391 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
392 * @bio: bio being added
393 * @qn: qnode to add bio to
394 * @queued: the service_queue->queued[] list @qn belongs to
395 *
396 * Add @bio to @qn and put @qn on @queued if it's not already on.
397 * @qn->tg's reference count is bumped when @qn is activated. See the
398 * comment on top of throtl_qnode definition for details.
399 */
400static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
401 struct list_head *queued)
402{
403 bio_list_add(&qn->bios, bio);
404 if (list_empty(&qn->node)) {
405 list_add_tail(&qn->node, queued);
406 blkg_get(tg_to_blkg(qn->tg));
407 }
408}
409
410/**
411 * throtl_peek_queued - peek the first bio on a qnode list
412 * @queued: the qnode list to peek
413 */
414static struct bio *throtl_peek_queued(struct list_head *queued)
415{
416 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
417 struct bio *bio;
418
419 if (list_empty(queued))
420 return NULL;
421
422 bio = bio_list_peek(&qn->bios);
423 WARN_ON_ONCE(!bio);
424 return bio;
425}
426
427/**
428 * throtl_pop_queued - pop the first bio form a qnode list
429 * @queued: the qnode list to pop a bio from
430 * @tg_to_put: optional out argument for throtl_grp to put
431 *
432 * Pop the first bio from the qnode list @queued. After popping, the first
433 * qnode is removed from @queued if empty or moved to the end of @queued so
434 * that the popping order is round-robin.
435 *
436 * When the first qnode is removed, its associated throtl_grp should be put
437 * too. If @tg_to_put is NULL, this function automatically puts it;
438 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
439 * responsible for putting it.
440 */
441static struct bio *throtl_pop_queued(struct list_head *queued,
442 struct throtl_grp **tg_to_put)
443{
444 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
445 struct bio *bio;
446
447 if (list_empty(queued))
448 return NULL;
449
450 bio = bio_list_pop(&qn->bios);
451 WARN_ON_ONCE(!bio);
452
453 if (bio_list_empty(&qn->bios)) {
454 list_del_init(&qn->node);
455 if (tg_to_put)
456 *tg_to_put = qn->tg;
457 else
458 blkg_put(tg_to_blkg(qn->tg));
459 } else {
460 list_move_tail(&qn->node, queued);
461 }
462
463 return bio;
464}
465
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700466/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700467static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700468{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700469 INIT_LIST_HEAD(&sq->queued[0]);
470 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700471 sq->pending_tree = RB_ROOT;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700472 setup_timer(&sq->pending_timer, throtl_pending_timer_fn,
473 (unsigned long)sq);
474}
475
Tejun Heo001bea72015-08-18 14:55:11 -0700476static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
477{
Tejun Heo4fb72032015-08-18 14:55:12 -0700478 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700479 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700480
481 tg = kzalloc_node(sizeof(*tg), gfp, node);
482 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700483 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700484
Tejun Heob2ce2642015-08-18 14:55:13 -0700485 throtl_service_queue_init(&tg->service_queue);
486
487 for (rw = READ; rw <= WRITE; rw++) {
488 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
489 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
490 }
491
492 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700493 tg->bps[READ][LIMIT_MAX] = U64_MAX;
494 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
495 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
496 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700497 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
498 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
499 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
500 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
501 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700502
Shaohua Liec809912017-03-27 10:51:44 -0700503 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700504 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700505 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
506 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700507
Tejun Heo4fb72032015-08-18 14:55:12 -0700508 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700509}
510
Tejun Heoa9520cd2015-08-18 14:55:14 -0700511static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400512{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700513 struct throtl_grp *tg = pd_to_tg(pd);
514 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700515 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700516 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800517
Tejun Heo91381252013-05-14 13:52:38 -0700518 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400519 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700520 * behavior where limits on a given throtl_grp are applied to the
521 * whole subtree rather than just the group itself. e.g. If 16M
522 * read_bps limit is set on the root group, the whole system can't
523 * exceed 16M for the device.
524 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400525 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700526 * behavior is retained where all throtl_grps are treated as if
527 * they're all separate root groups right below throtl_data.
528 * Limits of a group don't interact with limits of other groups
529 * regardless of the position of the group in the hierarchy.
530 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700531 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400532 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700533 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700534 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700535}
536
Tejun Heo693e7512013-05-14 13:52:38 -0700537/*
538 * Set has_rules[] if @tg or any of its parents have limits configured.
539 * This doesn't require walking up to the top of the hierarchy as the
540 * parent's has_rules[] is guaranteed to be correct.
541 */
542static void tg_update_has_rules(struct throtl_grp *tg)
543{
544 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700545 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700546 int rw;
547
548 for (rw = READ; rw <= WRITE; rw++)
549 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700550 (td->limit_valid[td->limit_index] &&
551 (tg_bps_limit(tg, rw) != U64_MAX ||
552 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700553}
554
Tejun Heoa9520cd2015-08-18 14:55:14 -0700555static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700556{
Shaohua Liaec24242017-03-27 10:51:39 -0700557 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700558 /*
559 * We don't want new groups to escape the limits of its ancestors.
560 * Update has_rules[] after a new group is brought online.
561 */
Shaohua Liaec24242017-03-27 10:51:39 -0700562 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700563}
564
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700565static void blk_throtl_update_limit_valid(struct throtl_data *td)
566{
567 struct cgroup_subsys_state *pos_css;
568 struct blkcg_gq *blkg;
569 bool low_valid = false;
570
571 rcu_read_lock();
572 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
573 struct throtl_grp *tg = blkg_to_tg(blkg);
574
575 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
576 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
577 low_valid = true;
578 }
579 rcu_read_unlock();
580
581 td->limit_valid[LIMIT_LOW] = low_valid;
582}
583
Shaohua Lic79892c2017-03-27 10:51:34 -0700584static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700585static void throtl_pd_offline(struct blkg_policy_data *pd)
586{
587 struct throtl_grp *tg = pd_to_tg(pd);
588
589 tg->bps[READ][LIMIT_LOW] = 0;
590 tg->bps[WRITE][LIMIT_LOW] = 0;
591 tg->iops[READ][LIMIT_LOW] = 0;
592 tg->iops[WRITE][LIMIT_LOW] = 0;
593
594 blk_throtl_update_limit_valid(tg->td);
595
Shaohua Lic79892c2017-03-27 10:51:34 -0700596 if (!tg->td->limit_valid[tg->td->limit_index])
597 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700598}
599
Tejun Heo001bea72015-08-18 14:55:11 -0700600static void throtl_pd_free(struct blkg_policy_data *pd)
601{
Tejun Heo4fb72032015-08-18 14:55:12 -0700602 struct throtl_grp *tg = pd_to_tg(pd);
603
Tejun Heob2ce2642015-08-18 14:55:13 -0700604 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700605 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700606}
607
Tejun Heo0049af72013-05-14 13:52:33 -0700608static struct throtl_grp *
609throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400610{
611 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700612 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400613 return NULL;
614
Tejun Heo0049af72013-05-14 13:52:33 -0700615 if (!parent_sq->first_pending)
616 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400617
Tejun Heo0049af72013-05-14 13:52:33 -0700618 if (parent_sq->first_pending)
619 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400620
621 return NULL;
622}
623
624static void rb_erase_init(struct rb_node *n, struct rb_root *root)
625{
626 rb_erase(n, root);
627 RB_CLEAR_NODE(n);
628}
629
Tejun Heo0049af72013-05-14 13:52:33 -0700630static void throtl_rb_erase(struct rb_node *n,
631 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400632{
Tejun Heo0049af72013-05-14 13:52:33 -0700633 if (parent_sq->first_pending == n)
634 parent_sq->first_pending = NULL;
635 rb_erase_init(n, &parent_sq->pending_tree);
636 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400637}
638
Tejun Heo0049af72013-05-14 13:52:33 -0700639static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400640{
641 struct throtl_grp *tg;
642
Tejun Heo0049af72013-05-14 13:52:33 -0700643 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400644 if (!tg)
645 return;
646
Tejun Heo0049af72013-05-14 13:52:33 -0700647 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400648}
649
Tejun Heo77216b02013-05-14 13:52:36 -0700650static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400651{
Tejun Heo77216b02013-05-14 13:52:36 -0700652 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700653 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400654 struct rb_node *parent = NULL;
655 struct throtl_grp *__tg;
656 unsigned long key = tg->disptime;
657 int left = 1;
658
659 while (*node != NULL) {
660 parent = *node;
661 __tg = rb_entry_tg(parent);
662
663 if (time_before(key, __tg->disptime))
664 node = &parent->rb_left;
665 else {
666 node = &parent->rb_right;
667 left = 0;
668 }
669 }
670
671 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700672 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400673
674 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700675 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400676}
677
Tejun Heo77216b02013-05-14 13:52:36 -0700678static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400679{
Tejun Heo77216b02013-05-14 13:52:36 -0700680 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700681 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700682 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400683}
684
Tejun Heo77216b02013-05-14 13:52:36 -0700685static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400686{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700687 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700688 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400689}
690
Tejun Heo77216b02013-05-14 13:52:36 -0700691static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400692{
Tejun Heo77216b02013-05-14 13:52:36 -0700693 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700694 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400695}
696
Tejun Heo77216b02013-05-14 13:52:36 -0700697static void throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400698{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700699 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700700 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400701}
702
Tejun Heoa9131a22013-05-14 13:52:31 -0700703/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700704static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
705 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700706{
Joseph Qia41b8162017-06-07 11:36:14 +0800707 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700708
709 /*
710 * Since we are adjusting the throttle limit dynamically, the sleep
711 * time calculated according to previous limit might be invalid. It's
712 * possible the cgroup sleep time is very long and no other cgroups
713 * have IO running so notify the limit changes. Make sure the cgroup
714 * doesn't sleep too long to avoid the missed notification.
715 */
716 if (time_after(expires, max_expire))
717 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700718 mod_timer(&sq->pending_timer, expires);
719 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
720 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700721}
722
Tejun Heo7f52f982013-05-14 13:52:37 -0700723/**
724 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
725 * @sq: the service_queue to schedule dispatch for
726 * @force: force scheduling
727 *
728 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
729 * dispatch time of the first pending child. Returns %true if either timer
730 * is armed or there's no pending child left. %false if the current
731 * dispatch window is still open and the caller should continue
732 * dispatching.
733 *
734 * If @force is %true, the dispatch timer is always scheduled and this
735 * function is guaranteed to return %true. This is to be used when the
736 * caller can't dispatch itself and needs to invoke pending_timer
737 * unconditionally. Note that forced scheduling is likely to induce short
738 * delay before dispatch starts even if @sq->first_pending_disptime is not
739 * in the future and thus shouldn't be used in hot paths.
740 */
741static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
742 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400743{
Tejun Heo6a525602013-05-14 13:52:32 -0700744 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700745 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700746 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400747
Tejun Heoc9e03322013-05-14 13:52:32 -0700748 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400749
Tejun Heo69df0ab2013-05-14 13:52:36 -0700750 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700751 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700752 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700753 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700754 }
755
Tejun Heo7f52f982013-05-14 13:52:37 -0700756 /* tell the caller to continue dispatching */
757 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400758}
759
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700760static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
761 bool rw, unsigned long start)
762{
763 tg->bytes_disp[rw] = 0;
764 tg->io_disp[rw] = 0;
765
766 /*
767 * Previous slice has expired. We must have trimmed it after last
768 * bio dispatch. That means since start of last slice, we never used
769 * that bandwidth. Do try to make use of that bandwidth while giving
770 * credit.
771 */
772 if (time_after_eq(start, tg->slice_start[rw]))
773 tg->slice_start[rw] = start;
774
Shaohua Li297e3d82017-03-27 10:51:37 -0700775 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700776 throtl_log(&tg->service_queue,
777 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
778 rw == READ ? 'R' : 'W', tg->slice_start[rw],
779 tg->slice_end[rw], jiffies);
780}
781
Tejun Heo0f3457f2013-05-14 13:52:32 -0700782static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400783{
784 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400785 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400786 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700787 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700788 throtl_log(&tg->service_queue,
789 "[%c] new slice start=%lu end=%lu jiffies=%lu",
790 rw == READ ? 'R' : 'W', tg->slice_start[rw],
791 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400792}
793
Tejun Heo0f3457f2013-05-14 13:52:32 -0700794static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
795 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100796{
Shaohua Li297e3d82017-03-27 10:51:37 -0700797 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100798}
799
Tejun Heo0f3457f2013-05-14 13:52:32 -0700800static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
801 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400802{
Shaohua Li297e3d82017-03-27 10:51:37 -0700803 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700804 throtl_log(&tg->service_queue,
805 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
806 rw == READ ? 'R' : 'W', tg->slice_start[rw],
807 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400808}
809
810/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700811static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400812{
813 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200814 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400815
816 return 1;
817}
818
819/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700820static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400821{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200822 unsigned long nr_slices, time_elapsed, io_trim;
823 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400824
825 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
826
827 /*
828 * If bps are unlimited (-1), then time slice don't get
829 * renewed. Don't try to trim the slice if slice is used. A new
830 * slice will start when appropriate.
831 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700832 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400833 return;
834
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100835 /*
836 * A bio has been dispatched. Also adjust slice_end. It might happen
837 * that initially cgroup limit was very low resulting in high
838 * slice_end, but later limit was bumped up and bio was dispached
839 * sooner, then we need to reduce slice_end. A high bogus slice_end
840 * is bad because it does not allow new slice to start.
841 */
842
Shaohua Li297e3d82017-03-27 10:51:37 -0700843 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100844
Vivek Goyale43473b2010-09-15 17:06:35 -0400845 time_elapsed = jiffies - tg->slice_start[rw];
846
Shaohua Li297e3d82017-03-27 10:51:37 -0700847 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400848
849 if (!nr_slices)
850 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700851 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200852 do_div(tmp, HZ);
853 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400854
Shaohua Li297e3d82017-03-27 10:51:37 -0700855 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
856 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400857
Vivek Goyal8e89d132010-09-15 17:06:37 -0400858 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400859 return;
860
861 if (tg->bytes_disp[rw] >= bytes_trim)
862 tg->bytes_disp[rw] -= bytes_trim;
863 else
864 tg->bytes_disp[rw] = 0;
865
Vivek Goyal8e89d132010-09-15 17:06:37 -0400866 if (tg->io_disp[rw] >= io_trim)
867 tg->io_disp[rw] -= io_trim;
868 else
869 tg->io_disp[rw] = 0;
870
Shaohua Li297e3d82017-03-27 10:51:37 -0700871 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400872
Tejun Heofda6f272013-05-14 13:52:36 -0700873 throtl_log(&tg->service_queue,
874 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
875 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
876 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400877}
878
Tejun Heo0f3457f2013-05-14 13:52:32 -0700879static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
880 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400881{
882 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400883 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400884 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200885 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400886
Vivek Goyal8e89d132010-09-15 17:06:37 -0400887 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400888
Vivek Goyal8e89d132010-09-15 17:06:37 -0400889 /* Slice has just started. Consider one slice interval */
890 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700891 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400892
Shaohua Li297e3d82017-03-27 10:51:37 -0700893 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400894
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200895 /*
896 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
897 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
898 * will allow dispatch after 1 second and after that slice should
899 * have been trimmed.
900 */
901
Shaohua Li9f626e32017-03-27 10:51:30 -0700902 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200903 do_div(tmp, HZ);
904
905 if (tmp > UINT_MAX)
906 io_allowed = UINT_MAX;
907 else
908 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400909
910 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400911 if (wait)
912 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200913 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400914 }
915
Vivek Goyal8e89d132010-09-15 17:06:37 -0400916 /* Calc approx time to dispatch */
Shaohua Li9f626e32017-03-27 10:51:30 -0700917 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400918
919 if (jiffy_wait > jiffy_elapsed)
920 jiffy_wait = jiffy_wait - jiffy_elapsed;
921 else
922 jiffy_wait = 1;
923
924 if (wait)
925 *wait = jiffy_wait;
926 return 0;
927}
928
Tejun Heo0f3457f2013-05-14 13:52:32 -0700929static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
930 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400931{
932 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200933 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400934 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400935
936 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
937
938 /* Slice has just started. Consider one slice interval */
939 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700940 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400941
Shaohua Li297e3d82017-03-27 10:51:37 -0700942 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400943
Shaohua Li9f626e32017-03-27 10:51:30 -0700944 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200945 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200946 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400947
Kent Overstreet4f024f32013-10-11 15:44:27 -0700948 if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400949 if (wait)
950 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200951 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400952 }
953
954 /* Calc approx time to dispatch */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700955 extra_bytes = tg->bytes_disp[rw] + bio->bi_iter.bi_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700956 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400957
958 if (!jiffy_wait)
959 jiffy_wait = 1;
960
961 /*
962 * This wait time is without taking into consideration the rounding
963 * up we did. Add that time also.
964 */
965 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400966 if (wait)
967 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400968 return 0;
969}
Vivek Goyale43473b2010-09-15 17:06:35 -0400970
Vivek Goyal8e89d132010-09-15 17:06:37 -0400971/*
972 * Returns whether one can dispatch a bio or not. Also returns approx number
973 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
974 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700975static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
976 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400977{
978 bool rw = bio_data_dir(bio);
979 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
980
981 /*
982 * Currently whole state machine of group depends on first bio
983 * queued in the group bio list. So one should not be calling
984 * this function with a different bio if there are other bios
985 * queued.
986 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700987 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700988 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400989
990 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -0700991 if (tg_bps_limit(tg, rw) == U64_MAX &&
992 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400993 if (wait)
994 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200995 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400996 }
997
998 /*
999 * If previous slice expired, start a new one otherwise renew/extend
1000 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -06001001 * long since now. New slice is started only for empty throttle group.
1002 * If there is queued bio, that means there should be an active
1003 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -04001004 */
Vivek Goyal164c80e2016-09-19 15:12:41 -06001005 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001006 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001007 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001008 if (time_before(tg->slice_end[rw],
1009 jiffies + tg->td->throtl_slice))
1010 throtl_extend_slice(tg, rw,
1011 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001012 }
1013
Tejun Heo0f3457f2013-05-14 13:52:32 -07001014 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1015 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001016 if (wait)
1017 *wait = 0;
1018 return 1;
1019 }
1020
1021 max_wait = max(bps_wait, iops_wait);
1022
1023 if (wait)
1024 *wait = max_wait;
1025
1026 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001027 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001028
1029 return 0;
1030}
1031
1032static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1033{
1034 bool rw = bio_data_dir(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001035
1036 /* Charge the bio to the group */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001037 tg->bytes_disp[rw] += bio->bi_iter.bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001038 tg->io_disp[rw]++;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001039 tg->last_bytes_disp[rw] += bio->bi_iter.bi_size;
1040 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001041
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001042 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001043 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001044 * more than once as a throttled bio will go through blk-throtl the
1045 * second time when it eventually gets issued. Set it when a bio
1046 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001047 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001048 if (!bio_flagged(bio, BIO_THROTTLED))
1049 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001050}
1051
Tejun Heoc5cc2072013-05-14 13:52:38 -07001052/**
1053 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1054 * @bio: bio to add
1055 * @qn: qnode to use
1056 * @tg: the target throtl_grp
1057 *
1058 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1059 * tg->qnode_on_self[] is used.
1060 */
1061static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1062 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001063{
Tejun Heo73f0d492013-05-14 13:52:35 -07001064 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001065 bool rw = bio_data_dir(bio);
1066
Tejun Heoc5cc2072013-05-14 13:52:38 -07001067 if (!qn)
1068 qn = &tg->qnode_on_self[rw];
1069
Tejun Heo0e9f4162013-05-14 13:52:35 -07001070 /*
1071 * If @tg doesn't currently have any bios queued in the same
1072 * direction, queueing @bio can change when @tg should be
1073 * dispatched. Mark that @tg was empty. This is automatically
1074 * cleaered on the next tg_update_disptime().
1075 */
1076 if (!sq->nr_queued[rw])
1077 tg->flags |= THROTL_TG_WAS_EMPTY;
1078
Tejun Heoc5cc2072013-05-14 13:52:38 -07001079 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1080
Tejun Heo73f0d492013-05-14 13:52:35 -07001081 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001082 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001083}
1084
Tejun Heo77216b02013-05-14 13:52:36 -07001085static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001086{
Tejun Heo73f0d492013-05-14 13:52:35 -07001087 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001088 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1089 struct bio *bio;
1090
Markus Elfringd609af32017-01-21 22:15:33 +01001091 bio = throtl_peek_queued(&sq->queued[READ]);
1092 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001093 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001094
Markus Elfringd609af32017-01-21 22:15:33 +01001095 bio = throtl_peek_queued(&sq->queued[WRITE]);
1096 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001097 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001098
1099 min_wait = min(read_wait, write_wait);
1100 disptime = jiffies + min_wait;
1101
Vivek Goyale43473b2010-09-15 17:06:35 -04001102 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001103 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001104 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001105 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001106
1107 /* see throtl_add_bio_tg() */
1108 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001109}
1110
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001111static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1112 struct throtl_grp *parent_tg, bool rw)
1113{
1114 if (throtl_slice_used(parent_tg, rw)) {
1115 throtl_start_new_slice_with_credit(parent_tg, rw,
1116 child_tg->slice_start[rw]);
1117 }
1118
1119}
1120
Tejun Heo77216b02013-05-14 13:52:36 -07001121static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001122{
Tejun Heo73f0d492013-05-14 13:52:35 -07001123 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001124 struct throtl_service_queue *parent_sq = sq->parent_sq;
1125 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001126 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001127 struct bio *bio;
1128
Tejun Heoc5cc2072013-05-14 13:52:38 -07001129 /*
1130 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1131 * from @tg may put its reference and @parent_sq might end up
1132 * getting released prematurely. Remember the tg to put and put it
1133 * after @bio is transferred to @parent_sq.
1134 */
1135 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001136 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001137
1138 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001139
1140 /*
1141 * If our parent is another tg, we just need to transfer @bio to
1142 * the parent using throtl_add_bio_tg(). If our parent is
1143 * @td->service_queue, @bio is ready to be issued. Put it on its
1144 * bio_lists[] and decrease total number queued. The caller is
1145 * responsible for issuing these bios.
1146 */
1147 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001148 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001149 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001150 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001151 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1152 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001153 BUG_ON(tg->td->nr_queued[rw] <= 0);
1154 tg->td->nr_queued[rw]--;
1155 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001156
Tejun Heo0f3457f2013-05-14 13:52:32 -07001157 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001158
Tejun Heoc5cc2072013-05-14 13:52:38 -07001159 if (tg_to_put)
1160 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001161}
1162
Tejun Heo77216b02013-05-14 13:52:36 -07001163static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001164{
Tejun Heo73f0d492013-05-14 13:52:35 -07001165 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001166 unsigned int nr_reads = 0, nr_writes = 0;
1167 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001168 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001169 struct bio *bio;
1170
1171 /* Try to dispatch 75% READS and 25% WRITES */
1172
Tejun Heoc5cc2072013-05-14 13:52:38 -07001173 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001174 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001175
Tejun Heo77216b02013-05-14 13:52:36 -07001176 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001177 nr_reads++;
1178
1179 if (nr_reads >= max_nr_reads)
1180 break;
1181 }
1182
Tejun Heoc5cc2072013-05-14 13:52:38 -07001183 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001184 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001185
Tejun Heo77216b02013-05-14 13:52:36 -07001186 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001187 nr_writes++;
1188
1189 if (nr_writes >= max_nr_writes)
1190 break;
1191 }
1192
1193 return nr_reads + nr_writes;
1194}
1195
Tejun Heo651930b2013-05-14 13:52:35 -07001196static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001197{
1198 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001199
1200 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001201 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1202 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001203
1204 if (!tg)
1205 break;
1206
1207 if (time_before(jiffies, tg->disptime))
1208 break;
1209
Tejun Heo77216b02013-05-14 13:52:36 -07001210 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001211
Tejun Heo77216b02013-05-14 13:52:36 -07001212 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001213
Tejun Heo73f0d492013-05-14 13:52:35 -07001214 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001215 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001216
1217 if (nr_disp >= throtl_quantum)
1218 break;
1219 }
1220
1221 return nr_disp;
1222}
1223
Shaohua Lic79892c2017-03-27 10:51:34 -07001224static bool throtl_can_upgrade(struct throtl_data *td,
1225 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001226/**
1227 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1228 * @arg: the throtl_service_queue being serviced
1229 *
1230 * This timer is armed when a child throtl_grp with active bio's become
1231 * pending and queued on the service_queue's pending_tree and expires when
1232 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001233 * dispatches bio's from the children throtl_grps to the parent
1234 * service_queue.
1235 *
1236 * If the parent's parent is another throtl_grp, dispatching is propagated
1237 * by either arming its pending_timer or repeating dispatch directly. If
1238 * the top-level service_tree is reached, throtl_data->dispatch_work is
1239 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001240 */
Tejun Heo69df0ab2013-05-14 13:52:36 -07001241static void throtl_pending_timer_fn(unsigned long arg)
1242{
1243 struct throtl_service_queue *sq = (void *)arg;
Tejun Heo2e48a532013-05-14 13:52:38 -07001244 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001245 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001246 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001247 struct throtl_service_queue *parent_sq;
1248 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001249 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001250
1251 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001252 if (throtl_can_upgrade(td, NULL))
1253 throtl_upgrade_state(td);
1254
Tejun Heo2e48a532013-05-14 13:52:38 -07001255again:
1256 parent_sq = sq->parent_sq;
1257 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001258
Tejun Heo7f52f982013-05-14 13:52:37 -07001259 while (true) {
1260 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001261 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1262 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001263
Tejun Heo7f52f982013-05-14 13:52:37 -07001264 ret = throtl_select_dispatch(sq);
1265 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001266 throtl_log(sq, "bios disp=%u", ret);
1267 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001268 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001269
Tejun Heo7f52f982013-05-14 13:52:37 -07001270 if (throtl_schedule_next_dispatch(sq, false))
1271 break;
1272
1273 /* this dispatch windows is still open, relax and repeat */
1274 spin_unlock_irq(q->queue_lock);
1275 cpu_relax();
1276 spin_lock_irq(q->queue_lock);
1277 }
Tejun Heo6a525602013-05-14 13:52:32 -07001278
Tejun Heo2e48a532013-05-14 13:52:38 -07001279 if (!dispatched)
1280 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001281
Tejun Heo2e48a532013-05-14 13:52:38 -07001282 if (parent_sq) {
1283 /* @parent_sq is another throl_grp, propagate dispatch */
1284 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1285 tg_update_disptime(tg);
1286 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1287 /* window is already open, repeat dispatching */
1288 sq = parent_sq;
1289 tg = sq_to_tg(sq);
1290 goto again;
1291 }
1292 }
1293 } else {
1294 /* reached the top-level, queue issueing */
1295 queue_work(kthrotld_workqueue, &td->dispatch_work);
1296 }
1297out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001298 spin_unlock_irq(q->queue_lock);
1299}
1300
1301/**
1302 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1303 * @work: work item being executed
1304 *
1305 * This function is queued for execution when bio's reach the bio_lists[]
1306 * of throtl_data->service_queue. Those bio's are ready and issued by this
1307 * function.
1308 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001309static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001310{
1311 struct throtl_data *td = container_of(work, struct throtl_data,
1312 dispatch_work);
1313 struct throtl_service_queue *td_sq = &td->service_queue;
1314 struct request_queue *q = td->queue;
1315 struct bio_list bio_list_on_stack;
1316 struct bio *bio;
1317 struct blk_plug plug;
1318 int rw;
1319
1320 bio_list_init(&bio_list_on_stack);
1321
1322 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001323 for (rw = READ; rw <= WRITE; rw++)
1324 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1325 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001326 spin_unlock_irq(q->queue_lock);
1327
Tejun Heo6e1a5702013-05-14 13:52:37 -07001328 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001329 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001330 while((bio = bio_list_pop(&bio_list_on_stack)))
1331 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001332 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001333 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001334}
1335
Tejun Heof95a04a2012-04-16 13:57:26 -07001336static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1337 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001338{
Tejun Heof95a04a2012-04-16 13:57:26 -07001339 struct throtl_grp *tg = pd_to_tg(pd);
1340 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001341
Shaohua Li2ab54922017-03-27 10:51:29 -07001342 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001343 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001344 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001345}
1346
Tejun Heof95a04a2012-04-16 13:57:26 -07001347static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1348 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001349{
Tejun Heof95a04a2012-04-16 13:57:26 -07001350 struct throtl_grp *tg = pd_to_tg(pd);
1351 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001352
Shaohua Li2ab54922017-03-27 10:51:29 -07001353 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001354 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001355 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001356}
1357
Tejun Heo2da8ca82013-12-05 12:28:04 -05001358static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001359{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001360 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1361 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001362 return 0;
1363}
1364
Tejun Heo2da8ca82013-12-05 12:28:04 -05001365static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001366{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001367 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1368 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001369 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001370}
1371
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001372static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001373{
Tejun Heo69948b02015-08-18 14:55:32 -07001374 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001375 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001376 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001377
Tejun Heofda6f272013-05-14 13:52:36 -07001378 throtl_log(&tg->service_queue,
1379 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001380 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1381 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001382
1383 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001384 * Update has_rules[] flags for the updated tg's subtree. A tg is
1385 * considered to have rules if either the tg itself or any of its
1386 * ancestors has rules. This identifies groups without any
1387 * restrictions in the whole hierarchy and allows them to bypass
1388 * blk-throttle.
1389 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001390 blkg_for_each_descendant_pre(blkg, pos_css,
1391 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001392 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1393 struct throtl_grp *parent_tg;
1394
1395 tg_update_has_rules(this_tg);
1396 /* ignore root/second level */
1397 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1398 !blkg->parent->parent)
1399 continue;
1400 parent_tg = blkg_to_tg(blkg->parent);
1401 /*
1402 * make sure all children has lower idle time threshold and
1403 * higher latency target
1404 */
1405 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1406 parent_tg->idletime_threshold);
1407 this_tg->latency_target = max(this_tg->latency_target,
1408 parent_tg->latency_target);
1409 }
Tejun Heo693e7512013-05-14 13:52:38 -07001410
1411 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001412 * We're already holding queue_lock and know @tg is valid. Let's
1413 * apply the new config directly.
1414 *
1415 * Restart the slices for both READ and WRITES. It might happen
1416 * that a group's limit are dropped suddenly and we don't want to
1417 * account recently dispatched IO with new low rate.
1418 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001419 throtl_start_new_slice(tg, 0);
1420 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001421
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001422 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001423 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001424 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001425 }
Tejun Heo69948b02015-08-18 14:55:32 -07001426}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001427
Tejun Heo69948b02015-08-18 14:55:32 -07001428static ssize_t tg_set_conf(struct kernfs_open_file *of,
1429 char *buf, size_t nbytes, loff_t off, bool is_u64)
1430{
1431 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1432 struct blkg_conf_ctx ctx;
1433 struct throtl_grp *tg;
1434 int ret;
1435 u64 v;
1436
1437 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1438 if (ret)
1439 return ret;
1440
1441 ret = -EINVAL;
1442 if (sscanf(ctx.body, "%llu", &v) != 1)
1443 goto out_finish;
1444 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001445 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001446
1447 tg = blkg_to_tg(ctx.blkg);
1448
1449 if (is_u64)
1450 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1451 else
1452 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1453
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001454 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001455 ret = 0;
1456out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001457 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001458 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001459}
1460
Tejun Heo451af502014-05-13 12:16:21 -04001461static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1462 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001463{
Tejun Heo451af502014-05-13 12:16:21 -04001464 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001465}
1466
Tejun Heo451af502014-05-13 12:16:21 -04001467static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1468 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001469{
Tejun Heo451af502014-05-13 12:16:21 -04001470 return tg_set_conf(of, buf, nbytes, off, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001471}
1472
Tejun Heo880f50e2015-08-18 14:55:30 -07001473static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001474 {
1475 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001476 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001477 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001478 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001479 },
1480 {
1481 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001482 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001483 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001484 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001485 },
1486 {
1487 .name = "throttle.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001488 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001489 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001490 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001491 },
1492 {
1493 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001494 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001495 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001496 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001497 },
1498 {
1499 .name = "throttle.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001500 .private = (unsigned long)&blkcg_policy_throtl,
1501 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001502 },
1503 {
1504 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001505 .private = (unsigned long)&blkcg_policy_throtl,
1506 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001507 },
1508 { } /* terminate */
1509};
1510
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001511static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001512 int off)
1513{
1514 struct throtl_grp *tg = pd_to_tg(pd);
1515 const char *dname = blkg_dev_name(pd->blkg);
1516 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001517 u64 bps_dft;
1518 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001519 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001520 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001521
1522 if (!dname)
1523 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001524
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001525 if (off == LIMIT_LOW) {
1526 bps_dft = 0;
1527 iops_dft = 0;
1528 } else {
1529 bps_dft = U64_MAX;
1530 iops_dft = UINT_MAX;
1531 }
1532
1533 if (tg->bps_conf[READ][off] == bps_dft &&
1534 tg->bps_conf[WRITE][off] == bps_dft &&
1535 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001536 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001537 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001538 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001539 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001540 return 0;
1541
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001542 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001543 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001544 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001545 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001546 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001547 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001548 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001549 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001550 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001551 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001552 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001553 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001554 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001555 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001556 strcpy(idle_time, " idle=max");
1557 else
1558 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001559 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001560
Shaohua Li5b81fc32017-05-17 13:07:24 -07001561 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001562 strcpy(latency_time, " latency=max");
1563 else
1564 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001565 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001566 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001567
Shaohua Liec809912017-03-27 10:51:44 -07001568 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1569 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1570 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001571 return 0;
1572}
1573
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001574static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001575{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001576 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001577 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1578 return 0;
1579}
1580
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001581static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001582 char *buf, size_t nbytes, loff_t off)
1583{
1584 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1585 struct blkg_conf_ctx ctx;
1586 struct throtl_grp *tg;
1587 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001588 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001589 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001590 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001591 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001592
1593 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1594 if (ret)
1595 return ret;
1596
1597 tg = blkg_to_tg(ctx.blkg);
1598
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001599 v[0] = tg->bps_conf[READ][index];
1600 v[1] = tg->bps_conf[WRITE][index];
1601 v[2] = tg->iops_conf[READ][index];
1602 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001603
Shaohua Li5b81fc32017-05-17 13:07:24 -07001604 idle_time = tg->idletime_threshold_conf;
1605 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001606 while (true) {
1607 char tok[27]; /* wiops=18446744073709551616 */
1608 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001609 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001610 int len;
1611
1612 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1613 break;
1614 if (tok[0] == '\0')
1615 break;
1616 ctx.body += len;
1617
1618 ret = -EINVAL;
1619 p = tok;
1620 strsep(&p, "=");
1621 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1622 goto out_finish;
1623
1624 ret = -ERANGE;
1625 if (!val)
1626 goto out_finish;
1627
1628 ret = -EINVAL;
1629 if (!strcmp(tok, "rbps"))
1630 v[0] = val;
1631 else if (!strcmp(tok, "wbps"))
1632 v[1] = val;
1633 else if (!strcmp(tok, "riops"))
1634 v[2] = min_t(u64, val, UINT_MAX);
1635 else if (!strcmp(tok, "wiops"))
1636 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001637 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1638 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001639 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1640 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001641 else
1642 goto out_finish;
1643 }
1644
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001645 tg->bps_conf[READ][index] = v[0];
1646 tg->bps_conf[WRITE][index] = v[1];
1647 tg->iops_conf[READ][index] = v[2];
1648 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001649
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001650 if (index == LIMIT_MAX) {
1651 tg->bps[READ][index] = v[0];
1652 tg->bps[WRITE][index] = v[1];
1653 tg->iops[READ][index] = v[2];
1654 tg->iops[WRITE][index] = v[3];
1655 }
1656 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1657 tg->bps_conf[READ][LIMIT_MAX]);
1658 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1659 tg->bps_conf[WRITE][LIMIT_MAX]);
1660 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1661 tg->iops_conf[READ][LIMIT_MAX]);
1662 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1663 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001664 tg->idletime_threshold_conf = idle_time;
1665 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001666
Shaohua Lib4f428e2017-05-17 13:07:27 -07001667 /* force user to configure all settings for low limit */
1668 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1669 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1670 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1671 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1672 tg->bps[READ][LIMIT_LOW] = 0;
1673 tg->bps[WRITE][LIMIT_LOW] = 0;
1674 tg->iops[READ][LIMIT_LOW] = 0;
1675 tg->iops[WRITE][LIMIT_LOW] = 0;
1676 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1677 tg->latency_target = DFL_LATENCY_TARGET;
1678 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001679 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001680 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001681 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001682
1683 blk_throtl_update_limit_valid(tg->td);
1684 if (tg->td->limit_valid[LIMIT_LOW]) {
1685 if (index == LIMIT_LOW)
1686 tg->td->limit_index = LIMIT_LOW;
1687 } else
1688 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001689 tg_conf_updated(tg, index == LIMIT_LOW &&
1690 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001691 ret = 0;
1692out_finish:
1693 blkg_conf_finish(&ctx);
1694 return ret ?: nbytes;
1695}
1696
1697static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001698#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1699 {
1700 .name = "low",
1701 .flags = CFTYPE_NOT_ON_ROOT,
1702 .seq_show = tg_print_limit,
1703 .write = tg_set_limit,
1704 .private = LIMIT_LOW,
1705 },
1706#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001707 {
1708 .name = "max",
1709 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001710 .seq_show = tg_print_limit,
1711 .write = tg_set_limit,
1712 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001713 },
1714 { } /* terminate */
1715};
1716
Vivek Goyalda527772011-03-02 19:05:33 -05001717static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001718{
1719 struct throtl_data *td = q->td;
1720
Tejun Heo69df0ab2013-05-14 13:52:36 -07001721 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001722}
1723
Tejun Heo3c798392012-04-16 13:57:25 -07001724static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001725 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001726 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001727
Tejun Heo001bea72015-08-18 14:55:11 -07001728 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001729 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001730 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001731 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001732 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001733};
1734
Shaohua Li3f0abd82017-03-27 10:51:35 -07001735static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1736{
1737 unsigned long rtime = jiffies, wtime = jiffies;
1738
1739 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1740 rtime = tg->last_low_overflow_time[READ];
1741 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1742 wtime = tg->last_low_overflow_time[WRITE];
1743 return min(rtime, wtime);
1744}
1745
1746/* tg should not be an intermediate node */
1747static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1748{
1749 struct throtl_service_queue *parent_sq;
1750 struct throtl_grp *parent = tg;
1751 unsigned long ret = __tg_last_low_overflow_time(tg);
1752
1753 while (true) {
1754 parent_sq = parent->service_queue.parent_sq;
1755 parent = sq_to_tg(parent_sq);
1756 if (!parent)
1757 break;
1758
1759 /*
1760 * The parent doesn't have low limit, it always reaches low
1761 * limit. Its overflow time is useless for children
1762 */
1763 if (!parent->bps[READ][LIMIT_LOW] &&
1764 !parent->iops[READ][LIMIT_LOW] &&
1765 !parent->bps[WRITE][LIMIT_LOW] &&
1766 !parent->iops[WRITE][LIMIT_LOW])
1767 continue;
1768 if (time_after(__tg_last_low_overflow_time(parent), ret))
1769 ret = __tg_last_low_overflow_time(parent);
1770 }
1771 return ret;
1772}
1773
Shaohua Li9e234ee2017-03-27 10:51:41 -07001774static bool throtl_tg_is_idle(struct throtl_grp *tg)
1775{
1776 /*
1777 * cgroup is idle if:
1778 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001779 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001780 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001781 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001782 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001783 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001784 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001785
Shaohua Lib4f428e2017-05-17 13:07:27 -07001786 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1787 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1788 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1789 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1790 tg->avg_idletime > tg->idletime_threshold ||
1791 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001792 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001793 throtl_log(&tg->service_queue,
1794 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1795 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1796 tg->bio_cnt, ret, tg->td->scale);
1797 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001798}
1799
Shaohua Lic79892c2017-03-27 10:51:34 -07001800static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1801{
1802 struct throtl_service_queue *sq = &tg->service_queue;
1803 bool read_limit, write_limit;
1804
1805 /*
1806 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1807 * reaches), it's ok to upgrade to next limit
1808 */
1809 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1810 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1811 if (!read_limit && !write_limit)
1812 return true;
1813 if (read_limit && sq->nr_queued[READ] &&
1814 (!write_limit || sq->nr_queued[WRITE]))
1815 return true;
1816 if (write_limit && sq->nr_queued[WRITE] &&
1817 (!read_limit || sq->nr_queued[READ]))
1818 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001819
1820 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001821 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1822 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001823 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001824 return false;
1825}
1826
1827static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1828{
1829 while (true) {
1830 if (throtl_tg_can_upgrade(tg))
1831 return true;
1832 tg = sq_to_tg(tg->service_queue.parent_sq);
1833 if (!tg || !tg_to_blkg(tg)->parent)
1834 return false;
1835 }
1836 return false;
1837}
1838
1839static bool throtl_can_upgrade(struct throtl_data *td,
1840 struct throtl_grp *this_tg)
1841{
1842 struct cgroup_subsys_state *pos_css;
1843 struct blkcg_gq *blkg;
1844
1845 if (td->limit_index != LIMIT_LOW)
1846 return false;
1847
Shaohua Li297e3d82017-03-27 10:51:37 -07001848 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001849 return false;
1850
Shaohua Lic79892c2017-03-27 10:51:34 -07001851 rcu_read_lock();
1852 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1853 struct throtl_grp *tg = blkg_to_tg(blkg);
1854
1855 if (tg == this_tg)
1856 continue;
1857 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1858 continue;
1859 if (!throtl_hierarchy_can_upgrade(tg)) {
1860 rcu_read_unlock();
1861 return false;
1862 }
1863 }
1864 rcu_read_unlock();
1865 return true;
1866}
1867
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001868static void throtl_upgrade_check(struct throtl_grp *tg)
1869{
1870 unsigned long now = jiffies;
1871
1872 if (tg->td->limit_index != LIMIT_LOW)
1873 return;
1874
1875 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1876 return;
1877
1878 tg->last_check_time = now;
1879
1880 if (!time_after_eq(now,
1881 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1882 return;
1883
1884 if (throtl_can_upgrade(tg->td, NULL))
1885 throtl_upgrade_state(tg->td);
1886}
1887
Shaohua Lic79892c2017-03-27 10:51:34 -07001888static void throtl_upgrade_state(struct throtl_data *td)
1889{
1890 struct cgroup_subsys_state *pos_css;
1891 struct blkcg_gq *blkg;
1892
Shaohua Li4cff7292017-05-17 13:07:25 -07001893 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001894 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001895 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001896 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001897 rcu_read_lock();
1898 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1899 struct throtl_grp *tg = blkg_to_tg(blkg);
1900 struct throtl_service_queue *sq = &tg->service_queue;
1901
1902 tg->disptime = jiffies - 1;
1903 throtl_select_dispatch(sq);
1904 throtl_schedule_next_dispatch(sq, false);
1905 }
1906 rcu_read_unlock();
1907 throtl_select_dispatch(&td->service_queue);
1908 throtl_schedule_next_dispatch(&td->service_queue, false);
1909 queue_work(kthrotld_workqueue, &td->dispatch_work);
1910}
1911
Shaohua Li3f0abd82017-03-27 10:51:35 -07001912static void throtl_downgrade_state(struct throtl_data *td, int new)
1913{
Shaohua Li7394e312017-03-27 10:51:40 -07001914 td->scale /= 2;
1915
Shaohua Li4cff7292017-05-17 13:07:25 -07001916 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001917 if (td->scale) {
1918 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1919 return;
1920 }
1921
Shaohua Li3f0abd82017-03-27 10:51:35 -07001922 td->limit_index = new;
1923 td->low_downgrade_time = jiffies;
1924}
1925
1926static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1927{
1928 struct throtl_data *td = tg->td;
1929 unsigned long now = jiffies;
1930
1931 /*
1932 * If cgroup is below low limit, consider downgrade and throttle other
1933 * cgroups
1934 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001935 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1936 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001937 td->throtl_slice) &&
1938 (!throtl_tg_is_idle(tg) ||
1939 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001940 return true;
1941 return false;
1942}
1943
1944static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1945{
1946 while (true) {
1947 if (!throtl_tg_can_downgrade(tg))
1948 return false;
1949 tg = sq_to_tg(tg->service_queue.parent_sq);
1950 if (!tg || !tg_to_blkg(tg)->parent)
1951 break;
1952 }
1953 return true;
1954}
1955
1956static void throtl_downgrade_check(struct throtl_grp *tg)
1957{
1958 uint64_t bps;
1959 unsigned int iops;
1960 unsigned long elapsed_time;
1961 unsigned long now = jiffies;
1962
1963 if (tg->td->limit_index != LIMIT_MAX ||
1964 !tg->td->limit_valid[LIMIT_LOW])
1965 return;
1966 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1967 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001968 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001969 return;
1970
1971 elapsed_time = now - tg->last_check_time;
1972 tg->last_check_time = now;
1973
Shaohua Li297e3d82017-03-27 10:51:37 -07001974 if (time_before(now, tg_last_low_overflow_time(tg) +
1975 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001976 return;
1977
1978 if (tg->bps[READ][LIMIT_LOW]) {
1979 bps = tg->last_bytes_disp[READ] * HZ;
1980 do_div(bps, elapsed_time);
1981 if (bps >= tg->bps[READ][LIMIT_LOW])
1982 tg->last_low_overflow_time[READ] = now;
1983 }
1984
1985 if (tg->bps[WRITE][LIMIT_LOW]) {
1986 bps = tg->last_bytes_disp[WRITE] * HZ;
1987 do_div(bps, elapsed_time);
1988 if (bps >= tg->bps[WRITE][LIMIT_LOW])
1989 tg->last_low_overflow_time[WRITE] = now;
1990 }
1991
1992 if (tg->iops[READ][LIMIT_LOW]) {
1993 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
1994 if (iops >= tg->iops[READ][LIMIT_LOW])
1995 tg->last_low_overflow_time[READ] = now;
1996 }
1997
1998 if (tg->iops[WRITE][LIMIT_LOW]) {
1999 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2000 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2001 tg->last_low_overflow_time[WRITE] = now;
2002 }
2003
2004 /*
2005 * If cgroup is below low limit, consider downgrade and throttle other
2006 * cgroups
2007 */
2008 if (throtl_hierarchy_can_downgrade(tg))
2009 throtl_downgrade_state(tg->td, LIMIT_LOW);
2010
2011 tg->last_bytes_disp[READ] = 0;
2012 tg->last_bytes_disp[WRITE] = 0;
2013 tg->last_io_disp[READ] = 0;
2014 tg->last_io_disp[WRITE] = 0;
2015}
2016
Shaohua Li9e234ee2017-03-27 10:51:41 -07002017static void blk_throtl_update_idletime(struct throtl_grp *tg)
2018{
2019 unsigned long now = ktime_get_ns() >> 10;
2020 unsigned long last_finish_time = tg->last_finish_time;
2021
2022 if (now <= last_finish_time || last_finish_time == 0 ||
2023 last_finish_time == tg->checked_last_finish_time)
2024 return;
2025
2026 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2027 tg->checked_last_finish_time = last_finish_time;
2028}
2029
Shaohua Lib9147dd2017-03-27 15:19:42 -07002030#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2031static void throtl_update_latency_buckets(struct throtl_data *td)
2032{
2033 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
2034 int i, cpu;
2035 unsigned long last_latency = 0;
2036 unsigned long latency;
2037
2038 if (!blk_queue_nonrot(td->queue))
2039 return;
2040 if (time_before(jiffies, td->last_calculate_time + HZ))
2041 return;
2042 td->last_calculate_time = jiffies;
2043
2044 memset(avg_latency, 0, sizeof(avg_latency));
2045 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2046 struct latency_bucket *tmp = &td->tmp_buckets[i];
2047
2048 for_each_possible_cpu(cpu) {
2049 struct latency_bucket *bucket;
2050
2051 /* this isn't race free, but ok in practice */
2052 bucket = per_cpu_ptr(td->latency_buckets, cpu);
2053 tmp->total_latency += bucket[i].total_latency;
2054 tmp->samples += bucket[i].samples;
2055 bucket[i].total_latency = 0;
2056 bucket[i].samples = 0;
2057 }
2058
2059 if (tmp->samples >= 32) {
2060 int samples = tmp->samples;
2061
2062 latency = tmp->total_latency;
2063
2064 tmp->total_latency = 0;
2065 tmp->samples = 0;
2066 latency /= samples;
2067 if (latency == 0)
2068 continue;
2069 avg_latency[i].latency = latency;
2070 }
2071 }
2072
2073 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2074 if (!avg_latency[i].latency) {
2075 if (td->avg_buckets[i].latency < last_latency)
2076 td->avg_buckets[i].latency = last_latency;
2077 continue;
2078 }
2079
2080 if (!td->avg_buckets[i].valid)
2081 latency = avg_latency[i].latency;
2082 else
2083 latency = (td->avg_buckets[i].latency * 7 +
2084 avg_latency[i].latency) >> 3;
2085
2086 td->avg_buckets[i].latency = max(latency, last_latency);
2087 td->avg_buckets[i].valid = true;
2088 last_latency = td->avg_buckets[i].latency;
2089 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002090
2091 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2092 throtl_log(&td->service_queue,
2093 "Latency bucket %d: latency=%ld, valid=%d", i,
2094 td->avg_buckets[i].latency, td->avg_buckets[i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002095}
2096#else
2097static inline void throtl_update_latency_buckets(struct throtl_data *td)
2098{
2099}
2100#endif
2101
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002102static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2103{
2104#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Li007cc562017-07-12 11:49:54 -07002105 if (bio->bi_css)
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002106 bio->bi_cg_private = tg;
2107 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002108#endif
2109}
2110
Tejun Heoae118892015-08-18 14:55:20 -07002111bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2112 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002113{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002114 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002115 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002116 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002117 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002118 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002119 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002120
Tejun Heoae118892015-08-18 14:55:20 -07002121 WARN_ON_ONCE(!rcu_read_lock_held());
2122
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002123 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002124 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002125 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002126
2127 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002128
Shaohua Lib9147dd2017-03-27 15:19:42 -07002129 throtl_update_latency_buckets(td);
2130
Tejun Heoc9589f02015-08-18 14:55:19 -07002131 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002132 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002133
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002134 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002135 blk_throtl_update_idletime(tg);
2136
Tejun Heo73f0d492013-05-14 13:52:35 -07002137 sq = &tg->service_queue;
2138
Shaohua Lic79892c2017-03-27 10:51:34 -07002139again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002140 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002141 if (tg->last_low_overflow_time[rw] == 0)
2142 tg->last_low_overflow_time[rw] = jiffies;
2143 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002144 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002145 /* throtl is FIFO - if bios are already queued, should queue */
2146 if (sq->nr_queued[rw])
2147 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002148
Tejun Heo9e660ac2013-05-14 13:52:38 -07002149 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002150 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002151 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002152 if (throtl_can_upgrade(td, tg)) {
2153 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002154 goto again;
2155 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002156 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002157 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002158
2159 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002160 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002161
2162 /*
2163 * We need to trim slice even when bios are not being queued
2164 * otherwise it might happen that a bio is not queued for
2165 * a long time and slice keeps on extending and trim is not
2166 * called for a long time. Now if limits are reduced suddenly
2167 * we take into account all the IO dispatched so far at new
2168 * low rate and * newly queued IO gets a really long dispatch
2169 * time.
2170 *
2171 * So keep on trimming slice even if bio is not queued.
2172 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002173 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002174
2175 /*
2176 * @bio passed through this layer without being throttled.
2177 * Climb up the ladder. If we''re already at the top, it
2178 * can be executed directly.
2179 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002180 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002181 sq = sq->parent_sq;
2182 tg = sq_to_tg(sq);
2183 if (!tg)
2184 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002185 }
2186
Tejun Heo9e660ac2013-05-14 13:52:38 -07002187 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002188 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2189 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002190 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2191 tg_bps_limit(tg, rw),
2192 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002193 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002194
Shaohua Li3f0abd82017-03-27 10:51:35 -07002195 tg->last_low_overflow_time[rw] = jiffies;
2196
Shaohua Lib9147dd2017-03-27 15:19:42 -07002197 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002198 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002199 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002200
Tejun Heo7f52f982013-05-14 13:52:37 -07002201 /*
2202 * Update @tg's dispatch time and force schedule dispatch if @tg
2203 * was empty before @bio. The forced scheduling isn't likely to
2204 * cause undue delay as @bio is likely to be dispatched directly if
2205 * its @tg's disptime is not in the future.
2206 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002207 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002208 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002209 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002210 }
2211
Tejun Heobc16a4f2011-10-19 14:33:01 +02002212out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002213 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002214out:
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002215 /*
2216 * As multiple blk-throtls may stack in the same issue path, we
2217 * don't want bios to leave with the flag set. Clear the flag if
2218 * being issued.
2219 */
2220 if (!throttled)
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002221 bio_clear_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002222
2223#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2224 if (throttled || !td->track_bio_latency)
2225 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2226#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002227 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002228}
2229
Shaohua Li9e234ee2017-03-27 10:51:41 -07002230#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002231static void throtl_track_latency(struct throtl_data *td, sector_t size,
2232 int op, unsigned long time)
2233{
2234 struct latency_bucket *latency;
2235 int index;
2236
2237 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2238 !blk_queue_nonrot(td->queue))
2239 return;
2240
2241 index = request_bucket_index(size);
2242
2243 latency = get_cpu_ptr(td->latency_buckets);
2244 latency[index].total_latency += time;
2245 latency[index].samples++;
2246 put_cpu_ptr(td->latency_buckets);
2247}
2248
2249void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2250{
2251 struct request_queue *q = rq->q;
2252 struct throtl_data *td = q->td;
2253
2254 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2255 req_op(rq), time_ns >> 10);
2256}
2257
Shaohua Li9e234ee2017-03-27 10:51:41 -07002258void blk_throtl_bio_endio(struct bio *bio)
2259{
2260 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002261 u64 finish_time_ns;
2262 unsigned long finish_time;
2263 unsigned long start_time;
2264 unsigned long lat;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002265
2266 tg = bio->bi_cg_private;
2267 if (!tg)
2268 return;
2269 bio->bi_cg_private = NULL;
2270
Shaohua Lib9147dd2017-03-27 15:19:42 -07002271 finish_time_ns = ktime_get_ns();
2272 tg->last_finish_time = finish_time_ns >> 10;
2273
2274 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2275 finish_time = __blk_stat_time(finish_time_ns) >> 10;
Shaohua Li53696b82017-03-27 15:19:43 -07002276 if (!start_time || finish_time <= start_time)
2277 return;
2278
2279 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002280 /* this is only for bio based driver */
Shaohua Li53696b82017-03-27 15:19:43 -07002281 if (!(bio->bi_issue_stat.stat & SKIP_LATENCY))
Shaohua Lib9147dd2017-03-27 15:19:42 -07002282 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2283 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002284
Shaohua Li6679a902017-06-06 12:40:43 -07002285 if (tg->latency_target && lat >= tg->td->filtered_latency) {
Shaohua Li53696b82017-03-27 15:19:43 -07002286 int bucket;
2287 unsigned int threshold;
2288
2289 bucket = request_bucket_index(
2290 blk_stat_size(&bio->bi_issue_stat));
2291 threshold = tg->td->avg_buckets[bucket].latency +
2292 tg->latency_target;
2293 if (lat > threshold)
2294 tg->bad_bio_cnt++;
2295 /*
2296 * Not race free, could get wrong count, which means cgroups
2297 * will be throttled
2298 */
2299 tg->bio_cnt++;
2300 }
2301
2302 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2303 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2304 tg->bio_cnt /= 2;
2305 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002306 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002307}
2308#endif
2309
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002310/*
2311 * Dispatch all bios from all children tg's queued on @parent_sq. On
2312 * return, @parent_sq is guaranteed to not have any active children tg's
2313 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2314 */
2315static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2316{
2317 struct throtl_grp *tg;
2318
2319 while ((tg = throtl_rb_first(parent_sq))) {
2320 struct throtl_service_queue *sq = &tg->service_queue;
2321 struct bio *bio;
2322
2323 throtl_dequeue_tg(tg);
2324
Tejun Heoc5cc2072013-05-14 13:52:38 -07002325 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002326 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002327 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002328 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2329 }
2330}
2331
Tejun Heoc9a929d2011-10-19 14:42:16 +02002332/**
2333 * blk_throtl_drain - drain throttled bios
2334 * @q: request_queue to drain throttled bios for
2335 *
2336 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2337 */
2338void blk_throtl_drain(struct request_queue *q)
2339 __releases(q->queue_lock) __acquires(q->queue_lock)
2340{
2341 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002342 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002343 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002344 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002345 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002346
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002347 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002348 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002349
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002350 /*
2351 * Drain each tg while doing post-order walk on the blkg tree, so
2352 * that all bios are propagated to td->service_queue. It'd be
2353 * better to walk service_queue tree directly but blkg walk is
2354 * easier.
2355 */
Tejun Heo492eb212013-08-08 20:11:25 -04002356 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002357 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002358
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002359 /* finally, transfer bios from top-level tg's into the td */
2360 tg_drain_bios(&td->service_queue);
2361
2362 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002363 spin_unlock_irq(q->queue_lock);
2364
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002365 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002366 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002367 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2368 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002369 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002370
2371 spin_lock_irq(q->queue_lock);
2372}
2373
Vivek Goyale43473b2010-09-15 17:06:35 -04002374int blk_throtl_init(struct request_queue *q)
2375{
2376 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002377 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002378
2379 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2380 if (!td)
2381 return -ENOMEM;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002382 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2383 LATENCY_BUCKET_SIZE, __alignof__(u64));
2384 if (!td->latency_buckets) {
2385 kfree(td);
2386 return -ENOMEM;
2387 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002388
Tejun Heo69df0ab2013-05-14 13:52:36 -07002389 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002390 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002391
Tejun Heocd1604f2012-03-05 13:15:06 -08002392 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002393 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002394
Shaohua Li9f626e32017-03-27 10:51:30 -07002395 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002396 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002397 td->low_upgrade_time = jiffies;
2398 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002399
Tejun Heoa2b16932012-04-13 13:11:33 -07002400 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002401 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002402 if (ret) {
2403 free_percpu(td->latency_buckets);
Vivek Goyal29b12582011-05-19 15:38:24 -04002404 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002405 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002406 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002407}
2408
2409void blk_throtl_exit(struct request_queue *q)
2410{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002411 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002412 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002413 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002414 free_percpu(q->td->latency_buckets);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002415 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002416}
2417
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002418void blk_throtl_register_queue(struct request_queue *q)
2419{
2420 struct throtl_data *td;
Shaohua Li6679a902017-06-06 12:40:43 -07002421 int i;
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002422
2423 td = q->td;
2424 BUG_ON(!td);
2425
Shaohua Li6679a902017-06-06 12:40:43 -07002426 if (blk_queue_nonrot(q)) {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002427 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Li6679a902017-06-06 12:40:43 -07002428 td->filtered_latency = LATENCY_FILTERED_SSD;
2429 } else {
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002430 td->throtl_slice = DFL_THROTL_SLICE_HD;
Shaohua Li6679a902017-06-06 12:40:43 -07002431 td->filtered_latency = LATENCY_FILTERED_HD;
2432 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2433 td->avg_buckets[i].latency = DFL_HD_BASELINE_LATENCY;
2434 }
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002435#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2436 /* if no low limit, use previous default */
2437 td->throtl_slice = DFL_THROTL_SLICE_HD;
2438#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002439
Shaohua Lib9147dd2017-03-27 15:19:42 -07002440 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2441 if (!td->track_bio_latency)
2442 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002443}
2444
Shaohua Li297e3d82017-03-27 10:51:37 -07002445#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2446ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2447{
2448 if (!q->td)
2449 return -EINVAL;
2450 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2451}
2452
2453ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2454 const char *page, size_t count)
2455{
2456 unsigned long v;
2457 unsigned long t;
2458
2459 if (!q->td)
2460 return -EINVAL;
2461 if (kstrtoul(page, 10, &v))
2462 return -EINVAL;
2463 t = msecs_to_jiffies(v);
2464 if (t == 0 || t > MAX_THROTL_SLICE)
2465 return -EINVAL;
2466 q->td->throtl_slice = t;
2467 return count;
2468}
2469#endif
2470
Vivek Goyale43473b2010-09-15 17:06:35 -04002471static int __init throtl_init(void)
2472{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002473 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2474 if (!kthrotld_workqueue)
2475 panic("Failed to create kthrotld\n");
2476
Tejun Heo3c798392012-04-16 13:57:25 -07002477 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002478}
2479
2480module_init(throtl_init);