blob: 004964bb6fdd27b3aee3d3c0f6af39b9df6af976 [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"
Tejun Heobc9fcbf2011-10-19 14:31:18 +020013#include "blk.h"
Vivek Goyale43473b2010-09-15 17:06:35 -040014
15/* Max dispatch from a group in 1 round */
16static int throtl_grp_quantum = 8;
17
18/* Total max dispatch from all groups in one round */
19static int throtl_quantum = 32;
20
21/* Throttling is performed over 100ms slice and after that slice is renewed */
22static unsigned long throtl_slice = HZ/10; /* 100 ms */
23
Tejun Heo03814112012-03-05 13:15:14 -080024static struct blkio_policy_type blkio_policy_throtl;
25
Vivek Goyal450adcb2011-03-01 13:40:54 -050026/* A workqueue to queue throttle related work */
27static struct workqueue_struct *kthrotld_workqueue;
28static void throtl_schedule_delayed_work(struct throtl_data *td,
29 unsigned long delay);
30
Vivek Goyale43473b2010-09-15 17:06:35 -040031struct throtl_rb_root {
32 struct rb_root rb;
33 struct rb_node *left;
34 unsigned int count;
35 unsigned long min_disptime;
36};
37
38#define THROTL_RB_ROOT (struct throtl_rb_root) { .rb = RB_ROOT, .left = NULL, \
39 .count = 0, .min_disptime = 0}
40
41#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
42
Tejun Heo8a3d2612012-04-01 14:38:44 -070043/* Per-cpu group stats */
44struct tg_stats_cpu {
45 /* total bytes transferred */
46 struct blkg_rwstat service_bytes;
47 /* total IOs serviced, post merge */
48 struct blkg_rwstat serviced;
49};
50
Vivek Goyale43473b2010-09-15 17:06:35 -040051struct throtl_grp {
Vivek Goyale43473b2010-09-15 17:06:35 -040052 /* active throtl group service_tree member */
53 struct rb_node rb_node;
54
55 /*
56 * Dispatch time in jiffies. This is the estimated time when group
57 * will unthrottle and is ready to dispatch more bio. It is used as
58 * key to sort active groups in service tree.
59 */
60 unsigned long disptime;
61
Vivek Goyale43473b2010-09-15 17:06:35 -040062 unsigned int flags;
63
64 /* Two lists for READ and WRITE */
65 struct bio_list bio_lists[2];
66
67 /* Number of queued bios on READ and WRITE lists */
68 unsigned int nr_queued[2];
69
70 /* bytes per second rate limits */
71 uint64_t bps[2];
72
Vivek Goyal8e89d132010-09-15 17:06:37 -040073 /* IOPS limits */
74 unsigned int iops[2];
75
Vivek Goyale43473b2010-09-15 17:06:35 -040076 /* Number of bytes disptached in current slice */
77 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -040078 /* Number of bio's dispatched in current slice */
79 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -040080
81 /* When did we start a new slice */
82 unsigned long slice_start[2];
83 unsigned long slice_end[2];
Vivek Goyalfe071432010-10-01 14:49:49 +020084
85 /* Some throttle limits got updated for the group */
Andreas Schwab6f037932011-03-30 12:21:56 +020086 int limits_changed;
Tejun Heo8a3d2612012-04-01 14:38:44 -070087
88 /* Per cpu stats pointer */
89 struct tg_stats_cpu __percpu *stats_cpu;
90
91 /* List of tgs waiting for per cpu stats memory to be allocated */
92 struct list_head stats_alloc_node;
Vivek Goyale43473b2010-09-15 17:06:35 -040093};
94
95struct throtl_data
96{
Vivek Goyale43473b2010-09-15 17:06:35 -040097 /* service tree for active throtl groups */
98 struct throtl_rb_root tg_service_tree;
99
Vivek Goyal29b12582011-05-19 15:38:24 -0400100 struct throtl_grp *root_tg;
Vivek Goyale43473b2010-09-15 17:06:35 -0400101 struct request_queue *queue;
102
103 /* Total Number of queued bios on READ and WRITE lists */
104 unsigned int nr_queued[2];
105
106 /*
Vivek Goyal02977e42010-10-01 14:49:48 +0200107 * number of total undestroyed groups
Vivek Goyale43473b2010-09-15 17:06:35 -0400108 */
109 unsigned int nr_undestroyed_grps;
110
111 /* Work for dispatching throttled bios */
112 struct delayed_work throtl_work;
Vivek Goyalfe071432010-10-01 14:49:49 +0200113
Andreas Schwab6f037932011-03-30 12:21:56 +0200114 int limits_changed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400115};
116
Tejun Heo8a3d2612012-04-01 14:38:44 -0700117/* list and work item to allocate percpu group stats */
118static DEFINE_SPINLOCK(tg_stats_alloc_lock);
119static LIST_HEAD(tg_stats_alloc_list);
120
121static void tg_stats_alloc_fn(struct work_struct *);
122static DECLARE_DELAYED_WORK(tg_stats_alloc_work, tg_stats_alloc_fn);
123
Tejun Heo03814112012-03-05 13:15:14 -0800124static inline struct throtl_grp *blkg_to_tg(struct blkio_group *blkg)
125{
126 return blkg_to_pdata(blkg, &blkio_policy_throtl);
127}
128
129static inline struct blkio_group *tg_to_blkg(struct throtl_grp *tg)
130{
Tejun Heoaaec55a2012-04-01 14:38:42 -0700131 return pdata_to_blkg(tg);
Tejun Heo03814112012-03-05 13:15:14 -0800132}
133
Vivek Goyale43473b2010-09-15 17:06:35 -0400134enum tg_state_flags {
135 THROTL_TG_FLAG_on_rr = 0, /* on round-robin busy list */
136};
137
138#define THROTL_TG_FNS(name) \
139static inline void throtl_mark_tg_##name(struct throtl_grp *tg) \
140{ \
141 (tg)->flags |= (1 << THROTL_TG_FLAG_##name); \
142} \
143static inline void throtl_clear_tg_##name(struct throtl_grp *tg) \
144{ \
145 (tg)->flags &= ~(1 << THROTL_TG_FLAG_##name); \
146} \
147static inline int throtl_tg_##name(const struct throtl_grp *tg) \
148{ \
149 return ((tg)->flags & (1 << THROTL_TG_FLAG_##name)) != 0; \
150}
151
152THROTL_TG_FNS(on_rr);
153
154#define throtl_log_tg(td, tg, fmt, args...) \
155 blk_add_trace_msg((td)->queue, "throtl %s " fmt, \
Tejun Heo03814112012-03-05 13:15:14 -0800156 blkg_path(tg_to_blkg(tg)), ##args); \
Vivek Goyale43473b2010-09-15 17:06:35 -0400157
158#define throtl_log(td, fmt, args...) \
159 blk_add_trace_msg((td)->queue, "throtl " fmt, ##args)
160
Joe Perchesd2f31a52011-06-13 20:19:27 +0200161static inline unsigned int total_nr_queued(struct throtl_data *td)
Vivek Goyale43473b2010-09-15 17:06:35 -0400162{
Joe Perchesd2f31a52011-06-13 20:19:27 +0200163 return td->nr_queued[0] + td->nr_queued[1];
Vivek Goyale43473b2010-09-15 17:06:35 -0400164}
165
Tejun Heo8a3d2612012-04-01 14:38:44 -0700166/*
167 * Worker for allocating per cpu stat for tgs. This is scheduled on the
168 * system_nrt_wq once there are some groups on the alloc_list waiting for
169 * allocation.
170 */
171static void tg_stats_alloc_fn(struct work_struct *work)
172{
173 static struct tg_stats_cpu *stats_cpu; /* this fn is non-reentrant */
174 struct delayed_work *dwork = to_delayed_work(work);
175 bool empty = false;
176
177alloc_stats:
178 if (!stats_cpu) {
179 stats_cpu = alloc_percpu(struct tg_stats_cpu);
180 if (!stats_cpu) {
181 /* allocation failed, try again after some time */
182 queue_delayed_work(system_nrt_wq, dwork,
183 msecs_to_jiffies(10));
184 return;
185 }
186 }
187
188 spin_lock_irq(&tg_stats_alloc_lock);
189
190 if (!list_empty(&tg_stats_alloc_list)) {
191 struct throtl_grp *tg = list_first_entry(&tg_stats_alloc_list,
192 struct throtl_grp,
193 stats_alloc_node);
194 swap(tg->stats_cpu, stats_cpu);
195 list_del_init(&tg->stats_alloc_node);
196 }
197
198 empty = list_empty(&tg_stats_alloc_list);
199 spin_unlock_irq(&tg_stats_alloc_lock);
200 if (!empty)
201 goto alloc_stats;
202}
203
Tejun Heo03814112012-03-05 13:15:14 -0800204static void throtl_init_blkio_group(struct blkio_group *blkg)
Vivek Goyala29a1712011-05-19 15:38:19 -0400205{
Tejun Heo03814112012-03-05 13:15:14 -0800206 struct throtl_grp *tg = blkg_to_tg(blkg);
Tejun Heocd1604f2012-03-05 13:15:06 -0800207
Vivek Goyala29a1712011-05-19 15:38:19 -0400208 RB_CLEAR_NODE(&tg->rb_node);
209 bio_list_init(&tg->bio_lists[0]);
210 bio_list_init(&tg->bio_lists[1]);
211 tg->limits_changed = false;
212
Tejun Heoe56da7e2012-03-05 13:15:07 -0800213 tg->bps[READ] = -1;
214 tg->bps[WRITE] = -1;
215 tg->iops[READ] = -1;
216 tg->iops[WRITE] = -1;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700217
218 /*
219 * Ugh... We need to perform per-cpu allocation for tg->stats_cpu
220 * but percpu allocator can't be called from IO path. Queue tg on
221 * tg_stats_alloc_list and allocate from work item.
222 */
223 spin_lock(&tg_stats_alloc_lock);
224 list_add(&tg->stats_alloc_node, &tg_stats_alloc_list);
225 queue_delayed_work(system_nrt_wq, &tg_stats_alloc_work, 0);
226 spin_unlock(&tg_stats_alloc_lock);
227}
228
229static void throtl_exit_blkio_group(struct blkio_group *blkg)
230{
231 struct throtl_grp *tg = blkg_to_tg(blkg);
232
233 spin_lock(&tg_stats_alloc_lock);
234 list_del_init(&tg->stats_alloc_node);
235 spin_unlock(&tg_stats_alloc_lock);
236
237 free_percpu(tg->stats_cpu);
238}
239
240static void throtl_reset_group_stats(struct blkio_group *blkg)
241{
242 struct throtl_grp *tg = blkg_to_tg(blkg);
243 int cpu;
244
245 if (tg->stats_cpu == NULL)
246 return;
247
248 for_each_possible_cpu(cpu) {
249 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
250
251 blkg_rwstat_reset(&sc->service_bytes);
252 blkg_rwstat_reset(&sc->serviced);
253 }
Vivek Goyala29a1712011-05-19 15:38:19 -0400254}
255
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400256static struct
Tejun Heocd1604f2012-03-05 13:15:06 -0800257throtl_grp *throtl_lookup_tg(struct throtl_data *td, struct blkio_cgroup *blkcg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400258{
Vivek Goyale43473b2010-09-15 17:06:35 -0400259 /*
Vivek Goyalbe2c6b12011-01-19 08:25:02 -0700260 * This is the common case when there are no blkio cgroups.
Tejun Heocd1604f2012-03-05 13:15:06 -0800261 * Avoid lookup in this case
262 */
Vivek Goyalbe2c6b12011-01-19 08:25:02 -0700263 if (blkcg == &blkio_root_cgroup)
Tejun Heo7a4dd282012-03-05 13:15:09 -0800264 return td->root_tg;
Vivek Goyale43473b2010-09-15 17:06:35 -0400265
Tejun Heoe8989fa2012-03-05 13:15:20 -0800266 return blkg_to_tg(blkg_lookup(blkcg, td->queue));
Vivek Goyale43473b2010-09-15 17:06:35 -0400267}
268
Tejun Heocd1604f2012-03-05 13:15:06 -0800269static struct throtl_grp *throtl_lookup_create_tg(struct throtl_data *td,
270 struct blkio_cgroup *blkcg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400271{
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400272 struct request_queue *q = td->queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800273 struct throtl_grp *tg = NULL;
Tejun Heo0a5a7d02012-03-05 13:15:02 -0800274
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400275 /*
Tejun Heocd1604f2012-03-05 13:15:06 -0800276 * This is the common case when there are no blkio cgroups.
277 * Avoid lookup in this case
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400278 */
Tejun Heocd1604f2012-03-05 13:15:06 -0800279 if (blkcg == &blkio_root_cgroup) {
Vivek Goyal29b12582011-05-19 15:38:24 -0400280 tg = td->root_tg;
Tejun Heocd1604f2012-03-05 13:15:06 -0800281 } else {
282 struct blkio_group *blkg;
283
Tejun Heoaaec55a2012-04-01 14:38:42 -0700284 blkg = blkg_lookup_create(blkcg, q, false);
Tejun Heocd1604f2012-03-05 13:15:06 -0800285
286 /* if %NULL and @q is alive, fall back to root_tg */
287 if (!IS_ERR(blkg))
Tejun Heo03814112012-03-05 13:15:14 -0800288 tg = blkg_to_tg(blkg);
Tejun Heocd1604f2012-03-05 13:15:06 -0800289 else if (!blk_queue_dead(q))
290 tg = td->root_tg;
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400291 }
292
Vivek Goyale43473b2010-09-15 17:06:35 -0400293 return tg;
294}
295
296static struct throtl_grp *throtl_rb_first(struct throtl_rb_root *root)
297{
298 /* Service tree is empty */
299 if (!root->count)
300 return NULL;
301
302 if (!root->left)
303 root->left = rb_first(&root->rb);
304
305 if (root->left)
306 return rb_entry_tg(root->left);
307
308 return NULL;
309}
310
311static void rb_erase_init(struct rb_node *n, struct rb_root *root)
312{
313 rb_erase(n, root);
314 RB_CLEAR_NODE(n);
315}
316
317static void throtl_rb_erase(struct rb_node *n, struct throtl_rb_root *root)
318{
319 if (root->left == n)
320 root->left = NULL;
321 rb_erase_init(n, &root->rb);
322 --root->count;
323}
324
325static void update_min_dispatch_time(struct throtl_rb_root *st)
326{
327 struct throtl_grp *tg;
328
329 tg = throtl_rb_first(st);
330 if (!tg)
331 return;
332
333 st->min_disptime = tg->disptime;
334}
335
336static void
337tg_service_tree_add(struct throtl_rb_root *st, struct throtl_grp *tg)
338{
339 struct rb_node **node = &st->rb.rb_node;
340 struct rb_node *parent = NULL;
341 struct throtl_grp *__tg;
342 unsigned long key = tg->disptime;
343 int left = 1;
344
345 while (*node != NULL) {
346 parent = *node;
347 __tg = rb_entry_tg(parent);
348
349 if (time_before(key, __tg->disptime))
350 node = &parent->rb_left;
351 else {
352 node = &parent->rb_right;
353 left = 0;
354 }
355 }
356
357 if (left)
358 st->left = &tg->rb_node;
359
360 rb_link_node(&tg->rb_node, parent, node);
361 rb_insert_color(&tg->rb_node, &st->rb);
362}
363
364static void __throtl_enqueue_tg(struct throtl_data *td, struct throtl_grp *tg)
365{
366 struct throtl_rb_root *st = &td->tg_service_tree;
367
368 tg_service_tree_add(st, tg);
369 throtl_mark_tg_on_rr(tg);
370 st->count++;
371}
372
373static void throtl_enqueue_tg(struct throtl_data *td, struct throtl_grp *tg)
374{
375 if (!throtl_tg_on_rr(tg))
376 __throtl_enqueue_tg(td, tg);
377}
378
379static void __throtl_dequeue_tg(struct throtl_data *td, struct throtl_grp *tg)
380{
381 throtl_rb_erase(&tg->rb_node, &td->tg_service_tree);
382 throtl_clear_tg_on_rr(tg);
383}
384
385static void throtl_dequeue_tg(struct throtl_data *td, struct throtl_grp *tg)
386{
387 if (throtl_tg_on_rr(tg))
388 __throtl_dequeue_tg(td, tg);
389}
390
391static void throtl_schedule_next_dispatch(struct throtl_data *td)
392{
393 struct throtl_rb_root *st = &td->tg_service_tree;
394
395 /*
396 * If there are more bios pending, schedule more work.
397 */
398 if (!total_nr_queued(td))
399 return;
400
401 BUG_ON(!st->count);
402
403 update_min_dispatch_time(st);
404
405 if (time_before_eq(st->min_disptime, jiffies))
Vivek Goyal450adcb2011-03-01 13:40:54 -0500406 throtl_schedule_delayed_work(td, 0);
Vivek Goyale43473b2010-09-15 17:06:35 -0400407 else
Vivek Goyal450adcb2011-03-01 13:40:54 -0500408 throtl_schedule_delayed_work(td, (st->min_disptime - jiffies));
Vivek Goyale43473b2010-09-15 17:06:35 -0400409}
410
411static inline void
412throtl_start_new_slice(struct throtl_data *td, struct throtl_grp *tg, bool rw)
413{
414 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400415 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400416 tg->slice_start[rw] = jiffies;
417 tg->slice_end[rw] = jiffies + throtl_slice;
418 throtl_log_tg(td, tg, "[%c] new slice start=%lu end=%lu jiffies=%lu",
419 rw == READ ? 'R' : 'W', tg->slice_start[rw],
420 tg->slice_end[rw], jiffies);
421}
422
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100423static inline void throtl_set_slice_end(struct throtl_data *td,
424 struct throtl_grp *tg, bool rw, unsigned long jiffy_end)
425{
426 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
427}
428
Vivek Goyale43473b2010-09-15 17:06:35 -0400429static inline void throtl_extend_slice(struct throtl_data *td,
430 struct throtl_grp *tg, bool rw, unsigned long jiffy_end)
431{
432 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
433 throtl_log_tg(td, tg, "[%c] extend slice start=%lu end=%lu jiffies=%lu",
434 rw == READ ? 'R' : 'W', tg->slice_start[rw],
435 tg->slice_end[rw], jiffies);
436}
437
438/* Determine if previously allocated or extended slice is complete or not */
439static bool
440throtl_slice_used(struct throtl_data *td, struct throtl_grp *tg, bool rw)
441{
442 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
443 return 0;
444
445 return 1;
446}
447
448/* Trim the used slices and adjust slice start accordingly */
449static inline void
450throtl_trim_slice(struct throtl_data *td, struct throtl_grp *tg, bool rw)
451{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200452 unsigned long nr_slices, time_elapsed, io_trim;
453 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400454
455 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
456
457 /*
458 * If bps are unlimited (-1), then time slice don't get
459 * renewed. Don't try to trim the slice if slice is used. A new
460 * slice will start when appropriate.
461 */
462 if (throtl_slice_used(td, tg, rw))
463 return;
464
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100465 /*
466 * A bio has been dispatched. Also adjust slice_end. It might happen
467 * that initially cgroup limit was very low resulting in high
468 * slice_end, but later limit was bumped up and bio was dispached
469 * sooner, then we need to reduce slice_end. A high bogus slice_end
470 * is bad because it does not allow new slice to start.
471 */
472
473 throtl_set_slice_end(td, tg, rw, jiffies + throtl_slice);
474
Vivek Goyale43473b2010-09-15 17:06:35 -0400475 time_elapsed = jiffies - tg->slice_start[rw];
476
477 nr_slices = time_elapsed / throtl_slice;
478
479 if (!nr_slices)
480 return;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200481 tmp = tg->bps[rw] * throtl_slice * nr_slices;
482 do_div(tmp, HZ);
483 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400484
Vivek Goyal8e89d132010-09-15 17:06:37 -0400485 io_trim = (tg->iops[rw] * throtl_slice * nr_slices)/HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400486
Vivek Goyal8e89d132010-09-15 17:06:37 -0400487 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400488 return;
489
490 if (tg->bytes_disp[rw] >= bytes_trim)
491 tg->bytes_disp[rw] -= bytes_trim;
492 else
493 tg->bytes_disp[rw] = 0;
494
Vivek Goyal8e89d132010-09-15 17:06:37 -0400495 if (tg->io_disp[rw] >= io_trim)
496 tg->io_disp[rw] -= io_trim;
497 else
498 tg->io_disp[rw] = 0;
499
Vivek Goyale43473b2010-09-15 17:06:35 -0400500 tg->slice_start[rw] += nr_slices * throtl_slice;
501
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200502 throtl_log_tg(td, tg, "[%c] trim slice nr=%lu bytes=%llu io=%lu"
Vivek Goyale43473b2010-09-15 17:06:35 -0400503 " start=%lu end=%lu jiffies=%lu",
Vivek Goyal8e89d132010-09-15 17:06:37 -0400504 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
Vivek Goyale43473b2010-09-15 17:06:35 -0400505 tg->slice_start[rw], tg->slice_end[rw], jiffies);
506}
507
Vivek Goyal8e89d132010-09-15 17:06:37 -0400508static bool tg_with_in_iops_limit(struct throtl_data *td, struct throtl_grp *tg,
509 struct bio *bio, unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400510{
511 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400512 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400513 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200514 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400515
Vivek Goyal8e89d132010-09-15 17:06:37 -0400516 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400517
Vivek Goyal8e89d132010-09-15 17:06:37 -0400518 /* Slice has just started. Consider one slice interval */
519 if (!jiffy_elapsed)
520 jiffy_elapsed_rnd = throtl_slice;
521
522 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
523
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200524 /*
525 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
526 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
527 * will allow dispatch after 1 second and after that slice should
528 * have been trimmed.
529 */
530
531 tmp = (u64)tg->iops[rw] * jiffy_elapsed_rnd;
532 do_div(tmp, HZ);
533
534 if (tmp > UINT_MAX)
535 io_allowed = UINT_MAX;
536 else
537 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400538
539 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400540 if (wait)
541 *wait = 0;
542 return 1;
543 }
544
Vivek Goyal8e89d132010-09-15 17:06:37 -0400545 /* Calc approx time to dispatch */
546 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ)/tg->iops[rw] + 1;
547
548 if (jiffy_wait > jiffy_elapsed)
549 jiffy_wait = jiffy_wait - jiffy_elapsed;
550 else
551 jiffy_wait = 1;
552
553 if (wait)
554 *wait = jiffy_wait;
555 return 0;
556}
557
558static bool tg_with_in_bps_limit(struct throtl_data *td, struct throtl_grp *tg,
559 struct bio *bio, unsigned long *wait)
560{
561 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200562 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400563 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400564
565 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
566
567 /* Slice has just started. Consider one slice interval */
568 if (!jiffy_elapsed)
569 jiffy_elapsed_rnd = throtl_slice;
570
571 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
572
Vivek Goyal5e901a22010-10-01 21:16:38 +0200573 tmp = tg->bps[rw] * jiffy_elapsed_rnd;
574 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200575 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400576
577 if (tg->bytes_disp[rw] + bio->bi_size <= bytes_allowed) {
578 if (wait)
579 *wait = 0;
580 return 1;
581 }
582
583 /* Calc approx time to dispatch */
584 extra_bytes = tg->bytes_disp[rw] + bio->bi_size - bytes_allowed;
585 jiffy_wait = div64_u64(extra_bytes * HZ, tg->bps[rw]);
586
587 if (!jiffy_wait)
588 jiffy_wait = 1;
589
590 /*
591 * This wait time is without taking into consideration the rounding
592 * up we did. Add that time also.
593 */
594 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400595 if (wait)
596 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400597 return 0;
598}
Vivek Goyale43473b2010-09-15 17:06:35 -0400599
Vivek Goyalaf75cd32011-05-19 15:38:31 -0400600static bool tg_no_rule_group(struct throtl_grp *tg, bool rw) {
601 if (tg->bps[rw] == -1 && tg->iops[rw] == -1)
602 return 1;
603 return 0;
604}
605
Vivek Goyal8e89d132010-09-15 17:06:37 -0400606/*
607 * Returns whether one can dispatch a bio or not. Also returns approx number
608 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
609 */
610static bool tg_may_dispatch(struct throtl_data *td, struct throtl_grp *tg,
611 struct bio *bio, unsigned long *wait)
612{
613 bool rw = bio_data_dir(bio);
614 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
615
616 /*
617 * Currently whole state machine of group depends on first bio
618 * queued in the group bio list. So one should not be calling
619 * this function with a different bio if there are other bios
620 * queued.
621 */
622 BUG_ON(tg->nr_queued[rw] && bio != bio_list_peek(&tg->bio_lists[rw]));
623
624 /* If tg->bps = -1, then BW is unlimited */
625 if (tg->bps[rw] == -1 && tg->iops[rw] == -1) {
626 if (wait)
627 *wait = 0;
628 return 1;
629 }
630
631 /*
632 * If previous slice expired, start a new one otherwise renew/extend
633 * existing slice to make sure it is at least throtl_slice interval
634 * long since now.
635 */
636 if (throtl_slice_used(td, tg, rw))
637 throtl_start_new_slice(td, tg, rw);
638 else {
639 if (time_before(tg->slice_end[rw], jiffies + throtl_slice))
640 throtl_extend_slice(td, tg, rw, jiffies + throtl_slice);
641 }
642
643 if (tg_with_in_bps_limit(td, tg, bio, &bps_wait)
644 && tg_with_in_iops_limit(td, tg, bio, &iops_wait)) {
645 if (wait)
646 *wait = 0;
647 return 1;
648 }
649
650 max_wait = max(bps_wait, iops_wait);
651
652 if (wait)
653 *wait = max_wait;
654
655 if (time_before(tg->slice_end[rw], jiffies + max_wait))
656 throtl_extend_slice(td, tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -0400657
658 return 0;
659}
660
Tejun Heo629ed0b2012-04-01 14:38:44 -0700661static void throtl_update_dispatch_stats(struct blkio_group *blkg, u64 bytes,
662 int rw)
663{
Tejun Heo8a3d2612012-04-01 14:38:44 -0700664 struct throtl_grp *tg = blkg_to_tg(blkg);
665 struct tg_stats_cpu *stats_cpu;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700666 unsigned long flags;
667
668 /* If per cpu stats are not allocated yet, don't do any accounting. */
Tejun Heo8a3d2612012-04-01 14:38:44 -0700669 if (tg->stats_cpu == NULL)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700670 return;
671
672 /*
673 * Disabling interrupts to provide mutual exclusion between two
674 * writes on same cpu. It probably is not needed for 64bit. Not
675 * optimizing that case yet.
676 */
677 local_irq_save(flags);
678
Tejun Heo8a3d2612012-04-01 14:38:44 -0700679 stats_cpu = this_cpu_ptr(tg->stats_cpu);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700680
Tejun Heo629ed0b2012-04-01 14:38:44 -0700681 blkg_rwstat_add(&stats_cpu->serviced, rw, 1);
682 blkg_rwstat_add(&stats_cpu->service_bytes, rw, bytes);
683
684 local_irq_restore(flags);
685}
686
Vivek Goyale43473b2010-09-15 17:06:35 -0400687static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
688{
689 bool rw = bio_data_dir(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400690
691 /* Charge the bio to the group */
692 tg->bytes_disp[rw] += bio->bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400693 tg->io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400694
Tejun Heo629ed0b2012-04-01 14:38:44 -0700695 throtl_update_dispatch_stats(tg_to_blkg(tg), bio->bi_size, bio->bi_rw);
Vivek Goyale43473b2010-09-15 17:06:35 -0400696}
697
698static void throtl_add_bio_tg(struct throtl_data *td, struct throtl_grp *tg,
699 struct bio *bio)
700{
701 bool rw = bio_data_dir(bio);
702
703 bio_list_add(&tg->bio_lists[rw], bio);
704 /* Take a bio reference on tg */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800705 blkg_get(tg_to_blkg(tg));
Vivek Goyale43473b2010-09-15 17:06:35 -0400706 tg->nr_queued[rw]++;
707 td->nr_queued[rw]++;
708 throtl_enqueue_tg(td, tg);
709}
710
711static void tg_update_disptime(struct throtl_data *td, struct throtl_grp *tg)
712{
713 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
714 struct bio *bio;
715
716 if ((bio = bio_list_peek(&tg->bio_lists[READ])))
717 tg_may_dispatch(td, tg, bio, &read_wait);
718
719 if ((bio = bio_list_peek(&tg->bio_lists[WRITE])))
720 tg_may_dispatch(td, tg, bio, &write_wait);
721
722 min_wait = min(read_wait, write_wait);
723 disptime = jiffies + min_wait;
724
Vivek Goyale43473b2010-09-15 17:06:35 -0400725 /* Update dispatch time */
726 throtl_dequeue_tg(td, tg);
727 tg->disptime = disptime;
728 throtl_enqueue_tg(td, tg);
729}
730
731static void tg_dispatch_one_bio(struct throtl_data *td, struct throtl_grp *tg,
732 bool rw, struct bio_list *bl)
733{
734 struct bio *bio;
735
736 bio = bio_list_pop(&tg->bio_lists[rw]);
737 tg->nr_queued[rw]--;
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800738 /* Drop bio reference on blkg */
739 blkg_put(tg_to_blkg(tg));
Vivek Goyale43473b2010-09-15 17:06:35 -0400740
741 BUG_ON(td->nr_queued[rw] <= 0);
742 td->nr_queued[rw]--;
743
744 throtl_charge_bio(tg, bio);
745 bio_list_add(bl, bio);
746 bio->bi_rw |= REQ_THROTTLED;
747
748 throtl_trim_slice(td, tg, rw);
749}
750
751static int throtl_dispatch_tg(struct throtl_data *td, struct throtl_grp *tg,
752 struct bio_list *bl)
753{
754 unsigned int nr_reads = 0, nr_writes = 0;
755 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +0100756 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -0400757 struct bio *bio;
758
759 /* Try to dispatch 75% READS and 25% WRITES */
760
761 while ((bio = bio_list_peek(&tg->bio_lists[READ]))
762 && tg_may_dispatch(td, tg, bio, NULL)) {
763
764 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), bl);
765 nr_reads++;
766
767 if (nr_reads >= max_nr_reads)
768 break;
769 }
770
771 while ((bio = bio_list_peek(&tg->bio_lists[WRITE]))
772 && tg_may_dispatch(td, tg, bio, NULL)) {
773
774 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), bl);
775 nr_writes++;
776
777 if (nr_writes >= max_nr_writes)
778 break;
779 }
780
781 return nr_reads + nr_writes;
782}
783
784static int throtl_select_dispatch(struct throtl_data *td, struct bio_list *bl)
785{
786 unsigned int nr_disp = 0;
787 struct throtl_grp *tg;
788 struct throtl_rb_root *st = &td->tg_service_tree;
789
790 while (1) {
791 tg = throtl_rb_first(st);
792
793 if (!tg)
794 break;
795
796 if (time_before(jiffies, tg->disptime))
797 break;
798
799 throtl_dequeue_tg(td, tg);
800
801 nr_disp += throtl_dispatch_tg(td, tg, bl);
802
803 if (tg->nr_queued[0] || tg->nr_queued[1]) {
804 tg_update_disptime(td, tg);
805 throtl_enqueue_tg(td, tg);
806 }
807
808 if (nr_disp >= throtl_quantum)
809 break;
810 }
811
812 return nr_disp;
813}
814
Vivek Goyalfe071432010-10-01 14:49:49 +0200815static void throtl_process_limit_change(struct throtl_data *td)
816{
Tejun Heo4eef3042012-03-05 13:15:18 -0800817 struct request_queue *q = td->queue;
818 struct blkio_group *blkg, *n;
Vivek Goyalfe071432010-10-01 14:49:49 +0200819
Vivek Goyalde701c72011-03-07 21:09:32 +0100820 if (!td->limits_changed)
Vivek Goyalfe071432010-10-01 14:49:49 +0200821 return;
822
Vivek Goyalde701c72011-03-07 21:09:32 +0100823 xchg(&td->limits_changed, false);
Vivek Goyalfe071432010-10-01 14:49:49 +0200824
Vivek Goyalde701c72011-03-07 21:09:32 +0100825 throtl_log(td, "limits changed");
Vivek Goyalfe071432010-10-01 14:49:49 +0200826
Tejun Heoe8989fa2012-03-05 13:15:20 -0800827 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo4eef3042012-03-05 13:15:18 -0800828 struct throtl_grp *tg = blkg_to_tg(blkg);
829
Vivek Goyalde701c72011-03-07 21:09:32 +0100830 if (!tg->limits_changed)
831 continue;
Vivek Goyalfe071432010-10-01 14:49:49 +0200832
Vivek Goyalde701c72011-03-07 21:09:32 +0100833 if (!xchg(&tg->limits_changed, false))
834 continue;
835
836 throtl_log_tg(td, tg, "limit change rbps=%llu wbps=%llu"
837 " riops=%u wiops=%u", tg->bps[READ], tg->bps[WRITE],
838 tg->iops[READ], tg->iops[WRITE]);
839
Vivek Goyal04521db2011-03-22 21:54:29 +0100840 /*
841 * Restart the slices for both READ and WRITES. It
842 * might happen that a group's limit are dropped
843 * suddenly and we don't want to account recently
844 * dispatched IO with new low rate
845 */
846 throtl_start_new_slice(td, tg, 0);
847 throtl_start_new_slice(td, tg, 1);
848
Vivek Goyalde701c72011-03-07 21:09:32 +0100849 if (throtl_tg_on_rr(tg))
850 tg_update_disptime(td, tg);
851 }
Vivek Goyalfe071432010-10-01 14:49:49 +0200852}
853
Vivek Goyale43473b2010-09-15 17:06:35 -0400854/* Dispatch throttled bios. Should be called without queue lock held. */
855static int throtl_dispatch(struct request_queue *q)
856{
857 struct throtl_data *td = q->td;
858 unsigned int nr_disp = 0;
859 struct bio_list bio_list_on_stack;
860 struct bio *bio;
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100861 struct blk_plug plug;
Vivek Goyale43473b2010-09-15 17:06:35 -0400862
863 spin_lock_irq(q->queue_lock);
864
Vivek Goyalfe071432010-10-01 14:49:49 +0200865 throtl_process_limit_change(td);
866
Vivek Goyale43473b2010-09-15 17:06:35 -0400867 if (!total_nr_queued(td))
868 goto out;
869
870 bio_list_init(&bio_list_on_stack);
871
Joe Perchesd2f31a52011-06-13 20:19:27 +0200872 throtl_log(td, "dispatch nr_queued=%u read=%u write=%u",
Vivek Goyale43473b2010-09-15 17:06:35 -0400873 total_nr_queued(td), td->nr_queued[READ],
874 td->nr_queued[WRITE]);
875
876 nr_disp = throtl_select_dispatch(td, &bio_list_on_stack);
877
878 if (nr_disp)
879 throtl_log(td, "bios disp=%u", nr_disp);
880
881 throtl_schedule_next_dispatch(td);
882out:
883 spin_unlock_irq(q->queue_lock);
884
885 /*
886 * If we dispatched some requests, unplug the queue to make sure
887 * immediate dispatch
888 */
889 if (nr_disp) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100890 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -0400891 while((bio = bio_list_pop(&bio_list_on_stack)))
892 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100893 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -0400894 }
895 return nr_disp;
896}
897
898void blk_throtl_work(struct work_struct *work)
899{
900 struct throtl_data *td = container_of(work, struct throtl_data,
901 throtl_work.work);
902 struct request_queue *q = td->queue;
903
904 throtl_dispatch(q);
905}
906
907/* Call with queue lock held */
Vivek Goyal450adcb2011-03-01 13:40:54 -0500908static void
909throtl_schedule_delayed_work(struct throtl_data *td, unsigned long delay)
Vivek Goyale43473b2010-09-15 17:06:35 -0400910{
911
Vivek Goyale43473b2010-09-15 17:06:35 -0400912 struct delayed_work *dwork = &td->throtl_work;
913
Vivek Goyal04521db2011-03-22 21:54:29 +0100914 /* schedule work if limits changed even if no bio is queued */
Joe Perchesd2f31a52011-06-13 20:19:27 +0200915 if (total_nr_queued(td) || td->limits_changed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400916 /*
917 * We might have a work scheduled to be executed in future.
918 * Cancel that and schedule a new one.
919 */
920 __cancel_delayed_work(dwork);
Vivek Goyal450adcb2011-03-01 13:40:54 -0500921 queue_delayed_work(kthrotld_workqueue, dwork, delay);
Vivek Goyale43473b2010-09-15 17:06:35 -0400922 throtl_log(td, "schedule work. delay=%lu jiffies=%lu",
923 delay, jiffies);
924 }
925}
Vivek Goyale43473b2010-09-15 17:06:35 -0400926
Tejun Heo8a3d2612012-04-01 14:38:44 -0700927static u64 tg_prfill_cpu_rwstat(struct seq_file *sf,
928 struct blkg_policy_data *pd, int off)
Tejun Heo41b38b62012-04-01 14:38:44 -0700929{
Tejun Heo8a3d2612012-04-01 14:38:44 -0700930 struct throtl_grp *tg = (void *)pd->pdata;
Tejun Heo41b38b62012-04-01 14:38:44 -0700931 struct blkg_rwstat rwstat = { }, tmp;
932 int i, cpu;
933
934 for_each_possible_cpu(cpu) {
Tejun Heo8a3d2612012-04-01 14:38:44 -0700935 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
Tejun Heo41b38b62012-04-01 14:38:44 -0700936
937 tmp = blkg_rwstat_read((void *)sc + off);
938 for (i = 0; i < BLKG_RWSTAT_NR; i++)
939 rwstat.cnt[i] += tmp.cnt[i];
940 }
941
942 return __blkg_prfill_rwstat(sf, pd, &rwstat);
943}
944
945/* print per-cpu blkg_rwstat specified by BLKCG_STAT_PRIV() */
Tejun Heo8a3d2612012-04-01 14:38:44 -0700946static int tg_print_cpu_rwstat(struct cgroup *cgrp, struct cftype *cft,
947 struct seq_file *sf)
Tejun Heo41b38b62012-04-01 14:38:44 -0700948{
949 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgrp);
950
Tejun Heo8a3d2612012-04-01 14:38:44 -0700951 blkcg_print_blkgs(sf, blkcg, tg_prfill_cpu_rwstat,
Tejun Heo41b38b62012-04-01 14:38:44 -0700952 BLKCG_STAT_POL(cft->private),
953 BLKCG_STAT_OFF(cft->private), true);
954 return 0;
955}
956
Tejun Heoaf133ce2012-04-01 14:38:44 -0700957static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
958 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700959{
Tejun Heoaf133ce2012-04-01 14:38:44 -0700960 u64 v = *(u64 *)((void *)pd->pdata + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700961
Tejun Heoaf133ce2012-04-01 14:38:44 -0700962 if (v == -1)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700963 return 0;
964 return __blkg_prfill_u64(sf, pd, v);
965}
966
Tejun Heoaf133ce2012-04-01 14:38:44 -0700967static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
968 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700969{
Tejun Heoaf133ce2012-04-01 14:38:44 -0700970 unsigned int v = *(unsigned int *)((void *)pd->pdata + off);
971
972 if (v == -1)
973 return 0;
974 return __blkg_prfill_u64(sf, pd, v);
975}
976
977static int tg_print_conf_u64(struct cgroup *cgrp, struct cftype *cft,
978 struct seq_file *sf)
979{
980 blkcg_print_blkgs(sf, cgroup_to_blkio_cgroup(cgrp), tg_prfill_conf_u64,
981 BLKIO_POLICY_THROTL, cft->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700982 return 0;
983}
984
Tejun Heoaf133ce2012-04-01 14:38:44 -0700985static int tg_print_conf_uint(struct cgroup *cgrp, struct cftype *cft,
986 struct seq_file *sf)
Vivek Goyale43473b2010-09-15 17:06:35 -0400987{
Tejun Heoaf133ce2012-04-01 14:38:44 -0700988 blkcg_print_blkgs(sf, cgroup_to_blkio_cgroup(cgrp), tg_prfill_conf_uint,
989 BLKIO_POLICY_THROTL, cft->private, false);
990 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400991}
992
Tejun Heoaf133ce2012-04-01 14:38:44 -0700993static int tg_set_conf(struct cgroup *cgrp, struct cftype *cft, const char *buf,
994 bool is_u64)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700995{
996 struct blkio_cgroup *blkcg = cgroup_to_blkio_cgroup(cgrp);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700997 struct blkg_conf_ctx ctx;
Tejun Heoaf133ce2012-04-01 14:38:44 -0700998 struct throtl_grp *tg;
Tejun Heo60c2bc22012-04-01 14:38:43 -0700999 int ret;
1000
1001 ret = blkg_conf_prep(blkcg, buf, &ctx);
1002 if (ret)
1003 return ret;
1004
1005 ret = -EINVAL;
Tejun Heoaf133ce2012-04-01 14:38:44 -07001006 tg = blkg_to_tg(ctx.blkg);
1007 if (tg) {
1008 struct throtl_data *td = ctx.blkg->q->td;
1009
1010 if (!ctx.v)
1011 ctx.v = -1;
1012
1013 if (is_u64)
1014 *(u64 *)((void *)tg + cft->private) = ctx.v;
1015 else
1016 *(unsigned int *)((void *)tg + cft->private) = ctx.v;
1017
1018 /* XXX: we don't need the following deferred processing */
1019 xchg(&tg->limits_changed, true);
1020 xchg(&td->limits_changed, true);
1021 throtl_schedule_delayed_work(td, 0);
1022
Tejun Heo60c2bc22012-04-01 14:38:43 -07001023 ret = 0;
1024 }
1025
1026 blkg_conf_finish(&ctx);
1027 return ret;
1028}
1029
Tejun Heoaf133ce2012-04-01 14:38:44 -07001030static int tg_set_conf_u64(struct cgroup *cgrp, struct cftype *cft,
1031 const char *buf)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001032{
Tejun Heoaf133ce2012-04-01 14:38:44 -07001033 return tg_set_conf(cgrp, cft, buf, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001034}
1035
Tejun Heoaf133ce2012-04-01 14:38:44 -07001036static int tg_set_conf_uint(struct cgroup *cgrp, struct cftype *cft,
1037 const char *buf)
Tejun Heo60c2bc22012-04-01 14:38:43 -07001038{
Tejun Heoaf133ce2012-04-01 14:38:44 -07001039 return tg_set_conf(cgrp, cft, buf, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -07001040}
1041
1042static struct cftype throtl_files[] = {
1043 {
1044 .name = "throttle.read_bps_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001045 .private = offsetof(struct throtl_grp, bps[READ]),
1046 .read_seq_string = tg_print_conf_u64,
1047 .write_string = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001048 .max_write_len = 256,
1049 },
1050 {
1051 .name = "throttle.write_bps_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001052 .private = offsetof(struct throtl_grp, bps[WRITE]),
1053 .read_seq_string = tg_print_conf_u64,
1054 .write_string = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001055 .max_write_len = 256,
1056 },
1057 {
1058 .name = "throttle.read_iops_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001059 .private = offsetof(struct throtl_grp, iops[READ]),
1060 .read_seq_string = tg_print_conf_uint,
1061 .write_string = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001062 .max_write_len = 256,
1063 },
1064 {
1065 .name = "throttle.write_iops_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001066 .private = offsetof(struct throtl_grp, iops[WRITE]),
1067 .read_seq_string = tg_print_conf_uint,
1068 .write_string = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001069 .max_write_len = 256,
1070 },
1071 {
1072 .name = "throttle.io_service_bytes",
1073 .private = BLKCG_STAT_PRIV(BLKIO_POLICY_THROTL,
Tejun Heo8a3d2612012-04-01 14:38:44 -07001074 offsetof(struct tg_stats_cpu, service_bytes)),
1075 .read_seq_string = tg_print_cpu_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001076 },
1077 {
1078 .name = "throttle.io_serviced",
1079 .private = BLKCG_STAT_PRIV(BLKIO_POLICY_THROTL,
Tejun Heo8a3d2612012-04-01 14:38:44 -07001080 offsetof(struct tg_stats_cpu, serviced)),
1081 .read_seq_string = tg_print_cpu_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001082 },
1083 { } /* terminate */
1084};
1085
Vivek Goyalda527772011-03-02 19:05:33 -05001086static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001087{
1088 struct throtl_data *td = q->td;
1089
1090 cancel_delayed_work_sync(&td->throtl_work);
1091}
1092
1093static struct blkio_policy_type blkio_policy_throtl = {
1094 .ops = {
Tejun Heo03814112012-03-05 13:15:14 -08001095 .blkio_init_group_fn = throtl_init_blkio_group,
Tejun Heo8a3d2612012-04-01 14:38:44 -07001096 .blkio_exit_group_fn = throtl_exit_blkio_group,
1097 .blkio_reset_group_stats_fn = throtl_reset_group_stats,
Vivek Goyale43473b2010-09-15 17:06:35 -04001098 },
Vivek Goyal8e89d132010-09-15 17:06:37 -04001099 .plid = BLKIO_POLICY_THROTL,
Tejun Heo03814112012-03-05 13:15:14 -08001100 .pdata_size = sizeof(struct throtl_grp),
Tejun Heo60c2bc22012-04-01 14:38:43 -07001101 .cftypes = throtl_files,
Vivek Goyale43473b2010-09-15 17:06:35 -04001102};
1103
Tejun Heobc16a4f2011-10-19 14:33:01 +02001104bool blk_throtl_bio(struct request_queue *q, struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04001105{
1106 struct throtl_data *td = q->td;
1107 struct throtl_grp *tg;
Vivek Goyale43473b2010-09-15 17:06:35 -04001108 bool rw = bio_data_dir(bio), update_disptime = true;
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001109 struct blkio_cgroup *blkcg;
Tejun Heobc16a4f2011-10-19 14:33:01 +02001110 bool throttled = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001111
1112 if (bio->bi_rw & REQ_THROTTLED) {
1113 bio->bi_rw &= ~REQ_THROTTLED;
Tejun Heobc16a4f2011-10-19 14:33:01 +02001114 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04001115 }
1116
Tejun Heo671058f2012-03-05 13:15:29 -08001117 /* bio_associate_current() needs ioc, try creating */
1118 create_io_context(GFP_ATOMIC, q->node);
1119
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001120 /*
1121 * A throtl_grp pointer retrieved under rcu can be used to access
1122 * basic fields like stats and io rates. If a group has no rules,
1123 * just update the dispatch stats in lockless manner and return.
1124 */
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001125 rcu_read_lock();
Tejun Heo4f85cb92012-03-05 13:15:28 -08001126 blkcg = bio_blkio_cgroup(bio);
Tejun Heocd1604f2012-03-05 13:15:06 -08001127 tg = throtl_lookup_tg(td, blkcg);
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001128 if (tg) {
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001129 if (tg_no_rule_group(tg, rw)) {
Tejun Heo629ed0b2012-04-01 14:38:44 -07001130 throtl_update_dispatch_stats(tg_to_blkg(tg),
1131 bio->bi_size, bio->bi_rw);
Tejun Heo2a7f1242012-03-05 13:15:01 -08001132 goto out_unlock_rcu;
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001133 }
1134 }
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001135
1136 /*
1137 * Either group has not been allocated yet or it is not an unlimited
1138 * IO group
1139 */
Vivek Goyale43473b2010-09-15 17:06:35 -04001140 spin_lock_irq(q->queue_lock);
Tejun Heocd1604f2012-03-05 13:15:06 -08001141 tg = throtl_lookup_create_tg(td, blkcg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001142 if (unlikely(!tg))
1143 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001144
Vivek Goyale43473b2010-09-15 17:06:35 -04001145 if (tg->nr_queued[rw]) {
1146 /*
1147 * There is already another bio queued in same dir. No
1148 * need to update dispatch time.
1149 */
Vivek Goyal231d7042011-03-07 21:05:14 +01001150 update_disptime = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001151 goto queue_bio;
Vivek Goyalde701c72011-03-07 21:09:32 +01001152
Vivek Goyale43473b2010-09-15 17:06:35 -04001153 }
1154
1155 /* Bio is with-in rate limit of group */
1156 if (tg_may_dispatch(td, tg, bio, NULL)) {
1157 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01001158
1159 /*
1160 * We need to trim slice even when bios are not being queued
1161 * otherwise it might happen that a bio is not queued for
1162 * a long time and slice keeps on extending and trim is not
1163 * called for a long time. Now if limits are reduced suddenly
1164 * we take into account all the IO dispatched so far at new
1165 * low rate and * newly queued IO gets a really long dispatch
1166 * time.
1167 *
1168 * So keep on trimming slice even if bio is not queued.
1169 */
1170 throtl_trim_slice(td, tg, rw);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001171 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04001172 }
1173
1174queue_bio:
Joe Perchesfd16d262011-06-13 10:42:49 +02001175 throtl_log_tg(td, tg, "[%c] bio. bdisp=%llu sz=%u bps=%llu"
Vivek Goyal8e89d132010-09-15 17:06:37 -04001176 " iodisp=%u iops=%u queued=%d/%d",
1177 rw == READ ? 'R' : 'W',
Vivek Goyale43473b2010-09-15 17:06:35 -04001178 tg->bytes_disp[rw], bio->bi_size, tg->bps[rw],
Vivek Goyal8e89d132010-09-15 17:06:37 -04001179 tg->io_disp[rw], tg->iops[rw],
Vivek Goyale43473b2010-09-15 17:06:35 -04001180 tg->nr_queued[READ], tg->nr_queued[WRITE]);
1181
Tejun Heo671058f2012-03-05 13:15:29 -08001182 bio_associate_current(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -04001183 throtl_add_bio_tg(q->td, tg, bio);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001184 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04001185
1186 if (update_disptime) {
1187 tg_update_disptime(td, tg);
1188 throtl_schedule_next_dispatch(td);
1189 }
1190
Tejun Heobc16a4f2011-10-19 14:33:01 +02001191out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04001192 spin_unlock_irq(q->queue_lock);
Tejun Heo2a7f1242012-03-05 13:15:01 -08001193out_unlock_rcu:
1194 rcu_read_unlock();
Tejun Heobc16a4f2011-10-19 14:33:01 +02001195out:
1196 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04001197}
1198
Tejun Heoc9a929d2011-10-19 14:42:16 +02001199/**
1200 * blk_throtl_drain - drain throttled bios
1201 * @q: request_queue to drain throttled bios for
1202 *
1203 * Dispatch all currently throttled bios on @q through ->make_request_fn().
1204 */
1205void blk_throtl_drain(struct request_queue *q)
1206 __releases(q->queue_lock) __acquires(q->queue_lock)
1207{
1208 struct throtl_data *td = q->td;
1209 struct throtl_rb_root *st = &td->tg_service_tree;
1210 struct throtl_grp *tg;
1211 struct bio_list bl;
1212 struct bio *bio;
1213
Jens Axboe334c2b02011-10-25 15:51:48 +02001214 WARN_ON_ONCE(!queue_is_locked(q));
Tejun Heoc9a929d2011-10-19 14:42:16 +02001215
1216 bio_list_init(&bl);
1217
1218 while ((tg = throtl_rb_first(st))) {
1219 throtl_dequeue_tg(td, tg);
1220
1221 while ((bio = bio_list_peek(&tg->bio_lists[READ])))
1222 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), &bl);
1223 while ((bio = bio_list_peek(&tg->bio_lists[WRITE])))
1224 tg_dispatch_one_bio(td, tg, bio_data_dir(bio), &bl);
1225 }
1226 spin_unlock_irq(q->queue_lock);
1227
1228 while ((bio = bio_list_pop(&bl)))
1229 generic_make_request(bio);
1230
1231 spin_lock_irq(q->queue_lock);
1232}
1233
Vivek Goyale43473b2010-09-15 17:06:35 -04001234int blk_throtl_init(struct request_queue *q)
1235{
1236 struct throtl_data *td;
Tejun Heocd1604f2012-03-05 13:15:06 -08001237 struct blkio_group *blkg;
Vivek Goyale43473b2010-09-15 17:06:35 -04001238
1239 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
1240 if (!td)
1241 return -ENOMEM;
1242
Vivek Goyale43473b2010-09-15 17:06:35 -04001243 td->tg_service_tree = THROTL_RB_ROOT;
Vivek Goyalde701c72011-03-07 21:09:32 +01001244 td->limits_changed = false;
Vivek Goyala29a1712011-05-19 15:38:19 -04001245 INIT_DELAYED_WORK(&td->throtl_work, blk_throtl_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001246
Tejun Heocd1604f2012-03-05 13:15:06 -08001247 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04001248 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02001249
Tejun Heocd1604f2012-03-05 13:15:06 -08001250 /* alloc and init root group. */
Tejun Heof51b8022012-03-05 13:15:05 -08001251 rcu_read_lock();
1252 spin_lock_irq(q->queue_lock);
1253
Tejun Heoaaec55a2012-04-01 14:38:42 -07001254 blkg = blkg_lookup_create(&blkio_root_cgroup, q, true);
Tejun Heocd1604f2012-03-05 13:15:06 -08001255 if (!IS_ERR(blkg))
Tejun Heo03814112012-03-05 13:15:14 -08001256 td->root_tg = blkg_to_tg(blkg);
Tejun Heof51b8022012-03-05 13:15:05 -08001257
1258 spin_unlock_irq(q->queue_lock);
1259 rcu_read_unlock();
1260
1261 if (!td->root_tg) {
Vivek Goyal29b12582011-05-19 15:38:24 -04001262 kfree(td);
1263 return -ENOMEM;
1264 }
Vivek Goyale43473b2010-09-15 17:06:35 -04001265 return 0;
1266}
1267
1268void blk_throtl_exit(struct request_queue *q)
1269{
Tejun Heoc875f4d2012-03-05 13:15:22 -08001270 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05001271 throtl_shutdown_wq(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001272 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04001273}
1274
1275static int __init throtl_init(void)
1276{
Vivek Goyal450adcb2011-03-01 13:40:54 -05001277 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
1278 if (!kthrotld_workqueue)
1279 panic("Failed to create kthrotld\n");
1280
Vivek Goyale43473b2010-09-15 17:06:35 -04001281 blkio_policy_register(&blkio_policy_throtl);
1282 return 0;
1283}
1284
1285module_init(throtl_init);