blob: 32dd3e4b041d75ff4abec2a50c81c2b74d2bce22 [file] [log] [blame]
Vivek Goyale43473b2010-09-15 17:06:35 -04001/*
2 * Interface for controlling IO bandwidth on a request queue
3 *
4 * Copyright (C) 2010 Vivek Goyal <vgoyal@redhat.com>
5 */
6
7#include <linux/module.h>
8#include <linux/slab.h>
9#include <linux/blkdev.h>
10#include <linux/bio.h>
11#include <linux/blktrace_api.h>
12#include "blk-cgroup.h"
13
14/* Max dispatch from a group in 1 round */
15static int throtl_grp_quantum = 8;
16
17/* Total max dispatch from all groups in one round */
18static int throtl_quantum = 32;
19
20/* Throttling is performed over 100ms slice and after that slice is renewed */
21static unsigned long throtl_slice = HZ/10; /* 100 ms */
22
Vivek Goyal450adcb2011-03-01 13:40:54 -050023/* A workqueue to queue throttle related work */
24static struct workqueue_struct *kthrotld_workqueue;
25static void throtl_schedule_delayed_work(struct throtl_data *td,
26 unsigned long delay);
27
Vivek Goyale43473b2010-09-15 17:06:35 -040028struct throtl_rb_root {
29 struct rb_root rb;
30 struct rb_node *left;
31 unsigned int count;
32 unsigned long min_disptime;
33};
34
35#define THROTL_RB_ROOT (struct throtl_rb_root) { .rb = RB_ROOT, .left = NULL, \
36 .count = 0, .min_disptime = 0}
37
38#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
39
40struct throtl_grp {
41 /* List of throtl groups on the request queue*/
42 struct hlist_node tg_node;
43
44 /* active throtl group service_tree member */
45 struct rb_node rb_node;
46
47 /*
48 * Dispatch time in jiffies. This is the estimated time when group
49 * will unthrottle and is ready to dispatch more bio. It is used as
50 * key to sort active groups in service tree.
51 */
52 unsigned long disptime;
53
54 struct blkio_group blkg;
55 atomic_t ref;
56 unsigned int flags;
57
58 /* Two lists for READ and WRITE */
59 struct bio_list bio_lists[2];
60
61 /* Number of queued bios on READ and WRITE lists */
62 unsigned int nr_queued[2];
63
64 /* bytes per second rate limits */
65 uint64_t bps[2];
66
Vivek Goyal8e89d132010-09-15 17:06:37 -040067 /* IOPS limits */
68 unsigned int iops[2];
69
Vivek Goyale43473b2010-09-15 17:06:35 -040070 /* Number of bytes disptached in current slice */
71 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -040072 /* Number of bio's dispatched in current slice */
73 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -040074
75 /* When did we start a new slice */
76 unsigned long slice_start[2];
77 unsigned long slice_end[2];
Vivek Goyalfe071432010-10-01 14:49:49 +020078
79 /* Some throttle limits got updated for the group */
80 bool limits_changed;
Vivek Goyale43473b2010-09-15 17:06:35 -040081};
82
83struct throtl_data
84{
85 /* List of throtl groups */
86 struct hlist_head tg_list;
87
88 /* service tree for active throtl groups */
89 struct throtl_rb_root tg_service_tree;
90
91 struct throtl_grp root_tg;
92 struct request_queue *queue;
93
94 /* Total Number of queued bios on READ and WRITE lists */
95 unsigned int nr_queued[2];
96
97 /*
Vivek Goyal02977e42010-10-01 14:49:48 +020098 * number of total undestroyed groups
Vivek Goyale43473b2010-09-15 17:06:35 -040099 */
100 unsigned int nr_undestroyed_grps;
101
102 /* Work for dispatching throttled bios */
103 struct delayed_work throtl_work;
Vivek Goyalfe071432010-10-01 14:49:49 +0200104
Vivek Goyalde701c72011-03-07 21:09:32 +0100105 bool limits_changed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400106};
107
108enum tg_state_flags {
109 THROTL_TG_FLAG_on_rr = 0, /* on round-robin busy list */
110};
111
112#define THROTL_TG_FNS(name) \
113static inline void throtl_mark_tg_##name(struct throtl_grp *tg) \
114{ \
115 (tg)->flags |= (1 << THROTL_TG_FLAG_##name); \
116} \
117static inline void throtl_clear_tg_##name(struct throtl_grp *tg) \
118{ \
119 (tg)->flags &= ~(1 << THROTL_TG_FLAG_##name); \
120} \
121static inline int throtl_tg_##name(const struct throtl_grp *tg) \
122{ \
123 return ((tg)->flags & (1 << THROTL_TG_FLAG_##name)) != 0; \
124}
125
126THROTL_TG_FNS(on_rr);
127
128#define throtl_log_tg(td, tg, fmt, args...) \
129 blk_add_trace_msg((td)->queue, "throtl %s " fmt, \
130 blkg_path(&(tg)->blkg), ##args); \
131
132#define throtl_log(td, fmt, args...) \
133 blk_add_trace_msg((td)->queue, "throtl " fmt, ##args)
134
135static inline struct throtl_grp *tg_of_blkg(struct blkio_group *blkg)
136{
137 if (blkg)
138 return container_of(blkg, struct throtl_grp, blkg);
139
140 return NULL;
141}
142
143static inline int total_nr_queued(struct throtl_data *td)
144{
145 return (td->nr_queued[0] + td->nr_queued[1]);
146}
147
148static inline struct throtl_grp *throtl_ref_get_tg(struct throtl_grp *tg)
149{
150 atomic_inc(&tg->ref);
151 return tg;
152}
153
154static void throtl_put_tg(struct throtl_grp *tg)
155{
156 BUG_ON(atomic_read(&tg->ref) <= 0);
157 if (!atomic_dec_and_test(&tg->ref))
158 return;
159 kfree(tg);
160}
161
162static struct throtl_grp * throtl_find_alloc_tg(struct throtl_data *td,
163 struct cgroup *cgroup)
164{
165 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgroup);
166 struct throtl_grp *tg = NULL;
167 void *key = td;
168 struct backing_dev_info *bdi = &td->queue->backing_dev_info;
169 unsigned int major, minor;
170
171 /*
172 * TODO: Speed up blkiocg_lookup_group() by maintaining a radix
173 * tree of blkg (instead of traversing through hash list all
174 * the time.
175 */
Vivek Goyalbe2c6b12011-01-19 08:25:02 -0700176
177 /*
178 * This is the common case when there are no blkio cgroups.
179 * Avoid lookup in this case
180 */
181 if (blkcg == &blkio_root_cgroup)
182 tg = &td->root_tg;
183 else
184 tg = tg_of_blkg(blkiocg_lookup_group(blkcg, key));
Vivek Goyale43473b2010-09-15 17:06:35 -0400185
186 /* Fill in device details for root group */
187 if (tg && !tg->blkg.dev && bdi->dev && dev_name(bdi->dev)) {
188 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
189 tg->blkg.dev = MKDEV(major, minor);
190 goto done;
191 }
192
193 if (tg)
194 goto done;
195
196 tg = kzalloc_node(sizeof(*tg), GFP_ATOMIC, td->queue->node);
197 if (!tg)
198 goto done;
199
200 INIT_HLIST_NODE(&tg->tg_node);
201 RB_CLEAR_NODE(&tg->rb_node);
202 bio_list_init(&tg->bio_lists[0]);
203 bio_list_init(&tg->bio_lists[1]);
Vivek Goyalde701c72011-03-07 21:09:32 +0100204 td->limits_changed = false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400205
206 /*
207 * Take the initial reference that will be released on destroy
208 * This can be thought of a joint reference by cgroup and
209 * request queue which will be dropped by either request queue
210 * exit or cgroup deletion path depending on who is exiting first.
211 */
212 atomic_set(&tg->ref, 1);
213
214 /* Add group onto cgroup list */
215 sscanf(dev_name(bdi->dev), "%u:%u", &major, &minor);
216 blkiocg_add_blkio_group(blkcg, &tg->blkg, (void *)td,
217 MKDEV(major, minor), BLKIO_POLICY_THROTL);
218
219 tg->bps[READ] = blkcg_get_read_bps(blkcg, tg->blkg.dev);
220 tg->bps[WRITE] = blkcg_get_write_bps(blkcg, tg->blkg.dev);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400221 tg->iops[READ] = blkcg_get_read_iops(blkcg, tg->blkg.dev);
222 tg->iops[WRITE] = blkcg_get_write_iops(blkcg, tg->blkg.dev);
Vivek Goyale43473b2010-09-15 17:06:35 -0400223
224 hlist_add_head(&tg->tg_node, &td->tg_list);
225 td->nr_undestroyed_grps++;
226done:
227 return tg;
228}
229
230static struct throtl_grp * throtl_get_tg(struct throtl_data *td)
231{
232 struct cgroup *cgroup;
233 struct throtl_grp *tg = NULL;
234
235 rcu_read_lock();
236 cgroup = task_cgroup(current, blkio_subsys_id);
237 tg = throtl_find_alloc_tg(td, cgroup);
238 if (!tg)
239 tg = &td->root_tg;
240 rcu_read_unlock();
241 return tg;
242}
243
244static struct throtl_grp *throtl_rb_first(struct throtl_rb_root *root)
245{
246 /* Service tree is empty */
247 if (!root->count)
248 return NULL;
249
250 if (!root->left)
251 root->left = rb_first(&root->rb);
252
253 if (root->left)
254 return rb_entry_tg(root->left);
255
256 return NULL;
257}
258
259static void rb_erase_init(struct rb_node *n, struct rb_root *root)
260{
261 rb_erase(n, root);
262 RB_CLEAR_NODE(n);
263}
264
265static void throtl_rb_erase(struct rb_node *n, struct throtl_rb_root *root)
266{
267 if (root->left == n)
268 root->left = NULL;
269 rb_erase_init(n, &root->rb);
270 --root->count;
271}
272
273static void update_min_dispatch_time(struct throtl_rb_root *st)
274{
275 struct throtl_grp *tg;
276
277 tg = throtl_rb_first(st);
278 if (!tg)
279 return;
280
281 st->min_disptime = tg->disptime;
282}
283
284static void
285tg_service_tree_add(struct throtl_rb_root *st, struct throtl_grp *tg)
286{
287 struct rb_node **node = &st->rb.rb_node;
288 struct rb_node *parent = NULL;
289 struct throtl_grp *__tg;
290 unsigned long key = tg->disptime;
291 int left = 1;
292
293 while (*node != NULL) {
294 parent = *node;
295 __tg = rb_entry_tg(parent);
296
297 if (time_before(key, __tg->disptime))
298 node = &parent->rb_left;
299 else {
300 node = &parent->rb_right;
301 left = 0;
302 }
303 }
304
305 if (left)
306 st->left = &tg->rb_node;
307
308 rb_link_node(&tg->rb_node, parent, node);
309 rb_insert_color(&tg->rb_node, &st->rb);
310}
311
312static void __throtl_enqueue_tg(struct throtl_data *td, struct throtl_grp *tg)
313{
314 struct throtl_rb_root *st = &td->tg_service_tree;
315
316 tg_service_tree_add(st, tg);
317 throtl_mark_tg_on_rr(tg);
318 st->count++;
319}
320
321static void throtl_enqueue_tg(struct throtl_data *td, struct throtl_grp *tg)
322{
323 if (!throtl_tg_on_rr(tg))
324 __throtl_enqueue_tg(td, tg);
325}
326
327static void __throtl_dequeue_tg(struct throtl_data *td, struct throtl_grp *tg)
328{
329 throtl_rb_erase(&tg->rb_node, &td->tg_service_tree);
330 throtl_clear_tg_on_rr(tg);
331}
332
333static void throtl_dequeue_tg(struct throtl_data *td, struct throtl_grp *tg)
334{
335 if (throtl_tg_on_rr(tg))
336 __throtl_dequeue_tg(td, tg);
337}
338
339static void throtl_schedule_next_dispatch(struct throtl_data *td)
340{
341 struct throtl_rb_root *st = &td->tg_service_tree;
342
343 /*
344 * If there are more bios pending, schedule more work.
345 */
346 if (!total_nr_queued(td))
347 return;
348
349 BUG_ON(!st->count);
350
351 update_min_dispatch_time(st);
352
353 if (time_before_eq(st->min_disptime, jiffies))
Vivek Goyal450adcb2011-03-01 13:40:54 -0500354 throtl_schedule_delayed_work(td, 0);
Vivek Goyale43473b2010-09-15 17:06:35 -0400355 else
Vivek Goyal450adcb2011-03-01 13:40:54 -0500356 throtl_schedule_delayed_work(td, (st->min_disptime - jiffies));
Vivek Goyale43473b2010-09-15 17:06:35 -0400357}
358
359static inline void
360throtl_start_new_slice(struct throtl_data *td, struct throtl_grp *tg, bool rw)
361{
362 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400363 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400364 tg->slice_start[rw] = jiffies;
365 tg->slice_end[rw] = jiffies + throtl_slice;
366 throtl_log_tg(td, tg, "[%c] new slice start=%lu end=%lu jiffies=%lu",
367 rw == READ ? 'R' : 'W', tg->slice_start[rw],
368 tg->slice_end[rw], jiffies);
369}
370
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100371static inline void throtl_set_slice_end(struct throtl_data *td,
372 struct throtl_grp *tg, bool rw, unsigned long jiffy_end)
373{
374 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
375}
376
Vivek Goyale43473b2010-09-15 17:06:35 -0400377static inline void throtl_extend_slice(struct throtl_data *td,
378 struct throtl_grp *tg, bool rw, unsigned long jiffy_end)
379{
380 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
381 throtl_log_tg(td, tg, "[%c] extend slice start=%lu end=%lu jiffies=%lu",
382 rw == READ ? 'R' : 'W', tg->slice_start[rw],
383 tg->slice_end[rw], jiffies);
384}
385
386/* Determine if previously allocated or extended slice is complete or not */
387static bool
388throtl_slice_used(struct throtl_data *td, struct throtl_grp *tg, bool rw)
389{
390 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
391 return 0;
392
393 return 1;
394}
395
396/* Trim the used slices and adjust slice start accordingly */
397static inline void
398throtl_trim_slice(struct throtl_data *td, struct throtl_grp *tg, bool rw)
399{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200400 unsigned long nr_slices, time_elapsed, io_trim;
401 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400402
403 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
404
405 /*
406 * If bps are unlimited (-1), then time slice don't get
407 * renewed. Don't try to trim the slice if slice is used. A new
408 * slice will start when appropriate.
409 */
410 if (throtl_slice_used(td, tg, rw))
411 return;
412
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100413 /*
414 * A bio has been dispatched. Also adjust slice_end. It might happen
415 * that initially cgroup limit was very low resulting in high
416 * slice_end, but later limit was bumped up and bio was dispached
417 * sooner, then we need to reduce slice_end. A high bogus slice_end
418 * is bad because it does not allow new slice to start.
419 */
420
421 throtl_set_slice_end(td, tg, rw, jiffies + throtl_slice);
422
Vivek Goyale43473b2010-09-15 17:06:35 -0400423 time_elapsed = jiffies - tg->slice_start[rw];
424
425 nr_slices = time_elapsed / throtl_slice;
426
427 if (!nr_slices)
428 return;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200429 tmp = tg->bps[rw] * throtl_slice * nr_slices;
430 do_div(tmp, HZ);
431 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400432
Vivek Goyal8e89d132010-09-15 17:06:37 -0400433 io_trim = (tg->iops[rw] * throtl_slice * nr_slices)/HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400434
Vivek Goyal8e89d132010-09-15 17:06:37 -0400435 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400436 return;
437
438 if (tg->bytes_disp[rw] >= bytes_trim)
439 tg->bytes_disp[rw] -= bytes_trim;
440 else
441 tg->bytes_disp[rw] = 0;
442
Vivek Goyal8e89d132010-09-15 17:06:37 -0400443 if (tg->io_disp[rw] >= io_trim)
444 tg->io_disp[rw] -= io_trim;
445 else
446 tg->io_disp[rw] = 0;
447
Vivek Goyale43473b2010-09-15 17:06:35 -0400448 tg->slice_start[rw] += nr_slices * throtl_slice;
449
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200450 throtl_log_tg(td, tg, "[%c] trim slice nr=%lu bytes=%llu io=%lu"
Vivek Goyale43473b2010-09-15 17:06:35 -0400451 " start=%lu end=%lu jiffies=%lu",
Vivek Goyal8e89d132010-09-15 17:06:37 -0400452 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
Vivek Goyale43473b2010-09-15 17:06:35 -0400453 tg->slice_start[rw], tg->slice_end[rw], jiffies);
454}
455
Vivek Goyal8e89d132010-09-15 17:06:37 -0400456static bool tg_with_in_iops_limit(struct throtl_data *td, struct throtl_grp *tg,
457 struct bio *bio, unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400458{
459 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400460 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400461 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200462 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400463
Vivek Goyal8e89d132010-09-15 17:06:37 -0400464 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400465
Vivek Goyal8e89d132010-09-15 17:06:37 -0400466 /* Slice has just started. Consider one slice interval */
467 if (!jiffy_elapsed)
468 jiffy_elapsed_rnd = throtl_slice;
469
470 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
471
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200472 /*
473 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
474 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
475 * will allow dispatch after 1 second and after that slice should
476 * have been trimmed.
477 */
478
479 tmp = (u64)tg->iops[rw] * jiffy_elapsed_rnd;
480 do_div(tmp, HZ);
481
482 if (tmp > UINT_MAX)
483 io_allowed = UINT_MAX;
484 else
485 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400486
487 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400488 if (wait)
489 *wait = 0;
490 return 1;
491 }
492
Vivek Goyal8e89d132010-09-15 17:06:37 -0400493 /* Calc approx time to dispatch */
494 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ)/tg->iops[rw] + 1;
495
496 if (jiffy_wait > jiffy_elapsed)
497 jiffy_wait = jiffy_wait - jiffy_elapsed;
498 else
499 jiffy_wait = 1;
500
501 if (wait)
502 *wait = jiffy_wait;
503 return 0;
504}
505
506static bool tg_with_in_bps_limit(struct throtl_data *td, struct throtl_grp *tg,
507 struct bio *bio, unsigned long *wait)
508{
509 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200510 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400511 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400512
513 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
514
515 /* Slice has just started. Consider one slice interval */
516 if (!jiffy_elapsed)
517 jiffy_elapsed_rnd = throtl_slice;
518
519 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
520
Vivek Goyal5e901a22010-10-01 21:16:38 +0200521 tmp = tg->bps[rw] * jiffy_elapsed_rnd;
522 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200523 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400524
525 if (tg->bytes_disp[rw] + bio->bi_size <= bytes_allowed) {
526 if (wait)
527 *wait = 0;
528 return 1;
529 }
530
531 /* Calc approx time to dispatch */
532 extra_bytes = tg->bytes_disp[rw] + bio->bi_size - bytes_allowed;
533 jiffy_wait = div64_u64(extra_bytes * HZ, tg->bps[rw]);
534
535 if (!jiffy_wait)
536 jiffy_wait = 1;
537
538 /*
539 * This wait time is without taking into consideration the rounding
540 * up we did. Add that time also.
541 */
542 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400543 if (wait)
544 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400545 return 0;
546}
Vivek Goyale43473b2010-09-15 17:06:35 -0400547
Vivek Goyal8e89d132010-09-15 17:06:37 -0400548/*
549 * Returns whether one can dispatch a bio or not. Also returns approx number
550 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
551 */
552static bool tg_may_dispatch(struct throtl_data *td, struct throtl_grp *tg,
553 struct bio *bio, unsigned long *wait)
554{
555 bool rw = bio_data_dir(bio);
556 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
557
558 /*
559 * Currently whole state machine of group depends on first bio
560 * queued in the group bio list. So one should not be calling
561 * this function with a different bio if there are other bios
562 * queued.
563 */
564 BUG_ON(tg->nr_queued[rw] && bio != bio_list_peek(&tg->bio_lists[rw]));
565
566 /* If tg->bps = -1, then BW is unlimited */
567 if (tg->bps[rw] == -1 && tg->iops[rw] == -1) {
568 if (wait)
569 *wait = 0;
570 return 1;
571 }
572
573 /*
574 * If previous slice expired, start a new one otherwise renew/extend
575 * existing slice to make sure it is at least throtl_slice interval
576 * long since now.
577 */
578 if (throtl_slice_used(td, tg, rw))
579 throtl_start_new_slice(td, tg, rw);
580 else {
581 if (time_before(tg->slice_end[rw], jiffies + throtl_slice))
582 throtl_extend_slice(td, tg, rw, jiffies + throtl_slice);
583 }
584
585 if (tg_with_in_bps_limit(td, tg, bio, &bps_wait)
586 && tg_with_in_iops_limit(td, tg, bio, &iops_wait)) {
587 if (wait)
588 *wait = 0;
589 return 1;
590 }
591
592 max_wait = max(bps_wait, iops_wait);
593
594 if (wait)
595 *wait = max_wait;
596
597 if (time_before(tg->slice_end[rw], jiffies + max_wait))
598 throtl_extend_slice(td, tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -0400599
600 return 0;
601}
602
603static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
604{
605 bool rw = bio_data_dir(bio);
606 bool sync = bio->bi_rw & REQ_SYNC;
607
608 /* Charge the bio to the group */
609 tg->bytes_disp[rw] += bio->bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400610 tg->io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400611
612 /*
613 * TODO: This will take blkg->stats_lock. Figure out a way
614 * to avoid this cost.
615 */
616 blkiocg_update_dispatch_stats(&tg->blkg, bio->bi_size, rw, sync);
Vivek Goyale43473b2010-09-15 17:06:35 -0400617}
618
619static void throtl_add_bio_tg(struct throtl_data *td, struct throtl_grp *tg,
620 struct bio *bio)
621{
622 bool rw = bio_data_dir(bio);
623
624 bio_list_add(&tg->bio_lists[rw], bio);
625 /* Take a bio reference on tg */
626 throtl_ref_get_tg(tg);
627 tg->nr_queued[rw]++;
628 td->nr_queued[rw]++;
629 throtl_enqueue_tg(td, tg);
630}
631
632static void tg_update_disptime(struct throtl_data *td, struct throtl_grp *tg)
633{
634 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
635 struct bio *bio;
636
637 if ((bio = bio_list_peek(&tg->bio_lists[READ])))
638 tg_may_dispatch(td, tg, bio, &read_wait);
639
640 if ((bio = bio_list_peek(&tg->bio_lists[WRITE])))
641 tg_may_dispatch(td, tg, bio, &write_wait);
642
643 min_wait = min(read_wait, write_wait);
644 disptime = jiffies + min_wait;
645
Vivek Goyale43473b2010-09-15 17:06:35 -0400646 /* Update dispatch time */
647 throtl_dequeue_tg(td, tg);
648 tg->disptime = disptime;
649 throtl_enqueue_tg(td, tg);
650}
651
652static void tg_dispatch_one_bio(struct throtl_data *td, struct throtl_grp *tg,
653 bool rw, struct bio_list *bl)
654{
655 struct bio *bio;
656
657 bio = bio_list_pop(&tg->bio_lists[rw]);
658 tg->nr_queued[rw]--;
659 /* Drop bio reference on tg */
660 throtl_put_tg(tg);
661
662 BUG_ON(td->nr_queued[rw] <= 0);
663 td->nr_queued[rw]--;
664
665 throtl_charge_bio(tg, bio);
666 bio_list_add(bl, bio);
667 bio->bi_rw |= REQ_THROTTLED;
668
669 throtl_trim_slice(td, tg, rw);
670}
671
672static int throtl_dispatch_tg(struct throtl_data *td, struct throtl_grp *tg,
673 struct bio_list *bl)
674{
675 unsigned int nr_reads = 0, nr_writes = 0;
676 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +0100677 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -0400678 struct bio *bio;
679
680 /* Try to dispatch 75% READS and 25% WRITES */
681
682 while ((bio = bio_list_peek(&tg->bio_lists[READ]))
683 && tg_may_dispatch(td, tg, bio, NULL)) {
684
685 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), bl);
686 nr_reads++;
687
688 if (nr_reads >= max_nr_reads)
689 break;
690 }
691
692 while ((bio = bio_list_peek(&tg->bio_lists[WRITE]))
693 && tg_may_dispatch(td, tg, bio, NULL)) {
694
695 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), bl);
696 nr_writes++;
697
698 if (nr_writes >= max_nr_writes)
699 break;
700 }
701
702 return nr_reads + nr_writes;
703}
704
705static int throtl_select_dispatch(struct throtl_data *td, struct bio_list *bl)
706{
707 unsigned int nr_disp = 0;
708 struct throtl_grp *tg;
709 struct throtl_rb_root *st = &td->tg_service_tree;
710
711 while (1) {
712 tg = throtl_rb_first(st);
713
714 if (!tg)
715 break;
716
717 if (time_before(jiffies, tg->disptime))
718 break;
719
720 throtl_dequeue_tg(td, tg);
721
722 nr_disp += throtl_dispatch_tg(td, tg, bl);
723
724 if (tg->nr_queued[0] || tg->nr_queued[1]) {
725 tg_update_disptime(td, tg);
726 throtl_enqueue_tg(td, tg);
727 }
728
729 if (nr_disp >= throtl_quantum)
730 break;
731 }
732
733 return nr_disp;
734}
735
Vivek Goyalfe071432010-10-01 14:49:49 +0200736static void throtl_process_limit_change(struct throtl_data *td)
737{
738 struct throtl_grp *tg;
739 struct hlist_node *pos, *n;
740
Vivek Goyalde701c72011-03-07 21:09:32 +0100741 if (!td->limits_changed)
Vivek Goyalfe071432010-10-01 14:49:49 +0200742 return;
743
Vivek Goyalde701c72011-03-07 21:09:32 +0100744 xchg(&td->limits_changed, false);
Vivek Goyalfe071432010-10-01 14:49:49 +0200745
Vivek Goyalde701c72011-03-07 21:09:32 +0100746 throtl_log(td, "limits changed");
Vivek Goyalfe071432010-10-01 14:49:49 +0200747
Vivek Goyal04a6b512010-12-01 19:34:52 +0100748 hlist_for_each_entry_safe(tg, pos, n, &td->tg_list, tg_node) {
Vivek Goyalde701c72011-03-07 21:09:32 +0100749 if (!tg->limits_changed)
750 continue;
Vivek Goyalfe071432010-10-01 14:49:49 +0200751
Vivek Goyalde701c72011-03-07 21:09:32 +0100752 if (!xchg(&tg->limits_changed, false))
753 continue;
754
755 throtl_log_tg(td, tg, "limit change rbps=%llu wbps=%llu"
756 " riops=%u wiops=%u", tg->bps[READ], tg->bps[WRITE],
757 tg->iops[READ], tg->iops[WRITE]);
758
759 if (throtl_tg_on_rr(tg))
760 tg_update_disptime(td, tg);
761 }
Vivek Goyalfe071432010-10-01 14:49:49 +0200762}
763
Vivek Goyale43473b2010-09-15 17:06:35 -0400764/* Dispatch throttled bios. Should be called without queue lock held. */
765static int throtl_dispatch(struct request_queue *q)
766{
767 struct throtl_data *td = q->td;
768 unsigned int nr_disp = 0;
769 struct bio_list bio_list_on_stack;
770 struct bio *bio;
771
772 spin_lock_irq(q->queue_lock);
773
Vivek Goyalfe071432010-10-01 14:49:49 +0200774 throtl_process_limit_change(td);
775
Vivek Goyale43473b2010-09-15 17:06:35 -0400776 if (!total_nr_queued(td))
777 goto out;
778
779 bio_list_init(&bio_list_on_stack);
780
781 throtl_log(td, "dispatch nr_queued=%lu read=%u write=%u",
782 total_nr_queued(td), td->nr_queued[READ],
783 td->nr_queued[WRITE]);
784
785 nr_disp = throtl_select_dispatch(td, &bio_list_on_stack);
786
787 if (nr_disp)
788 throtl_log(td, "bios disp=%u", nr_disp);
789
790 throtl_schedule_next_dispatch(td);
791out:
792 spin_unlock_irq(q->queue_lock);
793
794 /*
795 * If we dispatched some requests, unplug the queue to make sure
796 * immediate dispatch
797 */
798 if (nr_disp) {
799 while((bio = bio_list_pop(&bio_list_on_stack)))
800 generic_make_request(bio);
801 blk_unplug(q);
802 }
803 return nr_disp;
804}
805
806void blk_throtl_work(struct work_struct *work)
807{
808 struct throtl_data *td = container_of(work, struct throtl_data,
809 throtl_work.work);
810 struct request_queue *q = td->queue;
811
812 throtl_dispatch(q);
813}
814
815/* Call with queue lock held */
Vivek Goyal450adcb2011-03-01 13:40:54 -0500816static void
817throtl_schedule_delayed_work(struct throtl_data *td, unsigned long delay)
Vivek Goyale43473b2010-09-15 17:06:35 -0400818{
819
Vivek Goyale43473b2010-09-15 17:06:35 -0400820 struct delayed_work *dwork = &td->throtl_work;
821
822 if (total_nr_queued(td) > 0) {
823 /*
824 * We might have a work scheduled to be executed in future.
825 * Cancel that and schedule a new one.
826 */
827 __cancel_delayed_work(dwork);
Vivek Goyal450adcb2011-03-01 13:40:54 -0500828 queue_delayed_work(kthrotld_workqueue, dwork, delay);
Vivek Goyale43473b2010-09-15 17:06:35 -0400829 throtl_log(td, "schedule work. delay=%lu jiffies=%lu",
830 delay, jiffies);
831 }
832}
Vivek Goyale43473b2010-09-15 17:06:35 -0400833
834static void
835throtl_destroy_tg(struct throtl_data *td, struct throtl_grp *tg)
836{
837 /* Something wrong if we are trying to remove same group twice */
838 BUG_ON(hlist_unhashed(&tg->tg_node));
839
840 hlist_del_init(&tg->tg_node);
841
842 /*
843 * Put the reference taken at the time of creation so that when all
844 * queues are gone, group can be destroyed.
845 */
846 throtl_put_tg(tg);
847 td->nr_undestroyed_grps--;
848}
849
850static void throtl_release_tgs(struct throtl_data *td)
851{
852 struct hlist_node *pos, *n;
853 struct throtl_grp *tg;
854
855 hlist_for_each_entry_safe(tg, pos, n, &td->tg_list, tg_node) {
856 /*
857 * If cgroup removal path got to blk_group first and removed
858 * it from cgroup list, then it will take care of destroying
859 * cfqg also.
860 */
861 if (!blkiocg_del_blkio_group(&tg->blkg))
862 throtl_destroy_tg(td, tg);
863 }
864}
865
866static void throtl_td_free(struct throtl_data *td)
867{
868 kfree(td);
869}
870
871/*
872 * Blk cgroup controller notification saying that blkio_group object is being
873 * delinked as associated cgroup object is going away. That also means that
874 * no new IO will come in this group. So get rid of this group as soon as
875 * any pending IO in the group is finished.
876 *
877 * This function is called under rcu_read_lock(). key is the rcu protected
878 * pointer. That means "key" is a valid throtl_data pointer as long as we are
879 * rcu read lock.
880 *
881 * "key" was fetched from blkio_group under blkio_cgroup->lock. That means
882 * it should not be NULL as even if queue was going away, cgroup deltion
883 * path got to it first.
884 */
885void throtl_unlink_blkio_group(void *key, struct blkio_group *blkg)
886{
887 unsigned long flags;
888 struct throtl_data *td = key;
889
890 spin_lock_irqsave(td->queue->queue_lock, flags);
891 throtl_destroy_tg(td, tg_of_blkg(blkg));
892 spin_unlock_irqrestore(td->queue->queue_lock, flags);
893}
894
Vivek Goyalde701c72011-03-07 21:09:32 +0100895static void throtl_update_blkio_group_common(struct throtl_data *td,
896 struct throtl_grp *tg)
897{
898 xchg(&tg->limits_changed, true);
899 xchg(&td->limits_changed, true);
900 /* Schedule a work now to process the limit change */
901 throtl_schedule_delayed_work(td, 0);
902}
903
Vivek Goyalfe071432010-10-01 14:49:49 +0200904/*
905 * For all update functions, key should be a valid pointer because these
906 * update functions are called under blkcg_lock, that means, blkg is
907 * valid and in turn key is valid. queue exit path can not race becuase
908 * of blkcg_lock
909 *
910 * Can not take queue lock in update functions as queue lock under blkcg_lock
911 * is not allowed. Under other paths we take blkcg_lock under queue_lock.
912 */
913static void throtl_update_blkio_group_read_bps(void *key,
914 struct blkio_group *blkg, u64 read_bps)
Vivek Goyale43473b2010-09-15 17:06:35 -0400915{
Vivek Goyalfe071432010-10-01 14:49:49 +0200916 struct throtl_data *td = key;
Vivek Goyalde701c72011-03-07 21:09:32 +0100917 struct throtl_grp *tg = tg_of_blkg(blkg);
Vivek Goyalfe071432010-10-01 14:49:49 +0200918
Vivek Goyalde701c72011-03-07 21:09:32 +0100919 tg->bps[READ] = read_bps;
920 throtl_update_blkio_group_common(td, tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400921}
922
Vivek Goyalfe071432010-10-01 14:49:49 +0200923static void throtl_update_blkio_group_write_bps(void *key,
924 struct blkio_group *blkg, u64 write_bps)
Vivek Goyale43473b2010-09-15 17:06:35 -0400925{
Vivek Goyalfe071432010-10-01 14:49:49 +0200926 struct throtl_data *td = key;
Vivek Goyalde701c72011-03-07 21:09:32 +0100927 struct throtl_grp *tg = tg_of_blkg(blkg);
Vivek Goyalfe071432010-10-01 14:49:49 +0200928
Vivek Goyalde701c72011-03-07 21:09:32 +0100929 tg->bps[WRITE] = write_bps;
930 throtl_update_blkio_group_common(td, tg);
Vivek Goyale43473b2010-09-15 17:06:35 -0400931}
932
Vivek Goyalfe071432010-10-01 14:49:49 +0200933static void throtl_update_blkio_group_read_iops(void *key,
934 struct blkio_group *blkg, unsigned int read_iops)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400935{
Vivek Goyalfe071432010-10-01 14:49:49 +0200936 struct throtl_data *td = key;
Vivek Goyalde701c72011-03-07 21:09:32 +0100937 struct throtl_grp *tg = tg_of_blkg(blkg);
Vivek Goyalfe071432010-10-01 14:49:49 +0200938
Vivek Goyalde701c72011-03-07 21:09:32 +0100939 tg->iops[READ] = read_iops;
940 throtl_update_blkio_group_common(td, tg);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400941}
942
Vivek Goyalfe071432010-10-01 14:49:49 +0200943static void throtl_update_blkio_group_write_iops(void *key,
944 struct blkio_group *blkg, unsigned int write_iops)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400945{
Vivek Goyalfe071432010-10-01 14:49:49 +0200946 struct throtl_data *td = key;
Vivek Goyalde701c72011-03-07 21:09:32 +0100947 struct throtl_grp *tg = tg_of_blkg(blkg);
Vivek Goyalfe071432010-10-01 14:49:49 +0200948
Vivek Goyalde701c72011-03-07 21:09:32 +0100949 tg->iops[WRITE] = write_iops;
950 throtl_update_blkio_group_common(td, tg);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400951}
952
Vivek Goyalda527772011-03-02 19:05:33 -0500953static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -0400954{
955 struct throtl_data *td = q->td;
956
957 cancel_delayed_work_sync(&td->throtl_work);
958}
959
960static struct blkio_policy_type blkio_policy_throtl = {
961 .ops = {
962 .blkio_unlink_group_fn = throtl_unlink_blkio_group,
963 .blkio_update_group_read_bps_fn =
964 throtl_update_blkio_group_read_bps,
965 .blkio_update_group_write_bps_fn =
966 throtl_update_blkio_group_write_bps,
Vivek Goyal8e89d132010-09-15 17:06:37 -0400967 .blkio_update_group_read_iops_fn =
968 throtl_update_blkio_group_read_iops,
969 .blkio_update_group_write_iops_fn =
970 throtl_update_blkio_group_write_iops,
Vivek Goyale43473b2010-09-15 17:06:35 -0400971 },
Vivek Goyal8e89d132010-09-15 17:06:37 -0400972 .plid = BLKIO_POLICY_THROTL,
Vivek Goyale43473b2010-09-15 17:06:35 -0400973};
974
975int blk_throtl_bio(struct request_queue *q, struct bio **biop)
976{
977 struct throtl_data *td = q->td;
978 struct throtl_grp *tg;
979 struct bio *bio = *biop;
980 bool rw = bio_data_dir(bio), update_disptime = true;
981
982 if (bio->bi_rw & REQ_THROTTLED) {
983 bio->bi_rw &= ~REQ_THROTTLED;
984 return 0;
985 }
986
987 spin_lock_irq(q->queue_lock);
988 tg = throtl_get_tg(td);
989
990 if (tg->nr_queued[rw]) {
991 /*
992 * There is already another bio queued in same dir. No
993 * need to update dispatch time.
994 */
Vivek Goyal231d7042011-03-07 21:05:14 +0100995 update_disptime = false;
Vivek Goyale43473b2010-09-15 17:06:35 -0400996 goto queue_bio;
Vivek Goyalde701c72011-03-07 21:09:32 +0100997
Vivek Goyale43473b2010-09-15 17:06:35 -0400998 }
999
1000 /* Bio is with-in rate limit of group */
1001 if (tg_may_dispatch(td, tg, bio, NULL)) {
1002 throtl_charge_bio(tg, bio);
1003 goto out;
1004 }
1005
1006queue_bio:
Vivek Goyal8e89d132010-09-15 17:06:37 -04001007 throtl_log_tg(td, tg, "[%c] bio. bdisp=%u sz=%u bps=%llu"
1008 " iodisp=%u iops=%u queued=%d/%d",
1009 rw == READ ? 'R' : 'W',
Vivek Goyale43473b2010-09-15 17:06:35 -04001010 tg->bytes_disp[rw], bio->bi_size, tg->bps[rw],
Vivek Goyal8e89d132010-09-15 17:06:37 -04001011 tg->io_disp[rw], tg->iops[rw],
Vivek Goyale43473b2010-09-15 17:06:35 -04001012 tg->nr_queued[READ], tg->nr_queued[WRITE]);
1013
1014 throtl_add_bio_tg(q->td, tg, bio);
1015 *biop = NULL;
1016
1017 if (update_disptime) {
1018 tg_update_disptime(td, tg);
1019 throtl_schedule_next_dispatch(td);
1020 }
1021
1022out:
1023 spin_unlock_irq(q->queue_lock);
1024 return 0;
1025}
1026
1027int blk_throtl_init(struct request_queue *q)
1028{
1029 struct throtl_data *td;
1030 struct throtl_grp *tg;
1031
1032 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
1033 if (!td)
1034 return -ENOMEM;
1035
1036 INIT_HLIST_HEAD(&td->tg_list);
1037 td->tg_service_tree = THROTL_RB_ROOT;
Vivek Goyalde701c72011-03-07 21:09:32 +01001038 td->limits_changed = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001039
1040 /* Init root group */
1041 tg = &td->root_tg;
1042 INIT_HLIST_NODE(&tg->tg_node);
1043 RB_CLEAR_NODE(&tg->rb_node);
1044 bio_list_init(&tg->bio_lists[0]);
1045 bio_list_init(&tg->bio_lists[1]);
1046
1047 /* Practically unlimited BW */
1048 tg->bps[0] = tg->bps[1] = -1;
Vivek Goyal8e89d132010-09-15 17:06:37 -04001049 tg->iops[0] = tg->iops[1] = -1;
Vivek Goyalde701c72011-03-07 21:09:32 +01001050 td->limits_changed = false;
Vivek Goyal02977e42010-10-01 14:49:48 +02001051
1052 /*
1053 * Set root group reference to 2. One reference will be dropped when
1054 * all groups on tg_list are being deleted during queue exit. Other
1055 * reference will remain there as we don't want to delete this group
1056 * as it is statically allocated and gets destroyed when throtl_data
1057 * goes away.
1058 */
1059 atomic_set(&tg->ref, 2);
1060 hlist_add_head(&tg->tg_node, &td->tg_list);
1061 td->nr_undestroyed_grps++;
Vivek Goyale43473b2010-09-15 17:06:35 -04001062
1063 INIT_DELAYED_WORK(&td->throtl_work, blk_throtl_work);
1064
1065 rcu_read_lock();
1066 blkiocg_add_blkio_group(&blkio_root_cgroup, &tg->blkg, (void *)td,
1067 0, BLKIO_POLICY_THROTL);
1068 rcu_read_unlock();
1069
1070 /* Attach throtl data to request queue */
1071 td->queue = q;
1072 q->td = td;
1073 return 0;
1074}
1075
1076void blk_throtl_exit(struct request_queue *q)
1077{
1078 struct throtl_data *td = q->td;
1079 bool wait = false;
1080
1081 BUG_ON(!td);
1082
Vivek Goyalda527772011-03-02 19:05:33 -05001083 throtl_shutdown_wq(q);
Vivek Goyale43473b2010-09-15 17:06:35 -04001084
1085 spin_lock_irq(q->queue_lock);
1086 throtl_release_tgs(td);
Vivek Goyale43473b2010-09-15 17:06:35 -04001087
1088 /* If there are other groups */
Vivek Goyal02977e42010-10-01 14:49:48 +02001089 if (td->nr_undestroyed_grps > 0)
Vivek Goyale43473b2010-09-15 17:06:35 -04001090 wait = true;
1091
1092 spin_unlock_irq(q->queue_lock);
1093
1094 /*
1095 * Wait for tg->blkg->key accessors to exit their grace periods.
1096 * Do this wait only if there are other undestroyed groups out
1097 * there (other than root group). This can happen if cgroup deletion
1098 * path claimed the responsibility of cleaning up a group before
1099 * queue cleanup code get to the group.
1100 *
1101 * Do not call synchronize_rcu() unconditionally as there are drivers
1102 * which create/delete request queue hundreds of times during scan/boot
1103 * and synchronize_rcu() can take significant time and slow down boot.
1104 */
1105 if (wait)
1106 synchronize_rcu();
Vivek Goyalfe071432010-10-01 14:49:49 +02001107
1108 /*
1109 * Just being safe to make sure after previous flush if some body did
1110 * update limits through cgroup and another work got queued, cancel
1111 * it.
1112 */
Vivek Goyalda527772011-03-02 19:05:33 -05001113 throtl_shutdown_wq(q);
Vivek Goyale43473b2010-09-15 17:06:35 -04001114 throtl_td_free(td);
1115}
1116
1117static int __init throtl_init(void)
1118{
Vivek Goyal450adcb2011-03-01 13:40:54 -05001119 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
1120 if (!kthrotld_workqueue)
1121 panic("Failed to create kthrotld\n");
1122
Vivek Goyale43473b2010-09-15 17:06:35 -04001123 blkio_policy_register(&blkio_policy_throtl);
1124 return 0;
1125}
1126
1127module_init(throtl_init);