]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/blk-throttle.c
blk-mq: move hctx lock/unlock into a helper
[mirror_ubuntu-bionic-kernel.git] / block / blk-throttle.c
CommitLineData
b2441318 1// SPDX-License-Identifier: GPL-2.0
e43473b7
VG
2/*
3 * Interface for controlling IO bandwidth on a request queue
4 *
5 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
6 */
7
8#include <linux/module.h>
9#include <linux/slab.h>
10#include <linux/blkdev.h>
11#include <linux/bio.h>
12#include <linux/blktrace_api.h>
eea8f41c 13#include <linux/blk-cgroup.h>
bc9fcbf9 14#include "blk.h"
e43473b7
VG
15
16/* Max dispatch from a group in 1 round */
17static int throtl_grp_quantum = 8;
18
19/* Total max dispatch from all groups in one round */
20static int throtl_quantum = 32;
21
d61fcfa4
SL
22/* Throttling is performed over a slice and after that slice is renewed */
23#define DFL_THROTL_SLICE_HD (HZ / 10)
24#define DFL_THROTL_SLICE_SSD (HZ / 50)
297e3d85 25#define MAX_THROTL_SLICE (HZ)
9e234eea 26#define MAX_IDLE_TIME (5L * 1000 * 1000) /* 5 s */
9bb67aeb
SL
27#define MIN_THROTL_BPS (320 * 1024)
28#define MIN_THROTL_IOPS (10)
b4f428ef
SL
29#define DFL_LATENCY_TARGET (-1L)
30#define DFL_IDLE_THRESHOLD (0)
6679a90c
SL
31#define DFL_HD_BASELINE_LATENCY (4000L) /* 4ms */
32#define LATENCY_FILTERED_SSD (0)
33/*
34 * For HD, very small latency comes from sequential IO. Such IO is helpless to
35 * help determine if its IO is impacted by others, hence we ignore the IO
36 */
37#define LATENCY_FILTERED_HD (1000L) /* 1ms */
e43473b7 38
b9147dd1
SL
39#define SKIP_LATENCY (((u64)1) << BLK_STAT_RES_SHIFT)
40
3c798398 41static struct blkcg_policy blkcg_policy_throtl;
0381411e 42
450adcbe
VG
43/* A workqueue to queue throttle related work */
44static struct workqueue_struct *kthrotld_workqueue;
450adcbe 45
c5cc2070
TH
46/*
47 * To implement hierarchical throttling, throtl_grps form a tree and bios
48 * are dispatched upwards level by level until they reach the top and get
49 * issued. When dispatching bios from the children and local group at each
50 * level, if the bios are dispatched into a single bio_list, there's a risk
51 * of a local or child group which can queue many bios at once filling up
52 * the list starving others.
53 *
54 * To avoid such starvation, dispatched bios are queued separately
55 * according to where they came from. When they are again dispatched to
56 * the parent, they're popped in round-robin order so that no single source
57 * hogs the dispatch window.
58 *
59 * throtl_qnode is used to keep the queued bios separated by their sources.
60 * Bios are queued to throtl_qnode which in turn is queued to
61 * throtl_service_queue and then dispatched in round-robin order.
62 *
63 * It's also used to track the reference counts on blkg's. A qnode always
64 * belongs to a throtl_grp and gets queued on itself or the parent, so
65 * incrementing the reference of the associated throtl_grp when a qnode is
66 * queued and decrementing when dequeued is enough to keep the whole blkg
67 * tree pinned while bios are in flight.
68 */
69struct throtl_qnode {
70 struct list_head node; /* service_queue->queued[] */
71 struct bio_list bios; /* queued bios */
72 struct throtl_grp *tg; /* tg this qnode belongs to */
73};
74
c9e0332e 75struct throtl_service_queue {
77216b04
TH
76 struct throtl_service_queue *parent_sq; /* the parent service_queue */
77
73f0d49a
TH
78 /*
79 * Bios queued directly to this service_queue or dispatched from
80 * children throtl_grp's.
81 */
c5cc2070 82 struct list_head queued[2]; /* throtl_qnode [READ/WRITE] */
73f0d49a
TH
83 unsigned int nr_queued[2]; /* number of queued bios */
84
85 /*
86 * RB tree of active children throtl_grp's, which are sorted by
87 * their ->disptime.
88 */
c9e0332e
TH
89 struct rb_root pending_tree; /* RB tree of active tgs */
90 struct rb_node *first_pending; /* first node in the tree */
91 unsigned int nr_pending; /* # queued in the tree */
92 unsigned long first_pending_disptime; /* disptime of the first tg */
69df0ab0 93 struct timer_list pending_timer; /* fires on first_pending_disptime */
e43473b7
VG
94};
95
5b2c16aa
TH
96enum tg_state_flags {
97 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
0e9f4164 98 THROTL_TG_WAS_EMPTY = 1 << 1, /* bio_lists[] became non-empty */
5b2c16aa
TH
99};
100
e43473b7
VG
101#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
102
9f626e37 103enum {
cd5ab1b0 104 LIMIT_LOW,
9f626e37
SL
105 LIMIT_MAX,
106 LIMIT_CNT,
107};
108
e43473b7 109struct throtl_grp {
f95a04af
TH
110 /* must be the first member */
111 struct blkg_policy_data pd;
112
c9e0332e 113 /* active throtl group service_queue member */
e43473b7
VG
114 struct rb_node rb_node;
115
0f3457f6
TH
116 /* throtl_data this group belongs to */
117 struct throtl_data *td;
118
49a2f1e3
TH
119 /* this group's service queue */
120 struct throtl_service_queue service_queue;
121
c5cc2070
TH
122 /*
123 * qnode_on_self is used when bios are directly queued to this
124 * throtl_grp so that local bios compete fairly with bios
125 * dispatched from children. qnode_on_parent is used when bios are
126 * dispatched from this throtl_grp into its parent and will compete
127 * with the sibling qnode_on_parents and the parent's
128 * qnode_on_self.
129 */
130 struct throtl_qnode qnode_on_self[2];
131 struct throtl_qnode qnode_on_parent[2];
132
e43473b7
VG
133 /*
134 * Dispatch time in jiffies. This is the estimated time when group
135 * will unthrottle and is ready to dispatch more bio. It is used as
136 * key to sort active groups in service tree.
137 */
138 unsigned long disptime;
139
e43473b7
VG
140 unsigned int flags;
141
693e751e
TH
142 /* are there any throtl rules between this group and td? */
143 bool has_rules[2];
144
cd5ab1b0 145 /* internally used bytes per second rate limits */
9f626e37 146 uint64_t bps[2][LIMIT_CNT];
cd5ab1b0
SL
147 /* user configured bps limits */
148 uint64_t bps_conf[2][LIMIT_CNT];
e43473b7 149
cd5ab1b0 150 /* internally used IOPS limits */
9f626e37 151 unsigned int iops[2][LIMIT_CNT];
cd5ab1b0
SL
152 /* user configured IOPS limits */
153 unsigned int iops_conf[2][LIMIT_CNT];
8e89d13f 154
e43473b7
VG
155 /* Number of bytes disptached in current slice */
156 uint64_t bytes_disp[2];
8e89d13f
VG
157 /* Number of bio's dispatched in current slice */
158 unsigned int io_disp[2];
e43473b7 159
3f0abd80
SL
160 unsigned long last_low_overflow_time[2];
161
162 uint64_t last_bytes_disp[2];
163 unsigned int last_io_disp[2];
164
165 unsigned long last_check_time;
166
ec80991d 167 unsigned long latency_target; /* us */
5b81fc3c 168 unsigned long latency_target_conf; /* us */
e43473b7
VG
169 /* When did we start a new slice */
170 unsigned long slice_start[2];
171 unsigned long slice_end[2];
9e234eea
SL
172
173 unsigned long last_finish_time; /* ns / 1024 */
174 unsigned long checked_last_finish_time; /* ns / 1024 */
175 unsigned long avg_idletime; /* ns / 1024 */
176 unsigned long idletime_threshold; /* us */
5b81fc3c 177 unsigned long idletime_threshold_conf; /* us */
53696b8d
SL
178
179 unsigned int bio_cnt; /* total bios */
180 unsigned int bad_bio_cnt; /* bios exceeding latency threshold */
181 unsigned long bio_cnt_reset_time;
e43473b7
VG
182};
183
b9147dd1
SL
184/* We measure latency for request size from <= 4k to >= 1M */
185#define LATENCY_BUCKET_SIZE 9
186
187struct latency_bucket {
188 unsigned long total_latency; /* ns / 1024 */
189 int samples;
190};
191
192struct avg_latency_bucket {
193 unsigned long latency; /* ns / 1024 */
194 bool valid;
195};
196
e43473b7
VG
197struct throtl_data
198{
e43473b7 199 /* service tree for active throtl groups */
c9e0332e 200 struct throtl_service_queue service_queue;
e43473b7 201
e43473b7
VG
202 struct request_queue *queue;
203
204 /* Total Number of queued bios on READ and WRITE lists */
205 unsigned int nr_queued[2];
206
297e3d85
SL
207 unsigned int throtl_slice;
208
e43473b7 209 /* Work for dispatching throttled bios */
69df0ab0 210 struct work_struct dispatch_work;
9f626e37
SL
211 unsigned int limit_index;
212 bool limit_valid[LIMIT_CNT];
3f0abd80
SL
213
214 unsigned long low_upgrade_time;
215 unsigned long low_downgrade_time;
7394e31f
SL
216
217 unsigned int scale;
b9147dd1
SL
218
219 struct latency_bucket tmp_buckets[LATENCY_BUCKET_SIZE];
220 struct avg_latency_bucket avg_buckets[LATENCY_BUCKET_SIZE];
221 struct latency_bucket __percpu *latency_buckets;
222 unsigned long last_calculate_time;
6679a90c 223 unsigned long filtered_latency;
b9147dd1
SL
224
225 bool track_bio_latency;
e43473b7
VG
226};
227
e99e88a9 228static void throtl_pending_timer_fn(struct timer_list *t);
69df0ab0 229
f95a04af
TH
230static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
231{
232 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
233}
234
3c798398 235static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
0381411e 236{
f95a04af 237 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
0381411e
TH
238}
239
3c798398 240static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
0381411e 241{
f95a04af 242 return pd_to_blkg(&tg->pd);
0381411e
TH
243}
244
fda6f272
TH
245/**
246 * sq_to_tg - return the throl_grp the specified service queue belongs to
247 * @sq: the throtl_service_queue of interest
248 *
249 * Return the throtl_grp @sq belongs to. If @sq is the top-level one
250 * embedded in throtl_data, %NULL is returned.
251 */
252static struct throtl_grp *sq_to_tg(struct throtl_service_queue *sq)
253{
254 if (sq && sq->parent_sq)
255 return container_of(sq, struct throtl_grp, service_queue);
256 else
257 return NULL;
258}
259
260/**
261 * sq_to_td - return throtl_data the specified service queue belongs to
262 * @sq: the throtl_service_queue of interest
263 *
b43daedc 264 * A service_queue can be embedded in either a throtl_grp or throtl_data.
fda6f272
TH
265 * Determine the associated throtl_data accordingly and return it.
266 */
267static struct throtl_data *sq_to_td(struct throtl_service_queue *sq)
268{
269 struct throtl_grp *tg = sq_to_tg(sq);
270
271 if (tg)
272 return tg->td;
273 else
274 return container_of(sq, struct throtl_data, service_queue);
275}
276
7394e31f
SL
277/*
278 * cgroup's limit in LIMIT_MAX is scaled if low limit is set. This scale is to
279 * make the IO dispatch more smooth.
280 * Scale up: linearly scale up according to lapsed time since upgrade. For
281 * every throtl_slice, the limit scales up 1/2 .low limit till the
282 * limit hits .max limit
283 * Scale down: exponentially scale down if a cgroup doesn't hit its .low limit
284 */
285static uint64_t throtl_adjusted_limit(uint64_t low, struct throtl_data *td)
286{
287 /* arbitrary value to avoid too big scale */
288 if (td->scale < 4096 && time_after_eq(jiffies,
289 td->low_upgrade_time + td->scale * td->throtl_slice))
290 td->scale = (jiffies - td->low_upgrade_time) / td->throtl_slice;
291
292 return low + (low >> 1) * td->scale;
293}
294
9f626e37
SL
295static uint64_t tg_bps_limit(struct throtl_grp *tg, int rw)
296{
b22c417c 297 struct blkcg_gq *blkg = tg_to_blkg(tg);
7394e31f 298 struct throtl_data *td;
b22c417c
SL
299 uint64_t ret;
300
301 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
302 return U64_MAX;
7394e31f
SL
303
304 td = tg->td;
305 ret = tg->bps[rw][td->limit_index];
9bb67aeb
SL
306 if (ret == 0 && td->limit_index == LIMIT_LOW) {
307 /* intermediate node or iops isn't 0 */
308 if (!list_empty(&blkg->blkcg->css.children) ||
309 tg->iops[rw][td->limit_index])
310 return U64_MAX;
311 else
312 return MIN_THROTL_BPS;
313 }
7394e31f
SL
314
315 if (td->limit_index == LIMIT_MAX && tg->bps[rw][LIMIT_LOW] &&
316 tg->bps[rw][LIMIT_LOW] != tg->bps[rw][LIMIT_MAX]) {
317 uint64_t adjusted;
318
319 adjusted = throtl_adjusted_limit(tg->bps[rw][LIMIT_LOW], td);
320 ret = min(tg->bps[rw][LIMIT_MAX], adjusted);
321 }
b22c417c 322 return ret;
9f626e37
SL
323}
324
325static unsigned int tg_iops_limit(struct throtl_grp *tg, int rw)
326{
b22c417c 327 struct blkcg_gq *blkg = tg_to_blkg(tg);
7394e31f 328 struct throtl_data *td;
b22c417c
SL
329 unsigned int ret;
330
331 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && !blkg->parent)
332 return UINT_MAX;
9bb67aeb 333
7394e31f
SL
334 td = tg->td;
335 ret = tg->iops[rw][td->limit_index];
9bb67aeb
SL
336 if (ret == 0 && tg->td->limit_index == LIMIT_LOW) {
337 /* intermediate node or bps isn't 0 */
338 if (!list_empty(&blkg->blkcg->css.children) ||
339 tg->bps[rw][td->limit_index])
340 return UINT_MAX;
341 else
342 return MIN_THROTL_IOPS;
343 }
7394e31f
SL
344
345 if (td->limit_index == LIMIT_MAX && tg->iops[rw][LIMIT_LOW] &&
346 tg->iops[rw][LIMIT_LOW] != tg->iops[rw][LIMIT_MAX]) {
347 uint64_t adjusted;
348
349 adjusted = throtl_adjusted_limit(tg->iops[rw][LIMIT_LOW], td);
350 if (adjusted > UINT_MAX)
351 adjusted = UINT_MAX;
352 ret = min_t(unsigned int, tg->iops[rw][LIMIT_MAX], adjusted);
353 }
b22c417c 354 return ret;
9f626e37
SL
355}
356
b9147dd1
SL
357#define request_bucket_index(sectors) \
358 clamp_t(int, order_base_2(sectors) - 3, 0, LATENCY_BUCKET_SIZE - 1)
359
fda6f272
TH
360/**
361 * throtl_log - log debug message via blktrace
362 * @sq: the service_queue being reported
363 * @fmt: printf format string
364 * @args: printf args
365 *
366 * The messages are prefixed with "throtl BLKG_NAME" if @sq belongs to a
367 * throtl_grp; otherwise, just "throtl".
fda6f272
TH
368 */
369#define throtl_log(sq, fmt, args...) do { \
370 struct throtl_grp *__tg = sq_to_tg((sq)); \
371 struct throtl_data *__td = sq_to_td((sq)); \
372 \
373 (void)__td; \
59fa0224
SL
374 if (likely(!blk_trace_note_message_enabled(__td->queue))) \
375 break; \
fda6f272 376 if ((__tg)) { \
35fe6d76
SL
377 blk_add_cgroup_trace_msg(__td->queue, \
378 tg_to_blkg(__tg)->blkcg, "throtl " fmt, ##args);\
fda6f272
TH
379 } else { \
380 blk_add_trace_msg(__td->queue, "throtl " fmt, ##args); \
381 } \
54e7ed12 382} while (0)
e43473b7 383
ea0ea2bc
SL
384static inline unsigned int throtl_bio_data_size(struct bio *bio)
385{
386 /* assume it's one sector */
387 if (unlikely(bio_op(bio) == REQ_OP_DISCARD))
388 return 512;
389 return bio->bi_iter.bi_size;
390}
391
c5cc2070
TH
392static void throtl_qnode_init(struct throtl_qnode *qn, struct throtl_grp *tg)
393{
394 INIT_LIST_HEAD(&qn->node);
395 bio_list_init(&qn->bios);
396 qn->tg = tg;
397}
398
399/**
400 * throtl_qnode_add_bio - add a bio to a throtl_qnode and activate it
401 * @bio: bio being added
402 * @qn: qnode to add bio to
403 * @queued: the service_queue->queued[] list @qn belongs to
404 *
405 * Add @bio to @qn and put @qn on @queued if it's not already on.
406 * @qn->tg's reference count is bumped when @qn is activated. See the
407 * comment on top of throtl_qnode definition for details.
408 */
409static void throtl_qnode_add_bio(struct bio *bio, struct throtl_qnode *qn,
410 struct list_head *queued)
411{
412 bio_list_add(&qn->bios, bio);
413 if (list_empty(&qn->node)) {
414 list_add_tail(&qn->node, queued);
415 blkg_get(tg_to_blkg(qn->tg));
416 }
417}
418
419/**
420 * throtl_peek_queued - peek the first bio on a qnode list
421 * @queued: the qnode list to peek
422 */
423static struct bio *throtl_peek_queued(struct list_head *queued)
424{
425 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
426 struct bio *bio;
427
428 if (list_empty(queued))
429 return NULL;
430
431 bio = bio_list_peek(&qn->bios);
432 WARN_ON_ONCE(!bio);
433 return bio;
434}
435
436/**
437 * throtl_pop_queued - pop the first bio form a qnode list
438 * @queued: the qnode list to pop a bio from
439 * @tg_to_put: optional out argument for throtl_grp to put
440 *
441 * Pop the first bio from the qnode list @queued. After popping, the first
442 * qnode is removed from @queued if empty or moved to the end of @queued so
443 * that the popping order is round-robin.
444 *
445 * When the first qnode is removed, its associated throtl_grp should be put
446 * too. If @tg_to_put is NULL, this function automatically puts it;
447 * otherwise, *@tg_to_put is set to the throtl_grp to put and the caller is
448 * responsible for putting it.
449 */
450static struct bio *throtl_pop_queued(struct list_head *queued,
451 struct throtl_grp **tg_to_put)
452{
453 struct throtl_qnode *qn = list_first_entry(queued, struct throtl_qnode, node);
454 struct bio *bio;
455
456 if (list_empty(queued))
457 return NULL;
458
459 bio = bio_list_pop(&qn->bios);
460 WARN_ON_ONCE(!bio);
461
462 if (bio_list_empty(&qn->bios)) {
463 list_del_init(&qn->node);
464 if (tg_to_put)
465 *tg_to_put = qn->tg;
466 else
467 blkg_put(tg_to_blkg(qn->tg));
468 } else {
469 list_move_tail(&qn->node, queued);
470 }
471
472 return bio;
473}
474
49a2f1e3 475/* init a service_queue, assumes the caller zeroed it */
b2ce2643 476static void throtl_service_queue_init(struct throtl_service_queue *sq)
49a2f1e3 477{
c5cc2070
TH
478 INIT_LIST_HEAD(&sq->queued[0]);
479 INIT_LIST_HEAD(&sq->queued[1]);
49a2f1e3 480 sq->pending_tree = RB_ROOT;
e99e88a9 481 timer_setup(&sq->pending_timer, throtl_pending_timer_fn, 0);
69df0ab0
TH
482}
483
001bea73
TH
484static struct blkg_policy_data *throtl_pd_alloc(gfp_t gfp, int node)
485{
4fb72036 486 struct throtl_grp *tg;
24bdb8ef 487 int rw;
4fb72036
TH
488
489 tg = kzalloc_node(sizeof(*tg), gfp, node);
490 if (!tg)
77ea7338 491 return NULL;
4fb72036 492
b2ce2643
TH
493 throtl_service_queue_init(&tg->service_queue);
494
495 for (rw = READ; rw <= WRITE; rw++) {
496 throtl_qnode_init(&tg->qnode_on_self[rw], tg);
497 throtl_qnode_init(&tg->qnode_on_parent[rw], tg);
498 }
499
500 RB_CLEAR_NODE(&tg->rb_node);
9f626e37
SL
501 tg->bps[READ][LIMIT_MAX] = U64_MAX;
502 tg->bps[WRITE][LIMIT_MAX] = U64_MAX;
503 tg->iops[READ][LIMIT_MAX] = UINT_MAX;
504 tg->iops[WRITE][LIMIT_MAX] = UINT_MAX;
cd5ab1b0
SL
505 tg->bps_conf[READ][LIMIT_MAX] = U64_MAX;
506 tg->bps_conf[WRITE][LIMIT_MAX] = U64_MAX;
507 tg->iops_conf[READ][LIMIT_MAX] = UINT_MAX;
508 tg->iops_conf[WRITE][LIMIT_MAX] = UINT_MAX;
509 /* LIMIT_LOW will have default value 0 */
b2ce2643 510
ec80991d 511 tg->latency_target = DFL_LATENCY_TARGET;
5b81fc3c 512 tg->latency_target_conf = DFL_LATENCY_TARGET;
b4f428ef
SL
513 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
514 tg->idletime_threshold_conf = DFL_IDLE_THRESHOLD;
ec80991d 515
4fb72036 516 return &tg->pd;
001bea73
TH
517}
518
a9520cd6 519static void throtl_pd_init(struct blkg_policy_data *pd)
a29a171e 520{
a9520cd6
TH
521 struct throtl_grp *tg = pd_to_tg(pd);
522 struct blkcg_gq *blkg = tg_to_blkg(tg);
77216b04 523 struct throtl_data *td = blkg->q->td;
b2ce2643 524 struct throtl_service_queue *sq = &tg->service_queue;
cd1604fa 525
9138125b 526 /*
aa6ec29b 527 * If on the default hierarchy, we switch to properly hierarchical
9138125b
TH
528 * behavior where limits on a given throtl_grp are applied to the
529 * whole subtree rather than just the group itself. e.g. If 16M
530 * read_bps limit is set on the root group, the whole system can't
531 * exceed 16M for the device.
532 *
aa6ec29b 533 * If not on the default hierarchy, the broken flat hierarchy
9138125b
TH
534 * behavior is retained where all throtl_grps are treated as if
535 * they're all separate root groups right below throtl_data.
536 * Limits of a group don't interact with limits of other groups
537 * regardless of the position of the group in the hierarchy.
538 */
b2ce2643 539 sq->parent_sq = &td->service_queue;
9e10a130 540 if (cgroup_subsys_on_dfl(io_cgrp_subsys) && blkg->parent)
b2ce2643 541 sq->parent_sq = &blkg_to_tg(blkg->parent)->service_queue;
77216b04 542 tg->td = td;
8a3d2615
TH
543}
544
693e751e
TH
545/*
546 * Set has_rules[] if @tg or any of its parents have limits configured.
547 * This doesn't require walking up to the top of the hierarchy as the
548 * parent's has_rules[] is guaranteed to be correct.
549 */
550static void tg_update_has_rules(struct throtl_grp *tg)
551{
552 struct throtl_grp *parent_tg = sq_to_tg(tg->service_queue.parent_sq);
9f626e37 553 struct throtl_data *td = tg->td;
693e751e
TH
554 int rw;
555
556 for (rw = READ; rw <= WRITE; rw++)
557 tg->has_rules[rw] = (parent_tg && parent_tg->has_rules[rw]) ||
9f626e37
SL
558 (td->limit_valid[td->limit_index] &&
559 (tg_bps_limit(tg, rw) != U64_MAX ||
560 tg_iops_limit(tg, rw) != UINT_MAX));
693e751e
TH
561}
562
a9520cd6 563static void throtl_pd_online(struct blkg_policy_data *pd)
693e751e 564{
aec24246 565 struct throtl_grp *tg = pd_to_tg(pd);
693e751e
TH
566 /*
567 * We don't want new groups to escape the limits of its ancestors.
568 * Update has_rules[] after a new group is brought online.
569 */
aec24246 570 tg_update_has_rules(tg);
693e751e
TH
571}
572
cd5ab1b0
SL
573static void blk_throtl_update_limit_valid(struct throtl_data *td)
574{
575 struct cgroup_subsys_state *pos_css;
576 struct blkcg_gq *blkg;
577 bool low_valid = false;
578
579 rcu_read_lock();
580 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
581 struct throtl_grp *tg = blkg_to_tg(blkg);
582
583 if (tg->bps[READ][LIMIT_LOW] || tg->bps[WRITE][LIMIT_LOW] ||
584 tg->iops[READ][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
585 low_valid = true;
586 }
587 rcu_read_unlock();
588
589 td->limit_valid[LIMIT_LOW] = low_valid;
590}
591
c79892c5 592static void throtl_upgrade_state(struct throtl_data *td);
cd5ab1b0
SL
593static void throtl_pd_offline(struct blkg_policy_data *pd)
594{
595 struct throtl_grp *tg = pd_to_tg(pd);
596
597 tg->bps[READ][LIMIT_LOW] = 0;
598 tg->bps[WRITE][LIMIT_LOW] = 0;
599 tg->iops[READ][LIMIT_LOW] = 0;
600 tg->iops[WRITE][LIMIT_LOW] = 0;
601
602 blk_throtl_update_limit_valid(tg->td);
603
c79892c5
SL
604 if (!tg->td->limit_valid[tg->td->limit_index])
605 throtl_upgrade_state(tg->td);
cd5ab1b0
SL
606}
607
001bea73
TH
608static void throtl_pd_free(struct blkg_policy_data *pd)
609{
4fb72036
TH
610 struct throtl_grp *tg = pd_to_tg(pd);
611
b2ce2643 612 del_timer_sync(&tg->service_queue.pending_timer);
4fb72036 613 kfree(tg);
001bea73
TH
614}
615
0049af73
TH
616static struct throtl_grp *
617throtl_rb_first(struct throtl_service_queue *parent_sq)
e43473b7
VG
618{
619 /* Service tree is empty */
0049af73 620 if (!parent_sq->nr_pending)
e43473b7
VG
621 return NULL;
622
0049af73
TH
623 if (!parent_sq->first_pending)
624 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
e43473b7 625
0049af73
TH
626 if (parent_sq->first_pending)
627 return rb_entry_tg(parent_sq->first_pending);
e43473b7
VG
628
629 return NULL;
630}
631
632static void rb_erase_init(struct rb_node *n, struct rb_root *root)
633{
634 rb_erase(n, root);
635 RB_CLEAR_NODE(n);
636}
637
0049af73
TH
638static void throtl_rb_erase(struct rb_node *n,
639 struct throtl_service_queue *parent_sq)
e43473b7 640{
0049af73
TH
641 if (parent_sq->first_pending == n)
642 parent_sq->first_pending = NULL;
643 rb_erase_init(n, &parent_sq->pending_tree);
644 --parent_sq->nr_pending;
e43473b7
VG
645}
646
0049af73 647static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
e43473b7
VG
648{
649 struct throtl_grp *tg;
650
0049af73 651 tg = throtl_rb_first(parent_sq);
e43473b7
VG
652 if (!tg)
653 return;
654
0049af73 655 parent_sq->first_pending_disptime = tg->disptime;
e43473b7
VG
656}
657
77216b04 658static void tg_service_queue_add(struct throtl_grp *tg)
e43473b7 659{
77216b04 660 struct throtl_service_queue *parent_sq = tg->service_queue.parent_sq;
0049af73 661 struct rb_node **node = &parent_sq->pending_tree.rb_node;
e43473b7
VG
662 struct rb_node *parent = NULL;
663 struct throtl_grp *__tg;
664 unsigned long key = tg->disptime;
665 int left = 1;
666
667 while (*node != NULL) {
668 parent = *node;
669 __tg = rb_entry_tg(parent);
670
671 if (time_before(key, __tg->disptime))
672 node = &parent->rb_left;
673 else {
674 node = &parent->rb_right;
675 left = 0;
676 }
677 }
678
679 if (left)
0049af73 680 parent_sq->first_pending = &tg->rb_node;
e43473b7
VG
681
682 rb_link_node(&tg->rb_node, parent, node);
0049af73 683 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
e43473b7
VG
684}
685
77216b04 686static void __throtl_enqueue_tg(struct throtl_grp *tg)
e43473b7 687{
77216b04 688 tg_service_queue_add(tg);
5b2c16aa 689 tg->flags |= THROTL_TG_PENDING;
77216b04 690 tg->service_queue.parent_sq->nr_pending++;
e43473b7
VG
691}
692
77216b04 693static void throtl_enqueue_tg(struct throtl_grp *tg)
e43473b7 694{
5b2c16aa 695 if (!(tg->flags & THROTL_TG_PENDING))
77216b04 696 __throtl_enqueue_tg(tg);
e43473b7
VG
697}
698
77216b04 699static void __throtl_dequeue_tg(struct throtl_grp *tg)
e43473b7 700{
77216b04 701 throtl_rb_erase(&tg->rb_node, tg->service_queue.parent_sq);
5b2c16aa 702 tg->flags &= ~THROTL_TG_PENDING;
e43473b7
VG
703}
704
77216b04 705static void throtl_dequeue_tg(struct throtl_grp *tg)
e43473b7 706{
5b2c16aa 707 if (tg->flags & THROTL_TG_PENDING)
77216b04 708 __throtl_dequeue_tg(tg);
e43473b7
VG
709}
710
a9131a27 711/* Call with queue lock held */
69df0ab0
TH
712static void throtl_schedule_pending_timer(struct throtl_service_queue *sq,
713 unsigned long expires)
a9131a27 714{
a41b816c 715 unsigned long max_expire = jiffies + 8 * sq_to_td(sq)->throtl_slice;
06cceedc
SL
716
717 /*
718 * Since we are adjusting the throttle limit dynamically, the sleep
719 * time calculated according to previous limit might be invalid. It's
720 * possible the cgroup sleep time is very long and no other cgroups
721 * have IO running so notify the limit changes. Make sure the cgroup
722 * doesn't sleep too long to avoid the missed notification.
723 */
724 if (time_after(expires, max_expire))
725 expires = max_expire;
69df0ab0
TH
726 mod_timer(&sq->pending_timer, expires);
727 throtl_log(sq, "schedule timer. delay=%lu jiffies=%lu",
728 expires - jiffies, jiffies);
a9131a27
TH
729}
730
7f52f98c
TH
731/**
732 * throtl_schedule_next_dispatch - schedule the next dispatch cycle
733 * @sq: the service_queue to schedule dispatch for
734 * @force: force scheduling
735 *
736 * Arm @sq->pending_timer so that the next dispatch cycle starts on the
737 * dispatch time of the first pending child. Returns %true if either timer
738 * is armed or there's no pending child left. %false if the current
739 * dispatch window is still open and the caller should continue
740 * dispatching.
741 *
742 * If @force is %true, the dispatch timer is always scheduled and this
743 * function is guaranteed to return %true. This is to be used when the
744 * caller can't dispatch itself and needs to invoke pending_timer
745 * unconditionally. Note that forced scheduling is likely to induce short
746 * delay before dispatch starts even if @sq->first_pending_disptime is not
747 * in the future and thus shouldn't be used in hot paths.
748 */
749static bool throtl_schedule_next_dispatch(struct throtl_service_queue *sq,
750 bool force)
e43473b7 751{
6a525600 752 /* any pending children left? */
c9e0332e 753 if (!sq->nr_pending)
7f52f98c 754 return true;
e43473b7 755
c9e0332e 756 update_min_dispatch_time(sq);
e43473b7 757
69df0ab0 758 /* is the next dispatch time in the future? */
7f52f98c 759 if (force || time_after(sq->first_pending_disptime, jiffies)) {
69df0ab0 760 throtl_schedule_pending_timer(sq, sq->first_pending_disptime);
7f52f98c 761 return true;
69df0ab0
TH
762 }
763
7f52f98c
TH
764 /* tell the caller to continue dispatching */
765 return false;
e43473b7
VG
766}
767
32ee5bc4
VG
768static inline void throtl_start_new_slice_with_credit(struct throtl_grp *tg,
769 bool rw, unsigned long start)
770{
771 tg->bytes_disp[rw] = 0;
772 tg->io_disp[rw] = 0;
773
774 /*
775 * Previous slice has expired. We must have trimmed it after last
776 * bio dispatch. That means since start of last slice, we never used
777 * that bandwidth. Do try to make use of that bandwidth while giving
778 * credit.
779 */
780 if (time_after_eq(start, tg->slice_start[rw]))
781 tg->slice_start[rw] = start;
782
297e3d85 783 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
32ee5bc4
VG
784 throtl_log(&tg->service_queue,
785 "[%c] new slice with credit start=%lu end=%lu jiffies=%lu",
786 rw == READ ? 'R' : 'W', tg->slice_start[rw],
787 tg->slice_end[rw], jiffies);
788}
789
0f3457f6 790static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
e43473b7
VG
791{
792 tg->bytes_disp[rw] = 0;
8e89d13f 793 tg->io_disp[rw] = 0;
e43473b7 794 tg->slice_start[rw] = jiffies;
297e3d85 795 tg->slice_end[rw] = jiffies + tg->td->throtl_slice;
fda6f272
TH
796 throtl_log(&tg->service_queue,
797 "[%c] new slice start=%lu end=%lu jiffies=%lu",
798 rw == READ ? 'R' : 'W', tg->slice_start[rw],
799 tg->slice_end[rw], jiffies);
e43473b7
VG
800}
801
0f3457f6
TH
802static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
803 unsigned long jiffy_end)
d1ae8ffd 804{
297e3d85 805 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
d1ae8ffd
VG
806}
807
0f3457f6
TH
808static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
809 unsigned long jiffy_end)
e43473b7 810{
297e3d85 811 tg->slice_end[rw] = roundup(jiffy_end, tg->td->throtl_slice);
fda6f272
TH
812 throtl_log(&tg->service_queue,
813 "[%c] extend slice start=%lu end=%lu jiffies=%lu",
814 rw == READ ? 'R' : 'W', tg->slice_start[rw],
815 tg->slice_end[rw], jiffies);
e43473b7
VG
816}
817
818/* Determine if previously allocated or extended slice is complete or not */
0f3457f6 819static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
e43473b7
VG
820{
821 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
5cf8c227 822 return false;
e43473b7
VG
823
824 return 1;
825}
826
827/* Trim the used slices and adjust slice start accordingly */
0f3457f6 828static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
e43473b7 829{
3aad5d3e
VG
830 unsigned long nr_slices, time_elapsed, io_trim;
831 u64 bytes_trim, tmp;
e43473b7
VG
832
833 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
834
835 /*
836 * If bps are unlimited (-1), then time slice don't get
837 * renewed. Don't try to trim the slice if slice is used. A new
838 * slice will start when appropriate.
839 */
0f3457f6 840 if (throtl_slice_used(tg, rw))
e43473b7
VG
841 return;
842
d1ae8ffd
VG
843 /*
844 * A bio has been dispatched. Also adjust slice_end. It might happen
845 * that initially cgroup limit was very low resulting in high
846 * slice_end, but later limit was bumped up and bio was dispached
847 * sooner, then we need to reduce slice_end. A high bogus slice_end
848 * is bad because it does not allow new slice to start.
849 */
850
297e3d85 851 throtl_set_slice_end(tg, rw, jiffies + tg->td->throtl_slice);
d1ae8ffd 852
e43473b7
VG
853 time_elapsed = jiffies - tg->slice_start[rw];
854
297e3d85 855 nr_slices = time_elapsed / tg->td->throtl_slice;
e43473b7
VG
856
857 if (!nr_slices)
858 return;
297e3d85 859 tmp = tg_bps_limit(tg, rw) * tg->td->throtl_slice * nr_slices;
3aad5d3e
VG
860 do_div(tmp, HZ);
861 bytes_trim = tmp;
e43473b7 862
297e3d85
SL
863 io_trim = (tg_iops_limit(tg, rw) * tg->td->throtl_slice * nr_slices) /
864 HZ;
e43473b7 865
8e89d13f 866 if (!bytes_trim && !io_trim)
e43473b7
VG
867 return;
868
869 if (tg->bytes_disp[rw] >= bytes_trim)
870 tg->bytes_disp[rw] -= bytes_trim;
871 else
872 tg->bytes_disp[rw] = 0;
873
8e89d13f
VG
874 if (tg->io_disp[rw] >= io_trim)
875 tg->io_disp[rw] -= io_trim;
876 else
877 tg->io_disp[rw] = 0;
878
297e3d85 879 tg->slice_start[rw] += nr_slices * tg->td->throtl_slice;
e43473b7 880
fda6f272
TH
881 throtl_log(&tg->service_queue,
882 "[%c] trim slice nr=%lu bytes=%llu io=%lu start=%lu end=%lu jiffies=%lu",
883 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
884 tg->slice_start[rw], tg->slice_end[rw], jiffies);
e43473b7
VG
885}
886
0f3457f6
TH
887static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
888 unsigned long *wait)
e43473b7
VG
889{
890 bool rw = bio_data_dir(bio);
8e89d13f 891 unsigned int io_allowed;
e43473b7 892 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
c49c06e4 893 u64 tmp;
e43473b7 894
f26f97cc 895 jiffy_elapsed = jiffies - tg->slice_start[rw];
e43473b7 896
f26f97cc
KK
897 /* Round up to the next throttle slice, wait time must be nonzero */
898 jiffy_elapsed_rnd = roundup(jiffy_elapsed + 1, tg->td->throtl_slice);
8e89d13f 899
c49c06e4
VG
900 /*
901 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
902 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
903 * will allow dispatch after 1 second and after that slice should
904 * have been trimmed.
905 */
906
9f626e37 907 tmp = (u64)tg_iops_limit(tg, rw) * jiffy_elapsed_rnd;
c49c06e4
VG
908 do_div(tmp, HZ);
909
910 if (tmp > UINT_MAX)
911 io_allowed = UINT_MAX;
912 else
913 io_allowed = tmp;
8e89d13f
VG
914
915 if (tg->io_disp[rw] + 1 <= io_allowed) {
e43473b7
VG
916 if (wait)
917 *wait = 0;
5cf8c227 918 return true;
e43473b7
VG
919 }
920
8e89d13f 921 /* Calc approx time to dispatch */
9f626e37 922 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ) / tg_iops_limit(tg, rw) + 1;
8e89d13f
VG
923
924 if (jiffy_wait > jiffy_elapsed)
925 jiffy_wait = jiffy_wait - jiffy_elapsed;
926 else
927 jiffy_wait = 1;
928
929 if (wait)
930 *wait = jiffy_wait;
931 return 0;
932}
933
0f3457f6
TH
934static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
935 unsigned long *wait)
8e89d13f
VG
936{
937 bool rw = bio_data_dir(bio);
3aad5d3e 938 u64 bytes_allowed, extra_bytes, tmp;
8e89d13f 939 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
ea0ea2bc 940 unsigned int bio_size = throtl_bio_data_size(bio);
e43473b7
VG
941
942 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
943
944 /* Slice has just started. Consider one slice interval */
945 if (!jiffy_elapsed)
297e3d85 946 jiffy_elapsed_rnd = tg->td->throtl_slice;
e43473b7 947
297e3d85 948 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, tg->td->throtl_slice);
e43473b7 949
9f626e37 950 tmp = tg_bps_limit(tg, rw) * jiffy_elapsed_rnd;
5e901a2b 951 do_div(tmp, HZ);
3aad5d3e 952 bytes_allowed = tmp;
e43473b7 953
ea0ea2bc 954 if (tg->bytes_disp[rw] + bio_size <= bytes_allowed) {
e43473b7
VG
955 if (wait)
956 *wait = 0;
5cf8c227 957 return true;
e43473b7
VG
958 }
959
960 /* Calc approx time to dispatch */
ea0ea2bc 961 extra_bytes = tg->bytes_disp[rw] + bio_size - bytes_allowed;
9f626e37 962 jiffy_wait = div64_u64(extra_bytes * HZ, tg_bps_limit(tg, rw));
e43473b7
VG
963
964 if (!jiffy_wait)
965 jiffy_wait = 1;
966
967 /*
968 * This wait time is without taking into consideration the rounding
969 * up we did. Add that time also.
970 */
971 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
e43473b7
VG
972 if (wait)
973 *wait = jiffy_wait;
8e89d13f
VG
974 return 0;
975}
976
977/*
978 * Returns whether one can dispatch a bio or not. Also returns approx number
979 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
980 */
0f3457f6
TH
981static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
982 unsigned long *wait)
8e89d13f
VG
983{
984 bool rw = bio_data_dir(bio);
985 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
986
987 /*
988 * Currently whole state machine of group depends on first bio
989 * queued in the group bio list. So one should not be calling
990 * this function with a different bio if there are other bios
991 * queued.
992 */
73f0d49a 993 BUG_ON(tg->service_queue.nr_queued[rw] &&
c5cc2070 994 bio != throtl_peek_queued(&tg->service_queue.queued[rw]));
e43473b7 995
8e89d13f 996 /* If tg->bps = -1, then BW is unlimited */
9f626e37
SL
997 if (tg_bps_limit(tg, rw) == U64_MAX &&
998 tg_iops_limit(tg, rw) == UINT_MAX) {
8e89d13f
VG
999 if (wait)
1000 *wait = 0;
5cf8c227 1001 return true;
8e89d13f
VG
1002 }
1003
1004 /*
1005 * If previous slice expired, start a new one otherwise renew/extend
1006 * existing slice to make sure it is at least throtl_slice interval
164c80ed
VG
1007 * long since now. New slice is started only for empty throttle group.
1008 * If there is queued bio, that means there should be an active
1009 * slice and it should be extended instead.
8e89d13f 1010 */
164c80ed 1011 if (throtl_slice_used(tg, rw) && !(tg->service_queue.nr_queued[rw]))
0f3457f6 1012 throtl_start_new_slice(tg, rw);
8e89d13f 1013 else {
297e3d85
SL
1014 if (time_before(tg->slice_end[rw],
1015 jiffies + tg->td->throtl_slice))
1016 throtl_extend_slice(tg, rw,
1017 jiffies + tg->td->throtl_slice);
8e89d13f
VG
1018 }
1019
0f3457f6
TH
1020 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
1021 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
8e89d13f
VG
1022 if (wait)
1023 *wait = 0;
1024 return 1;
1025 }
1026
1027 max_wait = max(bps_wait, iops_wait);
1028
1029 if (wait)
1030 *wait = max_wait;
1031
1032 if (time_before(tg->slice_end[rw], jiffies + max_wait))
0f3457f6 1033 throtl_extend_slice(tg, rw, jiffies + max_wait);
e43473b7
VG
1034
1035 return 0;
1036}
1037
1038static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
1039{
1040 bool rw = bio_data_dir(bio);
ea0ea2bc 1041 unsigned int bio_size = throtl_bio_data_size(bio);
e43473b7
VG
1042
1043 /* Charge the bio to the group */
ea0ea2bc 1044 tg->bytes_disp[rw] += bio_size;
8e89d13f 1045 tg->io_disp[rw]++;
ea0ea2bc 1046 tg->last_bytes_disp[rw] += bio_size;
3f0abd80 1047 tg->last_io_disp[rw]++;
e43473b7 1048
2a0f61e6 1049 /*
8d2bbd4c 1050 * BIO_THROTTLED is used to prevent the same bio to be throttled
2a0f61e6
TH
1051 * more than once as a throttled bio will go through blk-throtl the
1052 * second time when it eventually gets issued. Set it when a bio
1053 * is being charged to a tg.
2a0f61e6 1054 */
8d2bbd4c
CH
1055 if (!bio_flagged(bio, BIO_THROTTLED))
1056 bio_set_flag(bio, BIO_THROTTLED);
e43473b7
VG
1057}
1058
c5cc2070
TH
1059/**
1060 * throtl_add_bio_tg - add a bio to the specified throtl_grp
1061 * @bio: bio to add
1062 * @qn: qnode to use
1063 * @tg: the target throtl_grp
1064 *
1065 * Add @bio to @tg's service_queue using @qn. If @qn is not specified,
1066 * tg->qnode_on_self[] is used.
1067 */
1068static void throtl_add_bio_tg(struct bio *bio, struct throtl_qnode *qn,
1069 struct throtl_grp *tg)
e43473b7 1070{
73f0d49a 1071 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
1072 bool rw = bio_data_dir(bio);
1073
c5cc2070
TH
1074 if (!qn)
1075 qn = &tg->qnode_on_self[rw];
1076
0e9f4164
TH
1077 /*
1078 * If @tg doesn't currently have any bios queued in the same
1079 * direction, queueing @bio can change when @tg should be
1080 * dispatched. Mark that @tg was empty. This is automatically
1081 * cleaered on the next tg_update_disptime().
1082 */
1083 if (!sq->nr_queued[rw])
1084 tg->flags |= THROTL_TG_WAS_EMPTY;
1085
c5cc2070
TH
1086 throtl_qnode_add_bio(bio, qn, &sq->queued[rw]);
1087
73f0d49a 1088 sq->nr_queued[rw]++;
77216b04 1089 throtl_enqueue_tg(tg);
e43473b7
VG
1090}
1091
77216b04 1092static void tg_update_disptime(struct throtl_grp *tg)
e43473b7 1093{
73f0d49a 1094 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
1095 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
1096 struct bio *bio;
1097
d609af3a
ME
1098 bio = throtl_peek_queued(&sq->queued[READ]);
1099 if (bio)
0f3457f6 1100 tg_may_dispatch(tg, bio, &read_wait);
e43473b7 1101
d609af3a
ME
1102 bio = throtl_peek_queued(&sq->queued[WRITE]);
1103 if (bio)
0f3457f6 1104 tg_may_dispatch(tg, bio, &write_wait);
e43473b7
VG
1105
1106 min_wait = min(read_wait, write_wait);
1107 disptime = jiffies + min_wait;
1108
e43473b7 1109 /* Update dispatch time */
77216b04 1110 throtl_dequeue_tg(tg);
e43473b7 1111 tg->disptime = disptime;
77216b04 1112 throtl_enqueue_tg(tg);
0e9f4164
TH
1113
1114 /* see throtl_add_bio_tg() */
1115 tg->flags &= ~THROTL_TG_WAS_EMPTY;
e43473b7
VG
1116}
1117
32ee5bc4
VG
1118static void start_parent_slice_with_credit(struct throtl_grp *child_tg,
1119 struct throtl_grp *parent_tg, bool rw)
1120{
1121 if (throtl_slice_used(parent_tg, rw)) {
1122 throtl_start_new_slice_with_credit(parent_tg, rw,
1123 child_tg->slice_start[rw]);
1124 }
1125
1126}
1127
77216b04 1128static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw)
e43473b7 1129{
73f0d49a 1130 struct throtl_service_queue *sq = &tg->service_queue;
6bc9c2b4
TH
1131 struct throtl_service_queue *parent_sq = sq->parent_sq;
1132 struct throtl_grp *parent_tg = sq_to_tg(parent_sq);
c5cc2070 1133 struct throtl_grp *tg_to_put = NULL;
e43473b7
VG
1134 struct bio *bio;
1135
c5cc2070
TH
1136 /*
1137 * @bio is being transferred from @tg to @parent_sq. Popping a bio
1138 * from @tg may put its reference and @parent_sq might end up
1139 * getting released prematurely. Remember the tg to put and put it
1140 * after @bio is transferred to @parent_sq.
1141 */
1142 bio = throtl_pop_queued(&sq->queued[rw], &tg_to_put);
73f0d49a 1143 sq->nr_queued[rw]--;
e43473b7
VG
1144
1145 throtl_charge_bio(tg, bio);
6bc9c2b4
TH
1146
1147 /*
1148 * If our parent is another tg, we just need to transfer @bio to
1149 * the parent using throtl_add_bio_tg(). If our parent is
1150 * @td->service_queue, @bio is ready to be issued. Put it on its
1151 * bio_lists[] and decrease total number queued. The caller is
1152 * responsible for issuing these bios.
1153 */
1154 if (parent_tg) {
c5cc2070 1155 throtl_add_bio_tg(bio, &tg->qnode_on_parent[rw], parent_tg);
32ee5bc4 1156 start_parent_slice_with_credit(tg, parent_tg, rw);
6bc9c2b4 1157 } else {
c5cc2070
TH
1158 throtl_qnode_add_bio(bio, &tg->qnode_on_parent[rw],
1159 &parent_sq->queued[rw]);
6bc9c2b4
TH
1160 BUG_ON(tg->td->nr_queued[rw] <= 0);
1161 tg->td->nr_queued[rw]--;
1162 }
e43473b7 1163
0f3457f6 1164 throtl_trim_slice(tg, rw);
6bc9c2b4 1165
c5cc2070
TH
1166 if (tg_to_put)
1167 blkg_put(tg_to_blkg(tg_to_put));
e43473b7
VG
1168}
1169
77216b04 1170static int throtl_dispatch_tg(struct throtl_grp *tg)
e43473b7 1171{
73f0d49a 1172 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
1173 unsigned int nr_reads = 0, nr_writes = 0;
1174 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
c2f6805d 1175 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
e43473b7
VG
1176 struct bio *bio;
1177
1178 /* Try to dispatch 75% READS and 25% WRITES */
1179
c5cc2070 1180 while ((bio = throtl_peek_queued(&sq->queued[READ])) &&
0f3457f6 1181 tg_may_dispatch(tg, bio, NULL)) {
e43473b7 1182
77216b04 1183 tg_dispatch_one_bio(tg, bio_data_dir(bio));
e43473b7
VG
1184 nr_reads++;
1185
1186 if (nr_reads >= max_nr_reads)
1187 break;
1188 }
1189
c5cc2070 1190 while ((bio = throtl_peek_queued(&sq->queued[WRITE])) &&
0f3457f6 1191 tg_may_dispatch(tg, bio, NULL)) {
e43473b7 1192
77216b04 1193 tg_dispatch_one_bio(tg, bio_data_dir(bio));
e43473b7
VG
1194 nr_writes++;
1195
1196 if (nr_writes >= max_nr_writes)
1197 break;
1198 }
1199
1200 return nr_reads + nr_writes;
1201}
1202
651930bc 1203static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
e43473b7
VG
1204{
1205 unsigned int nr_disp = 0;
e43473b7
VG
1206
1207 while (1) {
73f0d49a
TH
1208 struct throtl_grp *tg = throtl_rb_first(parent_sq);
1209 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
1210
1211 if (!tg)
1212 break;
1213
1214 if (time_before(jiffies, tg->disptime))
1215 break;
1216
77216b04 1217 throtl_dequeue_tg(tg);
e43473b7 1218
77216b04 1219 nr_disp += throtl_dispatch_tg(tg);
e43473b7 1220
73f0d49a 1221 if (sq->nr_queued[0] || sq->nr_queued[1])
77216b04 1222 tg_update_disptime(tg);
e43473b7
VG
1223
1224 if (nr_disp >= throtl_quantum)
1225 break;
1226 }
1227
1228 return nr_disp;
1229}
1230
c79892c5
SL
1231static bool throtl_can_upgrade(struct throtl_data *td,
1232 struct throtl_grp *this_tg);
6e1a5704
TH
1233/**
1234 * throtl_pending_timer_fn - timer function for service_queue->pending_timer
1235 * @arg: the throtl_service_queue being serviced
1236 *
1237 * This timer is armed when a child throtl_grp with active bio's become
1238 * pending and queued on the service_queue's pending_tree and expires when
1239 * the first child throtl_grp should be dispatched. This function
2e48a530
TH
1240 * dispatches bio's from the children throtl_grps to the parent
1241 * service_queue.
1242 *
1243 * If the parent's parent is another throtl_grp, dispatching is propagated
1244 * by either arming its pending_timer or repeating dispatch directly. If
1245 * the top-level service_tree is reached, throtl_data->dispatch_work is
1246 * kicked so that the ready bio's are issued.
6e1a5704 1247 */
e99e88a9 1248static void throtl_pending_timer_fn(struct timer_list *t)
69df0ab0 1249{
e99e88a9 1250 struct throtl_service_queue *sq = from_timer(sq, t, pending_timer);
2e48a530 1251 struct throtl_grp *tg = sq_to_tg(sq);
69df0ab0 1252 struct throtl_data *td = sq_to_td(sq);
cb76199c 1253 struct request_queue *q = td->queue;
2e48a530
TH
1254 struct throtl_service_queue *parent_sq;
1255 bool dispatched;
6e1a5704 1256 int ret;
e43473b7
VG
1257
1258 spin_lock_irq(q->queue_lock);
c79892c5
SL
1259 if (throtl_can_upgrade(td, NULL))
1260 throtl_upgrade_state(td);
1261
2e48a530
TH
1262again:
1263 parent_sq = sq->parent_sq;
1264 dispatched = false;
e43473b7 1265
7f52f98c
TH
1266 while (true) {
1267 throtl_log(sq, "dispatch nr_queued=%u read=%u write=%u",
2e48a530
TH
1268 sq->nr_queued[READ] + sq->nr_queued[WRITE],
1269 sq->nr_queued[READ], sq->nr_queued[WRITE]);
7f52f98c
TH
1270
1271 ret = throtl_select_dispatch(sq);
1272 if (ret) {
7f52f98c
TH
1273 throtl_log(sq, "bios disp=%u", ret);
1274 dispatched = true;
1275 }
e43473b7 1276
7f52f98c
TH
1277 if (throtl_schedule_next_dispatch(sq, false))
1278 break;
e43473b7 1279
7f52f98c
TH
1280 /* this dispatch windows is still open, relax and repeat */
1281 spin_unlock_irq(q->queue_lock);
1282 cpu_relax();
1283 spin_lock_irq(q->queue_lock);
651930bc 1284 }
e43473b7 1285
2e48a530
TH
1286 if (!dispatched)
1287 goto out_unlock;
6e1a5704 1288
2e48a530
TH
1289 if (parent_sq) {
1290 /* @parent_sq is another throl_grp, propagate dispatch */
1291 if (tg->flags & THROTL_TG_WAS_EMPTY) {
1292 tg_update_disptime(tg);
1293 if (!throtl_schedule_next_dispatch(parent_sq, false)) {
1294 /* window is already open, repeat dispatching */
1295 sq = parent_sq;
1296 tg = sq_to_tg(sq);
1297 goto again;
1298 }
1299 }
1300 } else {
1301 /* reached the top-level, queue issueing */
1302 queue_work(kthrotld_workqueue, &td->dispatch_work);
1303 }
1304out_unlock:
e43473b7 1305 spin_unlock_irq(q->queue_lock);
6e1a5704 1306}
e43473b7 1307
6e1a5704
TH
1308/**
1309 * blk_throtl_dispatch_work_fn - work function for throtl_data->dispatch_work
1310 * @work: work item being executed
1311 *
1312 * This function is queued for execution when bio's reach the bio_lists[]
1313 * of throtl_data->service_queue. Those bio's are ready and issued by this
1314 * function.
1315 */
8876e140 1316static void blk_throtl_dispatch_work_fn(struct work_struct *work)
6e1a5704
TH
1317{
1318 struct throtl_data *td = container_of(work, struct throtl_data,
1319 dispatch_work);
1320 struct throtl_service_queue *td_sq = &td->service_queue;
1321 struct request_queue *q = td->queue;
1322 struct bio_list bio_list_on_stack;
1323 struct bio *bio;
1324 struct blk_plug plug;
1325 int rw;
1326
1327 bio_list_init(&bio_list_on_stack);
1328
1329 spin_lock_irq(q->queue_lock);
c5cc2070
TH
1330 for (rw = READ; rw <= WRITE; rw++)
1331 while ((bio = throtl_pop_queued(&td_sq->queued[rw], NULL)))
1332 bio_list_add(&bio_list_on_stack, bio);
6e1a5704
TH
1333 spin_unlock_irq(q->queue_lock);
1334
1335 if (!bio_list_empty(&bio_list_on_stack)) {
69d60eb9 1336 blk_start_plug(&plug);
e43473b7
VG
1337 while((bio = bio_list_pop(&bio_list_on_stack)))
1338 generic_make_request(bio);
69d60eb9 1339 blk_finish_plug(&plug);
e43473b7 1340 }
e43473b7
VG
1341}
1342
f95a04af
TH
1343static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
1344 int off)
60c2bc2d 1345{
f95a04af
TH
1346 struct throtl_grp *tg = pd_to_tg(pd);
1347 u64 v = *(u64 *)((void *)tg + off);
60c2bc2d 1348
2ab5492d 1349 if (v == U64_MAX)
60c2bc2d 1350 return 0;
f95a04af 1351 return __blkg_prfill_u64(sf, pd, v);
60c2bc2d
TH
1352}
1353
f95a04af
TH
1354static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
1355 int off)
e43473b7 1356{
f95a04af
TH
1357 struct throtl_grp *tg = pd_to_tg(pd);
1358 unsigned int v = *(unsigned int *)((void *)tg + off);
fe071437 1359
2ab5492d 1360 if (v == UINT_MAX)
af133ceb 1361 return 0;
f95a04af 1362 return __blkg_prfill_u64(sf, pd, v);
e43473b7
VG
1363}
1364
2da8ca82 1365static int tg_print_conf_u64(struct seq_file *sf, void *v)
8e89d13f 1366{
2da8ca82
TH
1367 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_u64,
1368 &blkcg_policy_throtl, seq_cft(sf)->private, false);
af133ceb 1369 return 0;
8e89d13f
VG
1370}
1371
2da8ca82 1372static int tg_print_conf_uint(struct seq_file *sf, void *v)
8e89d13f 1373{
2da8ca82
TH
1374 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_conf_uint,
1375 &blkcg_policy_throtl, seq_cft(sf)->private, false);
af133ceb 1376 return 0;
60c2bc2d
TH
1377}
1378
9bb67aeb 1379static void tg_conf_updated(struct throtl_grp *tg, bool global)
60c2bc2d 1380{
69948b07 1381 struct throtl_service_queue *sq = &tg->service_queue;
492eb21b 1382 struct cgroup_subsys_state *pos_css;
69948b07 1383 struct blkcg_gq *blkg;
af133ceb 1384
fda6f272
TH
1385 throtl_log(&tg->service_queue,
1386 "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
9f626e37
SL
1387 tg_bps_limit(tg, READ), tg_bps_limit(tg, WRITE),
1388 tg_iops_limit(tg, READ), tg_iops_limit(tg, WRITE));
632b4493 1389
693e751e
TH
1390 /*
1391 * Update has_rules[] flags for the updated tg's subtree. A tg is
1392 * considered to have rules if either the tg itself or any of its
1393 * ancestors has rules. This identifies groups without any
1394 * restrictions in the whole hierarchy and allows them to bypass
1395 * blk-throttle.
1396 */
9bb67aeb
SL
1397 blkg_for_each_descendant_pre(blkg, pos_css,
1398 global ? tg->td->queue->root_blkg : tg_to_blkg(tg)) {
5b81fc3c
SL
1399 struct throtl_grp *this_tg = blkg_to_tg(blkg);
1400 struct throtl_grp *parent_tg;
1401
1402 tg_update_has_rules(this_tg);
1403 /* ignore root/second level */
1404 if (!cgroup_subsys_on_dfl(io_cgrp_subsys) || !blkg->parent ||
1405 !blkg->parent->parent)
1406 continue;
1407 parent_tg = blkg_to_tg(blkg->parent);
1408 /*
1409 * make sure all children has lower idle time threshold and
1410 * higher latency target
1411 */
1412 this_tg->idletime_threshold = min(this_tg->idletime_threshold,
1413 parent_tg->idletime_threshold);
1414 this_tg->latency_target = max(this_tg->latency_target,
1415 parent_tg->latency_target);
1416 }
693e751e 1417
632b4493
TH
1418 /*
1419 * We're already holding queue_lock and know @tg is valid. Let's
1420 * apply the new config directly.
1421 *
1422 * Restart the slices for both READ and WRITES. It might happen
1423 * that a group's limit are dropped suddenly and we don't want to
1424 * account recently dispatched IO with new low rate.
1425 */
0f3457f6
TH
1426 throtl_start_new_slice(tg, 0);
1427 throtl_start_new_slice(tg, 1);
632b4493 1428
5b2c16aa 1429 if (tg->flags & THROTL_TG_PENDING) {
77216b04 1430 tg_update_disptime(tg);
7f52f98c 1431 throtl_schedule_next_dispatch(sq->parent_sq, true);
632b4493 1432 }
69948b07
TH
1433}
1434
1435static ssize_t tg_set_conf(struct kernfs_open_file *of,
1436 char *buf, size_t nbytes, loff_t off, bool is_u64)
1437{
1438 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1439 struct blkg_conf_ctx ctx;
1440 struct throtl_grp *tg;
1441 int ret;
1442 u64 v;
1443
1444 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1445 if (ret)
1446 return ret;
1447
1448 ret = -EINVAL;
1449 if (sscanf(ctx.body, "%llu", &v) != 1)
1450 goto out_finish;
1451 if (!v)
2ab5492d 1452 v = U64_MAX;
69948b07
TH
1453
1454 tg = blkg_to_tg(ctx.blkg);
1455
1456 if (is_u64)
1457 *(u64 *)((void *)tg + of_cft(of)->private) = v;
1458 else
1459 *(unsigned int *)((void *)tg + of_cft(of)->private) = v;
60c2bc2d 1460
9bb67aeb 1461 tg_conf_updated(tg, false);
36aa9e5f
TH
1462 ret = 0;
1463out_finish:
60c2bc2d 1464 blkg_conf_finish(&ctx);
36aa9e5f 1465 return ret ?: nbytes;
8e89d13f
VG
1466}
1467
451af504
TH
1468static ssize_t tg_set_conf_u64(struct kernfs_open_file *of,
1469 char *buf, size_t nbytes, loff_t off)
60c2bc2d 1470{
451af504 1471 return tg_set_conf(of, buf, nbytes, off, true);
60c2bc2d
TH
1472}
1473
451af504
TH
1474static ssize_t tg_set_conf_uint(struct kernfs_open_file *of,
1475 char *buf, size_t nbytes, loff_t off)
60c2bc2d 1476{
451af504 1477 return tg_set_conf(of, buf, nbytes, off, false);
60c2bc2d
TH
1478}
1479
880f50e2 1480static struct cftype throtl_legacy_files[] = {
60c2bc2d
TH
1481 {
1482 .name = "throttle.read_bps_device",
9f626e37 1483 .private = offsetof(struct throtl_grp, bps[READ][LIMIT_MAX]),
2da8ca82 1484 .seq_show = tg_print_conf_u64,
451af504 1485 .write = tg_set_conf_u64,
60c2bc2d
TH
1486 },
1487 {
1488 .name = "throttle.write_bps_device",
9f626e37 1489 .private = offsetof(struct throtl_grp, bps[WRITE][LIMIT_MAX]),
2da8ca82 1490 .seq_show = tg_print_conf_u64,
451af504 1491 .write = tg_set_conf_u64,
60c2bc2d
TH
1492 },
1493 {
1494 .name = "throttle.read_iops_device",
9f626e37 1495 .private = offsetof(struct throtl_grp, iops[READ][LIMIT_MAX]),
2da8ca82 1496 .seq_show = tg_print_conf_uint,
451af504 1497 .write = tg_set_conf_uint,
60c2bc2d
TH
1498 },
1499 {
1500 .name = "throttle.write_iops_device",
9f626e37 1501 .private = offsetof(struct throtl_grp, iops[WRITE][LIMIT_MAX]),
2da8ca82 1502 .seq_show = tg_print_conf_uint,
451af504 1503 .write = tg_set_conf_uint,
60c2bc2d
TH
1504 },
1505 {
1506 .name = "throttle.io_service_bytes",
77ea7338
TH
1507 .private = (unsigned long)&blkcg_policy_throtl,
1508 .seq_show = blkg_print_stat_bytes,
60c2bc2d
TH
1509 },
1510 {
1511 .name = "throttle.io_serviced",
77ea7338
TH
1512 .private = (unsigned long)&blkcg_policy_throtl,
1513 .seq_show = blkg_print_stat_ios,
60c2bc2d
TH
1514 },
1515 { } /* terminate */
1516};
1517
cd5ab1b0 1518static u64 tg_prfill_limit(struct seq_file *sf, struct blkg_policy_data *pd,
2ee867dc
TH
1519 int off)
1520{
1521 struct throtl_grp *tg = pd_to_tg(pd);
1522 const char *dname = blkg_dev_name(pd->blkg);
1523 char bufs[4][21] = { "max", "max", "max", "max" };
cd5ab1b0
SL
1524 u64 bps_dft;
1525 unsigned int iops_dft;
ada75b6e 1526 char idle_time[26] = "";
ec80991d 1527 char latency_time[26] = "";
2ee867dc
TH
1528
1529 if (!dname)
1530 return 0;
9f626e37 1531
cd5ab1b0
SL
1532 if (off == LIMIT_LOW) {
1533 bps_dft = 0;
1534 iops_dft = 0;
1535 } else {
1536 bps_dft = U64_MAX;
1537 iops_dft = UINT_MAX;
1538 }
1539
1540 if (tg->bps_conf[READ][off] == bps_dft &&
1541 tg->bps_conf[WRITE][off] == bps_dft &&
1542 tg->iops_conf[READ][off] == iops_dft &&
ada75b6e 1543 tg->iops_conf[WRITE][off] == iops_dft &&
ec80991d 1544 (off != LIMIT_LOW ||
b4f428ef 1545 (tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD &&
5b81fc3c 1546 tg->latency_target_conf == DFL_LATENCY_TARGET)))
2ee867dc
TH
1547 return 0;
1548
9bb67aeb 1549 if (tg->bps_conf[READ][off] != U64_MAX)
9f626e37 1550 snprintf(bufs[0], sizeof(bufs[0]), "%llu",
cd5ab1b0 1551 tg->bps_conf[READ][off]);
9bb67aeb 1552 if (tg->bps_conf[WRITE][off] != U64_MAX)
9f626e37 1553 snprintf(bufs[1], sizeof(bufs[1]), "%llu",
cd5ab1b0 1554 tg->bps_conf[WRITE][off]);
9bb67aeb 1555 if (tg->iops_conf[READ][off] != UINT_MAX)
9f626e37 1556 snprintf(bufs[2], sizeof(bufs[2]), "%u",
cd5ab1b0 1557 tg->iops_conf[READ][off]);
9bb67aeb 1558 if (tg->iops_conf[WRITE][off] != UINT_MAX)
9f626e37 1559 snprintf(bufs[3], sizeof(bufs[3]), "%u",
cd5ab1b0 1560 tg->iops_conf[WRITE][off]);
ada75b6e 1561 if (off == LIMIT_LOW) {
5b81fc3c 1562 if (tg->idletime_threshold_conf == ULONG_MAX)
ada75b6e
SL
1563 strcpy(idle_time, " idle=max");
1564 else
1565 snprintf(idle_time, sizeof(idle_time), " idle=%lu",
5b81fc3c 1566 tg->idletime_threshold_conf);
ec80991d 1567
5b81fc3c 1568 if (tg->latency_target_conf == ULONG_MAX)
ec80991d
SL
1569 strcpy(latency_time, " latency=max");
1570 else
1571 snprintf(latency_time, sizeof(latency_time),
5b81fc3c 1572 " latency=%lu", tg->latency_target_conf);
ada75b6e 1573 }
2ee867dc 1574
ec80991d
SL
1575 seq_printf(sf, "%s rbps=%s wbps=%s riops=%s wiops=%s%s%s\n",
1576 dname, bufs[0], bufs[1], bufs[2], bufs[3], idle_time,
1577 latency_time);
2ee867dc
TH
1578 return 0;
1579}
1580
cd5ab1b0 1581static int tg_print_limit(struct seq_file *sf, void *v)
2ee867dc 1582{
cd5ab1b0 1583 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)), tg_prfill_limit,
2ee867dc
TH
1584 &blkcg_policy_throtl, seq_cft(sf)->private, false);
1585 return 0;
1586}
1587
cd5ab1b0 1588static ssize_t tg_set_limit(struct kernfs_open_file *of,
2ee867dc
TH
1589 char *buf, size_t nbytes, loff_t off)
1590{
1591 struct blkcg *blkcg = css_to_blkcg(of_css(of));
1592 struct blkg_conf_ctx ctx;
1593 struct throtl_grp *tg;
1594 u64 v[4];
ada75b6e 1595 unsigned long idle_time;
ec80991d 1596 unsigned long latency_time;
2ee867dc 1597 int ret;
cd5ab1b0 1598 int index = of_cft(of)->private;
2ee867dc
TH
1599
1600 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
1601 if (ret)
1602 return ret;
1603
1604 tg = blkg_to_tg(ctx.blkg);
1605
cd5ab1b0
SL
1606 v[0] = tg->bps_conf[READ][index];
1607 v[1] = tg->bps_conf[WRITE][index];
1608 v[2] = tg->iops_conf[READ][index];
1609 v[3] = tg->iops_conf[WRITE][index];
2ee867dc 1610
5b81fc3c
SL
1611 idle_time = tg->idletime_threshold_conf;
1612 latency_time = tg->latency_target_conf;
2ee867dc
TH
1613 while (true) {
1614 char tok[27]; /* wiops=18446744073709551616 */
1615 char *p;
2ab5492d 1616 u64 val = U64_MAX;
2ee867dc
TH
1617 int len;
1618
1619 if (sscanf(ctx.body, "%26s%n", tok, &len) != 1)
1620 break;
1621 if (tok[0] == '\0')
1622 break;
1623 ctx.body += len;
1624
1625 ret = -EINVAL;
1626 p = tok;
1627 strsep(&p, "=");
1628 if (!p || (sscanf(p, "%llu", &val) != 1 && strcmp(p, "max")))
1629 goto out_finish;
1630
1631 ret = -ERANGE;
1632 if (!val)
1633 goto out_finish;
1634
1635 ret = -EINVAL;
1636 if (!strcmp(tok, "rbps"))
1637 v[0] = val;
1638 else if (!strcmp(tok, "wbps"))
1639 v[1] = val;
1640 else if (!strcmp(tok, "riops"))
1641 v[2] = min_t(u64, val, UINT_MAX);
1642 else if (!strcmp(tok, "wiops"))
1643 v[3] = min_t(u64, val, UINT_MAX);
ada75b6e
SL
1644 else if (off == LIMIT_LOW && !strcmp(tok, "idle"))
1645 idle_time = val;
ec80991d
SL
1646 else if (off == LIMIT_LOW && !strcmp(tok, "latency"))
1647 latency_time = val;
2ee867dc
TH
1648 else
1649 goto out_finish;
1650 }
1651
cd5ab1b0
SL
1652 tg->bps_conf[READ][index] = v[0];
1653 tg->bps_conf[WRITE][index] = v[1];
1654 tg->iops_conf[READ][index] = v[2];
1655 tg->iops_conf[WRITE][index] = v[3];
2ee867dc 1656
cd5ab1b0
SL
1657 if (index == LIMIT_MAX) {
1658 tg->bps[READ][index] = v[0];
1659 tg->bps[WRITE][index] = v[1];
1660 tg->iops[READ][index] = v[2];
1661 tg->iops[WRITE][index] = v[3];
1662 }
1663 tg->bps[READ][LIMIT_LOW] = min(tg->bps_conf[READ][LIMIT_LOW],
1664 tg->bps_conf[READ][LIMIT_MAX]);
1665 tg->bps[WRITE][LIMIT_LOW] = min(tg->bps_conf[WRITE][LIMIT_LOW],
1666 tg->bps_conf[WRITE][LIMIT_MAX]);
1667 tg->iops[READ][LIMIT_LOW] = min(tg->iops_conf[READ][LIMIT_LOW],
1668 tg->iops_conf[READ][LIMIT_MAX]);
1669 tg->iops[WRITE][LIMIT_LOW] = min(tg->iops_conf[WRITE][LIMIT_LOW],
1670 tg->iops_conf[WRITE][LIMIT_MAX]);
b4f428ef
SL
1671 tg->idletime_threshold_conf = idle_time;
1672 tg->latency_target_conf = latency_time;
1673
1674 /* force user to configure all settings for low limit */
1675 if (!(tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW] ||
1676 tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW]) ||
1677 tg->idletime_threshold_conf == DFL_IDLE_THRESHOLD ||
1678 tg->latency_target_conf == DFL_LATENCY_TARGET) {
1679 tg->bps[READ][LIMIT_LOW] = 0;
1680 tg->bps[WRITE][LIMIT_LOW] = 0;
1681 tg->iops[READ][LIMIT_LOW] = 0;
1682 tg->iops[WRITE][LIMIT_LOW] = 0;
1683 tg->idletime_threshold = DFL_IDLE_THRESHOLD;
1684 tg->latency_target = DFL_LATENCY_TARGET;
1685 } else if (index == LIMIT_LOW) {
5b81fc3c 1686 tg->idletime_threshold = tg->idletime_threshold_conf;
5b81fc3c 1687 tg->latency_target = tg->latency_target_conf;
cd5ab1b0 1688 }
b4f428ef
SL
1689
1690 blk_throtl_update_limit_valid(tg->td);
1691 if (tg->td->limit_valid[LIMIT_LOW]) {
1692 if (index == LIMIT_LOW)
1693 tg->td->limit_index = LIMIT_LOW;
1694 } else
1695 tg->td->limit_index = LIMIT_MAX;
9bb67aeb
SL
1696 tg_conf_updated(tg, index == LIMIT_LOW &&
1697 tg->td->limit_valid[LIMIT_LOW]);
2ee867dc
TH
1698 ret = 0;
1699out_finish:
1700 blkg_conf_finish(&ctx);
1701 return ret ?: nbytes;
1702}
1703
1704static struct cftype throtl_files[] = {
cd5ab1b0
SL
1705#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
1706 {
1707 .name = "low",
1708 .flags = CFTYPE_NOT_ON_ROOT,
1709 .seq_show = tg_print_limit,
1710 .write = tg_set_limit,
1711 .private = LIMIT_LOW,
1712 },
1713#endif
2ee867dc
TH
1714 {
1715 .name = "max",
1716 .flags = CFTYPE_NOT_ON_ROOT,
cd5ab1b0
SL
1717 .seq_show = tg_print_limit,
1718 .write = tg_set_limit,
1719 .private = LIMIT_MAX,
2ee867dc
TH
1720 },
1721 { } /* terminate */
1722};
1723
da527770 1724static void throtl_shutdown_wq(struct request_queue *q)
e43473b7
VG
1725{
1726 struct throtl_data *td = q->td;
1727
69df0ab0 1728 cancel_work_sync(&td->dispatch_work);
e43473b7
VG
1729}
1730
3c798398 1731static struct blkcg_policy blkcg_policy_throtl = {
2ee867dc 1732 .dfl_cftypes = throtl_files,
880f50e2 1733 .legacy_cftypes = throtl_legacy_files,
f9fcc2d3 1734
001bea73 1735 .pd_alloc_fn = throtl_pd_alloc,
f9fcc2d3 1736 .pd_init_fn = throtl_pd_init,
693e751e 1737 .pd_online_fn = throtl_pd_online,
cd5ab1b0 1738 .pd_offline_fn = throtl_pd_offline,
001bea73 1739 .pd_free_fn = throtl_pd_free,
e43473b7
VG
1740};
1741
3f0abd80
SL
1742static unsigned long __tg_last_low_overflow_time(struct throtl_grp *tg)
1743{
1744 unsigned long rtime = jiffies, wtime = jiffies;
1745
1746 if (tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW])
1747 rtime = tg->last_low_overflow_time[READ];
1748 if (tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW])
1749 wtime = tg->last_low_overflow_time[WRITE];
1750 return min(rtime, wtime);
1751}
1752
1753/* tg should not be an intermediate node */
1754static unsigned long tg_last_low_overflow_time(struct throtl_grp *tg)
1755{
1756 struct throtl_service_queue *parent_sq;
1757 struct throtl_grp *parent = tg;
1758 unsigned long ret = __tg_last_low_overflow_time(tg);
1759
1760 while (true) {
1761 parent_sq = parent->service_queue.parent_sq;
1762 parent = sq_to_tg(parent_sq);
1763 if (!parent)
1764 break;
1765
1766 /*
1767 * The parent doesn't have low limit, it always reaches low
1768 * limit. Its overflow time is useless for children
1769 */
1770 if (!parent->bps[READ][LIMIT_LOW] &&
1771 !parent->iops[READ][LIMIT_LOW] &&
1772 !parent->bps[WRITE][LIMIT_LOW] &&
1773 !parent->iops[WRITE][LIMIT_LOW])
1774 continue;
1775 if (time_after(__tg_last_low_overflow_time(parent), ret))
1776 ret = __tg_last_low_overflow_time(parent);
1777 }
1778 return ret;
1779}
1780
9e234eea
SL
1781static bool throtl_tg_is_idle(struct throtl_grp *tg)
1782{
1783 /*
1784 * cgroup is idle if:
1785 * - single idle is too long, longer than a fixed value (in case user
b4f428ef 1786 * configure a too big threshold) or 4 times of idletime threshold
9e234eea 1787 * - average think time is more than threshold
53696b8d 1788 * - IO latency is largely below threshold
9e234eea 1789 */
b4f428ef 1790 unsigned long time;
4cff729f 1791 bool ret;
9e234eea 1792
b4f428ef
SL
1793 time = min_t(unsigned long, MAX_IDLE_TIME, 4 * tg->idletime_threshold);
1794 ret = tg->latency_target == DFL_LATENCY_TARGET ||
1795 tg->idletime_threshold == DFL_IDLE_THRESHOLD ||
1796 (ktime_get_ns() >> 10) - tg->last_finish_time > time ||
1797 tg->avg_idletime > tg->idletime_threshold ||
1798 (tg->latency_target && tg->bio_cnt &&
53696b8d 1799 tg->bad_bio_cnt * 5 < tg->bio_cnt);
4cff729f
SL
1800 throtl_log(&tg->service_queue,
1801 "avg_idle=%ld, idle_threshold=%ld, bad_bio=%d, total_bio=%d, is_idle=%d, scale=%d",
1802 tg->avg_idletime, tg->idletime_threshold, tg->bad_bio_cnt,
1803 tg->bio_cnt, ret, tg->td->scale);
1804 return ret;
9e234eea
SL
1805}
1806
c79892c5
SL
1807static bool throtl_tg_can_upgrade(struct throtl_grp *tg)
1808{
1809 struct throtl_service_queue *sq = &tg->service_queue;
1810 bool read_limit, write_limit;
1811
1812 /*
1813 * if cgroup reaches low limit (if low limit is 0, the cgroup always
1814 * reaches), it's ok to upgrade to next limit
1815 */
1816 read_limit = tg->bps[READ][LIMIT_LOW] || tg->iops[READ][LIMIT_LOW];
1817 write_limit = tg->bps[WRITE][LIMIT_LOW] || tg->iops[WRITE][LIMIT_LOW];
1818 if (!read_limit && !write_limit)
1819 return true;
1820 if (read_limit && sq->nr_queued[READ] &&
1821 (!write_limit || sq->nr_queued[WRITE]))
1822 return true;
1823 if (write_limit && sq->nr_queued[WRITE] &&
1824 (!read_limit || sq->nr_queued[READ]))
1825 return true;
aec24246
SL
1826
1827 if (time_after_eq(jiffies,
fa6fb5aa
SL
1828 tg_last_low_overflow_time(tg) + tg->td->throtl_slice) &&
1829 throtl_tg_is_idle(tg))
aec24246 1830 return true;
c79892c5
SL
1831 return false;
1832}
1833
1834static bool throtl_hierarchy_can_upgrade(struct throtl_grp *tg)
1835{
1836 while (true) {
1837 if (throtl_tg_can_upgrade(tg))
1838 return true;
1839 tg = sq_to_tg(tg->service_queue.parent_sq);
1840 if (!tg || !tg_to_blkg(tg)->parent)
1841 return false;
1842 }
1843 return false;
1844}
1845
1846static bool throtl_can_upgrade(struct throtl_data *td,
1847 struct throtl_grp *this_tg)
1848{
1849 struct cgroup_subsys_state *pos_css;
1850 struct blkcg_gq *blkg;
1851
1852 if (td->limit_index != LIMIT_LOW)
1853 return false;
1854
297e3d85 1855 if (time_before(jiffies, td->low_downgrade_time + td->throtl_slice))
3f0abd80
SL
1856 return false;
1857
c79892c5
SL
1858 rcu_read_lock();
1859 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1860 struct throtl_grp *tg = blkg_to_tg(blkg);
1861
1862 if (tg == this_tg)
1863 continue;
1864 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1865 continue;
1866 if (!throtl_hierarchy_can_upgrade(tg)) {
1867 rcu_read_unlock();
1868 return false;
1869 }
1870 }
1871 rcu_read_unlock();
1872 return true;
1873}
1874
fa6fb5aa
SL
1875static void throtl_upgrade_check(struct throtl_grp *tg)
1876{
1877 unsigned long now = jiffies;
1878
1879 if (tg->td->limit_index != LIMIT_LOW)
1880 return;
1881
1882 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
1883 return;
1884
1885 tg->last_check_time = now;
1886
1887 if (!time_after_eq(now,
1888 __tg_last_low_overflow_time(tg) + tg->td->throtl_slice))
1889 return;
1890
1891 if (throtl_can_upgrade(tg->td, NULL))
1892 throtl_upgrade_state(tg->td);
1893}
1894
c79892c5
SL
1895static void throtl_upgrade_state(struct throtl_data *td)
1896{
1897 struct cgroup_subsys_state *pos_css;
1898 struct blkcg_gq *blkg;
1899
4cff729f 1900 throtl_log(&td->service_queue, "upgrade to max");
c79892c5 1901 td->limit_index = LIMIT_MAX;
3f0abd80 1902 td->low_upgrade_time = jiffies;
7394e31f 1903 td->scale = 0;
c79892c5
SL
1904 rcu_read_lock();
1905 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg) {
1906 struct throtl_grp *tg = blkg_to_tg(blkg);
1907 struct throtl_service_queue *sq = &tg->service_queue;
1908
1909 tg->disptime = jiffies - 1;
1910 throtl_select_dispatch(sq);
4f02fb76 1911 throtl_schedule_next_dispatch(sq, true);
c79892c5
SL
1912 }
1913 rcu_read_unlock();
1914 throtl_select_dispatch(&td->service_queue);
4f02fb76 1915 throtl_schedule_next_dispatch(&td->service_queue, true);
c79892c5
SL
1916 queue_work(kthrotld_workqueue, &td->dispatch_work);
1917}
1918
3f0abd80
SL
1919static void throtl_downgrade_state(struct throtl_data *td, int new)
1920{
7394e31f
SL
1921 td->scale /= 2;
1922
4cff729f 1923 throtl_log(&td->service_queue, "downgrade, scale %d", td->scale);
7394e31f
SL
1924 if (td->scale) {
1925 td->low_upgrade_time = jiffies - td->scale * td->throtl_slice;
1926 return;
1927 }
1928
3f0abd80
SL
1929 td->limit_index = new;
1930 td->low_downgrade_time = jiffies;
1931}
1932
1933static bool throtl_tg_can_downgrade(struct throtl_grp *tg)
1934{
1935 struct throtl_data *td = tg->td;
1936 unsigned long now = jiffies;
1937
1938 /*
1939 * If cgroup is below low limit, consider downgrade and throttle other
1940 * cgroups
1941 */
297e3d85
SL
1942 if (time_after_eq(now, td->low_upgrade_time + td->throtl_slice) &&
1943 time_after_eq(now, tg_last_low_overflow_time(tg) +
fa6fb5aa
SL
1944 td->throtl_slice) &&
1945 (!throtl_tg_is_idle(tg) ||
1946 !list_empty(&tg_to_blkg(tg)->blkcg->css.children)))
3f0abd80
SL
1947 return true;
1948 return false;
1949}
1950
1951static bool throtl_hierarchy_can_downgrade(struct throtl_grp *tg)
1952{
1953 while (true) {
1954 if (!throtl_tg_can_downgrade(tg))
1955 return false;
1956 tg = sq_to_tg(tg->service_queue.parent_sq);
1957 if (!tg || !tg_to_blkg(tg)->parent)
1958 break;
1959 }
1960 return true;
1961}
1962
1963static void throtl_downgrade_check(struct throtl_grp *tg)
1964{
1965 uint64_t bps;
1966 unsigned int iops;
1967 unsigned long elapsed_time;
1968 unsigned long now = jiffies;
1969
1970 if (tg->td->limit_index != LIMIT_MAX ||
1971 !tg->td->limit_valid[LIMIT_LOW])
1972 return;
1973 if (!list_empty(&tg_to_blkg(tg)->blkcg->css.children))
1974 return;
297e3d85 1975 if (time_after(tg->last_check_time + tg->td->throtl_slice, now))
3f0abd80
SL
1976 return;
1977
1978 elapsed_time = now - tg->last_check_time;
1979 tg->last_check_time = now;
1980
297e3d85
SL
1981 if (time_before(now, tg_last_low_overflow_time(tg) +
1982 tg->td->throtl_slice))
3f0abd80
SL
1983 return;
1984
1985 if (tg->bps[READ][LIMIT_LOW]) {
1986 bps = tg->last_bytes_disp[READ] * HZ;
1987 do_div(bps, elapsed_time);
1988 if (bps >= tg->bps[READ][LIMIT_LOW])
1989 tg->last_low_overflow_time[READ] = now;
1990 }
1991
1992 if (tg->bps[WRITE][LIMIT_LOW]) {
1993 bps = tg->last_bytes_disp[WRITE] * HZ;
1994 do_div(bps, elapsed_time);
1995 if (bps >= tg->bps[WRITE][LIMIT_LOW])
1996 tg->last_low_overflow_time[WRITE] = now;
1997 }
1998
1999 if (tg->iops[READ][LIMIT_LOW]) {
2000 iops = tg->last_io_disp[READ] * HZ / elapsed_time;
2001 if (iops >= tg->iops[READ][LIMIT_LOW])
2002 tg->last_low_overflow_time[READ] = now;
2003 }
2004
2005 if (tg->iops[WRITE][LIMIT_LOW]) {
2006 iops = tg->last_io_disp[WRITE] * HZ / elapsed_time;
2007 if (iops >= tg->iops[WRITE][LIMIT_LOW])
2008 tg->last_low_overflow_time[WRITE] = now;
2009 }
2010
2011 /*
2012 * If cgroup is below low limit, consider downgrade and throttle other
2013 * cgroups
2014 */
2015 if (throtl_hierarchy_can_downgrade(tg))
2016 throtl_downgrade_state(tg->td, LIMIT_LOW);
2017
2018 tg->last_bytes_disp[READ] = 0;
2019 tg->last_bytes_disp[WRITE] = 0;
2020 tg->last_io_disp[READ] = 0;
2021 tg->last_io_disp[WRITE] = 0;
2022}
2023
9e234eea
SL
2024static void blk_throtl_update_idletime(struct throtl_grp *tg)
2025{
2026 unsigned long now = ktime_get_ns() >> 10;
2027 unsigned long last_finish_time = tg->last_finish_time;
2028
2029 if (now <= last_finish_time || last_finish_time == 0 ||
2030 last_finish_time == tg->checked_last_finish_time)
2031 return;
2032
2033 tg->avg_idletime = (tg->avg_idletime * 7 + now - last_finish_time) >> 3;
2034 tg->checked_last_finish_time = last_finish_time;
2035}
2036
b9147dd1
SL
2037#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2038static void throtl_update_latency_buckets(struct throtl_data *td)
2039{
2040 struct avg_latency_bucket avg_latency[LATENCY_BUCKET_SIZE];
2041 int i, cpu;
2042 unsigned long last_latency = 0;
2043 unsigned long latency;
2044
2045 if (!blk_queue_nonrot(td->queue))
2046 return;
2047 if (time_before(jiffies, td->last_calculate_time + HZ))
2048 return;
2049 td->last_calculate_time = jiffies;
2050
2051 memset(avg_latency, 0, sizeof(avg_latency));
2052 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2053 struct latency_bucket *tmp = &td->tmp_buckets[i];
2054
2055 for_each_possible_cpu(cpu) {
2056 struct latency_bucket *bucket;
2057
2058 /* this isn't race free, but ok in practice */
2059 bucket = per_cpu_ptr(td->latency_buckets, cpu);
2060 tmp->total_latency += bucket[i].total_latency;
2061 tmp->samples += bucket[i].samples;
2062 bucket[i].total_latency = 0;
2063 bucket[i].samples = 0;
2064 }
2065
2066 if (tmp->samples >= 32) {
2067 int samples = tmp->samples;
2068
2069 latency = tmp->total_latency;
2070
2071 tmp->total_latency = 0;
2072 tmp->samples = 0;
2073 latency /= samples;
2074 if (latency == 0)
2075 continue;
2076 avg_latency[i].latency = latency;
2077 }
2078 }
2079
2080 for (i = 0; i < LATENCY_BUCKET_SIZE; i++) {
2081 if (!avg_latency[i].latency) {
2082 if (td->avg_buckets[i].latency < last_latency)
2083 td->avg_buckets[i].latency = last_latency;
2084 continue;
2085 }
2086
2087 if (!td->avg_buckets[i].valid)
2088 latency = avg_latency[i].latency;
2089 else
2090 latency = (td->avg_buckets[i].latency * 7 +
2091 avg_latency[i].latency) >> 3;
2092
2093 td->avg_buckets[i].latency = max(latency, last_latency);
2094 td->avg_buckets[i].valid = true;
2095 last_latency = td->avg_buckets[i].latency;
2096 }
4cff729f
SL
2097
2098 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2099 throtl_log(&td->service_queue,
2100 "Latency bucket %d: latency=%ld, valid=%d", i,
2101 td->avg_buckets[i].latency, td->avg_buckets[i].valid);
b9147dd1
SL
2102}
2103#else
2104static inline void throtl_update_latency_buckets(struct throtl_data *td)
2105{
2106}
2107#endif
2108
2bc19cd5
JA
2109static void blk_throtl_assoc_bio(struct throtl_grp *tg, struct bio *bio)
2110{
2111#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
53cfdc10
JX
2112 if (bio->bi_css) {
2113 if (bio->bi_cg_private)
2114 blkg_put(tg_to_blkg(bio->bi_cg_private));
2bc19cd5 2115 bio->bi_cg_private = tg;
53cfdc10
JX
2116 blkg_get(tg_to_blkg(tg));
2117 }
2bc19cd5 2118 blk_stat_set_issue(&bio->bi_issue_stat, bio_sectors(bio));
2bc19cd5
JA
2119#endif
2120}
2121
ae118896
TH
2122bool blk_throtl_bio(struct request_queue *q, struct blkcg_gq *blkg,
2123 struct bio *bio)
e43473b7 2124{
c5cc2070 2125 struct throtl_qnode *qn = NULL;
ae118896 2126 struct throtl_grp *tg = blkg_to_tg(blkg ?: q->root_blkg);
73f0d49a 2127 struct throtl_service_queue *sq;
0e9f4164 2128 bool rw = bio_data_dir(bio);
bc16a4f9 2129 bool throttled = false;
b9147dd1 2130 struct throtl_data *td = tg->td;
e43473b7 2131
ae118896
TH
2132 WARN_ON_ONCE(!rcu_read_lock_held());
2133
2a0f61e6 2134 /* see throtl_charge_bio() */
8d2bbd4c 2135 if (bio_flagged(bio, BIO_THROTTLED) || !tg->has_rules[rw])
bc16a4f9 2136 goto out;
e43473b7
VG
2137
2138 spin_lock_irq(q->queue_lock);
c9589f03 2139
b9147dd1
SL
2140 throtl_update_latency_buckets(td);
2141
c9589f03 2142 if (unlikely(blk_queue_bypass(q)))
bc16a4f9 2143 goto out_unlock;
f469a7b4 2144
2bc19cd5 2145 blk_throtl_assoc_bio(tg, bio);
9e234eea
SL
2146 blk_throtl_update_idletime(tg);
2147
73f0d49a
TH
2148 sq = &tg->service_queue;
2149
c79892c5 2150again:
9e660acf 2151 while (true) {
3f0abd80
SL
2152 if (tg->last_low_overflow_time[rw] == 0)
2153 tg->last_low_overflow_time[rw] = jiffies;
2154 throtl_downgrade_check(tg);
fa6fb5aa 2155 throtl_upgrade_check(tg);
9e660acf
TH
2156 /* throtl is FIFO - if bios are already queued, should queue */
2157 if (sq->nr_queued[rw])
2158 break;
de701c74 2159
9e660acf 2160 /* if above limits, break to queue */
c79892c5 2161 if (!tg_may_dispatch(tg, bio, NULL)) {
3f0abd80 2162 tg->last_low_overflow_time[rw] = jiffies;
b9147dd1
SL
2163 if (throtl_can_upgrade(td, tg)) {
2164 throtl_upgrade_state(td);
c79892c5
SL
2165 goto again;
2166 }
9e660acf 2167 break;
c79892c5 2168 }
9e660acf
TH
2169
2170 /* within limits, let's charge and dispatch directly */
e43473b7 2171 throtl_charge_bio(tg, bio);
04521db0
VG
2172
2173 /*
2174 * We need to trim slice even when bios are not being queued
2175 * otherwise it might happen that a bio is not queued for
2176 * a long time and slice keeps on extending and trim is not
2177 * called for a long time. Now if limits are reduced suddenly
2178 * we take into account all the IO dispatched so far at new
2179 * low rate and * newly queued IO gets a really long dispatch
2180 * time.
2181 *
2182 * So keep on trimming slice even if bio is not queued.
2183 */
0f3457f6 2184 throtl_trim_slice(tg, rw);
9e660acf
TH
2185
2186 /*
2187 * @bio passed through this layer without being throttled.
2188 * Climb up the ladder. If we''re already at the top, it
2189 * can be executed directly.
2190 */
c5cc2070 2191 qn = &tg->qnode_on_parent[rw];
9e660acf
TH
2192 sq = sq->parent_sq;
2193 tg = sq_to_tg(sq);
2194 if (!tg)
2195 goto out_unlock;
e43473b7
VG
2196 }
2197
9e660acf 2198 /* out-of-limit, queue to @tg */
fda6f272
TH
2199 throtl_log(sq, "[%c] bio. bdisp=%llu sz=%u bps=%llu iodisp=%u iops=%u queued=%d/%d",
2200 rw == READ ? 'R' : 'W',
9f626e37
SL
2201 tg->bytes_disp[rw], bio->bi_iter.bi_size,
2202 tg_bps_limit(tg, rw),
2203 tg->io_disp[rw], tg_iops_limit(tg, rw),
fda6f272 2204 sq->nr_queued[READ], sq->nr_queued[WRITE]);
e43473b7 2205
3f0abd80
SL
2206 tg->last_low_overflow_time[rw] = jiffies;
2207
b9147dd1 2208 td->nr_queued[rw]++;
c5cc2070 2209 throtl_add_bio_tg(bio, qn, tg);
bc16a4f9 2210 throttled = true;
e43473b7 2211
7f52f98c
TH
2212 /*
2213 * Update @tg's dispatch time and force schedule dispatch if @tg
2214 * was empty before @bio. The forced scheduling isn't likely to
2215 * cause undue delay as @bio is likely to be dispatched directly if
2216 * its @tg's disptime is not in the future.
2217 */
0e9f4164 2218 if (tg->flags & THROTL_TG_WAS_EMPTY) {
77216b04 2219 tg_update_disptime(tg);
7f52f98c 2220 throtl_schedule_next_dispatch(tg->service_queue.parent_sq, true);
e43473b7
VG
2221 }
2222
bc16a4f9 2223out_unlock:
e43473b7 2224 spin_unlock_irq(q->queue_lock);
bc16a4f9 2225out:
111be883 2226 bio_set_flag(bio, BIO_THROTTLED);
b9147dd1
SL
2227
2228#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2229 if (throttled || !td->track_bio_latency)
2230 bio->bi_issue_stat.stat |= SKIP_LATENCY;
2231#endif
bc16a4f9 2232 return throttled;
e43473b7
VG
2233}
2234
9e234eea 2235#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
b9147dd1
SL
2236static void throtl_track_latency(struct throtl_data *td, sector_t size,
2237 int op, unsigned long time)
2238{
2239 struct latency_bucket *latency;
2240 int index;
2241
2242 if (!td || td->limit_index != LIMIT_LOW || op != REQ_OP_READ ||
2243 !blk_queue_nonrot(td->queue))
2244 return;
2245
2246 index = request_bucket_index(size);
2247
2248 latency = get_cpu_ptr(td->latency_buckets);
2249 latency[index].total_latency += time;
2250 latency[index].samples++;
2251 put_cpu_ptr(td->latency_buckets);
2252}
2253
2254void blk_throtl_stat_add(struct request *rq, u64 time_ns)
2255{
2256 struct request_queue *q = rq->q;
2257 struct throtl_data *td = q->td;
2258
2259 throtl_track_latency(td, blk_stat_size(&rq->issue_stat),
2260 req_op(rq), time_ns >> 10);
2261}
2262
9e234eea
SL
2263void blk_throtl_bio_endio(struct bio *bio)
2264{
2265 struct throtl_grp *tg;
b9147dd1
SL
2266 u64 finish_time_ns;
2267 unsigned long finish_time;
2268 unsigned long start_time;
2269 unsigned long lat;
9e234eea
SL
2270
2271 tg = bio->bi_cg_private;
2272 if (!tg)
2273 return;
2274 bio->bi_cg_private = NULL;
2275
b9147dd1
SL
2276 finish_time_ns = ktime_get_ns();
2277 tg->last_finish_time = finish_time_ns >> 10;
2278
2279 start_time = blk_stat_time(&bio->bi_issue_stat) >> 10;
2280 finish_time = __blk_stat_time(finish_time_ns) >> 10;
53cfdc10
JX
2281 if (!start_time || finish_time <= start_time) {
2282 blkg_put(tg_to_blkg(tg));
53696b8d 2283 return;
53cfdc10 2284 }
53696b8d
SL
2285
2286 lat = finish_time - start_time;
b9147dd1 2287 /* this is only for bio based driver */
53696b8d 2288 if (!(bio->bi_issue_stat.stat & SKIP_LATENCY))
b9147dd1
SL
2289 throtl_track_latency(tg->td, blk_stat_size(&bio->bi_issue_stat),
2290 bio_op(bio), lat);
53696b8d 2291
6679a90c 2292 if (tg->latency_target && lat >= tg->td->filtered_latency) {
53696b8d
SL
2293 int bucket;
2294 unsigned int threshold;
2295
2296 bucket = request_bucket_index(
2297 blk_stat_size(&bio->bi_issue_stat));
2298 threshold = tg->td->avg_buckets[bucket].latency +
2299 tg->latency_target;
2300 if (lat > threshold)
2301 tg->bad_bio_cnt++;
2302 /*
2303 * Not race free, could get wrong count, which means cgroups
2304 * will be throttled
2305 */
2306 tg->bio_cnt++;
2307 }
2308
2309 if (time_after(jiffies, tg->bio_cnt_reset_time) || tg->bio_cnt > 1024) {
2310 tg->bio_cnt_reset_time = tg->td->throtl_slice + jiffies;
2311 tg->bio_cnt /= 2;
2312 tg->bad_bio_cnt /= 2;
b9147dd1 2313 }
53cfdc10
JX
2314
2315 blkg_put(tg_to_blkg(tg));
9e234eea
SL
2316}
2317#endif
2318
2a12f0dc
TH
2319/*
2320 * Dispatch all bios from all children tg's queued on @parent_sq. On
2321 * return, @parent_sq is guaranteed to not have any active children tg's
2322 * and all bios from previously active tg's are on @parent_sq->bio_lists[].
2323 */
2324static void tg_drain_bios(struct throtl_service_queue *parent_sq)
2325{
2326 struct throtl_grp *tg;
2327
2328 while ((tg = throtl_rb_first(parent_sq))) {
2329 struct throtl_service_queue *sq = &tg->service_queue;
2330 struct bio *bio;
2331
2332 throtl_dequeue_tg(tg);
2333
c5cc2070 2334 while ((bio = throtl_peek_queued(&sq->queued[READ])))
2a12f0dc 2335 tg_dispatch_one_bio(tg, bio_data_dir(bio));
c5cc2070 2336 while ((bio = throtl_peek_queued(&sq->queued[WRITE])))
2a12f0dc
TH
2337 tg_dispatch_one_bio(tg, bio_data_dir(bio));
2338 }
2339}
2340
c9a929dd
TH
2341/**
2342 * blk_throtl_drain - drain throttled bios
2343 * @q: request_queue to drain throttled bios for
2344 *
2345 * Dispatch all currently throttled bios on @q through ->make_request_fn().
2346 */
2347void blk_throtl_drain(struct request_queue *q)
2348 __releases(q->queue_lock) __acquires(q->queue_lock)
2349{
2350 struct throtl_data *td = q->td;
2a12f0dc 2351 struct blkcg_gq *blkg;
492eb21b 2352 struct cgroup_subsys_state *pos_css;
c9a929dd 2353 struct bio *bio;
651930bc 2354 int rw;
c9a929dd 2355
8bcb6c7d 2356 queue_lockdep_assert_held(q);
2a12f0dc 2357 rcu_read_lock();
c9a929dd 2358
2a12f0dc
TH
2359 /*
2360 * Drain each tg while doing post-order walk on the blkg tree, so
2361 * that all bios are propagated to td->service_queue. It'd be
2362 * better to walk service_queue tree directly but blkg walk is
2363 * easier.
2364 */
492eb21b 2365 blkg_for_each_descendant_post(blkg, pos_css, td->queue->root_blkg)
2a12f0dc 2366 tg_drain_bios(&blkg_to_tg(blkg)->service_queue);
73f0d49a 2367
2a12f0dc
TH
2368 /* finally, transfer bios from top-level tg's into the td */
2369 tg_drain_bios(&td->service_queue);
2370
2371 rcu_read_unlock();
c9a929dd
TH
2372 spin_unlock_irq(q->queue_lock);
2373
2a12f0dc 2374 /* all bios now should be in td->service_queue, issue them */
651930bc 2375 for (rw = READ; rw <= WRITE; rw++)
c5cc2070
TH
2376 while ((bio = throtl_pop_queued(&td->service_queue.queued[rw],
2377 NULL)))
651930bc 2378 generic_make_request(bio);
c9a929dd
TH
2379
2380 spin_lock_irq(q->queue_lock);
2381}
2382
e43473b7
VG
2383int blk_throtl_init(struct request_queue *q)
2384{
2385 struct throtl_data *td;
a2b1693b 2386 int ret;
e43473b7
VG
2387
2388 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
2389 if (!td)
2390 return -ENOMEM;
b9147dd1
SL
2391 td->latency_buckets = __alloc_percpu(sizeof(struct latency_bucket) *
2392 LATENCY_BUCKET_SIZE, __alignof__(u64));
2393 if (!td->latency_buckets) {
2394 kfree(td);
2395 return -ENOMEM;
2396 }
e43473b7 2397
69df0ab0 2398 INIT_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
b2ce2643 2399 throtl_service_queue_init(&td->service_queue);
e43473b7 2400
cd1604fa 2401 q->td = td;
29b12589 2402 td->queue = q;
02977e4a 2403
9f626e37 2404 td->limit_valid[LIMIT_MAX] = true;
cd5ab1b0 2405 td->limit_index = LIMIT_MAX;
3f0abd80
SL
2406 td->low_upgrade_time = jiffies;
2407 td->low_downgrade_time = jiffies;
9e234eea 2408
a2b1693b 2409 /* activate policy */
3c798398 2410 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
b9147dd1
SL
2411 if (ret) {
2412 free_percpu(td->latency_buckets);
f51b802c 2413 kfree(td);
b9147dd1 2414 }
a2b1693b 2415 return ret;
e43473b7
VG
2416}
2417
2418void blk_throtl_exit(struct request_queue *q)
2419{
c875f4d0 2420 BUG_ON(!q->td);
da527770 2421 throtl_shutdown_wq(q);
3c798398 2422 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
b9147dd1 2423 free_percpu(q->td->latency_buckets);
c9a929dd 2424 kfree(q->td);
e43473b7
VG
2425}
2426
d61fcfa4
SL
2427void blk_throtl_register_queue(struct request_queue *q)
2428{
2429 struct throtl_data *td;
6679a90c 2430 int i;
d61fcfa4
SL
2431
2432 td = q->td;
2433 BUG_ON(!td);
2434
6679a90c 2435 if (blk_queue_nonrot(q)) {
d61fcfa4 2436 td->throtl_slice = DFL_THROTL_SLICE_SSD;
6679a90c
SL
2437 td->filtered_latency = LATENCY_FILTERED_SSD;
2438 } else {
d61fcfa4 2439 td->throtl_slice = DFL_THROTL_SLICE_HD;
6679a90c
SL
2440 td->filtered_latency = LATENCY_FILTERED_HD;
2441 for (i = 0; i < LATENCY_BUCKET_SIZE; i++)
2442 td->avg_buckets[i].latency = DFL_HD_BASELINE_LATENCY;
2443 }
d61fcfa4
SL
2444#ifndef CONFIG_BLK_DEV_THROTTLING_LOW
2445 /* if no low limit, use previous default */
2446 td->throtl_slice = DFL_THROTL_SLICE_HD;
2447#endif
9e234eea 2448
b9147dd1
SL
2449 td->track_bio_latency = !q->mq_ops && !q->request_fn;
2450 if (!td->track_bio_latency)
2451 blk_stat_enable_accounting(q);
d61fcfa4
SL
2452}
2453
297e3d85
SL
2454#ifdef CONFIG_BLK_DEV_THROTTLING_LOW
2455ssize_t blk_throtl_sample_time_show(struct request_queue *q, char *page)
2456{
2457 if (!q->td)
2458 return -EINVAL;
2459 return sprintf(page, "%u\n", jiffies_to_msecs(q->td->throtl_slice));
2460}
2461
2462ssize_t blk_throtl_sample_time_store(struct request_queue *q,
2463 const char *page, size_t count)
2464{
2465 unsigned long v;
2466 unsigned long t;
2467
2468 if (!q->td)
2469 return -EINVAL;
2470 if (kstrtoul(page, 10, &v))
2471 return -EINVAL;
2472 t = msecs_to_jiffies(v);
2473 if (t == 0 || t > MAX_THROTL_SLICE)
2474 return -EINVAL;
2475 q->td->throtl_slice = t;
2476 return count;
2477}
2478#endif
2479
e43473b7
VG
2480static int __init throtl_init(void)
2481{
450adcbe
VG
2482 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
2483 if (!kthrotld_workqueue)
2484 panic("Failed to create kthrotld\n");
2485
3c798398 2486 return blkcg_policy_register(&blkcg_policy_throtl);
e43473b7
VG
2487}
2488
2489module_init(throtl_init);