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