blob: 3b751f706c6180c490cfd38a44f49621a5780021 [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)
Vivek Goyale43473b2010-09-15 17:06:35 -040030
Shaohua Lib9147dd2017-03-27 15:19:42 -070031#define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT)
32
Tejun Heo3c798392012-04-16 13:57:25 -070033static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080034
Vivek Goyal450adcb2011-03-01 13:40:54 -050035/* A workqueue to queue throttle related work */
36static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050037
Tejun Heoc5cc2072013-05-14 13:52:38 -070038/*
39 * To implement hierarchical throttling, throtl_grps form a tree and bios
40 * are dispatched upwards level by level until they reach the top and get
41 * issued. When dispatching bios from the children and local group at each
42 * level, if the bios are dispatched into a single bio_list, there's a risk
43 * of a local or child group which can queue many bios at once filling up
44 * the list starving others.
45 *
46 * To avoid such starvation, dispatched bios are queued separately
47 * according to where they came from. When they are again dispatched to
48 * the parent, they're popped in round-robin order so that no single source
49 * hogs the dispatch window.
50 *
51 * throtl_qnode is used to keep the queued bios separated by their sources.
52 * Bios are queued to throtl_qnode which in turn is queued to
53 * throtl_service_queue and then dispatched in round-robin order.
54 *
55 * It's also used to track the reference counts on blkg's. A qnode always
56 * belongs to a throtl_grp and gets queued on itself or the parent, so
57 * incrementing the reference of the associated throtl_grp when a qnode is
58 * queued and decrementing when dequeued is enough to keep the whole blkg
59 * tree pinned while bios are in flight.
60 */
61struct throtl_qnode {
62 struct list_head node; /* service_queue->queued[] */
63 struct bio_list bios; /* queued bios */
64 struct throtl_grp *tg; /* tg this qnode belongs to */
65};
66
Tejun Heoc9e03322013-05-14 13:52:32 -070067struct throtl_service_queue {
Tejun Heo77216b02013-05-14 13:52:36 -070068 struct throtl_service_queue *parent_sq; /* the parent service_queue */
69
Tejun Heo73f0d492013-05-14 13:52:35 -070070 /*
71 * Bios queued directly to this service_queue or dispatched from
72 * children throtl_grp's.
73 */
Tejun Heoc5cc2072013-05-14 13:52:38 -070074 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
Tejun Heo73f0d492013-05-14 13:52:35 -070075 unsigned int nr_queued[2]; /* number of queued bios */
76
77 /*
78 * RB tree of active children throtl_grp's, which are sorted by
79 * their ->disptime.
80 */
Tejun Heoc9e03322013-05-14 13:52:32 -070081 struct rb_root pending_tree; /* RB tree of active tgs */
82 struct rb_node *first_pending; /* first node in the tree */
83 unsigned int nr_pending; /* # queued in the tree */
84 unsigned long first_pending_disptime; /* disptime of the first tg */
Tejun Heo69df0ab2013-05-14 13:52:36 -070085 struct timer_list pending_timer; /* fires on first_pending_disptime */
Vivek Goyale43473b2010-09-15 17:06:35 -040086};
87
Tejun Heo5b2c16a2013-05-14 13:52:32 -070088enum tg_state_flags {
89 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
Tejun Heo0e9f4162013-05-14 13:52:35 -070090 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
Tejun Heo5b2c16a2013-05-14 13:52:32 -070091};
92
Vivek Goyale43473b2010-09-15 17:06:35 -040093#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
94
Shaohua Li9f626e32017-03-27 10:51:30 -070095enum {
Shaohua Licd5ab1b2017-03-27 10:51:32 -070096 LIMIT_LOW,
Shaohua Li9f626e32017-03-27 10:51:30 -070097 LIMIT_MAX,
98 LIMIT_CNT,
99};
100
Vivek Goyale43473b2010-09-15 17:06:35 -0400101struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -0700102 /* must be the first member */
103 struct blkg_policy_data pd;
104
Tejun Heoc9e03322013-05-14 13:52:32 -0700105 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -0400106 struct rb_node rb_node;
107
Tejun Heo0f3457f2013-05-14 13:52:32 -0700108 /* throtl_data this group belongs to */
109 struct throtl_data *td;
110
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700111 /* this group's service queue */
112 struct throtl_service_queue service_queue;
113
Vivek Goyale43473b2010-09-15 17:06:35 -0400114 /*
Tejun Heoc5cc2072013-05-14 13:52:38 -0700115 * qnode_on_self is used when bios are directly queued to this
116 * throtl_grp so that local bios compete fairly with bios
117 * dispatched from children. qnode_on_parent is used when bios are
118 * dispatched from this throtl_grp into its parent and will compete
119 * with the sibling qnode_on_parents and the parent's
120 * qnode_on_self.
121 */
122 struct throtl_qnode qnode_on_self[2];
123 struct throtl_qnode qnode_on_parent[2];
124
125 /*
Vivek Goyale43473b2010-09-15 17:06:35 -0400126 * Dispatch time in jiffies. This is the estimated time when group
127 * will unthrottle and is ready to dispatch more bio. It is used as
128 * key to sort active groups in service tree.
129 */
130 unsigned long disptime;
131
Vivek Goyale43473b2010-09-15 17:06:35 -0400132 unsigned int flags;
133
Tejun Heo693e7512013-05-14 13:52:38 -0700134 /* are there any throtl rules between this group and td? */
135 bool has_rules[2];
136
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700137 /* internally used bytes per second rate limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700138 uint64_t bps[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700139 /* user configured bps limits */
140 uint64_t bps_conf[2][LIMIT_CNT];
Vivek Goyale43473b2010-09-15 17:06:35 -0400141
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700142 /* internally used IOPS limits */
Shaohua Li9f626e32017-03-27 10:51:30 -0700143 unsigned int iops[2][LIMIT_CNT];
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700144 /* user configured IOPS limits */
145 unsigned int iops_conf[2][LIMIT_CNT];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400146
Vivek Goyale43473b2010-09-15 17:06:35 -0400147 /* Number of bytes disptached in current slice */
148 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -0400149 /* Number of bio's dispatched in current slice */
150 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -0400151
Shaohua Li3f0abd82017-03-27 10:51:35 -0700152 unsigned long last_low_overflow_time[2];
153
154 uint64_t last_bytes_disp[2];
155 unsigned int last_io_disp[2];
156
157 unsigned long last_check_time;
158
Shaohua Liec809912017-03-27 10:51:44 -0700159 unsigned long latency_target; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700160 unsigned long latency_target_conf; /* us */
Vivek Goyale43473b2010-09-15 17:06:35 -0400161 /* When did we start a new slice */
162 unsigned long slice_start[2];
163 unsigned long slice_end[2];
Shaohua Li9e234ee2017-03-27 10:51:41 -0700164
165 unsigned long last_finish_time; /* ns / 1024 */
166 unsigned long checked_last_finish_time; /* ns / 1024 */
167 unsigned long avg_idletime; /* ns / 1024 */
168 unsigned long idletime_threshold; /* us */
Shaohua Li5b81fc32017-05-17 13:07:24 -0700169 unsigned long idletime_threshold_conf; /* us */
Shaohua Li53696b82017-03-27 15:19:43 -0700170
171 unsigned int bio_cnt; /* total bios */
172 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
173 unsigned long bio_cnt_reset_time;
Vivek Goyale43473b2010-09-15 17:06:35 -0400174};
175
Shaohua Lib9147dd2017-03-27 15:19:42 -0700176/* We measure latency for request size from <= 4k to >= 1M */
177#define LATENCY_BUCKET_SIZE 9
178
179struct latency_bucket {
180 unsigned long total_latency; /* ns / 1024 */
181 int samples;
182};
183
184struct avg_latency_bucket {
185 unsigned long latency; /* ns / 1024 */
186 bool valid;
187};
188
Vivek Goyale43473b2010-09-15 17:06:35 -0400189struct throtl_data
190{
Vivek Goyale43473b2010-09-15 17:06:35 -0400191 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700192 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400193
Vivek Goyale43473b2010-09-15 17:06:35 -0400194 struct request_queue *queue;
195
196 /* Total Number of queued bios on READ and WRITE lists */
197 unsigned int nr_queued[2];
198
Shaohua Li297e3d82017-03-27 10:51:37 -0700199 unsigned int throtl_slice;
200
Vivek Goyale43473b2010-09-15 17:06:35 -0400201 /* Work for dispatching throttled bios */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700202 struct work_struct dispatch_work;
Shaohua Li9f626e32017-03-27 10:51:30 -0700203 unsigned int limit_index;
204 bool limit_valid[LIMIT_CNT];
Shaohua Li3f0abd82017-03-27 10:51:35 -0700205
206 unsigned long low_upgrade_time;
207 unsigned long low_downgrade_time;
Shaohua Li7394e312017-03-27 10:51:40 -0700208
209 unsigned int scale;
Shaohua Lib9147dd2017-03-27 15:19:42 -0700210
211 struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE];
212 struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE];
213 struct latency_bucket __percpu *latency_buckets;
214 unsigned long last_calculate_time;
215
216 bool track_bio_latency;
Vivek Goyale43473b2010-09-15 17:06:35 -0400217};
218
Tejun Heo69df0ab2013-05-14 13:52:36 -0700219static void throtl_pending_timer_fn(unsigned long arg);
220
Tejun Heof95a04a2012-04-16 13:57:26 -0700221static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
222{
223 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
224}
225
Tejun Heo3c798392012-04-16 13:57:25 -0700226static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800227{
Tejun Heof95a04a2012-04-16 13:57:26 -0700228 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800229}
230
Tejun Heo3c798392012-04-16 13:57:25 -0700231static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800232{
Tejun Heof95a04a2012-04-16 13:57:26 -0700233 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800234}
235
Tejun Heofda6f272013-05-14 13:52:36 -0700236/**
237 * sq_to_tg - return the throl_grp the specified service queue belongs to
238 * @sq: the throtl_service_queue of interest
239 *
240 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
241 * embedded in throtl_data, %NULL is returned.
242 */
243static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
244{
245 if (sq && sq->parent_sq)
246 return container_of(sq, struct throtl_grp, service_queue);
247 else
248 return NULL;
249}
Vivek Goyale43473b2010-09-15 17:06:35 -0400250
Tejun Heofda6f272013-05-14 13:52:36 -0700251/**
252 * sq_to_td - return throtl_data the specified service queue belongs to
253 * @sq: the throtl_service_queue of interest
254 *
Masahiro Yamadab43daed2017-02-27 14:29:09 -0800255 * A service_queue can be embedded in either a throtl_grp or throtl_data.
Tejun Heofda6f272013-05-14 13:52:36 -0700256 * Determine the associated throtl_data accordingly and return it.
257 */
258static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
259{
260 struct throtl_grp *tg = sq_to_tg(sq);
261
262 if (tg)
263 return tg->td;
264 else
265 return container_of(sq, struct throtl_data, service_queue);
266}
267
Shaohua Li7394e312017-03-27 10:51:40 -0700268/*
269 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
270 * make the IO dispatch more smooth.
271 * Scale up: linearly scale up according to lapsed time since upgrade. For
272 * every throtl_slice, the limit scales up 1/2 .low limit till the
273 * limit hits .max limit
274 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
275 */
276static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
277{
278 /* arbitrary value to avoid too big scale */
279 if (td->scale < 4096 && time_after_eq(jiffies,
280 td->low_upgrade_time + td->scale * td->throtl_slice))
281 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
282
283 return low + (low >> 1) * td->scale;
284}
285
Shaohua Li9f626e32017-03-27 10:51:30 -0700286static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
287{
Shaohua Lib22c4172017-03-27 10:51:33 -0700288 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700289 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700290 uint64_t ret;
291
292 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
293 return U64_MAX;
Shaohua Li7394e312017-03-27 10:51:40 -0700294
295 td = tg->td;
296 ret = tg->bps[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700297 if (ret == 0 && td->limit_index == LIMIT_LOW) {
298 /* intermediate node or iops isn't 0 */
299 if (!list_empty(&blkg->blkcg->css.children) ||
300 tg->iops[rw][td->limit_index])
301 return U64_MAX;
302 else
303 return MIN_THROTL_BPS;
304 }
Shaohua Li7394e312017-03-27 10:51:40 -0700305
306 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
307 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
308 uint64_t adjusted;
309
310 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
311 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
312 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700313 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700314}
315
316static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
317{
Shaohua Lib22c4172017-03-27 10:51:33 -0700318 struct blkcg_gq *blkg = tg_to_blkg(tg);
Shaohua Li7394e312017-03-27 10:51:40 -0700319 struct throtl_data *td;
Shaohua Lib22c4172017-03-27 10:51:33 -0700320 unsigned int ret;
321
322 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
323 return UINT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700324
Shaohua Li7394e312017-03-27 10:51:40 -0700325 td = tg->td;
326 ret = tg->iops[rw][td->limit_index];
Shaohua Li9bb67ae2017-05-17 13:07:26 -0700327 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
328 /* intermediate node or bps isn't 0 */
329 if (!list_empty(&blkg->blkcg->css.children) ||
330 tg->bps[rw][td->limit_index])
331 return UINT_MAX;
332 else
333 return MIN_THROTL_IOPS;
334 }
Shaohua Li7394e312017-03-27 10:51:40 -0700335
336 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
337 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
338 uint64_t adjusted;
339
340 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
341 if (adjusted > UINT_MAX)
342 adjusted = UINT_MAX;
343 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
344 }
Shaohua Lib22c4172017-03-27 10:51:33 -0700345 return ret;
Shaohua Li9f626e32017-03-27 10:51:30 -0700346}
347
Shaohua Lib9147dd2017-03-27 15:19:42 -0700348#define request_bucket_index(sectors) \
349 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
350
Tejun Heofda6f272013-05-14 13:52:36 -0700351/**
352 * throtl_log - log debug message via blktrace
353 * @sq: the service_queue being reported
354 * @fmt: printf format string
355 * @args: printf args
356 *
357 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
358 * throtl_grp; otherwise, just "throtl".
Tejun Heofda6f272013-05-14 13:52:36 -0700359 */
360#define throtl_log(sq, fmt, args...) do { \
361 struct throtl_grp *__tg = sq_to_tg((sq)); \
362 struct throtl_data *__td = sq_to_td((sq)); \
363 \
364 (void)__td; \
Shaohua Li59fa0222016-05-09 17:22:15 -0700365 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
366 break; \
Tejun Heofda6f272013-05-14 13:52:36 -0700367 if ((__tg)) { \
368 char __pbuf[128]; \
369 \
370 blkg_path(tg_to_blkg(__tg), __pbuf, sizeof(__pbuf)); \
371 blk_add_trace_msg(__td->queue, "throtl %s " fmt, __pbuf, ##args); \
372 } else { \
373 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
374 } \
375} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400376
Tejun Heoc5cc2072013-05-14 13:52:38 -0700377static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
378{
379 INIT_LIST_HEAD(&qn->node);
380 bio_list_init(&qn->bios);
381 qn->tg = tg;
382}
383
384/**
385 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
386 * @bio: bio being added
387 * @qn: qnode to add bio to
388 * @queued: the service_queue->queued[] list @qn belongs to
389 *
390 * Add @bio to @qn and put @qn on @queued if it's not already on.
391 * @qn->tg's reference count is bumped when @qn is activated. See the
392 * comment on top of throtl_qnode definition for details.
393 */
394static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
395 struct list_head *queued)
396{
397 bio_list_add(&qn->bios, bio);
398 if (list_empty(&qn->node)) {
399 list_add_tail(&qn->node, queued);
400 blkg_get(tg_to_blkg(qn->tg));
401 }
402}
403
404/**
405 * throtl_peek_queued - peek the first bio on a qnode list
406 * @queued: the qnode list to peek
407 */
408static struct bio *throtl_peek_queued(struct list_head *queued)
409{
410 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
411 struct bio *bio;
412
413 if (list_empty(queued))
414 return NULL;
415
416 bio = bio_list_peek(&qn->bios);
417 WARN_ON_ONCE(!bio);
418 return bio;
419}
420
421/**
422 * throtl_pop_queued - pop the first bio form a qnode list
423 * @queued: the qnode list to pop a bio from
424 * @tg_to_put: optional out argument for throtl_grp to put
425 *
426 * Pop the first bio from the qnode list @queued. After popping, the first
427 * qnode is removed from @queued if empty or moved to the end of @queued so
428 * that the popping order is round-robin.
429 *
430 * When the first qnode is removed, its associated throtl_grp should be put
431 * too. If @tg_to_put is NULL, this function automatically puts it;
432 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
433 * responsible for putting it.
434 */
435static struct bio *throtl_pop_queued(struct list_head *queued,
436 struct throtl_grp **tg_to_put)
437{
438 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
439 struct bio *bio;
440
441 if (list_empty(queued))
442 return NULL;
443
444 bio = bio_list_pop(&qn->bios);
445 WARN_ON_ONCE(!bio);
446
447 if (bio_list_empty(&qn->bios)) {
448 list_del_init(&qn->node);
449 if (tg_to_put)
450 *tg_to_put = qn->tg;
451 else
452 blkg_put(tg_to_blkg(qn->tg));
453 } else {
454 list_move_tail(&qn->node, queued);
455 }
456
457 return bio;
458}
459
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700460/* init a service_queue, assumes the caller zeroed it */
Tejun Heob2ce2642015-08-18 14:55:13 -0700461static void throtl_service_queue_init(struct throtl_service_queue *sq)
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700462{
Tejun Heoc5cc2072013-05-14 13:52:38 -0700463 INIT_LIST_HEAD(&sq->queued[0]);
464 INIT_LIST_HEAD(&sq->queued[1]);
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700465 sq->pending_tree = RB_ROOT;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700466 setup_timer(&sq->pending_timer, throtl_pending_timer_fn,
467 (unsigned long)sq);
468}
469
Tejun Heo001bea72015-08-18 14:55:11 -0700470static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
471{
Tejun Heo4fb72032015-08-18 14:55:12 -0700472 struct throtl_grp *tg;
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700473 int rw;
Tejun Heo4fb72032015-08-18 14:55:12 -0700474
475 tg = kzalloc_node(sizeof(*tg), gfp, node);
476 if (!tg)
Tejun Heo77ea7332015-08-18 14:55:24 -0700477 return NULL;
Tejun Heo4fb72032015-08-18 14:55:12 -0700478
Tejun Heob2ce2642015-08-18 14:55:13 -0700479 throtl_service_queue_init(&tg->service_queue);
480
481 for (rw = READ; rw <= WRITE; rw++) {
482 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
483 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
484 }
485
486 RB_CLEAR_NODE(&tg->rb_node);
Shaohua Li9f626e32017-03-27 10:51:30 -0700487 tg->bps[READ][LIMIT_MAX] = U64_MAX;
488 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
489 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
490 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700491 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
492 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
493 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
494 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
495 /* LIMIT_LOW will have default value 0 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700496
Shaohua Liec809912017-03-27 10:51:44 -0700497 tg->latency_target = DFL_LATENCY_TARGET;
Shaohua Li5b81fc32017-05-17 13:07:24 -0700498 tg->latency_target_conf = DFL_LATENCY_TARGET;
Shaohua Lib4f428e2017-05-17 13:07:27 -0700499 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
500 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
Shaohua Liec809912017-03-27 10:51:44 -0700501
Tejun Heo4fb72032015-08-18 14:55:12 -0700502 return &tg->pd;
Tejun Heo001bea72015-08-18 14:55:11 -0700503}
504
Tejun Heoa9520cd2015-08-18 14:55:14 -0700505static void throtl_pd_init(struct blkg_policy_data *pd)
Vivek Goyala29a1712011-05-19 15:38:19 -0400506{
Tejun Heoa9520cd2015-08-18 14:55:14 -0700507 struct throtl_grp *tg = pd_to_tg(pd);
508 struct blkcg_gq *blkg = tg_to_blkg(tg);
Tejun Heo77216b02013-05-14 13:52:36 -0700509 struct throtl_data *td = blkg->q->td;
Tejun Heob2ce2642015-08-18 14:55:13 -0700510 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800511
Tejun Heo91381252013-05-14 13:52:38 -0700512 /*
Tejun Heoaa6ec292014-07-09 10:08:08 -0400513 * If on the default hierarchy, we switch to properly hierarchical
Tejun Heo91381252013-05-14 13:52:38 -0700514 * behavior where limits on a given throtl_grp are applied to the
515 * whole subtree rather than just the group itself. e.g. If 16M
516 * read_bps limit is set on the root group, the whole system can't
517 * exceed 16M for the device.
518 *
Tejun Heoaa6ec292014-07-09 10:08:08 -0400519 * If not on the default hierarchy, the broken flat hierarchy
Tejun Heo91381252013-05-14 13:52:38 -0700520 * behavior is retained where all throtl_grps are treated as if
521 * they're all separate root groups right below throtl_data.
522 * Limits of a group don't interact with limits of other groups
523 * regardless of the position of the group in the hierarchy.
524 */
Tejun Heob2ce2642015-08-18 14:55:13 -0700525 sq->parent_sq = &td->service_queue;
Tejun Heo9e10a132015-09-18 11:56:28 -0400526 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
Tejun Heob2ce2642015-08-18 14:55:13 -0700527 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
Tejun Heo77216b02013-05-14 13:52:36 -0700528 tg->td = td;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700529}
530
Tejun Heo693e7512013-05-14 13:52:38 -0700531/*
532 * Set has_rules[] if @tg or any of its parents have limits configured.
533 * This doesn't require walking up to the top of the hierarchy as the
534 * parent's has_rules[] is guaranteed to be correct.
535 */
536static void tg_update_has_rules(struct throtl_grp *tg)
537{
538 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
Shaohua Li9f626e32017-03-27 10:51:30 -0700539 struct throtl_data *td = tg->td;
Tejun Heo693e7512013-05-14 13:52:38 -0700540 int rw;
541
542 for (rw = READ; rw <= WRITE; rw++)
543 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
Shaohua Li9f626e32017-03-27 10:51:30 -0700544 (td->limit_valid[td->limit_index] &&
545 (tg_bps_limit(tg, rw) != U64_MAX ||
546 tg_iops_limit(tg, rw) != UINT_MAX));
Tejun Heo693e7512013-05-14 13:52:38 -0700547}
548
Tejun Heoa9520cd2015-08-18 14:55:14 -0700549static void throtl_pd_online(struct blkg_policy_data *pd)
Tejun Heo693e7512013-05-14 13:52:38 -0700550{
Shaohua Liaec24242017-03-27 10:51:39 -0700551 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo693e7512013-05-14 13:52:38 -0700552 /*
553 * We don't want new groups to escape the limits of its ancestors.
554 * Update has_rules[] after a new group is brought online.
555 */
Shaohua Liaec24242017-03-27 10:51:39 -0700556 tg_update_has_rules(tg);
Tejun Heo693e7512013-05-14 13:52:38 -0700557}
558
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700559static void blk_throtl_update_limit_valid(struct throtl_data *td)
560{
561 struct cgroup_subsys_state *pos_css;
562 struct blkcg_gq *blkg;
563 bool low_valid = false;
564
565 rcu_read_lock();
566 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
567 struct throtl_grp *tg = blkg_to_tg(blkg);
568
569 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
570 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
571 low_valid = true;
572 }
573 rcu_read_unlock();
574
575 td->limit_valid[LIMIT_LOW] = low_valid;
576}
577
Shaohua Lic79892c2017-03-27 10:51:34 -0700578static void throtl_upgrade_state(struct throtl_data *td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700579static void throtl_pd_offline(struct blkg_policy_data *pd)
580{
581 struct throtl_grp *tg = pd_to_tg(pd);
582
583 tg->bps[READ][LIMIT_LOW] = 0;
584 tg->bps[WRITE][LIMIT_LOW] = 0;
585 tg->iops[READ][LIMIT_LOW] = 0;
586 tg->iops[WRITE][LIMIT_LOW] = 0;
587
588 blk_throtl_update_limit_valid(tg->td);
589
Shaohua Lic79892c2017-03-27 10:51:34 -0700590 if (!tg->td->limit_valid[tg->td->limit_index])
591 throtl_upgrade_state(tg->td);
Shaohua Licd5ab1b2017-03-27 10:51:32 -0700592}
593
Tejun Heo001bea72015-08-18 14:55:11 -0700594static void throtl_pd_free(struct blkg_policy_data *pd)
595{
Tejun Heo4fb72032015-08-18 14:55:12 -0700596 struct throtl_grp *tg = pd_to_tg(pd);
597
Tejun Heob2ce2642015-08-18 14:55:13 -0700598 del_timer_sync(&tg->service_queue.pending_timer);
Tejun Heo4fb72032015-08-18 14:55:12 -0700599 kfree(tg);
Tejun Heo001bea72015-08-18 14:55:11 -0700600}
601
Tejun Heo0049af72013-05-14 13:52:33 -0700602static struct throtl_grp *
603throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400604{
605 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700606 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400607 return NULL;
608
Tejun Heo0049af72013-05-14 13:52:33 -0700609 if (!parent_sq->first_pending)
610 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400611
Tejun Heo0049af72013-05-14 13:52:33 -0700612 if (parent_sq->first_pending)
613 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400614
615 return NULL;
616}
617
618static void rb_erase_init(struct rb_node *n, struct rb_root *root)
619{
620 rb_erase(n, root);
621 RB_CLEAR_NODE(n);
622}
623
Tejun Heo0049af72013-05-14 13:52:33 -0700624static void throtl_rb_erase(struct rb_node *n,
625 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400626{
Tejun Heo0049af72013-05-14 13:52:33 -0700627 if (parent_sq->first_pending == n)
628 parent_sq->first_pending = NULL;
629 rb_erase_init(n, &parent_sq->pending_tree);
630 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400631}
632
Tejun Heo0049af72013-05-14 13:52:33 -0700633static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400634{
635 struct throtl_grp *tg;
636
Tejun Heo0049af72013-05-14 13:52:33 -0700637 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400638 if (!tg)
639 return;
640
Tejun Heo0049af72013-05-14 13:52:33 -0700641 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400642}
643
Tejun Heo77216b02013-05-14 13:52:36 -0700644static void tg_service_queue_add(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400645{
Tejun Heo77216b02013-05-14 13:52:36 -0700646 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
Tejun Heo0049af72013-05-14 13:52:33 -0700647 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400648 struct rb_node *parent = NULL;
649 struct throtl_grp *__tg;
650 unsigned long key = tg->disptime;
651 int left = 1;
652
653 while (*node != NULL) {
654 parent = *node;
655 __tg = rb_entry_tg(parent);
656
657 if (time_before(key, __tg->disptime))
658 node = &parent->rb_left;
659 else {
660 node = &parent->rb_right;
661 left = 0;
662 }
663 }
664
665 if (left)
Tejun Heo0049af72013-05-14 13:52:33 -0700666 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400667
668 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700669 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400670}
671
Tejun Heo77216b02013-05-14 13:52:36 -0700672static void __throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400673{
Tejun Heo77216b02013-05-14 13:52:36 -0700674 tg_service_queue_add(tg);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700675 tg->flags |= THROTL_TG_PENDING;
Tejun Heo77216b02013-05-14 13:52:36 -0700676 tg->service_queue.parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400677}
678
Tejun Heo77216b02013-05-14 13:52:36 -0700679static void throtl_enqueue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400680{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700681 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo77216b02013-05-14 13:52:36 -0700682 __throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400683}
684
Tejun Heo77216b02013-05-14 13:52:36 -0700685static void __throtl_dequeue_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400686{
Tejun Heo77216b02013-05-14 13:52:36 -0700687 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700688 tg->flags &= ~THROTL_TG_PENDING;
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 Heo5b2c16a2013-05-14 13:52:32 -0700693 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo77216b02013-05-14 13:52:36 -0700694 __throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400695}
696
Tejun Heoa9131a22013-05-14 13:52:31 -0700697/* Call with queue lock held */
Tejun Heo69df0ab2013-05-14 13:52:36 -0700698static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
699 unsigned long expires)
Tejun Heoa9131a22013-05-14 13:52:31 -0700700{
Joseph Qia41b8162017-06-07 11:36:14 +0800701 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
Shaohua Li06cceed2017-03-27 10:51:36 -0700702
703 /*
704 * Since we are adjusting the throttle limit dynamically, the sleep
705 * time calculated according to previous limit might be invalid. It's
706 * possible the cgroup sleep time is very long and no other cgroups
707 * have IO running so notify the limit changes. Make sure the cgroup
708 * doesn't sleep too long to avoid the missed notification.
709 */
710 if (time_after(expires, max_expire))
711 expires = max_expire;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700712 mod_timer(&sq->pending_timer, expires);
713 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
714 expires - jiffies, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700715}
716
Tejun Heo7f52f982013-05-14 13:52:37 -0700717/**
718 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
719 * @sq: the service_queue to schedule dispatch for
720 * @force: force scheduling
721 *
722 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
723 * dispatch time of the first pending child. Returns %true if either timer
724 * is armed or there's no pending child left. %false if the current
725 * dispatch window is still open and the caller should continue
726 * dispatching.
727 *
728 * If @force is %true, the dispatch timer is always scheduled and this
729 * function is guaranteed to return %true. This is to be used when the
730 * caller can't dispatch itself and needs to invoke pending_timer
731 * unconditionally. Note that forced scheduling is likely to induce short
732 * delay before dispatch starts even if @sq->first_pending_disptime is not
733 * in the future and thus shouldn't be used in hot paths.
734 */
735static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
736 bool force)
Vivek Goyale43473b2010-09-15 17:06:35 -0400737{
Tejun Heo6a525602013-05-14 13:52:32 -0700738 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700739 if (!sq->nr_pending)
Tejun Heo7f52f982013-05-14 13:52:37 -0700740 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400741
Tejun Heoc9e03322013-05-14 13:52:32 -0700742 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400743
Tejun Heo69df0ab2013-05-14 13:52:36 -0700744 /* is the next dispatch time in the future? */
Tejun Heo7f52f982013-05-14 13:52:37 -0700745 if (force || time_after(sq->first_pending_disptime, jiffies)) {
Tejun Heo69df0ab2013-05-14 13:52:36 -0700746 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
Tejun Heo7f52f982013-05-14 13:52:37 -0700747 return true;
Tejun Heo69df0ab2013-05-14 13:52:36 -0700748 }
749
Tejun Heo7f52f982013-05-14 13:52:37 -0700750 /* tell the caller to continue dispatching */
751 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400752}
753
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700754static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
755 bool rw, unsigned long start)
756{
757 tg->bytes_disp[rw] = 0;
758 tg->io_disp[rw] = 0;
759
760 /*
761 * Previous slice has expired. We must have trimmed it after last
762 * bio dispatch. That means since start of last slice, we never used
763 * that bandwidth. Do try to make use of that bandwidth while giving
764 * credit.
765 */
766 if (time_after_eq(start, tg->slice_start[rw]))
767 tg->slice_start[rw] = start;
768
Shaohua Li297e3d82017-03-27 10:51:37 -0700769 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Vivek Goyal32ee5bc2013-05-14 13:52:38 -0700770 throtl_log(&tg->service_queue,
771 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
772 rw == READ ? 'R' : 'W', tg->slice_start[rw],
773 tg->slice_end[rw], jiffies);
774}
775
Tejun Heo0f3457f2013-05-14 13:52:32 -0700776static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400777{
778 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400779 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400780 tg->slice_start[rw] = jiffies;
Shaohua Li297e3d82017-03-27 10:51:37 -0700781 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
Tejun Heofda6f272013-05-14 13:52:36 -0700782 throtl_log(&tg->service_queue,
783 "[%c] new slice start=%lu end=%lu jiffies=%lu",
784 rw == READ ? 'R' : 'W', tg->slice_start[rw],
785 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400786}
787
Tejun Heo0f3457f2013-05-14 13:52:32 -0700788static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
789 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100790{
Shaohua Li297e3d82017-03-27 10:51:37 -0700791 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100792}
793
Tejun Heo0f3457f2013-05-14 13:52:32 -0700794static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
795 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400796{
Shaohua Li297e3d82017-03-27 10:51:37 -0700797 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
Tejun Heofda6f272013-05-14 13:52:36 -0700798 throtl_log(&tg->service_queue,
799 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
800 rw == READ ? 'R' : 'W', tg->slice_start[rw],
801 tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400802}
803
804/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700805static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400806{
807 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200808 return false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400809
810 return 1;
811}
812
813/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700814static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400815{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200816 unsigned long nr_slices, time_elapsed, io_trim;
817 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400818
819 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
820
821 /*
822 * If bps are unlimited (-1), then time slice don't get
823 * renewed. Don't try to trim the slice if slice is used. A new
824 * slice will start when appropriate.
825 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700826 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400827 return;
828
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100829 /*
830 * A bio has been dispatched. Also adjust slice_end. It might happen
831 * that initially cgroup limit was very low resulting in high
832 * slice_end, but later limit was bumped up and bio was dispached
833 * sooner, then we need to reduce slice_end. A high bogus slice_end
834 * is bad because it does not allow new slice to start.
835 */
836
Shaohua Li297e3d82017-03-27 10:51:37 -0700837 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100838
Vivek Goyale43473b2010-09-15 17:06:35 -0400839 time_elapsed = jiffies - tg->slice_start[rw];
840
Shaohua Li297e3d82017-03-27 10:51:37 -0700841 nr_slices = time_elapsed / tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400842
843 if (!nr_slices)
844 return;
Shaohua Li297e3d82017-03-27 10:51:37 -0700845 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200846 do_div(tmp, HZ);
847 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400848
Shaohua Li297e3d82017-03-27 10:51:37 -0700849 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
850 HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400851
Vivek Goyal8e89d132010-09-15 17:06:37 -0400852 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400853 return;
854
855 if (tg->bytes_disp[rw] >= bytes_trim)
856 tg->bytes_disp[rw] -= bytes_trim;
857 else
858 tg->bytes_disp[rw] = 0;
859
Vivek Goyal8e89d132010-09-15 17:06:37 -0400860 if (tg->io_disp[rw] >= io_trim)
861 tg->io_disp[rw] -= io_trim;
862 else
863 tg->io_disp[rw] = 0;
864
Shaohua Li297e3d82017-03-27 10:51:37 -0700865 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400866
Tejun Heofda6f272013-05-14 13:52:36 -0700867 throtl_log(&tg->service_queue,
868 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
869 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
870 tg->slice_start[rw], tg->slice_end[rw], jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400871}
872
Tejun Heo0f3457f2013-05-14 13:52:32 -0700873static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
874 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400875{
876 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400877 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400878 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200879 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400880
Vivek Goyal8e89d132010-09-15 17:06:37 -0400881 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400882
Vivek Goyal8e89d132010-09-15 17:06:37 -0400883 /* Slice has just started. Consider one slice interval */
884 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700885 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400886
Shaohua Li297e3d82017-03-27 10:51:37 -0700887 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400888
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200889 /*
890 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
891 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
892 * will allow dispatch after 1 second and after that slice should
893 * have been trimmed.
894 */
895
Shaohua Li9f626e32017-03-27 10:51:30 -0700896 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200897 do_div(tmp, HZ);
898
899 if (tmp > UINT_MAX)
900 io_allowed = UINT_MAX;
901 else
902 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400903
904 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400905 if (wait)
906 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200907 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400908 }
909
Vivek Goyal8e89d132010-09-15 17:06:37 -0400910 /* Calc approx time to dispatch */
Shaohua Li9f626e32017-03-27 10:51:30 -0700911 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400912
913 if (jiffy_wait > jiffy_elapsed)
914 jiffy_wait = jiffy_wait - jiffy_elapsed;
915 else
916 jiffy_wait = 1;
917
918 if (wait)
919 *wait = jiffy_wait;
920 return 0;
921}
922
Tejun Heo0f3457f2013-05-14 13:52:32 -0700923static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
924 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400925{
926 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200927 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400928 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400929
930 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
931
932 /* Slice has just started. Consider one slice interval */
933 if (!jiffy_elapsed)
Shaohua Li297e3d82017-03-27 10:51:37 -0700934 jiffy_elapsed_rnd = tg->td->throtl_slice;
Vivek Goyale43473b2010-09-15 17:06:35 -0400935
Shaohua Li297e3d82017-03-27 10:51:37 -0700936 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
Vivek Goyale43473b2010-09-15 17:06:35 -0400937
Shaohua Li9f626e32017-03-27 10:51:30 -0700938 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
Vivek Goyal5e901a22010-10-01 21:16:38 +0200939 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200940 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400941
Kent Overstreet4f024f32013-10-11 15:44:27 -0700942 if (tg->bytes_disp[rw] + bio->bi_iter.bi_size <= bytes_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400943 if (wait)
944 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200945 return true;
Vivek Goyale43473b2010-09-15 17:06:35 -0400946 }
947
948 /* Calc approx time to dispatch */
Kent Overstreet4f024f32013-10-11 15:44:27 -0700949 extra_bytes = tg->bytes_disp[rw] + bio->bi_iter.bi_size - bytes_allowed;
Shaohua Li9f626e32017-03-27 10:51:30 -0700950 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
Vivek Goyale43473b2010-09-15 17:06:35 -0400951
952 if (!jiffy_wait)
953 jiffy_wait = 1;
954
955 /*
956 * This wait time is without taking into consideration the rounding
957 * up we did. Add that time also.
958 */
959 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400960 if (wait)
961 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400962 return 0;
963}
Vivek Goyale43473b2010-09-15 17:06:35 -0400964
Vivek Goyal8e89d132010-09-15 17:06:37 -0400965/*
966 * Returns whether one can dispatch a bio or not. Also returns approx number
967 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
968 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700969static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
970 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400971{
972 bool rw = bio_data_dir(bio);
973 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
974
975 /*
976 * Currently whole state machine of group depends on first bio
977 * queued in the group bio list. So one should not be calling
978 * this function with a different bio if there are other bios
979 * queued.
980 */
Tejun Heo73f0d492013-05-14 13:52:35 -0700981 BUG_ON(tg->service_queue.nr_queued[rw] &&
Tejun Heoc5cc2072013-05-14 13:52:38 -0700982 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
Vivek Goyal8e89d132010-09-15 17:06:37 -0400983
984 /* If tg->bps = -1, then BW is unlimited */
Shaohua Li9f626e32017-03-27 10:51:30 -0700985 if (tg_bps_limit(tg, rw) == U64_MAX &&
986 tg_iops_limit(tg, rw) == UINT_MAX) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400987 if (wait)
988 *wait = 0;
Fabian Frederick5cf8c222014-05-02 18:28:17 +0200989 return true;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400990 }
991
992 /*
993 * If previous slice expired, start a new one otherwise renew/extend
994 * existing slice to make sure it is at least throtl_slice interval
Vivek Goyal164c80e2016-09-19 15:12:41 -0600995 * long since now. New slice is started only for empty throttle group.
996 * If there is queued bio, that means there should be an active
997 * slice and it should be extended instead.
Vivek Goyal8e89d132010-09-15 17:06:37 -0400998 */
Vivek Goyal164c80e2016-09-19 15:12:41 -0600999 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001000 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001001 else {
Shaohua Li297e3d82017-03-27 10:51:37 -07001002 if (time_before(tg->slice_end[rw],
1003 jiffies + tg->td->throtl_slice))
1004 throtl_extend_slice(tg, rw,
1005 jiffies + tg->td->throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -04001006 }
1007
Tejun Heo0f3457f2013-05-14 13:52:32 -07001008 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1009 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -04001010 if (wait)
1011 *wait = 0;
1012 return 1;
1013 }
1014
1015 max_wait = max(bps_wait, iops_wait);
1016
1017 if (wait)
1018 *wait = max_wait;
1019
1020 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001021 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001022
1023 return 0;
1024}
1025
1026static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1027{
1028 bool rw = bio_data_dir(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001029
1030 /* Charge the bio to the group */
Kent Overstreet4f024f32013-10-11 15:44:27 -07001031 tg->bytes_disp[rw] += bio->bi_iter.bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001032 tg->io_disp[rw]++;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001033 tg->last_bytes_disp[rw] += bio->bi_iter.bi_size;
1034 tg->last_io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001035
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001036 /*
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001037 * BIO_THROTTLED is used to prevent the same bio to be throttled
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001038 * more than once as a throttled bio will go through blk-throtl the
1039 * second time when it eventually gets issued. Set it when a bio
1040 * is being charged to a tg.
Tejun Heo2a0f61e2013-05-14 13:52:36 -07001041 */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02001042 if (!bio_flagged(bio, BIO_THROTTLED))
1043 bio_set_flag(bio, BIO_THROTTLED);
Vivek Goyale43473b2010-09-15 17:06:35 -04001044}
1045
Tejun Heoc5cc2072013-05-14 13:52:38 -07001046/**
1047 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1048 * @bio: bio to add
1049 * @qn: qnode to use
1050 * @tg: the target throtl_grp
1051 *
1052 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1053 * tg->qnode_on_self[] is used.
1054 */
1055static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1056 struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001057{
Tejun Heo73f0d492013-05-14 13:52:35 -07001058 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001059 bool rw = bio_data_dir(bio);
1060
Tejun Heoc5cc2072013-05-14 13:52:38 -07001061 if (!qn)
1062 qn = &tg->qnode_on_self[rw];
1063
Tejun Heo0e9f4162013-05-14 13:52:35 -07001064 /*
1065 * If @tg doesn't currently have any bios queued in the same
1066 * direction, queueing @bio can change when @tg should be
1067 * dispatched. Mark that @tg was empty. This is automatically
1068 * cleaered on the next tg_update_disptime().
1069 */
1070 if (!sq->nr_queued[rw])
1071 tg->flags |= THROTL_TG_WAS_EMPTY;
1072
Tejun Heoc5cc2072013-05-14 13:52:38 -07001073 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1074
Tejun Heo73f0d492013-05-14 13:52:35 -07001075 sq->nr_queued[rw]++;
Tejun Heo77216b02013-05-14 13:52:36 -07001076 throtl_enqueue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001077}
1078
Tejun Heo77216b02013-05-14 13:52:36 -07001079static void tg_update_disptime(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001080{
Tejun Heo73f0d492013-05-14 13:52:35 -07001081 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001082 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1083 struct bio *bio;
1084
Markus Elfringd609af32017-01-21 22:15:33 +01001085 bio = throtl_peek_queued(&sq->queued[READ]);
1086 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001087 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001088
Markus Elfringd609af32017-01-21 22:15:33 +01001089 bio = throtl_peek_queued(&sq->queued[WRITE]);
1090 if (bio)
Tejun Heo0f3457f2013-05-14 13:52:32 -07001091 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -04001092
1093 min_wait = min(read_wait, write_wait);
1094 disptime = jiffies + min_wait;
1095
Vivek Goyale43473b2010-09-15 17:06:35 -04001096 /* Update dispatch time */
Tejun Heo77216b02013-05-14 13:52:36 -07001097 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001098 tg->disptime = disptime;
Tejun Heo77216b02013-05-14 13:52:36 -07001099 throtl_enqueue_tg(tg);
Tejun Heo0e9f4162013-05-14 13:52:35 -07001100
1101 /* see throtl_add_bio_tg() */
1102 tg->flags &= ~THROTL_TG_WAS_EMPTY;
Vivek Goyale43473b2010-09-15 17:06:35 -04001103}
1104
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001105static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1106 struct throtl_grp *parent_tg, bool rw)
1107{
1108 if (throtl_slice_used(parent_tg, rw)) {
1109 throtl_start_new_slice_with_credit(parent_tg, rw,
1110 child_tg->slice_start[rw]);
1111 }
1112
1113}
1114
Tejun Heo77216b02013-05-14 13:52:36 -07001115static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -04001116{
Tejun Heo73f0d492013-05-14 13:52:35 -07001117 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001118 struct throtl_service_queue *parent_sq = sq->parent_sq;
1119 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001120 struct throtl_grp *tg_to_put = NULL;
Vivek Goyale43473b2010-09-15 17:06:35 -04001121 struct bio *bio;
1122
Tejun Heoc5cc2072013-05-14 13:52:38 -07001123 /*
1124 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1125 * from @tg may put its reference and @parent_sq might end up
1126 * getting released prematurely. Remember the tg to put and put it
1127 * after @bio is transferred to @parent_sq.
1128 */
1129 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
Tejun Heo73f0d492013-05-14 13:52:35 -07001130 sq->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -04001131
1132 throtl_charge_bio(tg, bio);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001133
1134 /*
1135 * If our parent is another tg, we just need to transfer @bio to
1136 * the parent using throtl_add_bio_tg(). If our parent is
1137 * @td->service_queue, @bio is ready to be issued. Put it on its
1138 * bio_lists[] and decrease total number queued. The caller is
1139 * responsible for issuing these bios.
1140 */
1141 if (parent_tg) {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001142 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
Vivek Goyal32ee5bc2013-05-14 13:52:38 -07001143 start_parent_slice_with_credit(tg, parent_tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001144 } else {
Tejun Heoc5cc2072013-05-14 13:52:38 -07001145 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1146 &parent_sq->queued[rw]);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001147 BUG_ON(tg->td->nr_queued[rw] <= 0);
1148 tg->td->nr_queued[rw]--;
1149 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001150
Tejun Heo0f3457f2013-05-14 13:52:32 -07001151 throtl_trim_slice(tg, rw);
Tejun Heo6bc9c2b2013-05-14 13:52:38 -07001152
Tejun Heoc5cc2072013-05-14 13:52:38 -07001153 if (tg_to_put)
1154 blkg_put(tg_to_blkg(tg_to_put));
Vivek Goyale43473b2010-09-15 17:06:35 -04001155}
1156
Tejun Heo77216b02013-05-14 13:52:36 -07001157static int throtl_dispatch_tg(struct throtl_grp *tg)
Vivek Goyale43473b2010-09-15 17:06:35 -04001158{
Tejun Heo73f0d492013-05-14 13:52:35 -07001159 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001160 unsigned int nr_reads = 0, nr_writes = 0;
1161 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +01001162 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -04001163 struct bio *bio;
1164
1165 /* Try to dispatch 75% READS and 25% WRITES */
1166
Tejun Heoc5cc2072013-05-14 13:52:38 -07001167 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001168 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001169
Tejun Heo77216b02013-05-14 13:52:36 -07001170 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001171 nr_reads++;
1172
1173 if (nr_reads >= max_nr_reads)
1174 break;
1175 }
1176
Tejun Heoc5cc2072013-05-14 13:52:38 -07001177 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
Tejun Heo0f3457f2013-05-14 13:52:32 -07001178 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001179
Tejun Heo77216b02013-05-14 13:52:36 -07001180 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Vivek Goyale43473b2010-09-15 17:06:35 -04001181 nr_writes++;
1182
1183 if (nr_writes >= max_nr_writes)
1184 break;
1185 }
1186
1187 return nr_reads + nr_writes;
1188}
1189
Tejun Heo651930b2013-05-14 13:52:35 -07001190static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -04001191{
1192 unsigned int nr_disp = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001193
1194 while (1) {
Tejun Heo73f0d492013-05-14 13:52:35 -07001195 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1196 struct throtl_service_queue *sq = &tg->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -04001197
1198 if (!tg)
1199 break;
1200
1201 if (time_before(jiffies, tg->disptime))
1202 break;
1203
Tejun Heo77216b02013-05-14 13:52:36 -07001204 throtl_dequeue_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001205
Tejun Heo77216b02013-05-14 13:52:36 -07001206 nr_disp += throtl_dispatch_tg(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001207
Tejun Heo73f0d492013-05-14 13:52:35 -07001208 if (sq->nr_queued[0] || sq->nr_queued[1])
Tejun Heo77216b02013-05-14 13:52:36 -07001209 tg_update_disptime(tg);
Vivek Goyale43473b2010-09-15 17:06:35 -04001210
1211 if (nr_disp >= throtl_quantum)
1212 break;
1213 }
1214
1215 return nr_disp;
1216}
1217
Shaohua Lic79892c2017-03-27 10:51:34 -07001218static bool throtl_can_upgrade(struct throtl_data *td,
1219 struct throtl_grp *this_tg);
Tejun Heo6e1a5702013-05-14 13:52:37 -07001220/**
1221 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1222 * @arg: the throtl_service_queue being serviced
1223 *
1224 * This timer is armed when a child throtl_grp with active bio's become
1225 * pending and queued on the service_queue's pending_tree and expires when
1226 * the first child throtl_grp should be dispatched. This function
Tejun Heo2e48a532013-05-14 13:52:38 -07001227 * dispatches bio's from the children throtl_grps to the parent
1228 * service_queue.
1229 *
1230 * If the parent's parent is another throtl_grp, dispatching is propagated
1231 * by either arming its pending_timer or repeating dispatch directly. If
1232 * the top-level service_tree is reached, throtl_data->dispatch_work is
1233 * kicked so that the ready bio's are issued.
Tejun Heo6e1a5702013-05-14 13:52:37 -07001234 */
Tejun Heo69df0ab2013-05-14 13:52:36 -07001235static void throtl_pending_timer_fn(unsigned long arg)
1236{
1237 struct throtl_service_queue *sq = (void *)arg;
Tejun Heo2e48a532013-05-14 13:52:38 -07001238 struct throtl_grp *tg = sq_to_tg(sq);
Tejun Heo69df0ab2013-05-14 13:52:36 -07001239 struct throtl_data *td = sq_to_td(sq);
Tejun Heocb761992013-05-14 13:52:31 -07001240 struct request_queue *q = td->queue;
Tejun Heo2e48a532013-05-14 13:52:38 -07001241 struct throtl_service_queue *parent_sq;
1242 bool dispatched;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001243 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001244
1245 spin_lock_irq(q->queue_lock);
Shaohua Lic79892c2017-03-27 10:51:34 -07001246 if (throtl_can_upgrade(td, NULL))
1247 throtl_upgrade_state(td);
1248
Tejun Heo2e48a532013-05-14 13:52:38 -07001249again:
1250 parent_sq = sq->parent_sq;
1251 dispatched = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001252
Tejun Heo7f52f982013-05-14 13:52:37 -07001253 while (true) {
1254 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo2e48a532013-05-14 13:52:38 -07001255 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1256 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04001257
Tejun Heo7f52f982013-05-14 13:52:37 -07001258 ret = throtl_select_dispatch(sq);
1259 if (ret) {
Tejun Heo7f52f982013-05-14 13:52:37 -07001260 throtl_log(sq, "bios disp=%u", ret);
1261 dispatched = true;
Tejun Heo651930b2013-05-14 13:52:35 -07001262 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001263
Tejun Heo7f52f982013-05-14 13:52:37 -07001264 if (throtl_schedule_next_dispatch(sq, false))
1265 break;
1266
1267 /* this dispatch windows is still open, relax and repeat */
1268 spin_unlock_irq(q->queue_lock);
1269 cpu_relax();
1270 spin_lock_irq(q->queue_lock);
1271 }
Tejun Heo6a525602013-05-14 13:52:32 -07001272
Tejun Heo2e48a532013-05-14 13:52:38 -07001273 if (!dispatched)
1274 goto out_unlock;
Tejun Heo6e1a5702013-05-14 13:52:37 -07001275
Tejun Heo2e48a532013-05-14 13:52:38 -07001276 if (parent_sq) {
1277 /* @parent_sq is another throl_grp, propagate dispatch */
1278 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1279 tg_update_disptime(tg);
1280 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1281 /* window is already open, repeat dispatching */
1282 sq = parent_sq;
1283 tg = sq_to_tg(sq);
1284 goto again;
1285 }
1286 }
1287 } else {
1288 /* reached the top-level, queue issueing */
1289 queue_work(kthrotld_workqueue, &td->dispatch_work);
1290 }
1291out_unlock:
Tejun Heo6e1a5702013-05-14 13:52:37 -07001292 spin_unlock_irq(q->queue_lock);
1293}
1294
1295/**
1296 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1297 * @work: work item being executed
1298 *
1299 * This function is queued for execution when bio's reach the bio_lists[]
1300 * of throtl_data->service_queue. Those bio's are ready and issued by this
1301 * function.
1302 */
Fabian Frederick8876e1402014-04-17 21:41:16 +02001303static void blk_throtl_dispatch_work_fn(struct work_struct *work)
Tejun Heo6e1a5702013-05-14 13:52:37 -07001304{
1305 struct throtl_data *td = container_of(work, struct throtl_data,
1306 dispatch_work);
1307 struct throtl_service_queue *td_sq = &td->service_queue;
1308 struct request_queue *q = td->queue;
1309 struct bio_list bio_list_on_stack;
1310 struct bio *bio;
1311 struct blk_plug plug;
1312 int rw;
1313
1314 bio_list_init(&bio_list_on_stack);
1315
1316 spin_lock_irq(q->queue_lock);
Tejun Heoc5cc2072013-05-14 13:52:38 -07001317 for (rw = READ; rw <= WRITE; rw++)
1318 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1319 bio_list_add(&bio_list_on_stack, bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001320 spin_unlock_irq(q->queue_lock);
1321
Tejun Heo6e1a5702013-05-14 13:52:37 -07001322 if (!bio_list_empty(&bio_list_on_stack)) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001323 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001324 while((bio = bio_list_pop(&bio_list_on_stack)))
1325 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +01001326 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -04001327 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001328}
1329
Tejun Heof95a04a2012-04-16 13:57:26 -07001330static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1331 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001332{
Tejun Heof95a04a2012-04-16 13:57:26 -07001333 struct throtl_grp *tg = pd_to_tg(pd);
1334 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001335
Shaohua Li2ab54922017-03-27 10:51:29 -07001336 if (v == U64_MAX)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001337 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001338 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001339}
1340
Tejun Heof95a04a2012-04-16 13:57:26 -07001341static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1342 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001343{
Tejun Heof95a04a2012-04-16 13:57:26 -07001344 struct throtl_grp *tg = pd_to_tg(pd);
1345 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001346
Shaohua Li2ab54922017-03-27 10:51:29 -07001347 if (v == UINT_MAX)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001348 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -07001349 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001350}
1351
Tejun Heo2da8ca82013-12-05 12:28:04 -05001352static int tg_print_conf_u64(struct seq_file *sf, void *v)
Tejun Heoaf133ce2012-04-01 14:38:44 -07001353{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001354 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1355 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001356 return 0;
1357}
1358
Tejun Heo2da8ca82013-12-05 12:28:04 -05001359static int tg_print_conf_uint(struct seq_file *sf, void *v)
Vivek Goyale43473b2010-09-15 17:06:35 -04001360{
Tejun Heo2da8ca82013-12-05 12:28:04 -05001361 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1362 &blkcg_policy_throtl, seq_cft(sf)->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -07001363 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -04001364}
1365
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001366static void tg_conf_updated(struct throtl_grp *tg, bool global)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001367{
Tejun Heo69948b02015-08-18 14:55:32 -07001368 struct throtl_service_queue *sq = &tg->service_queue;
Tejun Heo492eb212013-08-08 20:11:25 -04001369 struct cgroup_subsys_state *pos_css;
Tejun Heo69948b02015-08-18 14:55:32 -07001370 struct blkcg_gq *blkg;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001371
Tejun Heofda6f272013-05-14 13:52:36 -07001372 throtl_log(&tg->service_queue,
1373 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Shaohua Li9f626e32017-03-27 10:51:30 -07001374 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1375 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
Tejun Heo632b4492013-05-14 13:52:31 -07001376
1377 /*
Tejun Heo693e7512013-05-14 13:52:38 -07001378 * Update has_rules[] flags for the updated tg's subtree. A tg is
1379 * considered to have rules if either the tg itself or any of its
1380 * ancestors has rules. This identifies groups without any
1381 * restrictions in the whole hierarchy and allows them to bypass
1382 * blk-throttle.
1383 */
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001384 blkg_for_each_descendant_pre(blkg, pos_css,
1385 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001386 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1387 struct throtl_grp *parent_tg;
1388
1389 tg_update_has_rules(this_tg);
1390 /* ignore root/second level */
1391 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1392 !blkg->parent->parent)
1393 continue;
1394 parent_tg = blkg_to_tg(blkg->parent);
1395 /*
1396 * make sure all children has lower idle time threshold and
1397 * higher latency target
1398 */
1399 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1400 parent_tg->idletime_threshold);
1401 this_tg->latency_target = max(this_tg->latency_target,
1402 parent_tg->latency_target);
1403 }
Tejun Heo693e7512013-05-14 13:52:38 -07001404
1405 /*
Tejun Heo632b4492013-05-14 13:52:31 -07001406 * We're already holding queue_lock and know @tg is valid. Let's
1407 * apply the new config directly.
1408 *
1409 * Restart the slices for both READ and WRITES. It might happen
1410 * that a group's limit are dropped suddenly and we don't want to
1411 * account recently dispatched IO with new low rate.
1412 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001413 throtl_start_new_slice(tg, 0);
1414 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -07001415
Tejun Heo5b2c16a2013-05-14 13:52:32 -07001416 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo77216b02013-05-14 13:52:36 -07001417 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07001418 throtl_schedule_next_dispatch(sq->parent_sq, true);
Tejun Heo632b4492013-05-14 13:52:31 -07001419 }
Tejun Heo69948b02015-08-18 14:55:32 -07001420}
Tejun Heo60c2bc22012-04-01 14:38:43 -07001421
Tejun Heo69948b02015-08-18 14:55:32 -07001422static ssize_t tg_set_conf(struct kernfs_open_file *of,
1423 char *buf, size_t nbytes, loff_t off, bool is_u64)
1424{
1425 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1426 struct blkg_conf_ctx ctx;
1427 struct throtl_grp *tg;
1428 int ret;
1429 u64 v;
1430
1431 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1432 if (ret)
1433 return ret;
1434
1435 ret = -EINVAL;
1436 if (sscanf(ctx.body, "%llu", &v) != 1)
1437 goto out_finish;
1438 if (!v)
Shaohua Li2ab54922017-03-27 10:51:29 -07001439 v = U64_MAX;
Tejun Heo69948b02015-08-18 14:55:32 -07001440
1441 tg = blkg_to_tg(ctx.blkg);
1442
1443 if (is_u64)
1444 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1445 else
1446 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
1447
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001448 tg_conf_updated(tg, false);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001449 ret = 0;
1450out_finish:
Tejun Heo60c2bc22012-04-01 14:38:43 -07001451 blkg_conf_finish(&ctx);
Tejun Heo36aa9e52015-08-18 14:55:31 -07001452 return ret ?: nbytes;
Tejun Heo60c2bc22012-04-01 14:38:43 -07001453}
1454
Tejun Heo451af502014-05-13 12:16:21 -04001455static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1456 char *buf, size_t nbytes, loff_t off)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001457{
Tejun Heo451af502014-05-13 12:16:21 -04001458 return tg_set_conf(of, buf, nbytes, off, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001459}
1460
Tejun Heo451af502014-05-13 12:16:21 -04001461static ssize_t tg_set_conf_uint(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, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001465}
1466
Tejun Heo880f50e2015-08-18 14:55:30 -07001467static struct cftype throtl_legacy_files[] = {
Tejun Heo60c2bc22012-04-01 14:38:43 -07001468 {
1469 .name = "throttle.read_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001470 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001471 .seq_show = tg_print_conf_u64,
Tejun Heo451af502014-05-13 12:16:21 -04001472 .write = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001473 },
1474 {
1475 .name = "throttle.write_bps_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001476 .private = offsetof(struct throtl_grp, bps[WRITE][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.read_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001482 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
Tejun Heo2da8ca82013-12-05 12:28:04 -05001483 .seq_show = tg_print_conf_uint,
Tejun Heo451af502014-05-13 12:16:21 -04001484 .write = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001485 },
1486 {
1487 .name = "throttle.write_iops_device",
Shaohua Li9f626e32017-03-27 10:51:30 -07001488 .private = offsetof(struct throtl_grp, iops[WRITE][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.io_service_bytes",
Tejun Heo77ea7332015-08-18 14:55:24 -07001494 .private = (unsigned long)&blkcg_policy_throtl,
1495 .seq_show = blkg_print_stat_bytes,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001496 },
1497 {
1498 .name = "throttle.io_serviced",
Tejun Heo77ea7332015-08-18 14:55:24 -07001499 .private = (unsigned long)&blkcg_policy_throtl,
1500 .seq_show = blkg_print_stat_ios,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001501 },
1502 { } /* terminate */
1503};
1504
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001505static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001506 int off)
1507{
1508 struct throtl_grp *tg = pd_to_tg(pd);
1509 const char *dname = blkg_dev_name(pd->blkg);
1510 char bufs[4][21] = { "max", "max", "max", "max" };
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001511 u64 bps_dft;
1512 unsigned int iops_dft;
Shaohua Liada75b62017-03-27 10:51:42 -07001513 char idle_time[26] = "";
Shaohua Liec809912017-03-27 10:51:44 -07001514 char latency_time[26] = "";
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001515
1516 if (!dname)
1517 return 0;
Shaohua Li9f626e32017-03-27 10:51:30 -07001518
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001519 if (off == LIMIT_LOW) {
1520 bps_dft = 0;
1521 iops_dft = 0;
1522 } else {
1523 bps_dft = U64_MAX;
1524 iops_dft = UINT_MAX;
1525 }
1526
1527 if (tg->bps_conf[READ][off] == bps_dft &&
1528 tg->bps_conf[WRITE][off] == bps_dft &&
1529 tg->iops_conf[READ][off] == iops_dft &&
Shaohua Liada75b62017-03-27 10:51:42 -07001530 tg->iops_conf[WRITE][off] == iops_dft &&
Shaohua Liec809912017-03-27 10:51:44 -07001531 (off != LIMIT_LOW ||
Shaohua Lib4f428e2017-05-17 13:07:27 -07001532 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
Shaohua Li5b81fc32017-05-17 13:07:24 -07001533 tg->latency_target_conf == DFL_LATENCY_TARGET)))
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001534 return 0;
1535
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001536 if (tg->bps_conf[READ][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001537 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001538 tg->bps_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001539 if (tg->bps_conf[WRITE][off] != U64_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001540 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001541 tg->bps_conf[WRITE][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001542 if (tg->iops_conf[READ][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001543 snprintf(bufs[2], sizeof(bufs[2]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001544 tg->iops_conf[READ][off]);
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001545 if (tg->iops_conf[WRITE][off] != UINT_MAX)
Shaohua Li9f626e32017-03-27 10:51:30 -07001546 snprintf(bufs[3], sizeof(bufs[3]), "%u",
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001547 tg->iops_conf[WRITE][off]);
Shaohua Liada75b62017-03-27 10:51:42 -07001548 if (off == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001549 if (tg->idletime_threshold_conf == ULONG_MAX)
Shaohua Liada75b62017-03-27 10:51:42 -07001550 strcpy(idle_time, " idle=max");
1551 else
1552 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
Shaohua Li5b81fc32017-05-17 13:07:24 -07001553 tg->idletime_threshold_conf);
Shaohua Liec809912017-03-27 10:51:44 -07001554
Shaohua Li5b81fc32017-05-17 13:07:24 -07001555 if (tg->latency_target_conf == ULONG_MAX)
Shaohua Liec809912017-03-27 10:51:44 -07001556 strcpy(latency_time, " latency=max");
1557 else
1558 snprintf(latency_time, sizeof(latency_time),
Shaohua Li5b81fc32017-05-17 13:07:24 -07001559 " latency=%lu", tg->latency_target_conf);
Shaohua Liada75b62017-03-27 10:51:42 -07001560 }
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001561
Shaohua Liec809912017-03-27 10:51:44 -07001562 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1563 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1564 latency_time);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001565 return 0;
1566}
1567
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001568static int tg_print_limit(struct seq_file *sf, void *v)
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001569{
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001570 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001571 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1572 return 0;
1573}
1574
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001575static ssize_t tg_set_limit(struct kernfs_open_file *of,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001576 char *buf, size_t nbytes, loff_t off)
1577{
1578 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1579 struct blkg_conf_ctx ctx;
1580 struct throtl_grp *tg;
1581 u64 v[4];
Shaohua Liada75b62017-03-27 10:51:42 -07001582 unsigned long idle_time;
Shaohua Liec809912017-03-27 10:51:44 -07001583 unsigned long latency_time;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001584 int ret;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001585 int index = of_cft(of)->private;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001586
1587 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1588 if (ret)
1589 return ret;
1590
1591 tg = blkg_to_tg(ctx.blkg);
1592
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001593 v[0] = tg->bps_conf[READ][index];
1594 v[1] = tg->bps_conf[WRITE][index];
1595 v[2] = tg->iops_conf[READ][index];
1596 v[3] = tg->iops_conf[WRITE][index];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001597
Shaohua Li5b81fc32017-05-17 13:07:24 -07001598 idle_time = tg->idletime_threshold_conf;
1599 latency_time = tg->latency_target_conf;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001600 while (true) {
1601 char tok[27]; /* wiops=18446744073709551616 */
1602 char *p;
Shaohua Li2ab54922017-03-27 10:51:29 -07001603 u64 val = U64_MAX;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001604 int len;
1605
1606 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1607 break;
1608 if (tok[0] == '\0')
1609 break;
1610 ctx.body += len;
1611
1612 ret = -EINVAL;
1613 p = tok;
1614 strsep(&p, "=");
1615 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1616 goto out_finish;
1617
1618 ret = -ERANGE;
1619 if (!val)
1620 goto out_finish;
1621
1622 ret = -EINVAL;
1623 if (!strcmp(tok, "rbps"))
1624 v[0] = val;
1625 else if (!strcmp(tok, "wbps"))
1626 v[1] = val;
1627 else if (!strcmp(tok, "riops"))
1628 v[2] = min_t(u64, val, UINT_MAX);
1629 else if (!strcmp(tok, "wiops"))
1630 v[3] = min_t(u64, val, UINT_MAX);
Shaohua Liada75b62017-03-27 10:51:42 -07001631 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1632 idle_time = val;
Shaohua Liec809912017-03-27 10:51:44 -07001633 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1634 latency_time = val;
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001635 else
1636 goto out_finish;
1637 }
1638
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001639 tg->bps_conf[READ][index] = v[0];
1640 tg->bps_conf[WRITE][index] = v[1];
1641 tg->iops_conf[READ][index] = v[2];
1642 tg->iops_conf[WRITE][index] = v[3];
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001643
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001644 if (index == LIMIT_MAX) {
1645 tg->bps[READ][index] = v[0];
1646 tg->bps[WRITE][index] = v[1];
1647 tg->iops[READ][index] = v[2];
1648 tg->iops[WRITE][index] = v[3];
1649 }
1650 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1651 tg->bps_conf[READ][LIMIT_MAX]);
1652 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1653 tg->bps_conf[WRITE][LIMIT_MAX]);
1654 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1655 tg->iops_conf[READ][LIMIT_MAX]);
1656 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1657 tg->iops_conf[WRITE][LIMIT_MAX]);
Shaohua Lib4f428e2017-05-17 13:07:27 -07001658 tg->idletime_threshold_conf = idle_time;
1659 tg->latency_target_conf = latency_time;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001660
Shaohua Lib4f428e2017-05-17 13:07:27 -07001661 /* force user to configure all settings for low limit */
1662 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1663 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1664 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1665 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1666 tg->bps[READ][LIMIT_LOW] = 0;
1667 tg->bps[WRITE][LIMIT_LOW] = 0;
1668 tg->iops[READ][LIMIT_LOW] = 0;
1669 tg->iops[WRITE][LIMIT_LOW] = 0;
1670 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1671 tg->latency_target = DFL_LATENCY_TARGET;
1672 } else if (index == LIMIT_LOW) {
Shaohua Li5b81fc32017-05-17 13:07:24 -07001673 tg->idletime_threshold = tg->idletime_threshold_conf;
Shaohua Li5b81fc32017-05-17 13:07:24 -07001674 tg->latency_target = tg->latency_target_conf;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001675 }
Shaohua Lib4f428e2017-05-17 13:07:27 -07001676
1677 blk_throtl_update_limit_valid(tg->td);
1678 if (tg->td->limit_valid[LIMIT_LOW]) {
1679 if (index == LIMIT_LOW)
1680 tg->td->limit_index = LIMIT_LOW;
1681 } else
1682 tg->td->limit_index = LIMIT_MAX;
Shaohua Li9bb67ae2017-05-17 13:07:26 -07001683 tg_conf_updated(tg, index == LIMIT_LOW &&
1684 tg->td->limit_valid[LIMIT_LOW]);
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001685 ret = 0;
1686out_finish:
1687 blkg_conf_finish(&ctx);
1688 return ret ?: nbytes;
1689}
1690
1691static struct cftype throtl_files[] = {
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001692#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1693 {
1694 .name = "low",
1695 .flags = CFTYPE_NOT_ON_ROOT,
1696 .seq_show = tg_print_limit,
1697 .write = tg_set_limit,
1698 .private = LIMIT_LOW,
1699 },
1700#endif
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001701 {
1702 .name = "max",
1703 .flags = CFTYPE_NOT_ON_ROOT,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001704 .seq_show = tg_print_limit,
1705 .write = tg_set_limit,
1706 .private = LIMIT_MAX,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001707 },
1708 { } /* terminate */
1709};
1710
Vivek Goyalda527772011-03-02 19:05:33 -05001711static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001712{
1713 struct throtl_data *td = q->td;
1714
Tejun Heo69df0ab2013-05-14 13:52:36 -07001715 cancel_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001716}
1717
Tejun Heo3c798392012-04-16 13:57:25 -07001718static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001719 .dfl_cftypes = throtl_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001720 .legacy_cftypes = throtl_legacy_files,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001721
Tejun Heo001bea72015-08-18 14:55:11 -07001722 .pd_alloc_fn = throtl_pd_alloc,
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001723 .pd_init_fn = throtl_pd_init,
Tejun Heo693e7512013-05-14 13:52:38 -07001724 .pd_online_fn = throtl_pd_online,
Shaohua Licd5ab1b2017-03-27 10:51:32 -07001725 .pd_offline_fn = throtl_pd_offline,
Tejun Heo001bea72015-08-18 14:55:11 -07001726 .pd_free_fn = throtl_pd_free,
Vivek Goyale43473b2010-09-15 17:06:35 -04001727};
1728
Shaohua Li3f0abd82017-03-27 10:51:35 -07001729static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1730{
1731 unsigned long rtime = jiffies, wtime = jiffies;
1732
1733 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1734 rtime = tg->last_low_overflow_time[READ];
1735 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1736 wtime = tg->last_low_overflow_time[WRITE];
1737 return min(rtime, wtime);
1738}
1739
1740/* tg should not be an intermediate node */
1741static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1742{
1743 struct throtl_service_queue *parent_sq;
1744 struct throtl_grp *parent = tg;
1745 unsigned long ret = __tg_last_low_overflow_time(tg);
1746
1747 while (true) {
1748 parent_sq = parent->service_queue.parent_sq;
1749 parent = sq_to_tg(parent_sq);
1750 if (!parent)
1751 break;
1752
1753 /*
1754 * The parent doesn't have low limit, it always reaches low
1755 * limit. Its overflow time is useless for children
1756 */
1757 if (!parent->bps[READ][LIMIT_LOW] &&
1758 !parent->iops[READ][LIMIT_LOW] &&
1759 !parent->bps[WRITE][LIMIT_LOW] &&
1760 !parent->iops[WRITE][LIMIT_LOW])
1761 continue;
1762 if (time_after(__tg_last_low_overflow_time(parent), ret))
1763 ret = __tg_last_low_overflow_time(parent);
1764 }
1765 return ret;
1766}
1767
Shaohua Li9e234ee2017-03-27 10:51:41 -07001768static bool throtl_tg_is_idle(struct throtl_grp *tg)
1769{
1770 /*
1771 * cgroup is idle if:
1772 * - single idle is too long, longer than a fixed value (in case user
Shaohua Lib4f428e2017-05-17 13:07:27 -07001773 * configure a too big threshold) or 4 times of idletime threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001774 * - average think time is more than threshold
Shaohua Li53696b82017-03-27 15:19:43 -07001775 * - IO latency is largely below threshold
Shaohua Li9e234ee2017-03-27 10:51:41 -07001776 */
Shaohua Lib4f428e2017-05-17 13:07:27 -07001777 unsigned long time;
Shaohua Li4cff7292017-05-17 13:07:25 -07001778 bool ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001779
Shaohua Lib4f428e2017-05-17 13:07:27 -07001780 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1781 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1782 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1783 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1784 tg->avg_idletime > tg->idletime_threshold ||
1785 (tg->latency_target && tg->bio_cnt &&
Shaohua Li53696b82017-03-27 15:19:43 -07001786 tg->bad_bio_cnt * 5 < tg->bio_cnt);
Shaohua Li4cff7292017-05-17 13:07:25 -07001787 throtl_log(&tg->service_queue,
1788 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1789 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1790 tg->bio_cnt, ret, tg->td->scale);
1791 return ret;
Shaohua Li9e234ee2017-03-27 10:51:41 -07001792}
1793
Shaohua Lic79892c2017-03-27 10:51:34 -07001794static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1795{
1796 struct throtl_service_queue *sq = &tg->service_queue;
1797 bool read_limit, write_limit;
1798
1799 /*
1800 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1801 * reaches), it's ok to upgrade to next limit
1802 */
1803 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1804 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1805 if (!read_limit && !write_limit)
1806 return true;
1807 if (read_limit && sq->nr_queued[READ] &&
1808 (!write_limit || sq->nr_queued[WRITE]))
1809 return true;
1810 if (write_limit && sq->nr_queued[WRITE] &&
1811 (!read_limit || sq->nr_queued[READ]))
1812 return true;
Shaohua Liaec24242017-03-27 10:51:39 -07001813
1814 if (time_after_eq(jiffies,
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001815 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1816 throtl_tg_is_idle(tg))
Shaohua Liaec24242017-03-27 10:51:39 -07001817 return true;
Shaohua Lic79892c2017-03-27 10:51:34 -07001818 return false;
1819}
1820
1821static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1822{
1823 while (true) {
1824 if (throtl_tg_can_upgrade(tg))
1825 return true;
1826 tg = sq_to_tg(tg->service_queue.parent_sq);
1827 if (!tg || !tg_to_blkg(tg)->parent)
1828 return false;
1829 }
1830 return false;
1831}
1832
1833static bool throtl_can_upgrade(struct throtl_data *td,
1834 struct throtl_grp *this_tg)
1835{
1836 struct cgroup_subsys_state *pos_css;
1837 struct blkcg_gq *blkg;
1838
1839 if (td->limit_index != LIMIT_LOW)
1840 return false;
1841
Shaohua Li297e3d82017-03-27 10:51:37 -07001842 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001843 return false;
1844
Shaohua Lic79892c2017-03-27 10:51:34 -07001845 rcu_read_lock();
1846 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1847 struct throtl_grp *tg = blkg_to_tg(blkg);
1848
1849 if (tg == this_tg)
1850 continue;
1851 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1852 continue;
1853 if (!throtl_hierarchy_can_upgrade(tg)) {
1854 rcu_read_unlock();
1855 return false;
1856 }
1857 }
1858 rcu_read_unlock();
1859 return true;
1860}
1861
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001862static void throtl_upgrade_check(struct throtl_grp *tg)
1863{
1864 unsigned long now = jiffies;
1865
1866 if (tg->td->limit_index != LIMIT_LOW)
1867 return;
1868
1869 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1870 return;
1871
1872 tg->last_check_time = now;
1873
1874 if (!time_after_eq(now,
1875 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1876 return;
1877
1878 if (throtl_can_upgrade(tg->td, NULL))
1879 throtl_upgrade_state(tg->td);
1880}
1881
Shaohua Lic79892c2017-03-27 10:51:34 -07001882static void throtl_upgrade_state(struct throtl_data *td)
1883{
1884 struct cgroup_subsys_state *pos_css;
1885 struct blkcg_gq *blkg;
1886
Shaohua Li4cff7292017-05-17 13:07:25 -07001887 throtl_log(&td->service_queue, "upgrade to max");
Shaohua Lic79892c2017-03-27 10:51:34 -07001888 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07001889 td->low_upgrade_time = jiffies;
Shaohua Li7394e312017-03-27 10:51:40 -07001890 td->scale = 0;
Shaohua Lic79892c2017-03-27 10:51:34 -07001891 rcu_read_lock();
1892 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1893 struct throtl_grp *tg = blkg_to_tg(blkg);
1894 struct throtl_service_queue *sq = &tg->service_queue;
1895
1896 tg->disptime = jiffies - 1;
1897 throtl_select_dispatch(sq);
1898 throtl_schedule_next_dispatch(sq, false);
1899 }
1900 rcu_read_unlock();
1901 throtl_select_dispatch(&td->service_queue);
1902 throtl_schedule_next_dispatch(&td->service_queue, false);
1903 queue_work(kthrotld_workqueue, &td->dispatch_work);
1904}
1905
Shaohua Li3f0abd82017-03-27 10:51:35 -07001906static void throtl_downgrade_state(struct throtl_data *td, int new)
1907{
Shaohua Li7394e312017-03-27 10:51:40 -07001908 td->scale /= 2;
1909
Shaohua Li4cff7292017-05-17 13:07:25 -07001910 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
Shaohua Li7394e312017-03-27 10:51:40 -07001911 if (td->scale) {
1912 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1913 return;
1914 }
1915
Shaohua Li3f0abd82017-03-27 10:51:35 -07001916 td->limit_index = new;
1917 td->low_downgrade_time = jiffies;
1918}
1919
1920static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1921{
1922 struct throtl_data *td = tg->td;
1923 unsigned long now = jiffies;
1924
1925 /*
1926 * If cgroup is below low limit, consider downgrade and throttle other
1927 * cgroups
1928 */
Shaohua Li297e3d82017-03-27 10:51:37 -07001929 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1930 time_after_eq(now, tg_last_low_overflow_time(tg) +
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07001931 td->throtl_slice) &&
1932 (!throtl_tg_is_idle(tg) ||
1933 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001934 return true;
1935 return false;
1936}
1937
1938static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1939{
1940 while (true) {
1941 if (!throtl_tg_can_downgrade(tg))
1942 return false;
1943 tg = sq_to_tg(tg->service_queue.parent_sq);
1944 if (!tg || !tg_to_blkg(tg)->parent)
1945 break;
1946 }
1947 return true;
1948}
1949
1950static void throtl_downgrade_check(struct throtl_grp *tg)
1951{
1952 uint64_t bps;
1953 unsigned int iops;
1954 unsigned long elapsed_time;
1955 unsigned long now = jiffies;
1956
1957 if (tg->td->limit_index != LIMIT_MAX ||
1958 !tg->td->limit_valid[LIMIT_LOW])
1959 return;
1960 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1961 return;
Shaohua Li297e3d82017-03-27 10:51:37 -07001962 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001963 return;
1964
1965 elapsed_time = now - tg->last_check_time;
1966 tg->last_check_time = now;
1967
Shaohua Li297e3d82017-03-27 10:51:37 -07001968 if (time_before(now, tg_last_low_overflow_time(tg) +
1969 tg->td->throtl_slice))
Shaohua Li3f0abd82017-03-27 10:51:35 -07001970 return;
1971
1972 if (tg->bps[READ][LIMIT_LOW]) {
1973 bps = tg->last_bytes_disp[READ] * HZ;
1974 do_div(bps, elapsed_time);
1975 if (bps >= tg->bps[READ][LIMIT_LOW])
1976 tg->last_low_overflow_time[READ] = now;
1977 }
1978
1979 if (tg->bps[WRITE][LIMIT_LOW]) {
1980 bps = tg->last_bytes_disp[WRITE] * HZ;
1981 do_div(bps, elapsed_time);
1982 if (bps >= tg->bps[WRITE][LIMIT_LOW])
1983 tg->last_low_overflow_time[WRITE] = now;
1984 }
1985
1986 if (tg->iops[READ][LIMIT_LOW]) {
1987 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
1988 if (iops >= tg->iops[READ][LIMIT_LOW])
1989 tg->last_low_overflow_time[READ] = now;
1990 }
1991
1992 if (tg->iops[WRITE][LIMIT_LOW]) {
1993 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
1994 if (iops >= tg->iops[WRITE][LIMIT_LOW])
1995 tg->last_low_overflow_time[WRITE] = now;
1996 }
1997
1998 /*
1999 * If cgroup is below low limit, consider downgrade and throttle other
2000 * cgroups
2001 */
2002 if (throtl_hierarchy_can_downgrade(tg))
2003 throtl_downgrade_state(tg->td, LIMIT_LOW);
2004
2005 tg->last_bytes_disp[READ] = 0;
2006 tg->last_bytes_disp[WRITE] = 0;
2007 tg->last_io_disp[READ] = 0;
2008 tg->last_io_disp[WRITE] = 0;
2009}
2010
Shaohua Li9e234ee2017-03-27 10:51:41 -07002011static void blk_throtl_update_idletime(struct throtl_grp *tg)
2012{
2013 unsigned long now = ktime_get_ns() >> 10;
2014 unsigned long last_finish_time = tg->last_finish_time;
2015
2016 if (now <= last_finish_time || last_finish_time == 0 ||
2017 last_finish_time == tg->checked_last_finish_time)
2018 return;
2019
2020 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2021 tg->checked_last_finish_time = last_finish_time;
2022}
2023
Shaohua Lib9147dd2017-03-27 15:19:42 -07002024#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2025static void throtl_update_latency_buckets(struct throtl_data *td)
2026{
2027 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
2028 int i, cpu;
2029 unsigned long last_latency = 0;
2030 unsigned long latency;
2031
2032 if (!blk_queue_nonrot(td->queue))
2033 return;
2034 if (time_before(jiffies, td->last_calculate_time + HZ))
2035 return;
2036 td->last_calculate_time = jiffies;
2037
2038 memset(avg_latency, 0, sizeof(avg_latency));
2039 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2040 struct latency_bucket *tmp = &td->tmp_buckets[i];
2041
2042 for_each_possible_cpu(cpu) {
2043 struct latency_bucket *bucket;
2044
2045 /* this isn't race free, but ok in practice */
2046 bucket = per_cpu_ptr(td->latency_buckets, cpu);
2047 tmp->total_latency += bucket[i].total_latency;
2048 tmp->samples += bucket[i].samples;
2049 bucket[i].total_latency = 0;
2050 bucket[i].samples = 0;
2051 }
2052
2053 if (tmp->samples >= 32) {
2054 int samples = tmp->samples;
2055
2056 latency = tmp->total_latency;
2057
2058 tmp->total_latency = 0;
2059 tmp->samples = 0;
2060 latency /= samples;
2061 if (latency == 0)
2062 continue;
2063 avg_latency[i].latency = latency;
2064 }
2065 }
2066
2067 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2068 if (!avg_latency[i].latency) {
2069 if (td->avg_buckets[i].latency < last_latency)
2070 td->avg_buckets[i].latency = last_latency;
2071 continue;
2072 }
2073
2074 if (!td->avg_buckets[i].valid)
2075 latency = avg_latency[i].latency;
2076 else
2077 latency = (td->avg_buckets[i].latency * 7 +
2078 avg_latency[i].latency) >> 3;
2079
2080 td->avg_buckets[i].latency = max(latency, last_latency);
2081 td->avg_buckets[i].valid = true;
2082 last_latency = td->avg_buckets[i].latency;
2083 }
Shaohua Li4cff7292017-05-17 13:07:25 -07002084
2085 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2086 throtl_log(&td->service_queue,
2087 "Latency bucket %d: latency=%ld, valid=%d", i,
2088 td->avg_buckets[i].latency, td->avg_buckets[i].valid);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002089}
2090#else
2091static inline void throtl_update_latency_buckets(struct throtl_data *td)
2092{
2093}
2094#endif
2095
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002096static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2097{
2098#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2099 int ret;
2100
2101 ret = bio_associate_current(bio);
2102 if (ret == 0 || ret == -EBUSY)
2103 bio->bi_cg_private = tg;
2104 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
2105#else
2106 bio_associate_current(bio);
2107#endif
2108}
2109
Tejun Heoae118892015-08-18 14:55:20 -07002110bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2111 struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04002112{
Tejun Heoc5cc2072013-05-14 13:52:38 -07002113 struct throtl_qnode *qn = NULL;
Tejun Heoae118892015-08-18 14:55:20 -07002114 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
Tejun Heo73f0d492013-05-14 13:52:35 -07002115 struct throtl_service_queue *sq;
Tejun Heo0e9f4162013-05-14 13:52:35 -07002116 bool rw = bio_data_dir(bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002117 bool throttled = false;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002118 struct throtl_data *td = tg->td;
Vivek Goyale43473b2010-09-15 17:06:35 -04002119
Tejun Heoae118892015-08-18 14:55:20 -07002120 WARN_ON_ONCE(!rcu_read_lock_held());
2121
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002122 /* see throtl_charge_bio() */
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002123 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
Tejun Heobc16a4f2011-10-19 14:33:01 +02002124 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04002125
2126 spin_lock_irq(q->queue_lock);
Tejun Heoc9589f02015-08-18 14:55:19 -07002127
Shaohua Lib9147dd2017-03-27 15:19:42 -07002128 throtl_update_latency_buckets(td);
2129
Tejun Heoc9589f02015-08-18 14:55:19 -07002130 if (unlikely(blk_queue_bypass(q)))
Tejun Heobc16a4f2011-10-19 14:33:01 +02002131 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04002132
Jens Axboe2bc19cd2017-04-20 09:41:36 -06002133 blk_throtl_assoc_bio(tg, bio);
Shaohua Li9e234ee2017-03-27 10:51:41 -07002134 blk_throtl_update_idletime(tg);
2135
Tejun Heo73f0d492013-05-14 13:52:35 -07002136 sq = &tg->service_queue;
2137
Shaohua Lic79892c2017-03-27 10:51:34 -07002138again:
Tejun Heo9e660ac2013-05-14 13:52:38 -07002139 while (true) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002140 if (tg->last_low_overflow_time[rw] == 0)
2141 tg->last_low_overflow_time[rw] = jiffies;
2142 throtl_downgrade_check(tg);
Shaohua Lifa6fb5a2017-03-27 10:51:43 -07002143 throtl_upgrade_check(tg);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002144 /* throtl is FIFO - if bios are already queued, should queue */
2145 if (sq->nr_queued[rw])
2146 break;
Vivek Goyalde701c72011-03-07 21:09:32 +01002147
Tejun Heo9e660ac2013-05-14 13:52:38 -07002148 /* if above limits, break to queue */
Shaohua Lic79892c2017-03-27 10:51:34 -07002149 if (!tg_may_dispatch(tg, bio, NULL)) {
Shaohua Li3f0abd82017-03-27 10:51:35 -07002150 tg->last_low_overflow_time[rw] = jiffies;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002151 if (throtl_can_upgrade(td, tg)) {
2152 throtl_upgrade_state(td);
Shaohua Lic79892c2017-03-27 10:51:34 -07002153 goto again;
2154 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002155 break;
Shaohua Lic79892c2017-03-27 10:51:34 -07002156 }
Tejun Heo9e660ac2013-05-14 13:52:38 -07002157
2158 /* within limits, let's charge and dispatch directly */
Vivek Goyale43473b2010-09-15 17:06:35 -04002159 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01002160
2161 /*
2162 * We need to trim slice even when bios are not being queued
2163 * otherwise it might happen that a bio is not queued for
2164 * a long time and slice keeps on extending and trim is not
2165 * called for a long time. Now if limits are reduced suddenly
2166 * we take into account all the IO dispatched so far at new
2167 * low rate and * newly queued IO gets a really long dispatch
2168 * time.
2169 *
2170 * So keep on trimming slice even if bio is not queued.
2171 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07002172 throtl_trim_slice(tg, rw);
Tejun Heo9e660ac2013-05-14 13:52:38 -07002173
2174 /*
2175 * @bio passed through this layer without being throttled.
2176 * Climb up the ladder. If we''re already at the top, it
2177 * can be executed directly.
2178 */
Tejun Heoc5cc2072013-05-14 13:52:38 -07002179 qn = &tg->qnode_on_parent[rw];
Tejun Heo9e660ac2013-05-14 13:52:38 -07002180 sq = sq->parent_sq;
2181 tg = sq_to_tg(sq);
2182 if (!tg)
2183 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04002184 }
2185
Tejun Heo9e660ac2013-05-14 13:52:38 -07002186 /* out-of-limit, queue to @tg */
Tejun Heofda6f272013-05-14 13:52:36 -07002187 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2188 rw == READ ? 'R' : 'W',
Shaohua Li9f626e32017-03-27 10:51:30 -07002189 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2190 tg_bps_limit(tg, rw),
2191 tg->io_disp[rw], tg_iops_limit(tg, rw),
Tejun Heofda6f272013-05-14 13:52:36 -07002192 sq->nr_queued[READ], sq->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -04002193
Shaohua Li3f0abd82017-03-27 10:51:35 -07002194 tg->last_low_overflow_time[rw] = jiffies;
2195
Shaohua Lib9147dd2017-03-27 15:19:42 -07002196 td->nr_queued[rw]++;
Tejun Heoc5cc2072013-05-14 13:52:38 -07002197 throtl_add_bio_tg(bio, qn, tg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002198 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04002199
Tejun Heo7f52f982013-05-14 13:52:37 -07002200 /*
2201 * Update @tg's dispatch time and force schedule dispatch if @tg
2202 * was empty before @bio. The forced scheduling isn't likely to
2203 * cause undue delay as @bio is likely to be dispatched directly if
2204 * its @tg's disptime is not in the future.
2205 */
Tejun Heo0e9f4162013-05-14 13:52:35 -07002206 if (tg->flags & THROTL_TG_WAS_EMPTY) {
Tejun Heo77216b02013-05-14 13:52:36 -07002207 tg_update_disptime(tg);
Tejun Heo7f52f982013-05-14 13:52:37 -07002208 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
Vivek Goyale43473b2010-09-15 17:06:35 -04002209 }
2210
Tejun Heobc16a4f2011-10-19 14:33:01 +02002211out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04002212 spin_unlock_irq(q->queue_lock);
Tejun Heobc16a4f2011-10-19 14:33:01 +02002213out:
Tejun Heo2a0f61e2013-05-14 13:52:36 -07002214 /*
2215 * As multiple blk-throtls may stack in the same issue path, we
2216 * don't want bios to leave with the flag set. Clear the flag if
2217 * being issued.
2218 */
2219 if (!throttled)
Christoph Hellwig8d2bbd42016-10-20 15:12:12 +02002220 bio_clear_flag(bio, BIO_THROTTLED);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002221
2222#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2223 if (throttled || !td->track_bio_latency)
2224 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2225#endif
Tejun Heobc16a4f2011-10-19 14:33:01 +02002226 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04002227}
2228
Shaohua Li9e234ee2017-03-27 10:51:41 -07002229#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
Shaohua Lib9147dd2017-03-27 15:19:42 -07002230static void throtl_track_latency(struct throtl_data *td, sector_t size,
2231 int op, unsigned long time)
2232{
2233 struct latency_bucket *latency;
2234 int index;
2235
2236 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2237 !blk_queue_nonrot(td->queue))
2238 return;
2239
2240 index = request_bucket_index(size);
2241
2242 latency = get_cpu_ptr(td->latency_buckets);
2243 latency[index].total_latency += time;
2244 latency[index].samples++;
2245 put_cpu_ptr(td->latency_buckets);
2246}
2247
2248void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2249{
2250 struct request_queue *q = rq->q;
2251 struct throtl_data *td = q->td;
2252
2253 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2254 req_op(rq), time_ns >> 10);
2255}
2256
Shaohua Li9e234ee2017-03-27 10:51:41 -07002257void blk_throtl_bio_endio(struct bio *bio)
2258{
2259 struct throtl_grp *tg;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002260 u64 finish_time_ns;
2261 unsigned long finish_time;
2262 unsigned long start_time;
2263 unsigned long lat;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002264
2265 tg = bio->bi_cg_private;
2266 if (!tg)
2267 return;
2268 bio->bi_cg_private = NULL;
2269
Shaohua Lib9147dd2017-03-27 15:19:42 -07002270 finish_time_ns = ktime_get_ns();
2271 tg->last_finish_time = finish_time_ns >> 10;
2272
2273 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2274 finish_time = __blk_stat_time(finish_time_ns) >> 10;
Shaohua Li53696b82017-03-27 15:19:43 -07002275 if (!start_time || finish_time <= start_time)
2276 return;
2277
2278 lat = finish_time - start_time;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002279 /* this is only for bio based driver */
Shaohua Li53696b82017-03-27 15:19:43 -07002280 if (!(bio->bi_issue_stat.stat & SKIP_LATENCY))
Shaohua Lib9147dd2017-03-27 15:19:42 -07002281 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2282 bio_op(bio), lat);
Shaohua Li53696b82017-03-27 15:19:43 -07002283
2284 if (tg->latency_target) {
2285 int bucket;
2286 unsigned int threshold;
2287
2288 bucket = request_bucket_index(
2289 blk_stat_size(&bio->bi_issue_stat));
2290 threshold = tg->td->avg_buckets[bucket].latency +
2291 tg->latency_target;
2292 if (lat > threshold)
2293 tg->bad_bio_cnt++;
2294 /*
2295 * Not race free, could get wrong count, which means cgroups
2296 * will be throttled
2297 */
2298 tg->bio_cnt++;
2299 }
2300
2301 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2302 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2303 tg->bio_cnt /= 2;
2304 tg->bad_bio_cnt /= 2;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002305 }
Shaohua Li9e234ee2017-03-27 10:51:41 -07002306}
2307#endif
2308
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002309/*
2310 * Dispatch all bios from all children tg's queued on @parent_sq. On
2311 * return, @parent_sq is guaranteed to not have any active children tg's
2312 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2313 */
2314static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2315{
2316 struct throtl_grp *tg;
2317
2318 while ((tg = throtl_rb_first(parent_sq))) {
2319 struct throtl_service_queue *sq = &tg->service_queue;
2320 struct bio *bio;
2321
2322 throtl_dequeue_tg(tg);
2323
Tejun Heoc5cc2072013-05-14 13:52:38 -07002324 while ((bio = throtl_peek_queued(&sq->queued[READ])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002325 tg_dispatch_one_bio(tg, bio_data_dir(bio));
Tejun Heoc5cc2072013-05-14 13:52:38 -07002326 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002327 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2328 }
2329}
2330
Tejun Heoc9a929d2011-10-19 14:42:16 +02002331/**
2332 * blk_throtl_drain - drain throttled bios
2333 * @q: request_queue to drain throttled bios for
2334 *
2335 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2336 */
2337void blk_throtl_drain(struct request_queue *q)
2338 __releases(q->queue_lock) __acquires(q->queue_lock)
2339{
2340 struct throtl_data *td = q->td;
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002341 struct blkcg_gq *blkg;
Tejun Heo492eb212013-08-08 20:11:25 -04002342 struct cgroup_subsys_state *pos_css;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002343 struct bio *bio;
Tejun Heo651930b2013-05-14 13:52:35 -07002344 int rw;
Tejun Heoc9a929d2011-10-19 14:42:16 +02002345
Andi Kleen8bcb6c72012-03-30 12:33:28 +02002346 queue_lockdep_assert_held(q);
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002347 rcu_read_lock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002348
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002349 /*
2350 * Drain each tg while doing post-order walk on the blkg tree, so
2351 * that all bios are propagated to td->service_queue. It'd be
2352 * better to walk service_queue tree directly but blkg walk is
2353 * easier.
2354 */
Tejun Heo492eb212013-08-08 20:11:25 -04002355 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002356 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
Tejun Heo73f0d492013-05-14 13:52:35 -07002357
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002358 /* finally, transfer bios from top-level tg's into the td */
2359 tg_drain_bios(&td->service_queue);
2360
2361 rcu_read_unlock();
Tejun Heoc9a929d2011-10-19 14:42:16 +02002362 spin_unlock_irq(q->queue_lock);
2363
Tejun Heo2a12f0d2013-05-14 13:52:37 -07002364 /* all bios now should be in td->service_queue, issue them */
Tejun Heo651930b2013-05-14 13:52:35 -07002365 for (rw = READ; rw <= WRITE; rw++)
Tejun Heoc5cc2072013-05-14 13:52:38 -07002366 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2367 NULL)))
Tejun Heo651930b2013-05-14 13:52:35 -07002368 generic_make_request(bio);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002369
2370 spin_lock_irq(q->queue_lock);
2371}
2372
Vivek Goyale43473b2010-09-15 17:06:35 -04002373int blk_throtl_init(struct request_queue *q)
2374{
2375 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07002376 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002377
2378 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2379 if (!td)
2380 return -ENOMEM;
Shaohua Lib9147dd2017-03-27 15:19:42 -07002381 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2382 LATENCY_BUCKET_SIZE, __alignof__(u64));
2383 if (!td->latency_buckets) {
2384 kfree(td);
2385 return -ENOMEM;
2386 }
Vivek Goyale43473b2010-09-15 17:06:35 -04002387
Tejun Heo69df0ab2013-05-14 13:52:36 -07002388 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heob2ce2642015-08-18 14:55:13 -07002389 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04002390
Tejun Heocd1604f2012-03-05 13:15:06 -08002391 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04002392 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02002393
Shaohua Li9f626e32017-03-27 10:51:30 -07002394 td->limit_valid[LIMIT_MAX] = true;
Shaohua Licd5ab1b2017-03-27 10:51:32 -07002395 td->limit_index = LIMIT_MAX;
Shaohua Li3f0abd82017-03-27 10:51:35 -07002396 td->low_upgrade_time = jiffies;
2397 td->low_downgrade_time = jiffies;
Shaohua Li9e234ee2017-03-27 10:51:41 -07002398
Tejun Heoa2b16932012-04-13 13:11:33 -07002399 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07002400 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002401 if (ret) {
2402 free_percpu(td->latency_buckets);
Vivek Goyal29b12582011-05-19 15:38:24 -04002403 kfree(td);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002404 }
Tejun Heoa2b16932012-04-13 13:11:33 -07002405 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04002406}
2407
2408void blk_throtl_exit(struct request_queue *q)
2409{
Tejun Heoc875f4d2012-03-05 13:15:22 -08002410 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05002411 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07002412 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Shaohua Lib9147dd2017-03-27 15:19:42 -07002413 free_percpu(q->td->latency_buckets);
Tejun Heoc9a929d2011-10-19 14:42:16 +02002414 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04002415}
2416
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002417void blk_throtl_register_queue(struct request_queue *q)
2418{
2419 struct throtl_data *td;
2420
2421 td = q->td;
2422 BUG_ON(!td);
2423
Shaohua Lib4f428e2017-05-17 13:07:27 -07002424 if (blk_queue_nonrot(q))
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002425 td->throtl_slice = DFL_THROTL_SLICE_SSD;
Shaohua Lib4f428e2017-05-17 13:07:27 -07002426 else
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002427 td->throtl_slice = DFL_THROTL_SLICE_HD;
2428#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2429 /* if no low limit, use previous default */
2430 td->throtl_slice = DFL_THROTL_SLICE_HD;
2431#endif
Shaohua Li9e234ee2017-03-27 10:51:41 -07002432
Shaohua Lib9147dd2017-03-27 15:19:42 -07002433 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2434 if (!td->track_bio_latency)
2435 blk_stat_enable_accounting(q);
Shaohua Lid61fcfa2017-03-27 10:51:38 -07002436}
2437
Shaohua Li297e3d82017-03-27 10:51:37 -07002438#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2439ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2440{
2441 if (!q->td)
2442 return -EINVAL;
2443 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2444}
2445
2446ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2447 const char *page, size_t count)
2448{
2449 unsigned long v;
2450 unsigned long t;
2451
2452 if (!q->td)
2453 return -EINVAL;
2454 if (kstrtoul(page, 10, &v))
2455 return -EINVAL;
2456 t = msecs_to_jiffies(v);
2457 if (t == 0 || t > MAX_THROTL_SLICE)
2458 return -EINVAL;
2459 q->td->throtl_slice = t;
2460 return count;
2461}
2462#endif
2463
Vivek Goyale43473b2010-09-15 17:06:35 -04002464static int __init throtl_init(void)
2465{
Vivek Goyal450adcb2011-03-01 13:40:54 -05002466 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2467 if (!kthrotld_workqueue)
2468 panic("Failed to create kthrotld\n");
2469
Tejun Heo3c798392012-04-16 13:57:25 -07002470 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04002471}
2472
2473module_init(throtl_init);