blk-throttle: dispatch to throtl_data->service_queue.bio_lists[]
[linux-2.6-block.git] / block / blk-throttle.c
CommitLineData
e43473b7
VG
1/*
2 * Interface for controlling IO bandwidth on a request queue
3 *
4 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/blkdev.h>
10#include <linux/bio.h>
11#include <linux/blktrace_api.h>
12#include "blk-cgroup.h"
bc9fcbf9 13#include "blk.h"
e43473b7
VG
14
15/* Max dispatch from a group in 1 round */
16static int throtl_grp_quantum = 8;
17
18/* Total max dispatch from all groups in one round */
19static int throtl_quantum = 32;
20
21/* Throttling is performed over 100ms slice and after that slice is renewed */
22static unsigned long throtl_slice = HZ/10; /* 100 ms */
23
3c798398 24static struct blkcg_policy blkcg_policy_throtl;
0381411e 25
450adcbe
VG
26/* A workqueue to queue throttle related work */
27static struct workqueue_struct *kthrotld_workqueue;
450adcbe 28
c9e0332e 29struct throtl_service_queue {
73f0d49a
TH
30 /*
31 * Bios queued directly to this service_queue or dispatched from
32 * children throtl_grp's.
33 */
34 struct bio_list bio_lists[2]; /* queued bios [READ/WRITE] */
35 unsigned int nr_queued[2]; /* number of queued bios */
36
37 /*
38 * RB tree of active children throtl_grp's, which are sorted by
39 * their ->disptime.
40 */
c9e0332e
TH
41 struct rb_root pending_tree; /* RB tree of active tgs */
42 struct rb_node *first_pending; /* first node in the tree */
43 unsigned int nr_pending; /* # queued in the tree */
44 unsigned long first_pending_disptime; /* disptime of the first tg */
e43473b7
VG
45};
46
5b2c16aa
TH
47enum tg_state_flags {
48 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
49};
50
e43473b7
VG
51#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
52
8a3d2615
TH
53/* Per-cpu group stats */
54struct tg_stats_cpu {
55 /* total bytes transferred */
56 struct blkg_rwstat service_bytes;
57 /* total IOs serviced, post merge */
58 struct blkg_rwstat serviced;
59};
60
e43473b7 61struct throtl_grp {
f95a04af
TH
62 /* must be the first member */
63 struct blkg_policy_data pd;
64
c9e0332e 65 /* active throtl group service_queue member */
e43473b7
VG
66 struct rb_node rb_node;
67
0f3457f6
TH
68 /* throtl_data this group belongs to */
69 struct throtl_data *td;
70
49a2f1e3
TH
71 /* this group's service queue */
72 struct throtl_service_queue service_queue;
73
e43473b7
VG
74 /*
75 * Dispatch time in jiffies. This is the estimated time when group
76 * will unthrottle and is ready to dispatch more bio. It is used as
77 * key to sort active groups in service tree.
78 */
79 unsigned long disptime;
80
e43473b7
VG
81 unsigned int flags;
82
e43473b7
VG
83 /* bytes per second rate limits */
84 uint64_t bps[2];
85
8e89d13f
VG
86 /* IOPS limits */
87 unsigned int iops[2];
88
e43473b7
VG
89 /* Number of bytes disptached in current slice */
90 uint64_t bytes_disp[2];
8e89d13f
VG
91 /* Number of bio's dispatched in current slice */
92 unsigned int io_disp[2];
e43473b7
VG
93
94 /* When did we start a new slice */
95 unsigned long slice_start[2];
96 unsigned long slice_end[2];
fe071437 97
8a3d2615
TH
98 /* Per cpu stats pointer */
99 struct tg_stats_cpu __percpu *stats_cpu;
100
101 /* List of tgs waiting for per cpu stats memory to be allocated */
102 struct list_head stats_alloc_node;
e43473b7
VG
103};
104
105struct throtl_data
106{
e43473b7 107 /* service tree for active throtl groups */
c9e0332e 108 struct throtl_service_queue service_queue;
e43473b7 109
e43473b7
VG
110 struct request_queue *queue;
111
112 /* Total Number of queued bios on READ and WRITE lists */
113 unsigned int nr_queued[2];
114
115 /*
02977e4a 116 * number of total undestroyed groups
e43473b7
VG
117 */
118 unsigned int nr_undestroyed_grps;
119
120 /* Work for dispatching throttled bios */
cb76199c 121 struct delayed_work dispatch_work;
e43473b7
VG
122};
123
8a3d2615
TH
124/* list and work item to allocate percpu group stats */
125static DEFINE_SPINLOCK(tg_stats_alloc_lock);
126static LIST_HEAD(tg_stats_alloc_list);
127
128static void tg_stats_alloc_fn(struct work_struct *);
129static DECLARE_DELAYED_WORK(tg_stats_alloc_work, tg_stats_alloc_fn);
130
f95a04af
TH
131static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
132{
133 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
134}
135
3c798398 136static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
0381411e 137{
f95a04af 138 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
0381411e
TH
139}
140
3c798398 141static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
0381411e 142{
f95a04af 143 return pd_to_blkg(&tg->pd);
0381411e
TH
144}
145
03d8e111
TH
146static inline struct throtl_grp *td_root_tg(struct throtl_data *td)
147{
148 return blkg_to_tg(td->queue->root_blkg);
149}
150
0f3457f6 151#define throtl_log_tg(tg, fmt, args...) do { \
54e7ed12
TH
152 char __pbuf[128]; \
153 \
154 blkg_path(tg_to_blkg(tg), __pbuf, sizeof(__pbuf)); \
0f3457f6 155 blk_add_trace_msg((tg)->td->queue, "throtl %s " fmt, __pbuf, ##args); \
54e7ed12 156} while (0)
e43473b7
VG
157
158#define throtl_log(td, fmt, args...) \
159 blk_add_trace_msg((td)->queue, "throtl " fmt, ##args)
160
8a3d2615
TH
161/*
162 * Worker for allocating per cpu stat for tgs. This is scheduled on the
3b07e9ca 163 * system_wq once there are some groups on the alloc_list waiting for
8a3d2615
TH
164 * allocation.
165 */
166static void tg_stats_alloc_fn(struct work_struct *work)
167{
168 static struct tg_stats_cpu *stats_cpu; /* this fn is non-reentrant */
169 struct delayed_work *dwork = to_delayed_work(work);
170 bool empty = false;
171
172alloc_stats:
173 if (!stats_cpu) {
174 stats_cpu = alloc_percpu(struct tg_stats_cpu);
175 if (!stats_cpu) {
176 /* allocation failed, try again after some time */
3b07e9ca 177 schedule_delayed_work(dwork, msecs_to_jiffies(10));
8a3d2615
TH
178 return;
179 }
180 }
181
182 spin_lock_irq(&tg_stats_alloc_lock);
183
184 if (!list_empty(&tg_stats_alloc_list)) {
185 struct throtl_grp *tg = list_first_entry(&tg_stats_alloc_list,
186 struct throtl_grp,
187 stats_alloc_node);
188 swap(tg->stats_cpu, stats_cpu);
189 list_del_init(&tg->stats_alloc_node);
190 }
191
192 empty = list_empty(&tg_stats_alloc_list);
193 spin_unlock_irq(&tg_stats_alloc_lock);
194 if (!empty)
195 goto alloc_stats;
196}
197
49a2f1e3
TH
198/* init a service_queue, assumes the caller zeroed it */
199static void throtl_service_queue_init(struct throtl_service_queue *sq)
200{
73f0d49a
TH
201 bio_list_init(&sq->bio_lists[0]);
202 bio_list_init(&sq->bio_lists[1]);
49a2f1e3
TH
203 sq->pending_tree = RB_ROOT;
204}
205
3c798398 206static void throtl_pd_init(struct blkcg_gq *blkg)
a29a171e 207{
0381411e 208 struct throtl_grp *tg = blkg_to_tg(blkg);
ff26eaad 209 unsigned long flags;
cd1604fa 210
49a2f1e3 211 throtl_service_queue_init(&tg->service_queue);
a29a171e 212 RB_CLEAR_NODE(&tg->rb_node);
0f3457f6 213 tg->td = blkg->q->td;
a29a171e 214
e56da7e2
TH
215 tg->bps[READ] = -1;
216 tg->bps[WRITE] = -1;
217 tg->iops[READ] = -1;
218 tg->iops[WRITE] = -1;
8a3d2615
TH
219
220 /*
221 * Ugh... We need to perform per-cpu allocation for tg->stats_cpu
222 * but percpu allocator can't be called from IO path. Queue tg on
223 * tg_stats_alloc_list and allocate from work item.
224 */
ff26eaad 225 spin_lock_irqsave(&tg_stats_alloc_lock, flags);
8a3d2615 226 list_add(&tg->stats_alloc_node, &tg_stats_alloc_list);
3b07e9ca 227 schedule_delayed_work(&tg_stats_alloc_work, 0);
ff26eaad 228 spin_unlock_irqrestore(&tg_stats_alloc_lock, flags);
8a3d2615
TH
229}
230
3c798398 231static void throtl_pd_exit(struct blkcg_gq *blkg)
8a3d2615
TH
232{
233 struct throtl_grp *tg = blkg_to_tg(blkg);
ff26eaad 234 unsigned long flags;
8a3d2615 235
ff26eaad 236 spin_lock_irqsave(&tg_stats_alloc_lock, flags);
8a3d2615 237 list_del_init(&tg->stats_alloc_node);
ff26eaad 238 spin_unlock_irqrestore(&tg_stats_alloc_lock, flags);
8a3d2615
TH
239
240 free_percpu(tg->stats_cpu);
241}
242
3c798398 243static void throtl_pd_reset_stats(struct blkcg_gq *blkg)
8a3d2615
TH
244{
245 struct throtl_grp *tg = blkg_to_tg(blkg);
246 int cpu;
247
248 if (tg->stats_cpu == NULL)
249 return;
250
251 for_each_possible_cpu(cpu) {
252 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
253
254 blkg_rwstat_reset(&sc->service_bytes);
255 blkg_rwstat_reset(&sc->serviced);
256 }
a29a171e
VG
257}
258
3c798398
TH
259static struct throtl_grp *throtl_lookup_tg(struct throtl_data *td,
260 struct blkcg *blkcg)
e43473b7 261{
be2c6b19 262 /*
3c798398
TH
263 * This is the common case when there are no blkcgs. Avoid lookup
264 * in this case
cd1604fa 265 */
3c798398 266 if (blkcg == &blkcg_root)
03d8e111 267 return td_root_tg(td);
e43473b7 268
e8989fae 269 return blkg_to_tg(blkg_lookup(blkcg, td->queue));
e43473b7
VG
270}
271
cd1604fa 272static struct throtl_grp *throtl_lookup_create_tg(struct throtl_data *td,
3c798398 273 struct blkcg *blkcg)
e43473b7 274{
f469a7b4 275 struct request_queue *q = td->queue;
cd1604fa 276 struct throtl_grp *tg = NULL;
bc16a4f9 277
f469a7b4 278 /*
3c798398
TH
279 * This is the common case when there are no blkcgs. Avoid lookup
280 * in this case
f469a7b4 281 */
3c798398 282 if (blkcg == &blkcg_root) {
03d8e111 283 tg = td_root_tg(td);
cd1604fa 284 } else {
3c798398 285 struct blkcg_gq *blkg;
f469a7b4 286
3c96cb32 287 blkg = blkg_lookup_create(blkcg, q);
f469a7b4 288
cd1604fa
TH
289 /* if %NULL and @q is alive, fall back to root_tg */
290 if (!IS_ERR(blkg))
0381411e 291 tg = blkg_to_tg(blkg);
3f3299d5 292 else if (!blk_queue_dying(q))
03d8e111 293 tg = td_root_tg(td);
f469a7b4
VG
294 }
295
e43473b7
VG
296 return tg;
297}
298
0049af73
TH
299static struct throtl_grp *
300throtl_rb_first(struct throtl_service_queue *parent_sq)
e43473b7
VG
301{
302 /* Service tree is empty */
0049af73 303 if (!parent_sq->nr_pending)
e43473b7
VG
304 return NULL;
305
0049af73
TH
306 if (!parent_sq->first_pending)
307 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
e43473b7 308
0049af73
TH
309 if (parent_sq->first_pending)
310 return rb_entry_tg(parent_sq->first_pending);
e43473b7
VG
311
312 return NULL;
313}
314
315static void rb_erase_init(struct rb_node *n, struct rb_root *root)
316{
317 rb_erase(n, root);
318 RB_CLEAR_NODE(n);
319}
320
0049af73
TH
321static void throtl_rb_erase(struct rb_node *n,
322 struct throtl_service_queue *parent_sq)
e43473b7 323{
0049af73
TH
324 if (parent_sq->first_pending == n)
325 parent_sq->first_pending = NULL;
326 rb_erase_init(n, &parent_sq->pending_tree);
327 --parent_sq->nr_pending;
e43473b7
VG
328}
329
0049af73 330static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
e43473b7
VG
331{
332 struct throtl_grp *tg;
333
0049af73 334 tg = throtl_rb_first(parent_sq);
e43473b7
VG
335 if (!tg)
336 return;
337
0049af73 338 parent_sq->first_pending_disptime = tg->disptime;
e43473b7
VG
339}
340
0049af73
TH
341static void tg_service_queue_add(struct throtl_grp *tg,
342 struct throtl_service_queue *parent_sq)
e43473b7 343{
0049af73 344 struct rb_node **node = &parent_sq->pending_tree.rb_node;
e43473b7
VG
345 struct rb_node *parent = NULL;
346 struct throtl_grp *__tg;
347 unsigned long key = tg->disptime;
348 int left = 1;
349
350 while (*node != NULL) {
351 parent = *node;
352 __tg = rb_entry_tg(parent);
353
354 if (time_before(key, __tg->disptime))
355 node = &parent->rb_left;
356 else {
357 node = &parent->rb_right;
358 left = 0;
359 }
360 }
361
362 if (left)
0049af73 363 parent_sq->first_pending = &tg->rb_node;
e43473b7
VG
364
365 rb_link_node(&tg->rb_node, parent, node);
0049af73 366 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
e43473b7
VG
367}
368
0049af73
TH
369static void __throtl_enqueue_tg(struct throtl_grp *tg,
370 struct throtl_service_queue *parent_sq)
e43473b7 371{
0049af73 372 tg_service_queue_add(tg, parent_sq);
5b2c16aa 373 tg->flags |= THROTL_TG_PENDING;
0049af73 374 parent_sq->nr_pending++;
e43473b7
VG
375}
376
0049af73
TH
377static void throtl_enqueue_tg(struct throtl_grp *tg,
378 struct throtl_service_queue *parent_sq)
e43473b7 379{
5b2c16aa 380 if (!(tg->flags & THROTL_TG_PENDING))
0049af73 381 __throtl_enqueue_tg(tg, parent_sq);
e43473b7
VG
382}
383
0049af73
TH
384static void __throtl_dequeue_tg(struct throtl_grp *tg,
385 struct throtl_service_queue *parent_sq)
e43473b7 386{
0049af73 387 throtl_rb_erase(&tg->rb_node, parent_sq);
5b2c16aa 388 tg->flags &= ~THROTL_TG_PENDING;
e43473b7
VG
389}
390
0049af73
TH
391static void throtl_dequeue_tg(struct throtl_grp *tg,
392 struct throtl_service_queue *parent_sq)
e43473b7 393{
5b2c16aa 394 if (tg->flags & THROTL_TG_PENDING)
0049af73 395 __throtl_dequeue_tg(tg, parent_sq);
e43473b7
VG
396}
397
a9131a27
TH
398/* Call with queue lock held */
399static void throtl_schedule_delayed_work(struct throtl_data *td,
400 unsigned long delay)
401{
402 struct delayed_work *dwork = &td->dispatch_work;
403
6a525600
TH
404 mod_delayed_work(kthrotld_workqueue, dwork, delay);
405 throtl_log(td, "schedule work. delay=%lu jiffies=%lu", delay, jiffies);
a9131a27
TH
406}
407
e43473b7
VG
408static void throtl_schedule_next_dispatch(struct throtl_data *td)
409{
c9e0332e 410 struct throtl_service_queue *sq = &td->service_queue;
e43473b7 411
6a525600 412 /* any pending children left? */
c9e0332e 413 if (!sq->nr_pending)
e43473b7
VG
414 return;
415
c9e0332e 416 update_min_dispatch_time(sq);
e43473b7 417
c9e0332e 418 if (time_before_eq(sq->first_pending_disptime, jiffies))
450adcbe 419 throtl_schedule_delayed_work(td, 0);
e43473b7 420 else
c9e0332e 421 throtl_schedule_delayed_work(td, sq->first_pending_disptime - jiffies);
e43473b7
VG
422}
423
0f3457f6 424static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
e43473b7
VG
425{
426 tg->bytes_disp[rw] = 0;
8e89d13f 427 tg->io_disp[rw] = 0;
e43473b7
VG
428 tg->slice_start[rw] = jiffies;
429 tg->slice_end[rw] = jiffies + throtl_slice;
0f3457f6 430 throtl_log_tg(tg, "[%c] new slice start=%lu end=%lu jiffies=%lu",
e43473b7
VG
431 rw == READ ? 'R' : 'W', tg->slice_start[rw],
432 tg->slice_end[rw], jiffies);
433}
434
0f3457f6
TH
435static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
436 unsigned long jiffy_end)
d1ae8ffd
VG
437{
438 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
439}
440
0f3457f6
TH
441static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
442 unsigned long jiffy_end)
e43473b7
VG
443{
444 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
0f3457f6 445 throtl_log_tg(tg, "[%c] extend slice start=%lu end=%lu jiffies=%lu",
e43473b7
VG
446 rw == READ ? 'R' : 'W', tg->slice_start[rw],
447 tg->slice_end[rw], jiffies);
448}
449
450/* Determine if previously allocated or extended slice is complete or not */
0f3457f6 451static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
e43473b7
VG
452{
453 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
454 return 0;
455
456 return 1;
457}
458
459/* Trim the used slices and adjust slice start accordingly */
0f3457f6 460static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
e43473b7 461{
3aad5d3e
VG
462 unsigned long nr_slices, time_elapsed, io_trim;
463 u64 bytes_trim, tmp;
e43473b7
VG
464
465 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
466
467 /*
468 * If bps are unlimited (-1), then time slice don't get
469 * renewed. Don't try to trim the slice if slice is used. A new
470 * slice will start when appropriate.
471 */
0f3457f6 472 if (throtl_slice_used(tg, rw))
e43473b7
VG
473 return;
474
d1ae8ffd
VG
475 /*
476 * A bio has been dispatched. Also adjust slice_end. It might happen
477 * that initially cgroup limit was very low resulting in high
478 * slice_end, but later limit was bumped up and bio was dispached
479 * sooner, then we need to reduce slice_end. A high bogus slice_end
480 * is bad because it does not allow new slice to start.
481 */
482
0f3457f6 483 throtl_set_slice_end(tg, rw, jiffies + throtl_slice);
d1ae8ffd 484
e43473b7
VG
485 time_elapsed = jiffies - tg->slice_start[rw];
486
487 nr_slices = time_elapsed / throtl_slice;
488
489 if (!nr_slices)
490 return;
3aad5d3e
VG
491 tmp = tg->bps[rw] * throtl_slice * nr_slices;
492 do_div(tmp, HZ);
493 bytes_trim = tmp;
e43473b7 494
8e89d13f 495 io_trim = (tg->iops[rw] * throtl_slice * nr_slices)/HZ;
e43473b7 496
8e89d13f 497 if (!bytes_trim && !io_trim)
e43473b7
VG
498 return;
499
500 if (tg->bytes_disp[rw] >= bytes_trim)
501 tg->bytes_disp[rw] -= bytes_trim;
502 else
503 tg->bytes_disp[rw] = 0;
504
8e89d13f
VG
505 if (tg->io_disp[rw] >= io_trim)
506 tg->io_disp[rw] -= io_trim;
507 else
508 tg->io_disp[rw] = 0;
509
e43473b7
VG
510 tg->slice_start[rw] += nr_slices * throtl_slice;
511
0f3457f6 512 throtl_log_tg(tg, "[%c] trim slice nr=%lu bytes=%llu io=%lu"
e43473b7 513 " start=%lu end=%lu jiffies=%lu",
8e89d13f 514 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
e43473b7
VG
515 tg->slice_start[rw], tg->slice_end[rw], jiffies);
516}
517
0f3457f6
TH
518static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
519 unsigned long *wait)
e43473b7
VG
520{
521 bool rw = bio_data_dir(bio);
8e89d13f 522 unsigned int io_allowed;
e43473b7 523 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
c49c06e4 524 u64 tmp;
e43473b7 525
8e89d13f 526 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
e43473b7 527
8e89d13f
VG
528 /* Slice has just started. Consider one slice interval */
529 if (!jiffy_elapsed)
530 jiffy_elapsed_rnd = throtl_slice;
531
532 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
533
c49c06e4
VG
534 /*
535 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
536 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
537 * will allow dispatch after 1 second and after that slice should
538 * have been trimmed.
539 */
540
541 tmp = (u64)tg->iops[rw] * jiffy_elapsed_rnd;
542 do_div(tmp, HZ);
543
544 if (tmp > UINT_MAX)
545 io_allowed = UINT_MAX;
546 else
547 io_allowed = tmp;
8e89d13f
VG
548
549 if (tg->io_disp[rw] + 1 <= io_allowed) {
e43473b7
VG
550 if (wait)
551 *wait = 0;
552 return 1;
553 }
554
8e89d13f
VG
555 /* Calc approx time to dispatch */
556 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ)/tg->iops[rw] + 1;
557
558 if (jiffy_wait > jiffy_elapsed)
559 jiffy_wait = jiffy_wait - jiffy_elapsed;
560 else
561 jiffy_wait = 1;
562
563 if (wait)
564 *wait = jiffy_wait;
565 return 0;
566}
567
0f3457f6
TH
568static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
569 unsigned long *wait)
8e89d13f
VG
570{
571 bool rw = bio_data_dir(bio);
3aad5d3e 572 u64 bytes_allowed, extra_bytes, tmp;
8e89d13f 573 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
e43473b7
VG
574
575 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
576
577 /* Slice has just started. Consider one slice interval */
578 if (!jiffy_elapsed)
579 jiffy_elapsed_rnd = throtl_slice;
580
581 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
582
5e901a2b
VG
583 tmp = tg->bps[rw] * jiffy_elapsed_rnd;
584 do_div(tmp, HZ);
3aad5d3e 585 bytes_allowed = tmp;
e43473b7
VG
586
587 if (tg->bytes_disp[rw] + bio->bi_size <= bytes_allowed) {
588 if (wait)
589 *wait = 0;
590 return 1;
591 }
592
593 /* Calc approx time to dispatch */
594 extra_bytes = tg->bytes_disp[rw] + bio->bi_size - bytes_allowed;
595 jiffy_wait = div64_u64(extra_bytes * HZ, tg->bps[rw]);
596
597 if (!jiffy_wait)
598 jiffy_wait = 1;
599
600 /*
601 * This wait time is without taking into consideration the rounding
602 * up we did. Add that time also.
603 */
604 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
e43473b7
VG
605 if (wait)
606 *wait = jiffy_wait;
8e89d13f
VG
607 return 0;
608}
609
af75cd3c
VG
610static bool tg_no_rule_group(struct throtl_grp *tg, bool rw) {
611 if (tg->bps[rw] == -1 && tg->iops[rw] == -1)
612 return 1;
613 return 0;
614}
615
8e89d13f
VG
616/*
617 * Returns whether one can dispatch a bio or not. Also returns approx number
618 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
619 */
0f3457f6
TH
620static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
621 unsigned long *wait)
8e89d13f
VG
622{
623 bool rw = bio_data_dir(bio);
624 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
625
626 /*
627 * Currently whole state machine of group depends on first bio
628 * queued in the group bio list. So one should not be calling
629 * this function with a different bio if there are other bios
630 * queued.
631 */
73f0d49a
TH
632 BUG_ON(tg->service_queue.nr_queued[rw] &&
633 bio != bio_list_peek(&tg->service_queue.bio_lists[rw]));
e43473b7 634
8e89d13f
VG
635 /* If tg->bps = -1, then BW is unlimited */
636 if (tg->bps[rw] == -1 && tg->iops[rw] == -1) {
637 if (wait)
638 *wait = 0;
639 return 1;
640 }
641
642 /*
643 * If previous slice expired, start a new one otherwise renew/extend
644 * existing slice to make sure it is at least throtl_slice interval
645 * long since now.
646 */
0f3457f6
TH
647 if (throtl_slice_used(tg, rw))
648 throtl_start_new_slice(tg, rw);
8e89d13f
VG
649 else {
650 if (time_before(tg->slice_end[rw], jiffies + throtl_slice))
0f3457f6 651 throtl_extend_slice(tg, rw, jiffies + throtl_slice);
8e89d13f
VG
652 }
653
0f3457f6
TH
654 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
655 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
8e89d13f
VG
656 if (wait)
657 *wait = 0;
658 return 1;
659 }
660
661 max_wait = max(bps_wait, iops_wait);
662
663 if (wait)
664 *wait = max_wait;
665
666 if (time_before(tg->slice_end[rw], jiffies + max_wait))
0f3457f6 667 throtl_extend_slice(tg, rw, jiffies + max_wait);
e43473b7
VG
668
669 return 0;
670}
671
3c798398 672static void throtl_update_dispatch_stats(struct blkcg_gq *blkg, u64 bytes,
629ed0b1
TH
673 int rw)
674{
8a3d2615
TH
675 struct throtl_grp *tg = blkg_to_tg(blkg);
676 struct tg_stats_cpu *stats_cpu;
629ed0b1
TH
677 unsigned long flags;
678
679 /* If per cpu stats are not allocated yet, don't do any accounting. */
8a3d2615 680 if (tg->stats_cpu == NULL)
629ed0b1
TH
681 return;
682
683 /*
684 * Disabling interrupts to provide mutual exclusion between two
685 * writes on same cpu. It probably is not needed for 64bit. Not
686 * optimizing that case yet.
687 */
688 local_irq_save(flags);
689
8a3d2615 690 stats_cpu = this_cpu_ptr(tg->stats_cpu);
629ed0b1 691
629ed0b1
TH
692 blkg_rwstat_add(&stats_cpu->serviced, rw, 1);
693 blkg_rwstat_add(&stats_cpu->service_bytes, rw, bytes);
694
695 local_irq_restore(flags);
696}
697
e43473b7
VG
698static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
699{
700 bool rw = bio_data_dir(bio);
e43473b7
VG
701
702 /* Charge the bio to the group */
703 tg->bytes_disp[rw] += bio->bi_size;
8e89d13f 704 tg->io_disp[rw]++;
e43473b7 705
629ed0b1 706 throtl_update_dispatch_stats(tg_to_blkg(tg), bio->bi_size, bio->bi_rw);
e43473b7
VG
707}
708
0049af73
TH
709static void throtl_add_bio_tg(struct bio *bio, struct throtl_grp *tg,
710 struct throtl_service_queue *parent_sq)
e43473b7 711{
73f0d49a 712 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
713 bool rw = bio_data_dir(bio);
714
73f0d49a 715 bio_list_add(&sq->bio_lists[rw], bio);
e43473b7 716 /* Take a bio reference on tg */
1adaf3dd 717 blkg_get(tg_to_blkg(tg));
73f0d49a 718 sq->nr_queued[rw]++;
e2d57e60 719 tg->td->nr_queued[rw]++;
0049af73 720 throtl_enqueue_tg(tg, parent_sq);
e43473b7
VG
721}
722
0049af73
TH
723static void tg_update_disptime(struct throtl_grp *tg,
724 struct throtl_service_queue *parent_sq)
e43473b7 725{
73f0d49a 726 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
727 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
728 struct bio *bio;
729
73f0d49a 730 if ((bio = bio_list_peek(&sq->bio_lists[READ])))
0f3457f6 731 tg_may_dispatch(tg, bio, &read_wait);
e43473b7 732
73f0d49a 733 if ((bio = bio_list_peek(&sq->bio_lists[WRITE])))
0f3457f6 734 tg_may_dispatch(tg, bio, &write_wait);
e43473b7
VG
735
736 min_wait = min(read_wait, write_wait);
737 disptime = jiffies + min_wait;
738
e43473b7 739 /* Update dispatch time */
0049af73 740 throtl_dequeue_tg(tg, parent_sq);
e43473b7 741 tg->disptime = disptime;
0049af73 742 throtl_enqueue_tg(tg, parent_sq);
e43473b7
VG
743}
744
0f3457f6 745static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw,
651930bc 746 struct throtl_service_queue *parent_sq)
e43473b7 747{
73f0d49a 748 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
749 struct bio *bio;
750
73f0d49a
TH
751 bio = bio_list_pop(&sq->bio_lists[rw]);
752 sq->nr_queued[rw]--;
1adaf3dd
TH
753 /* Drop bio reference on blkg */
754 blkg_put(tg_to_blkg(tg));
e43473b7 755
0f3457f6
TH
756 BUG_ON(tg->td->nr_queued[rw] <= 0);
757 tg->td->nr_queued[rw]--;
e43473b7
VG
758
759 throtl_charge_bio(tg, bio);
651930bc 760 bio_list_add(&parent_sq->bio_lists[rw], bio);
e43473b7
VG
761 bio->bi_rw |= REQ_THROTTLED;
762
0f3457f6 763 throtl_trim_slice(tg, rw);
e43473b7
VG
764}
765
651930bc
TH
766static int throtl_dispatch_tg(struct throtl_grp *tg,
767 struct throtl_service_queue *parent_sq)
e43473b7 768{
73f0d49a 769 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
770 unsigned int nr_reads = 0, nr_writes = 0;
771 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
c2f6805d 772 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
e43473b7
VG
773 struct bio *bio;
774
775 /* Try to dispatch 75% READS and 25% WRITES */
776
73f0d49a 777 while ((bio = bio_list_peek(&sq->bio_lists[READ])) &&
0f3457f6 778 tg_may_dispatch(tg, bio, NULL)) {
e43473b7 779
651930bc 780 tg_dispatch_one_bio(tg, bio_data_dir(bio), parent_sq);
e43473b7
VG
781 nr_reads++;
782
783 if (nr_reads >= max_nr_reads)
784 break;
785 }
786
73f0d49a 787 while ((bio = bio_list_peek(&sq->bio_lists[WRITE])) &&
0f3457f6 788 tg_may_dispatch(tg, bio, NULL)) {
e43473b7 789
651930bc 790 tg_dispatch_one_bio(tg, bio_data_dir(bio), parent_sq);
e43473b7
VG
791 nr_writes++;
792
793 if (nr_writes >= max_nr_writes)
794 break;
795 }
796
797 return nr_reads + nr_writes;
798}
799
651930bc 800static int throtl_select_dispatch(struct throtl_service_queue *parent_sq)
e43473b7
VG
801{
802 unsigned int nr_disp = 0;
e43473b7
VG
803
804 while (1) {
73f0d49a
TH
805 struct throtl_grp *tg = throtl_rb_first(parent_sq);
806 struct throtl_service_queue *sq = &tg->service_queue;
e43473b7
VG
807
808 if (!tg)
809 break;
810
811 if (time_before(jiffies, tg->disptime))
812 break;
813
0049af73 814 throtl_dequeue_tg(tg, parent_sq);
e43473b7 815
651930bc 816 nr_disp += throtl_dispatch_tg(tg, parent_sq);
e43473b7 817
73f0d49a 818 if (sq->nr_queued[0] || sq->nr_queued[1])
0049af73 819 tg_update_disptime(tg, parent_sq);
e43473b7
VG
820
821 if (nr_disp >= throtl_quantum)
822 break;
823 }
824
825 return nr_disp;
826}
827
cb76199c
TH
828/* work function to dispatch throttled bios */
829void blk_throtl_dispatch_work_fn(struct work_struct *work)
e43473b7 830{
cb76199c
TH
831 struct throtl_data *td = container_of(to_delayed_work(work),
832 struct throtl_data, dispatch_work);
651930bc 833 struct throtl_service_queue *sq = &td->service_queue;
cb76199c 834 struct request_queue *q = td->queue;
e43473b7
VG
835 unsigned int nr_disp = 0;
836 struct bio_list bio_list_on_stack;
837 struct bio *bio;
69d60eb9 838 struct blk_plug plug;
651930bc 839 int rw;
e43473b7
VG
840
841 spin_lock_irq(q->queue_lock);
842
e43473b7
VG
843 bio_list_init(&bio_list_on_stack);
844
d2f31a5f 845 throtl_log(td, "dispatch nr_queued=%u read=%u write=%u",
6a525600
TH
846 td->nr_queued[READ] + td->nr_queued[WRITE],
847 td->nr_queued[READ], td->nr_queued[WRITE]);
e43473b7 848
651930bc 849 nr_disp = throtl_select_dispatch(sq);
e43473b7 850
651930bc
TH
851 if (nr_disp) {
852 for (rw = READ; rw <= WRITE; rw++) {
853 bio_list_merge(&bio_list_on_stack, &sq->bio_lists[rw]);
854 bio_list_init(&sq->bio_lists[rw]);
855 }
e43473b7 856 throtl_log(td, "bios disp=%u", nr_disp);
651930bc 857 }
e43473b7
VG
858
859 throtl_schedule_next_dispatch(td);
6a525600 860
e43473b7
VG
861 spin_unlock_irq(q->queue_lock);
862
863 /*
864 * If we dispatched some requests, unplug the queue to make sure
865 * immediate dispatch
866 */
867 if (nr_disp) {
69d60eb9 868 blk_start_plug(&plug);
e43473b7
VG
869 while((bio = bio_list_pop(&bio_list_on_stack)))
870 generic_make_request(bio);
69d60eb9 871 blk_finish_plug(&plug);
e43473b7 872 }
e43473b7
VG
873}
874
f95a04af
TH
875static u64 tg_prfill_cpu_rwstat(struct seq_file *sf,
876 struct blkg_policy_data *pd, int off)
41b38b6d 877{
f95a04af 878 struct throtl_grp *tg = pd_to_tg(pd);
41b38b6d
TH
879 struct blkg_rwstat rwstat = { }, tmp;
880 int i, cpu;
881
882 for_each_possible_cpu(cpu) {
8a3d2615 883 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
41b38b6d
TH
884
885 tmp = blkg_rwstat_read((void *)sc + off);
886 for (i = 0; i < BLKG_RWSTAT_NR; i++)
887 rwstat.cnt[i] += tmp.cnt[i];
888 }
889
f95a04af 890 return __blkg_prfill_rwstat(sf, pd, &rwstat);
41b38b6d
TH
891}
892
8a3d2615
TH
893static int tg_print_cpu_rwstat(struct cgroup *cgrp, struct cftype *cft,
894 struct seq_file *sf)
41b38b6d 895{
3c798398 896 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
41b38b6d 897
3c798398 898 blkcg_print_blkgs(sf, blkcg, tg_prfill_cpu_rwstat, &blkcg_policy_throtl,
5bc4afb1 899 cft->private, true);
41b38b6d
TH
900 return 0;
901}
902
f95a04af
TH
903static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
904 int off)
60c2bc2d 905{
f95a04af
TH
906 struct throtl_grp *tg = pd_to_tg(pd);
907 u64 v = *(u64 *)((void *)tg + off);
60c2bc2d 908
af133ceb 909 if (v == -1)
60c2bc2d 910 return 0;
f95a04af 911 return __blkg_prfill_u64(sf, pd, v);
60c2bc2d
TH
912}
913
f95a04af
TH
914static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
915 int off)
e43473b7 916{
f95a04af
TH
917 struct throtl_grp *tg = pd_to_tg(pd);
918 unsigned int v = *(unsigned int *)((void *)tg + off);
fe071437 919
af133ceb
TH
920 if (v == -1)
921 return 0;
f95a04af 922 return __blkg_prfill_u64(sf, pd, v);
e43473b7
VG
923}
924
af133ceb
TH
925static int tg_print_conf_u64(struct cgroup *cgrp, struct cftype *cft,
926 struct seq_file *sf)
8e89d13f 927{
3c798398
TH
928 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_u64,
929 &blkcg_policy_throtl, cft->private, false);
af133ceb 930 return 0;
8e89d13f
VG
931}
932
af133ceb
TH
933static int tg_print_conf_uint(struct cgroup *cgrp, struct cftype *cft,
934 struct seq_file *sf)
8e89d13f 935{
3c798398
TH
936 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_uint,
937 &blkcg_policy_throtl, cft->private, false);
af133ceb 938 return 0;
60c2bc2d
TH
939}
940
af133ceb
TH
941static int tg_set_conf(struct cgroup *cgrp, struct cftype *cft, const char *buf,
942 bool is_u64)
60c2bc2d 943{
3c798398 944 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
60c2bc2d 945 struct blkg_conf_ctx ctx;
af133ceb 946 struct throtl_grp *tg;
a2b1693b 947 struct throtl_data *td;
60c2bc2d
TH
948 int ret;
949
3c798398 950 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
60c2bc2d
TH
951 if (ret)
952 return ret;
953
af133ceb 954 tg = blkg_to_tg(ctx.blkg);
a2b1693b 955 td = ctx.blkg->q->td;
af133ceb 956
a2b1693b
TH
957 if (!ctx.v)
958 ctx.v = -1;
af133ceb 959
a2b1693b
TH
960 if (is_u64)
961 *(u64 *)((void *)tg + cft->private) = ctx.v;
962 else
963 *(unsigned int *)((void *)tg + cft->private) = ctx.v;
af133ceb 964
0f3457f6 965 throtl_log_tg(tg, "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
632b4493
TH
966 tg->bps[READ], tg->bps[WRITE],
967 tg->iops[READ], tg->iops[WRITE]);
968
969 /*
970 * We're already holding queue_lock and know @tg is valid. Let's
971 * apply the new config directly.
972 *
973 * Restart the slices for both READ and WRITES. It might happen
974 * that a group's limit are dropped suddenly and we don't want to
975 * account recently dispatched IO with new low rate.
976 */
0f3457f6
TH
977 throtl_start_new_slice(tg, 0);
978 throtl_start_new_slice(tg, 1);
632b4493 979
5b2c16aa 980 if (tg->flags & THROTL_TG_PENDING) {
0049af73 981 tg_update_disptime(tg, &td->service_queue);
632b4493
TH
982 throtl_schedule_next_dispatch(td);
983 }
60c2bc2d
TH
984
985 blkg_conf_finish(&ctx);
a2b1693b 986 return 0;
8e89d13f
VG
987}
988
af133ceb
TH
989static int tg_set_conf_u64(struct cgroup *cgrp, struct cftype *cft,
990 const char *buf)
60c2bc2d 991{
af133ceb 992 return tg_set_conf(cgrp, cft, buf, true);
60c2bc2d
TH
993}
994
af133ceb
TH
995static int tg_set_conf_uint(struct cgroup *cgrp, struct cftype *cft,
996 const char *buf)
60c2bc2d 997{
af133ceb 998 return tg_set_conf(cgrp, cft, buf, false);
60c2bc2d
TH
999}
1000
1001static struct cftype throtl_files[] = {
1002 {
1003 .name = "throttle.read_bps_device",
af133ceb
TH
1004 .private = offsetof(struct throtl_grp, bps[READ]),
1005 .read_seq_string = tg_print_conf_u64,
1006 .write_string = tg_set_conf_u64,
60c2bc2d
TH
1007 .max_write_len = 256,
1008 },
1009 {
1010 .name = "throttle.write_bps_device",
af133ceb
TH
1011 .private = offsetof(struct throtl_grp, bps[WRITE]),
1012 .read_seq_string = tg_print_conf_u64,
1013 .write_string = tg_set_conf_u64,
60c2bc2d
TH
1014 .max_write_len = 256,
1015 },
1016 {
1017 .name = "throttle.read_iops_device",
af133ceb
TH
1018 .private = offsetof(struct throtl_grp, iops[READ]),
1019 .read_seq_string = tg_print_conf_uint,
1020 .write_string = tg_set_conf_uint,
60c2bc2d
TH
1021 .max_write_len = 256,
1022 },
1023 {
1024 .name = "throttle.write_iops_device",
af133ceb
TH
1025 .private = offsetof(struct throtl_grp, iops[WRITE]),
1026 .read_seq_string = tg_print_conf_uint,
1027 .write_string = tg_set_conf_uint,
60c2bc2d
TH
1028 .max_write_len = 256,
1029 },
1030 {
1031 .name = "throttle.io_service_bytes",
5bc4afb1 1032 .private = offsetof(struct tg_stats_cpu, service_bytes),
8a3d2615 1033 .read_seq_string = tg_print_cpu_rwstat,
60c2bc2d
TH
1034 },
1035 {
1036 .name = "throttle.io_serviced",
5bc4afb1 1037 .private = offsetof(struct tg_stats_cpu, serviced),
8a3d2615 1038 .read_seq_string = tg_print_cpu_rwstat,
60c2bc2d
TH
1039 },
1040 { } /* terminate */
1041};
1042
da527770 1043static void throtl_shutdown_wq(struct request_queue *q)
e43473b7
VG
1044{
1045 struct throtl_data *td = q->td;
1046
cb76199c 1047 cancel_delayed_work_sync(&td->dispatch_work);
e43473b7
VG
1048}
1049
3c798398 1050static struct blkcg_policy blkcg_policy_throtl = {
f9fcc2d3
TH
1051 .pd_size = sizeof(struct throtl_grp),
1052 .cftypes = throtl_files,
1053
1054 .pd_init_fn = throtl_pd_init,
1055 .pd_exit_fn = throtl_pd_exit,
1056 .pd_reset_stats_fn = throtl_pd_reset_stats,
e43473b7
VG
1057};
1058
bc16a4f9 1059bool blk_throtl_bio(struct request_queue *q, struct bio *bio)
e43473b7
VG
1060{
1061 struct throtl_data *td = q->td;
1062 struct throtl_grp *tg;
73f0d49a 1063 struct throtl_service_queue *sq;
e43473b7 1064 bool rw = bio_data_dir(bio), update_disptime = true;
3c798398 1065 struct blkcg *blkcg;
bc16a4f9 1066 bool throttled = false;
e43473b7
VG
1067
1068 if (bio->bi_rw & REQ_THROTTLED) {
1069 bio->bi_rw &= ~REQ_THROTTLED;
bc16a4f9 1070 goto out;
e43473b7
VG
1071 }
1072
af75cd3c
VG
1073 /*
1074 * A throtl_grp pointer retrieved under rcu can be used to access
1075 * basic fields like stats and io rates. If a group has no rules,
1076 * just update the dispatch stats in lockless manner and return.
1077 */
af75cd3c 1078 rcu_read_lock();
3c798398 1079 blkcg = bio_blkcg(bio);
cd1604fa 1080 tg = throtl_lookup_tg(td, blkcg);
af75cd3c 1081 if (tg) {
af75cd3c 1082 if (tg_no_rule_group(tg, rw)) {
629ed0b1
TH
1083 throtl_update_dispatch_stats(tg_to_blkg(tg),
1084 bio->bi_size, bio->bi_rw);
2a7f1244 1085 goto out_unlock_rcu;
af75cd3c
VG
1086 }
1087 }
af75cd3c
VG
1088
1089 /*
1090 * Either group has not been allocated yet or it is not an unlimited
1091 * IO group
1092 */
e43473b7 1093 spin_lock_irq(q->queue_lock);
cd1604fa 1094 tg = throtl_lookup_create_tg(td, blkcg);
bc16a4f9
TH
1095 if (unlikely(!tg))
1096 goto out_unlock;
f469a7b4 1097
73f0d49a
TH
1098 sq = &tg->service_queue;
1099
1100 if (sq->nr_queued[rw]) {
e43473b7
VG
1101 /*
1102 * There is already another bio queued in same dir. No
1103 * need to update dispatch time.
1104 */
231d704b 1105 update_disptime = false;
e43473b7 1106 goto queue_bio;
de701c74 1107
e43473b7
VG
1108 }
1109
1110 /* Bio is with-in rate limit of group */
0f3457f6 1111 if (tg_may_dispatch(tg, bio, NULL)) {
e43473b7 1112 throtl_charge_bio(tg, bio);
04521db0
VG
1113
1114 /*
1115 * We need to trim slice even when bios are not being queued
1116 * otherwise it might happen that a bio is not queued for
1117 * a long time and slice keeps on extending and trim is not
1118 * called for a long time. Now if limits are reduced suddenly
1119 * we take into account all the IO dispatched so far at new
1120 * low rate and * newly queued IO gets a really long dispatch
1121 * time.
1122 *
1123 * So keep on trimming slice even if bio is not queued.
1124 */
0f3457f6 1125 throtl_trim_slice(tg, rw);
bc16a4f9 1126 goto out_unlock;
e43473b7
VG
1127 }
1128
1129queue_bio:
0f3457f6 1130 throtl_log_tg(tg, "[%c] bio. bdisp=%llu sz=%u bps=%llu"
8e89d13f
VG
1131 " iodisp=%u iops=%u queued=%d/%d",
1132 rw == READ ? 'R' : 'W',
e43473b7 1133 tg->bytes_disp[rw], bio->bi_size, tg->bps[rw],
8e89d13f 1134 tg->io_disp[rw], tg->iops[rw],
73f0d49a 1135 sq->nr_queued[READ], sq->nr_queued[WRITE]);
e43473b7 1136
671058fb 1137 bio_associate_current(bio);
0049af73 1138 throtl_add_bio_tg(bio, tg, &q->td->service_queue);
bc16a4f9 1139 throttled = true;
e43473b7
VG
1140
1141 if (update_disptime) {
0049af73 1142 tg_update_disptime(tg, &td->service_queue);
e43473b7
VG
1143 throtl_schedule_next_dispatch(td);
1144 }
1145
bc16a4f9 1146out_unlock:
e43473b7 1147 spin_unlock_irq(q->queue_lock);
2a7f1244
TH
1148out_unlock_rcu:
1149 rcu_read_unlock();
bc16a4f9
TH
1150out:
1151 return throttled;
e43473b7
VG
1152}
1153
c9a929dd
TH
1154/**
1155 * blk_throtl_drain - drain throttled bios
1156 * @q: request_queue to drain throttled bios for
1157 *
1158 * Dispatch all currently throttled bios on @q through ->make_request_fn().
1159 */
1160void blk_throtl_drain(struct request_queue *q)
1161 __releases(q->queue_lock) __acquires(q->queue_lock)
1162{
1163 struct throtl_data *td = q->td;
0049af73 1164 struct throtl_service_queue *parent_sq = &td->service_queue;
c9a929dd 1165 struct throtl_grp *tg;
c9a929dd 1166 struct bio *bio;
651930bc 1167 int rw;
c9a929dd 1168
8bcb6c7d 1169 queue_lockdep_assert_held(q);
c9a929dd 1170
0049af73 1171 while ((tg = throtl_rb_first(parent_sq))) {
73f0d49a
TH
1172 struct throtl_service_queue *sq = &tg->service_queue;
1173
0049af73 1174 throtl_dequeue_tg(tg, parent_sq);
c9a929dd 1175
73f0d49a 1176 while ((bio = bio_list_peek(&sq->bio_lists[READ])))
651930bc 1177 tg_dispatch_one_bio(tg, bio_data_dir(bio), parent_sq);
73f0d49a 1178 while ((bio = bio_list_peek(&sq->bio_lists[WRITE])))
651930bc 1179 tg_dispatch_one_bio(tg, bio_data_dir(bio), parent_sq);
c9a929dd
TH
1180 }
1181 spin_unlock_irq(q->queue_lock);
1182
651930bc
TH
1183 for (rw = READ; rw <= WRITE; rw++)
1184 while ((bio = bio_list_pop(&parent_sq->bio_lists[rw])))
1185 generic_make_request(bio);
c9a929dd
TH
1186
1187 spin_lock_irq(q->queue_lock);
1188}
1189
e43473b7
VG
1190int blk_throtl_init(struct request_queue *q)
1191{
1192 struct throtl_data *td;
a2b1693b 1193 int ret;
e43473b7
VG
1194
1195 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
1196 if (!td)
1197 return -ENOMEM;
1198
cb76199c 1199 INIT_DELAYED_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
49a2f1e3 1200 throtl_service_queue_init(&td->service_queue);
e43473b7 1201
cd1604fa 1202 q->td = td;
29b12589 1203 td->queue = q;
02977e4a 1204
a2b1693b 1205 /* activate policy */
3c798398 1206 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
a2b1693b 1207 if (ret)
f51b802c 1208 kfree(td);
a2b1693b 1209 return ret;
e43473b7
VG
1210}
1211
1212void blk_throtl_exit(struct request_queue *q)
1213{
c875f4d0 1214 BUG_ON(!q->td);
da527770 1215 throtl_shutdown_wq(q);
3c798398 1216 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
c9a929dd 1217 kfree(q->td);
e43473b7
VG
1218}
1219
1220static int __init throtl_init(void)
1221{
450adcbe
VG
1222 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
1223 if (!kthrotld_workqueue)
1224 panic("Failed to create kthrotld\n");
1225
3c798398 1226 return blkcg_policy_register(&blkcg_policy_throtl);
e43473b7
VG
1227}
1228
1229module_init(throtl_init);