blob: 7340440ccfb5857428f5fa7ea83420738f33d378 [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 Heo3c798392012-04-16 13:57:25 -070024static struct blkcg_policy blkcg_policy_throtl;
Tejun Heo03814112012-03-05 13:15:14 -080025
Vivek Goyal450adcb2011-03-01 13:40:54 -050026/* A workqueue to queue throttle related work */
27static struct workqueue_struct *kthrotld_workqueue;
Vivek Goyal450adcb2011-03-01 13:40:54 -050028
Tejun Heoc9e03322013-05-14 13:52:32 -070029struct throtl_service_queue {
30 struct rb_root pending_tree; /* RB tree of active tgs */
31 struct rb_node *first_pending; /* first node in the tree */
32 unsigned int nr_pending; /* # queued in the tree */
33 unsigned long first_pending_disptime; /* disptime of the first tg */
Vivek Goyale43473b2010-09-15 17:06:35 -040034};
35
Tejun Heo5b2c16a2013-05-14 13:52:32 -070036enum tg_state_flags {
37 THROTL_TG_PENDING = 1 << 0, /* on parent's pending tree */
38};
39
Vivek Goyale43473b2010-09-15 17:06:35 -040040#define rb_entry_tg(node) rb_entry((node), struct throtl_grp, rb_node)
41
Tejun Heo8a3d2612012-04-01 14:38:44 -070042/* Per-cpu group stats */
43struct tg_stats_cpu {
44 /* total bytes transferred */
45 struct blkg_rwstat service_bytes;
46 /* total IOs serviced, post merge */
47 struct blkg_rwstat serviced;
48};
49
Vivek Goyale43473b2010-09-15 17:06:35 -040050struct throtl_grp {
Tejun Heof95a04a2012-04-16 13:57:26 -070051 /* must be the first member */
52 struct blkg_policy_data pd;
53
Tejun Heoc9e03322013-05-14 13:52:32 -070054 /* active throtl group service_queue member */
Vivek Goyale43473b2010-09-15 17:06:35 -040055 struct rb_node rb_node;
56
Tejun Heo0f3457f2013-05-14 13:52:32 -070057 /* throtl_data this group belongs to */
58 struct throtl_data *td;
59
Tejun Heo49a2f1e2013-05-14 13:52:34 -070060 /* this group's service queue */
61 struct throtl_service_queue service_queue;
62
Vivek Goyale43473b2010-09-15 17:06:35 -040063 /*
64 * Dispatch time in jiffies. This is the estimated time when group
65 * will unthrottle and is ready to dispatch more bio. It is used as
66 * key to sort active groups in service tree.
67 */
68 unsigned long disptime;
69
Vivek Goyale43473b2010-09-15 17:06:35 -040070 unsigned int flags;
71
72 /* Two lists for READ and WRITE */
73 struct bio_list bio_lists[2];
74
75 /* Number of queued bios on READ and WRITE lists */
76 unsigned int nr_queued[2];
77
78 /* bytes per second rate limits */
79 uint64_t bps[2];
80
Vivek Goyal8e89d132010-09-15 17:06:37 -040081 /* IOPS limits */
82 unsigned int iops[2];
83
Vivek Goyale43473b2010-09-15 17:06:35 -040084 /* Number of bytes disptached in current slice */
85 uint64_t bytes_disp[2];
Vivek Goyal8e89d132010-09-15 17:06:37 -040086 /* Number of bio's dispatched in current slice */
87 unsigned int io_disp[2];
Vivek Goyale43473b2010-09-15 17:06:35 -040088
89 /* When did we start a new slice */
90 unsigned long slice_start[2];
91 unsigned long slice_end[2];
Vivek Goyalfe071432010-10-01 14:49:49 +020092
Tejun Heo8a3d2612012-04-01 14:38:44 -070093 /* Per cpu stats pointer */
94 struct tg_stats_cpu __percpu *stats_cpu;
95
96 /* List of tgs waiting for per cpu stats memory to be allocated */
97 struct list_head stats_alloc_node;
Vivek Goyale43473b2010-09-15 17:06:35 -040098};
99
100struct throtl_data
101{
Vivek Goyale43473b2010-09-15 17:06:35 -0400102 /* service tree for active throtl groups */
Tejun Heoc9e03322013-05-14 13:52:32 -0700103 struct throtl_service_queue service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400104
Vivek Goyale43473b2010-09-15 17:06:35 -0400105 struct request_queue *queue;
106
107 /* Total Number of queued bios on READ and WRITE lists */
108 unsigned int nr_queued[2];
109
110 /*
Vivek Goyal02977e42010-10-01 14:49:48 +0200111 * number of total undestroyed groups
Vivek Goyale43473b2010-09-15 17:06:35 -0400112 */
113 unsigned int nr_undestroyed_grps;
114
115 /* Work for dispatching throttled bios */
Tejun Heocb761992013-05-14 13:52:31 -0700116 struct delayed_work dispatch_work;
Vivek Goyale43473b2010-09-15 17:06:35 -0400117};
118
Tejun Heo8a3d2612012-04-01 14:38:44 -0700119/* list and work item to allocate percpu group stats */
120static DEFINE_SPINLOCK(tg_stats_alloc_lock);
121static LIST_HEAD(tg_stats_alloc_list);
122
123static void tg_stats_alloc_fn(struct work_struct *);
124static DECLARE_DELAYED_WORK(tg_stats_alloc_work, tg_stats_alloc_fn);
125
Tejun Heof95a04a2012-04-16 13:57:26 -0700126static inline struct throtl_grp *pd_to_tg(struct blkg_policy_data *pd)
127{
128 return pd ? container_of(pd, struct throtl_grp, pd) : NULL;
129}
130
Tejun Heo3c798392012-04-16 13:57:25 -0700131static inline struct throtl_grp *blkg_to_tg(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -0800132{
Tejun Heof95a04a2012-04-16 13:57:26 -0700133 return pd_to_tg(blkg_to_pd(blkg, &blkcg_policy_throtl));
Tejun Heo03814112012-03-05 13:15:14 -0800134}
135
Tejun Heo3c798392012-04-16 13:57:25 -0700136static inline struct blkcg_gq *tg_to_blkg(struct throtl_grp *tg)
Tejun Heo03814112012-03-05 13:15:14 -0800137{
Tejun Heof95a04a2012-04-16 13:57:26 -0700138 return pd_to_blkg(&tg->pd);
Tejun Heo03814112012-03-05 13:15:14 -0800139}
140
Tejun Heo03d8e112012-04-13 13:11:32 -0700141static inline struct throtl_grp *td_root_tg(struct throtl_data *td)
142{
143 return blkg_to_tg(td->queue->root_blkg);
144}
145
Tejun Heo0f3457f2013-05-14 13:52:32 -0700146#define throtl_log_tg(tg, fmt, args...) do { \
Tejun Heo54e7ed12012-04-16 13:57:23 -0700147 char __pbuf[128]; \
148 \
149 blkg_path(tg_to_blkg(tg), __pbuf, sizeof(__pbuf)); \
Tejun Heo0f3457f2013-05-14 13:52:32 -0700150 blk_add_trace_msg((tg)->td->queue, "throtl %s " fmt, __pbuf, ##args); \
Tejun Heo54e7ed12012-04-16 13:57:23 -0700151} while (0)
Vivek Goyale43473b2010-09-15 17:06:35 -0400152
153#define throtl_log(td, fmt, args...) \
154 blk_add_trace_msg((td)->queue, "throtl " fmt, ##args)
155
Tejun Heo8a3d2612012-04-01 14:38:44 -0700156/*
157 * Worker for allocating per cpu stat for tgs. This is scheduled on the
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700158 * system_wq once there are some groups on the alloc_list waiting for
Tejun Heo8a3d2612012-04-01 14:38:44 -0700159 * allocation.
160 */
161static void tg_stats_alloc_fn(struct work_struct *work)
162{
163 static struct tg_stats_cpu *stats_cpu; /* this fn is non-reentrant */
164 struct delayed_work *dwork = to_delayed_work(work);
165 bool empty = false;
166
167alloc_stats:
168 if (!stats_cpu) {
169 stats_cpu = alloc_percpu(struct tg_stats_cpu);
170 if (!stats_cpu) {
171 /* allocation failed, try again after some time */
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700172 schedule_delayed_work(dwork, msecs_to_jiffies(10));
Tejun Heo8a3d2612012-04-01 14:38:44 -0700173 return;
174 }
175 }
176
177 spin_lock_irq(&tg_stats_alloc_lock);
178
179 if (!list_empty(&tg_stats_alloc_list)) {
180 struct throtl_grp *tg = list_first_entry(&tg_stats_alloc_list,
181 struct throtl_grp,
182 stats_alloc_node);
183 swap(tg->stats_cpu, stats_cpu);
184 list_del_init(&tg->stats_alloc_node);
185 }
186
187 empty = list_empty(&tg_stats_alloc_list);
188 spin_unlock_irq(&tg_stats_alloc_lock);
189 if (!empty)
190 goto alloc_stats;
191}
192
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700193/* init a service_queue, assumes the caller zeroed it */
194static void throtl_service_queue_init(struct throtl_service_queue *sq)
195{
196 sq->pending_tree = RB_ROOT;
197}
198
Tejun Heo3c798392012-04-16 13:57:25 -0700199static void throtl_pd_init(struct blkcg_gq *blkg)
Vivek Goyala29a1712011-05-19 15:38:19 -0400200{
Tejun Heo03814112012-03-05 13:15:14 -0800201 struct throtl_grp *tg = blkg_to_tg(blkg);
Tejun Heoff26eaa2012-05-23 12:16:21 +0200202 unsigned long flags;
Tejun Heocd1604f2012-03-05 13:15:06 -0800203
Tejun Heo49a2f1e2013-05-14 13:52:34 -0700204 throtl_service_queue_init(&tg->service_queue);
Vivek Goyala29a1712011-05-19 15:38:19 -0400205 RB_CLEAR_NODE(&tg->rb_node);
Tejun Heo0f3457f2013-05-14 13:52:32 -0700206 tg->td = blkg->q->td;
Vivek Goyala29a1712011-05-19 15:38:19 -0400207 bio_list_init(&tg->bio_lists[0]);
208 bio_list_init(&tg->bio_lists[1]);
Vivek Goyala29a1712011-05-19 15:38:19 -0400209
Tejun Heoe56da7e2012-03-05 13:15:07 -0800210 tg->bps[READ] = -1;
211 tg->bps[WRITE] = -1;
212 tg->iops[READ] = -1;
213 tg->iops[WRITE] = -1;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700214
215 /*
216 * Ugh... We need to perform per-cpu allocation for tg->stats_cpu
217 * but percpu allocator can't be called from IO path. Queue tg on
218 * tg_stats_alloc_list and allocate from work item.
219 */
Tejun Heoff26eaa2012-05-23 12:16:21 +0200220 spin_lock_irqsave(&tg_stats_alloc_lock, flags);
Tejun Heo8a3d2612012-04-01 14:38:44 -0700221 list_add(&tg->stats_alloc_node, &tg_stats_alloc_list);
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700222 schedule_delayed_work(&tg_stats_alloc_work, 0);
Tejun Heoff26eaa2012-05-23 12:16:21 +0200223 spin_unlock_irqrestore(&tg_stats_alloc_lock, flags);
Tejun Heo8a3d2612012-04-01 14:38:44 -0700224}
225
Tejun Heo3c798392012-04-16 13:57:25 -0700226static void throtl_pd_exit(struct blkcg_gq *blkg)
Tejun Heo8a3d2612012-04-01 14:38:44 -0700227{
228 struct throtl_grp *tg = blkg_to_tg(blkg);
Tejun Heoff26eaa2012-05-23 12:16:21 +0200229 unsigned long flags;
Tejun Heo8a3d2612012-04-01 14:38:44 -0700230
Tejun Heoff26eaa2012-05-23 12:16:21 +0200231 spin_lock_irqsave(&tg_stats_alloc_lock, flags);
Tejun Heo8a3d2612012-04-01 14:38:44 -0700232 list_del_init(&tg->stats_alloc_node);
Tejun Heoff26eaa2012-05-23 12:16:21 +0200233 spin_unlock_irqrestore(&tg_stats_alloc_lock, flags);
Tejun Heo8a3d2612012-04-01 14:38:44 -0700234
235 free_percpu(tg->stats_cpu);
236}
237
Tejun Heo3c798392012-04-16 13:57:25 -0700238static void throtl_pd_reset_stats(struct blkcg_gq *blkg)
Tejun Heo8a3d2612012-04-01 14:38:44 -0700239{
240 struct throtl_grp *tg = blkg_to_tg(blkg);
241 int cpu;
242
243 if (tg->stats_cpu == NULL)
244 return;
245
246 for_each_possible_cpu(cpu) {
247 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
248
249 blkg_rwstat_reset(&sc->service_bytes);
250 blkg_rwstat_reset(&sc->serviced);
251 }
Vivek Goyala29a1712011-05-19 15:38:19 -0400252}
253
Tejun Heo3c798392012-04-16 13:57:25 -0700254static struct throtl_grp *throtl_lookup_tg(struct throtl_data *td,
255 struct blkcg *blkcg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400256{
Vivek Goyale43473b2010-09-15 17:06:35 -0400257 /*
Tejun Heo3c798392012-04-16 13:57:25 -0700258 * This is the common case when there are no blkcgs. Avoid lookup
259 * in this case
Tejun Heocd1604f2012-03-05 13:15:06 -0800260 */
Tejun Heo3c798392012-04-16 13:57:25 -0700261 if (blkcg == &blkcg_root)
Tejun Heo03d8e112012-04-13 13:11:32 -0700262 return td_root_tg(td);
Vivek Goyale43473b2010-09-15 17:06:35 -0400263
Tejun Heoe8989fa2012-03-05 13:15:20 -0800264 return blkg_to_tg(blkg_lookup(blkcg, td->queue));
Vivek Goyale43473b2010-09-15 17:06:35 -0400265}
266
Tejun Heocd1604f2012-03-05 13:15:06 -0800267static struct throtl_grp *throtl_lookup_create_tg(struct throtl_data *td,
Tejun Heo3c798392012-04-16 13:57:25 -0700268 struct blkcg *blkcg)
Vivek Goyale43473b2010-09-15 17:06:35 -0400269{
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400270 struct request_queue *q = td->queue;
Tejun Heocd1604f2012-03-05 13:15:06 -0800271 struct throtl_grp *tg = NULL;
Tejun Heo0a5a7d02012-03-05 13:15:02 -0800272
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400273 /*
Tejun Heo3c798392012-04-16 13:57:25 -0700274 * This is the common case when there are no blkcgs. Avoid lookup
275 * in this case
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400276 */
Tejun Heo3c798392012-04-16 13:57:25 -0700277 if (blkcg == &blkcg_root) {
Tejun Heo03d8e112012-04-13 13:11:32 -0700278 tg = td_root_tg(td);
Tejun Heocd1604f2012-03-05 13:15:06 -0800279 } else {
Tejun Heo3c798392012-04-16 13:57:25 -0700280 struct blkcg_gq *blkg;
Tejun Heocd1604f2012-03-05 13:15:06 -0800281
Tejun Heo3c96cb32012-04-13 13:11:34 -0700282 blkg = blkg_lookup_create(blkcg, q);
Tejun Heocd1604f2012-03-05 13:15:06 -0800283
284 /* if %NULL and @q is alive, fall back to root_tg */
285 if (!IS_ERR(blkg))
Tejun Heo03814112012-03-05 13:15:14 -0800286 tg = blkg_to_tg(blkg);
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100287 else if (!blk_queue_dying(q))
Tejun Heo03d8e112012-04-13 13:11:32 -0700288 tg = td_root_tg(td);
Vivek Goyalf469a7b2011-05-19 15:38:23 -0400289 }
290
Vivek Goyale43473b2010-09-15 17:06:35 -0400291 return tg;
292}
293
Tejun Heo0049af72013-05-14 13:52:33 -0700294static struct throtl_grp *
295throtl_rb_first(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400296{
297 /* Service tree is empty */
Tejun Heo0049af72013-05-14 13:52:33 -0700298 if (!parent_sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400299 return NULL;
300
Tejun Heo0049af72013-05-14 13:52:33 -0700301 if (!parent_sq->first_pending)
302 parent_sq->first_pending = rb_first(&parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400303
Tejun Heo0049af72013-05-14 13:52:33 -0700304 if (parent_sq->first_pending)
305 return rb_entry_tg(parent_sq->first_pending);
Vivek Goyale43473b2010-09-15 17:06:35 -0400306
307 return NULL;
308}
309
310static void rb_erase_init(struct rb_node *n, struct rb_root *root)
311{
312 rb_erase(n, root);
313 RB_CLEAR_NODE(n);
314}
315
Tejun Heo0049af72013-05-14 13:52:33 -0700316static void throtl_rb_erase(struct rb_node *n,
317 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400318{
Tejun Heo0049af72013-05-14 13:52:33 -0700319 if (parent_sq->first_pending == n)
320 parent_sq->first_pending = NULL;
321 rb_erase_init(n, &parent_sq->pending_tree);
322 --parent_sq->nr_pending;
Vivek Goyale43473b2010-09-15 17:06:35 -0400323}
324
Tejun Heo0049af72013-05-14 13:52:33 -0700325static void update_min_dispatch_time(struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400326{
327 struct throtl_grp *tg;
328
Tejun Heo0049af72013-05-14 13:52:33 -0700329 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400330 if (!tg)
331 return;
332
Tejun Heo0049af72013-05-14 13:52:33 -0700333 parent_sq->first_pending_disptime = tg->disptime;
Vivek Goyale43473b2010-09-15 17:06:35 -0400334}
335
Tejun Heo0049af72013-05-14 13:52:33 -0700336static void tg_service_queue_add(struct throtl_grp *tg,
337 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400338{
Tejun Heo0049af72013-05-14 13:52:33 -0700339 struct rb_node **node = &parent_sq->pending_tree.rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400340 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)
Tejun Heo0049af72013-05-14 13:52:33 -0700358 parent_sq->first_pending = &tg->rb_node;
Vivek Goyale43473b2010-09-15 17:06:35 -0400359
360 rb_link_node(&tg->rb_node, parent, node);
Tejun Heo0049af72013-05-14 13:52:33 -0700361 rb_insert_color(&tg->rb_node, &parent_sq->pending_tree);
Vivek Goyale43473b2010-09-15 17:06:35 -0400362}
363
Tejun Heo0049af72013-05-14 13:52:33 -0700364static void __throtl_enqueue_tg(struct throtl_grp *tg,
365 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400366{
Tejun Heo0049af72013-05-14 13:52:33 -0700367 tg_service_queue_add(tg, parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700368 tg->flags |= THROTL_TG_PENDING;
Tejun Heo0049af72013-05-14 13:52:33 -0700369 parent_sq->nr_pending++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400370}
371
Tejun Heo0049af72013-05-14 13:52:33 -0700372static void throtl_enqueue_tg(struct throtl_grp *tg,
373 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400374{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700375 if (!(tg->flags & THROTL_TG_PENDING))
Tejun Heo0049af72013-05-14 13:52:33 -0700376 __throtl_enqueue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400377}
378
Tejun Heo0049af72013-05-14 13:52:33 -0700379static void __throtl_dequeue_tg(struct throtl_grp *tg,
380 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400381{
Tejun Heo0049af72013-05-14 13:52:33 -0700382 throtl_rb_erase(&tg->rb_node, parent_sq);
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700383 tg->flags &= ~THROTL_TG_PENDING;
Vivek Goyale43473b2010-09-15 17:06:35 -0400384}
385
Tejun Heo0049af72013-05-14 13:52:33 -0700386static void throtl_dequeue_tg(struct throtl_grp *tg,
387 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400388{
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700389 if (tg->flags & THROTL_TG_PENDING)
Tejun Heo0049af72013-05-14 13:52:33 -0700390 __throtl_dequeue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400391}
392
Tejun Heoa9131a22013-05-14 13:52:31 -0700393/* Call with queue lock held */
394static void throtl_schedule_delayed_work(struct throtl_data *td,
395 unsigned long delay)
396{
397 struct delayed_work *dwork = &td->dispatch_work;
398
Tejun Heo6a525602013-05-14 13:52:32 -0700399 mod_delayed_work(kthrotld_workqueue, dwork, delay);
400 throtl_log(td, "schedule work. delay=%lu jiffies=%lu", delay, jiffies);
Tejun Heoa9131a22013-05-14 13:52:31 -0700401}
402
Vivek Goyale43473b2010-09-15 17:06:35 -0400403static void throtl_schedule_next_dispatch(struct throtl_data *td)
404{
Tejun Heoc9e03322013-05-14 13:52:32 -0700405 struct throtl_service_queue *sq = &td->service_queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400406
Tejun Heo6a525602013-05-14 13:52:32 -0700407 /* any pending children left? */
Tejun Heoc9e03322013-05-14 13:52:32 -0700408 if (!sq->nr_pending)
Vivek Goyale43473b2010-09-15 17:06:35 -0400409 return;
410
Tejun Heoc9e03322013-05-14 13:52:32 -0700411 update_min_dispatch_time(sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400412
Tejun Heoc9e03322013-05-14 13:52:32 -0700413 if (time_before_eq(sq->first_pending_disptime, jiffies))
Vivek Goyal450adcb2011-03-01 13:40:54 -0500414 throtl_schedule_delayed_work(td, 0);
Vivek Goyale43473b2010-09-15 17:06:35 -0400415 else
Tejun Heoc9e03322013-05-14 13:52:32 -0700416 throtl_schedule_delayed_work(td, sq->first_pending_disptime - jiffies);
Vivek Goyale43473b2010-09-15 17:06:35 -0400417}
418
Tejun Heo0f3457f2013-05-14 13:52:32 -0700419static inline void throtl_start_new_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400420{
421 tg->bytes_disp[rw] = 0;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400422 tg->io_disp[rw] = 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400423 tg->slice_start[rw] = jiffies;
424 tg->slice_end[rw] = jiffies + throtl_slice;
Tejun Heo0f3457f2013-05-14 13:52:32 -0700425 throtl_log_tg(tg, "[%c] new slice start=%lu end=%lu jiffies=%lu",
Vivek Goyale43473b2010-09-15 17:06:35 -0400426 rw == READ ? 'R' : 'W', tg->slice_start[rw],
427 tg->slice_end[rw], jiffies);
428}
429
Tejun Heo0f3457f2013-05-14 13:52:32 -0700430static inline void throtl_set_slice_end(struct throtl_grp *tg, bool rw,
431 unsigned long jiffy_end)
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100432{
433 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
434}
435
Tejun Heo0f3457f2013-05-14 13:52:32 -0700436static inline void throtl_extend_slice(struct throtl_grp *tg, bool rw,
437 unsigned long jiffy_end)
Vivek Goyale43473b2010-09-15 17:06:35 -0400438{
439 tg->slice_end[rw] = roundup(jiffy_end, throtl_slice);
Tejun Heo0f3457f2013-05-14 13:52:32 -0700440 throtl_log_tg(tg, "[%c] extend slice start=%lu end=%lu jiffies=%lu",
Vivek Goyale43473b2010-09-15 17:06:35 -0400441 rw == READ ? 'R' : 'W', tg->slice_start[rw],
442 tg->slice_end[rw], jiffies);
443}
444
445/* Determine if previously allocated or extended slice is complete or not */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700446static bool throtl_slice_used(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400447{
448 if (time_in_range(jiffies, tg->slice_start[rw], tg->slice_end[rw]))
449 return 0;
450
451 return 1;
452}
453
454/* Trim the used slices and adjust slice start accordingly */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700455static inline void throtl_trim_slice(struct throtl_grp *tg, bool rw)
Vivek Goyale43473b2010-09-15 17:06:35 -0400456{
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200457 unsigned long nr_slices, time_elapsed, io_trim;
458 u64 bytes_trim, tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400459
460 BUG_ON(time_before(tg->slice_end[rw], tg->slice_start[rw]));
461
462 /*
463 * If bps are unlimited (-1), then time slice don't get
464 * renewed. Don't try to trim the slice if slice is used. A new
465 * slice will start when appropriate.
466 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700467 if (throtl_slice_used(tg, rw))
Vivek Goyale43473b2010-09-15 17:06:35 -0400468 return;
469
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100470 /*
471 * A bio has been dispatched. Also adjust slice_end. It might happen
472 * that initially cgroup limit was very low resulting in high
473 * slice_end, but later limit was bumped up and bio was dispached
474 * sooner, then we need to reduce slice_end. A high bogus slice_end
475 * is bad because it does not allow new slice to start.
476 */
477
Tejun Heo0f3457f2013-05-14 13:52:32 -0700478 throtl_set_slice_end(tg, rw, jiffies + throtl_slice);
Vivek Goyald1ae8ff2010-12-01 19:34:46 +0100479
Vivek Goyale43473b2010-09-15 17:06:35 -0400480 time_elapsed = jiffies - tg->slice_start[rw];
481
482 nr_slices = time_elapsed / throtl_slice;
483
484 if (!nr_slices)
485 return;
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200486 tmp = tg->bps[rw] * throtl_slice * nr_slices;
487 do_div(tmp, HZ);
488 bytes_trim = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400489
Vivek Goyal8e89d132010-09-15 17:06:37 -0400490 io_trim = (tg->iops[rw] * throtl_slice * nr_slices)/HZ;
Vivek Goyale43473b2010-09-15 17:06:35 -0400491
Vivek Goyal8e89d132010-09-15 17:06:37 -0400492 if (!bytes_trim && !io_trim)
Vivek Goyale43473b2010-09-15 17:06:35 -0400493 return;
494
495 if (tg->bytes_disp[rw] >= bytes_trim)
496 tg->bytes_disp[rw] -= bytes_trim;
497 else
498 tg->bytes_disp[rw] = 0;
499
Vivek Goyal8e89d132010-09-15 17:06:37 -0400500 if (tg->io_disp[rw] >= io_trim)
501 tg->io_disp[rw] -= io_trim;
502 else
503 tg->io_disp[rw] = 0;
504
Vivek Goyale43473b2010-09-15 17:06:35 -0400505 tg->slice_start[rw] += nr_slices * throtl_slice;
506
Tejun Heo0f3457f2013-05-14 13:52:32 -0700507 throtl_log_tg(tg, "[%c] trim slice nr=%lu bytes=%llu io=%lu"
Vivek Goyale43473b2010-09-15 17:06:35 -0400508 " start=%lu end=%lu jiffies=%lu",
Vivek Goyal8e89d132010-09-15 17:06:37 -0400509 rw == READ ? 'R' : 'W', nr_slices, bytes_trim, io_trim,
Vivek Goyale43473b2010-09-15 17:06:35 -0400510 tg->slice_start[rw], tg->slice_end[rw], jiffies);
511}
512
Tejun Heo0f3457f2013-05-14 13:52:32 -0700513static bool tg_with_in_iops_limit(struct throtl_grp *tg, struct bio *bio,
514 unsigned long *wait)
Vivek Goyale43473b2010-09-15 17:06:35 -0400515{
516 bool rw = bio_data_dir(bio);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400517 unsigned int io_allowed;
Vivek Goyale43473b2010-09-15 17:06:35 -0400518 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200519 u64 tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400520
Vivek Goyal8e89d132010-09-15 17:06:37 -0400521 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
Vivek Goyale43473b2010-09-15 17:06:35 -0400522
Vivek Goyal8e89d132010-09-15 17:06:37 -0400523 /* Slice has just started. Consider one slice interval */
524 if (!jiffy_elapsed)
525 jiffy_elapsed_rnd = throtl_slice;
526
527 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
528
Vivek Goyalc49c06e2010-10-01 21:16:42 +0200529 /*
530 * jiffy_elapsed_rnd should not be a big value as minimum iops can be
531 * 1 then at max jiffy elapsed should be equivalent of 1 second as we
532 * will allow dispatch after 1 second and after that slice should
533 * have been trimmed.
534 */
535
536 tmp = (u64)tg->iops[rw] * jiffy_elapsed_rnd;
537 do_div(tmp, HZ);
538
539 if (tmp > UINT_MAX)
540 io_allowed = UINT_MAX;
541 else
542 io_allowed = tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400543
544 if (tg->io_disp[rw] + 1 <= io_allowed) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400545 if (wait)
546 *wait = 0;
547 return 1;
548 }
549
Vivek Goyal8e89d132010-09-15 17:06:37 -0400550 /* Calc approx time to dispatch */
551 jiffy_wait = ((tg->io_disp[rw] + 1) * HZ)/tg->iops[rw] + 1;
552
553 if (jiffy_wait > jiffy_elapsed)
554 jiffy_wait = jiffy_wait - jiffy_elapsed;
555 else
556 jiffy_wait = 1;
557
558 if (wait)
559 *wait = jiffy_wait;
560 return 0;
561}
562
Tejun Heo0f3457f2013-05-14 13:52:32 -0700563static bool tg_with_in_bps_limit(struct throtl_grp *tg, struct bio *bio,
564 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400565{
566 bool rw = bio_data_dir(bio);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200567 u64 bytes_allowed, extra_bytes, tmp;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400568 unsigned long jiffy_elapsed, jiffy_wait, jiffy_elapsed_rnd;
Vivek Goyale43473b2010-09-15 17:06:35 -0400569
570 jiffy_elapsed = jiffy_elapsed_rnd = jiffies - tg->slice_start[rw];
571
572 /* Slice has just started. Consider one slice interval */
573 if (!jiffy_elapsed)
574 jiffy_elapsed_rnd = throtl_slice;
575
576 jiffy_elapsed_rnd = roundup(jiffy_elapsed_rnd, throtl_slice);
577
Vivek Goyal5e901a22010-10-01 21:16:38 +0200578 tmp = tg->bps[rw] * jiffy_elapsed_rnd;
579 do_div(tmp, HZ);
Vivek Goyal3aad5d32010-10-01 14:51:14 +0200580 bytes_allowed = tmp;
Vivek Goyale43473b2010-09-15 17:06:35 -0400581
582 if (tg->bytes_disp[rw] + bio->bi_size <= bytes_allowed) {
583 if (wait)
584 *wait = 0;
585 return 1;
586 }
587
588 /* Calc approx time to dispatch */
589 extra_bytes = tg->bytes_disp[rw] + bio->bi_size - bytes_allowed;
590 jiffy_wait = div64_u64(extra_bytes * HZ, tg->bps[rw]);
591
592 if (!jiffy_wait)
593 jiffy_wait = 1;
594
595 /*
596 * This wait time is without taking into consideration the rounding
597 * up we did. Add that time also.
598 */
599 jiffy_wait = jiffy_wait + (jiffy_elapsed_rnd - jiffy_elapsed);
Vivek Goyale43473b2010-09-15 17:06:35 -0400600 if (wait)
601 *wait = jiffy_wait;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400602 return 0;
603}
Vivek Goyale43473b2010-09-15 17:06:35 -0400604
Vivek Goyalaf75cd32011-05-19 15:38:31 -0400605static bool tg_no_rule_group(struct throtl_grp *tg, bool rw) {
606 if (tg->bps[rw] == -1 && tg->iops[rw] == -1)
607 return 1;
608 return 0;
609}
610
Vivek Goyal8e89d132010-09-15 17:06:37 -0400611/*
612 * Returns whether one can dispatch a bio or not. Also returns approx number
613 * of jiffies to wait before this bio is with-in IO rate and can be dispatched
614 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700615static bool tg_may_dispatch(struct throtl_grp *tg, struct bio *bio,
616 unsigned long *wait)
Vivek Goyal8e89d132010-09-15 17:06:37 -0400617{
618 bool rw = bio_data_dir(bio);
619 unsigned long bps_wait = 0, iops_wait = 0, max_wait = 0;
620
621 /*
622 * Currently whole state machine of group depends on first bio
623 * queued in the group bio list. So one should not be calling
624 * this function with a different bio if there are other bios
625 * queued.
626 */
627 BUG_ON(tg->nr_queued[rw] && bio != bio_list_peek(&tg->bio_lists[rw]));
628
629 /* If tg->bps = -1, then BW is unlimited */
630 if (tg->bps[rw] == -1 && tg->iops[rw] == -1) {
631 if (wait)
632 *wait = 0;
633 return 1;
634 }
635
636 /*
637 * If previous slice expired, start a new one otherwise renew/extend
638 * existing slice to make sure it is at least throtl_slice interval
639 * long since now.
640 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700641 if (throtl_slice_used(tg, rw))
642 throtl_start_new_slice(tg, rw);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400643 else {
644 if (time_before(tg->slice_end[rw], jiffies + throtl_slice))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700645 throtl_extend_slice(tg, rw, jiffies + throtl_slice);
Vivek Goyal8e89d132010-09-15 17:06:37 -0400646 }
647
Tejun Heo0f3457f2013-05-14 13:52:32 -0700648 if (tg_with_in_bps_limit(tg, bio, &bps_wait) &&
649 tg_with_in_iops_limit(tg, bio, &iops_wait)) {
Vivek Goyal8e89d132010-09-15 17:06:37 -0400650 if (wait)
651 *wait = 0;
652 return 1;
653 }
654
655 max_wait = max(bps_wait, iops_wait);
656
657 if (wait)
658 *wait = max_wait;
659
660 if (time_before(tg->slice_end[rw], jiffies + max_wait))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700661 throtl_extend_slice(tg, rw, jiffies + max_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -0400662
663 return 0;
664}
665
Tejun Heo3c798392012-04-16 13:57:25 -0700666static void throtl_update_dispatch_stats(struct blkcg_gq *blkg, u64 bytes,
Tejun Heo629ed0b2012-04-01 14:38:44 -0700667 int rw)
668{
Tejun Heo8a3d2612012-04-01 14:38:44 -0700669 struct throtl_grp *tg = blkg_to_tg(blkg);
670 struct tg_stats_cpu *stats_cpu;
Tejun Heo629ed0b2012-04-01 14:38:44 -0700671 unsigned long flags;
672
673 /* If per cpu stats are not allocated yet, don't do any accounting. */
Tejun Heo8a3d2612012-04-01 14:38:44 -0700674 if (tg->stats_cpu == NULL)
Tejun Heo629ed0b2012-04-01 14:38:44 -0700675 return;
676
677 /*
678 * Disabling interrupts to provide mutual exclusion between two
679 * writes on same cpu. It probably is not needed for 64bit. Not
680 * optimizing that case yet.
681 */
682 local_irq_save(flags);
683
Tejun Heo8a3d2612012-04-01 14:38:44 -0700684 stats_cpu = this_cpu_ptr(tg->stats_cpu);
Tejun Heo629ed0b2012-04-01 14:38:44 -0700685
Tejun Heo629ed0b2012-04-01 14:38:44 -0700686 blkg_rwstat_add(&stats_cpu->serviced, rw, 1);
687 blkg_rwstat_add(&stats_cpu->service_bytes, rw, bytes);
688
689 local_irq_restore(flags);
690}
691
Vivek Goyale43473b2010-09-15 17:06:35 -0400692static void throtl_charge_bio(struct throtl_grp *tg, struct bio *bio)
693{
694 bool rw = bio_data_dir(bio);
Vivek Goyale43473b2010-09-15 17:06:35 -0400695
696 /* Charge the bio to the group */
697 tg->bytes_disp[rw] += bio->bi_size;
Vivek Goyal8e89d132010-09-15 17:06:37 -0400698 tg->io_disp[rw]++;
Vivek Goyale43473b2010-09-15 17:06:35 -0400699
Tejun Heo629ed0b2012-04-01 14:38:44 -0700700 throtl_update_dispatch_stats(tg_to_blkg(tg), bio->bi_size, bio->bi_rw);
Vivek Goyale43473b2010-09-15 17:06:35 -0400701}
702
Tejun Heo0049af72013-05-14 13:52:33 -0700703static void throtl_add_bio_tg(struct bio *bio, struct throtl_grp *tg,
704 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400705{
706 bool rw = bio_data_dir(bio);
707
708 bio_list_add(&tg->bio_lists[rw], bio);
709 /* Take a bio reference on tg */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800710 blkg_get(tg_to_blkg(tg));
Vivek Goyale43473b2010-09-15 17:06:35 -0400711 tg->nr_queued[rw]++;
Tejun Heoe2d57e62013-05-14 13:52:33 -0700712 tg->td->nr_queued[rw]++;
Tejun Heo0049af72013-05-14 13:52:33 -0700713 throtl_enqueue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400714}
715
Tejun Heo0049af72013-05-14 13:52:33 -0700716static void tg_update_disptime(struct throtl_grp *tg,
717 struct throtl_service_queue *parent_sq)
Vivek Goyale43473b2010-09-15 17:06:35 -0400718{
719 unsigned long read_wait = -1, write_wait = -1, min_wait = -1, disptime;
720 struct bio *bio;
721
722 if ((bio = bio_list_peek(&tg->bio_lists[READ])))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700723 tg_may_dispatch(tg, bio, &read_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -0400724
725 if ((bio = bio_list_peek(&tg->bio_lists[WRITE])))
Tejun Heo0f3457f2013-05-14 13:52:32 -0700726 tg_may_dispatch(tg, bio, &write_wait);
Vivek Goyale43473b2010-09-15 17:06:35 -0400727
728 min_wait = min(read_wait, write_wait);
729 disptime = jiffies + min_wait;
730
Vivek Goyale43473b2010-09-15 17:06:35 -0400731 /* Update dispatch time */
Tejun Heo0049af72013-05-14 13:52:33 -0700732 throtl_dequeue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400733 tg->disptime = disptime;
Tejun Heo0049af72013-05-14 13:52:33 -0700734 throtl_enqueue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400735}
736
Tejun Heo0f3457f2013-05-14 13:52:32 -0700737static void tg_dispatch_one_bio(struct throtl_grp *tg, bool rw,
738 struct bio_list *bl)
Vivek Goyale43473b2010-09-15 17:06:35 -0400739{
740 struct bio *bio;
741
742 bio = bio_list_pop(&tg->bio_lists[rw]);
743 tg->nr_queued[rw]--;
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800744 /* Drop bio reference on blkg */
745 blkg_put(tg_to_blkg(tg));
Vivek Goyale43473b2010-09-15 17:06:35 -0400746
Tejun Heo0f3457f2013-05-14 13:52:32 -0700747 BUG_ON(tg->td->nr_queued[rw] <= 0);
748 tg->td->nr_queued[rw]--;
Vivek Goyale43473b2010-09-15 17:06:35 -0400749
750 throtl_charge_bio(tg, bio);
751 bio_list_add(bl, bio);
752 bio->bi_rw |= REQ_THROTTLED;
753
Tejun Heo0f3457f2013-05-14 13:52:32 -0700754 throtl_trim_slice(tg, rw);
Vivek Goyale43473b2010-09-15 17:06:35 -0400755}
756
Tejun Heo0f3457f2013-05-14 13:52:32 -0700757static int throtl_dispatch_tg(struct throtl_grp *tg, struct bio_list *bl)
Vivek Goyale43473b2010-09-15 17:06:35 -0400758{
759 unsigned int nr_reads = 0, nr_writes = 0;
760 unsigned int max_nr_reads = throtl_grp_quantum*3/4;
Vivek Goyalc2f68052010-11-15 19:32:42 +0100761 unsigned int max_nr_writes = throtl_grp_quantum - max_nr_reads;
Vivek Goyale43473b2010-09-15 17:06:35 -0400762 struct bio *bio;
763
764 /* Try to dispatch 75% READS and 25% WRITES */
765
Tejun Heo0f3457f2013-05-14 13:52:32 -0700766 while ((bio = bio_list_peek(&tg->bio_lists[READ])) &&
767 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400768
Tejun Heo0f3457f2013-05-14 13:52:32 -0700769 tg_dispatch_one_bio(tg, bio_data_dir(bio), bl);
Vivek Goyale43473b2010-09-15 17:06:35 -0400770 nr_reads++;
771
772 if (nr_reads >= max_nr_reads)
773 break;
774 }
775
Tejun Heo0f3457f2013-05-14 13:52:32 -0700776 while ((bio = bio_list_peek(&tg->bio_lists[WRITE])) &&
777 tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -0400778
Tejun Heo0f3457f2013-05-14 13:52:32 -0700779 tg_dispatch_one_bio(tg, bio_data_dir(bio), bl);
Vivek Goyale43473b2010-09-15 17:06:35 -0400780 nr_writes++;
781
782 if (nr_writes >= max_nr_writes)
783 break;
784 }
785
786 return nr_reads + nr_writes;
787}
788
Tejun Heo0049af72013-05-14 13:52:33 -0700789static int throtl_select_dispatch(struct throtl_service_queue *parent_sq,
Tejun Heoe2d57e62013-05-14 13:52:33 -0700790 struct bio_list *bl)
Vivek Goyale43473b2010-09-15 17:06:35 -0400791{
792 unsigned int nr_disp = 0;
793 struct throtl_grp *tg;
Vivek Goyale43473b2010-09-15 17:06:35 -0400794
795 while (1) {
Tejun Heo0049af72013-05-14 13:52:33 -0700796 tg = throtl_rb_first(parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400797
798 if (!tg)
799 break;
800
801 if (time_before(jiffies, tg->disptime))
802 break;
803
Tejun Heo0049af72013-05-14 13:52:33 -0700804 throtl_dequeue_tg(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400805
Tejun Heo0f3457f2013-05-14 13:52:32 -0700806 nr_disp += throtl_dispatch_tg(tg, bl);
Vivek Goyale43473b2010-09-15 17:06:35 -0400807
Tejun Heo2db63142013-05-14 13:52:31 -0700808 if (tg->nr_queued[0] || tg->nr_queued[1])
Tejun Heo0049af72013-05-14 13:52:33 -0700809 tg_update_disptime(tg, parent_sq);
Vivek Goyale43473b2010-09-15 17:06:35 -0400810
811 if (nr_disp >= throtl_quantum)
812 break;
813 }
814
815 return nr_disp;
816}
817
Tejun Heocb761992013-05-14 13:52:31 -0700818/* work function to dispatch throttled bios */
819void blk_throtl_dispatch_work_fn(struct work_struct *work)
Vivek Goyale43473b2010-09-15 17:06:35 -0400820{
Tejun Heocb761992013-05-14 13:52:31 -0700821 struct throtl_data *td = container_of(to_delayed_work(work),
822 struct throtl_data, dispatch_work);
823 struct request_queue *q = td->queue;
Vivek Goyale43473b2010-09-15 17:06:35 -0400824 unsigned int nr_disp = 0;
825 struct bio_list bio_list_on_stack;
826 struct bio *bio;
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100827 struct blk_plug plug;
Vivek Goyale43473b2010-09-15 17:06:35 -0400828
829 spin_lock_irq(q->queue_lock);
830
Vivek Goyale43473b2010-09-15 17:06:35 -0400831 bio_list_init(&bio_list_on_stack);
832
Joe Perchesd2f31a52011-06-13 20:19:27 +0200833 throtl_log(td, "dispatch nr_queued=%u read=%u write=%u",
Tejun Heo6a525602013-05-14 13:52:32 -0700834 td->nr_queued[READ] + td->nr_queued[WRITE],
835 td->nr_queued[READ], td->nr_queued[WRITE]);
Vivek Goyale43473b2010-09-15 17:06:35 -0400836
Tejun Heoe2d57e62013-05-14 13:52:33 -0700837 nr_disp = throtl_select_dispatch(&td->service_queue, &bio_list_on_stack);
Vivek Goyale43473b2010-09-15 17:06:35 -0400838
839 if (nr_disp)
840 throtl_log(td, "bios disp=%u", nr_disp);
841
842 throtl_schedule_next_dispatch(td);
Tejun Heo6a525602013-05-14 13:52:32 -0700843
Vivek Goyale43473b2010-09-15 17:06:35 -0400844 spin_unlock_irq(q->queue_lock);
845
846 /*
847 * If we dispatched some requests, unplug the queue to make sure
848 * immediate dispatch
849 */
850 if (nr_disp) {
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100851 blk_start_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -0400852 while((bio = bio_list_pop(&bio_list_on_stack)))
853 generic_make_request(bio);
Vivek Goyal69d60eb2011-03-09 08:27:37 +0100854 blk_finish_plug(&plug);
Vivek Goyale43473b2010-09-15 17:06:35 -0400855 }
Vivek Goyale43473b2010-09-15 17:06:35 -0400856}
857
Tejun Heof95a04a2012-04-16 13:57:26 -0700858static u64 tg_prfill_cpu_rwstat(struct seq_file *sf,
859 struct blkg_policy_data *pd, int off)
Tejun Heo41b38b62012-04-01 14:38:44 -0700860{
Tejun Heof95a04a2012-04-16 13:57:26 -0700861 struct throtl_grp *tg = pd_to_tg(pd);
Tejun Heo41b38b62012-04-01 14:38:44 -0700862 struct blkg_rwstat rwstat = { }, tmp;
863 int i, cpu;
864
865 for_each_possible_cpu(cpu) {
Tejun Heo8a3d2612012-04-01 14:38:44 -0700866 struct tg_stats_cpu *sc = per_cpu_ptr(tg->stats_cpu, cpu);
Tejun Heo41b38b62012-04-01 14:38:44 -0700867
868 tmp = blkg_rwstat_read((void *)sc + off);
869 for (i = 0; i < BLKG_RWSTAT_NR; i++)
870 rwstat.cnt[i] += tmp.cnt[i];
871 }
872
Tejun Heof95a04a2012-04-16 13:57:26 -0700873 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heo41b38b62012-04-01 14:38:44 -0700874}
875
Tejun Heo8a3d2612012-04-01 14:38:44 -0700876static int tg_print_cpu_rwstat(struct cgroup *cgrp, struct cftype *cft,
877 struct seq_file *sf)
Tejun Heo41b38b62012-04-01 14:38:44 -0700878{
Tejun Heo3c798392012-04-16 13:57:25 -0700879 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
Tejun Heo41b38b62012-04-01 14:38:44 -0700880
Tejun Heo3c798392012-04-16 13:57:25 -0700881 blkcg_print_blkgs(sf, blkcg, tg_prfill_cpu_rwstat, &blkcg_policy_throtl,
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700882 cft->private, true);
Tejun Heo41b38b62012-04-01 14:38:44 -0700883 return 0;
884}
885
Tejun Heof95a04a2012-04-16 13:57:26 -0700886static u64 tg_prfill_conf_u64(struct seq_file *sf, struct blkg_policy_data *pd,
887 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700888{
Tejun Heof95a04a2012-04-16 13:57:26 -0700889 struct throtl_grp *tg = pd_to_tg(pd);
890 u64 v = *(u64 *)((void *)tg + off);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700891
Tejun Heoaf133ce2012-04-01 14:38:44 -0700892 if (v == -1)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700893 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -0700894 return __blkg_prfill_u64(sf, pd, v);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700895}
896
Tejun Heof95a04a2012-04-16 13:57:26 -0700897static u64 tg_prfill_conf_uint(struct seq_file *sf, struct blkg_policy_data *pd,
898 int off)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700899{
Tejun Heof95a04a2012-04-16 13:57:26 -0700900 struct throtl_grp *tg = pd_to_tg(pd);
901 unsigned int v = *(unsigned int *)((void *)tg + off);
Tejun Heoaf133ce2012-04-01 14:38:44 -0700902
903 if (v == -1)
904 return 0;
Tejun Heof95a04a2012-04-16 13:57:26 -0700905 return __blkg_prfill_u64(sf, pd, v);
Tejun Heoaf133ce2012-04-01 14:38:44 -0700906}
907
908static int tg_print_conf_u64(struct cgroup *cgrp, struct cftype *cft,
909 struct seq_file *sf)
910{
Tejun Heo3c798392012-04-16 13:57:25 -0700911 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_u64,
912 &blkcg_policy_throtl, cft->private, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700913 return 0;
914}
915
Tejun Heoaf133ce2012-04-01 14:38:44 -0700916static int tg_print_conf_uint(struct cgroup *cgrp, struct cftype *cft,
917 struct seq_file *sf)
Vivek Goyale43473b2010-09-15 17:06:35 -0400918{
Tejun Heo3c798392012-04-16 13:57:25 -0700919 blkcg_print_blkgs(sf, cgroup_to_blkcg(cgrp), tg_prfill_conf_uint,
920 &blkcg_policy_throtl, cft->private, false);
Tejun Heoaf133ce2012-04-01 14:38:44 -0700921 return 0;
Vivek Goyale43473b2010-09-15 17:06:35 -0400922}
923
Tejun Heoaf133ce2012-04-01 14:38:44 -0700924static int tg_set_conf(struct cgroup *cgrp, struct cftype *cft, const char *buf,
925 bool is_u64)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700926{
Tejun Heo3c798392012-04-16 13:57:25 -0700927 struct blkcg *blkcg = cgroup_to_blkcg(cgrp);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700928 struct blkg_conf_ctx ctx;
Tejun Heoaf133ce2012-04-01 14:38:44 -0700929 struct throtl_grp *tg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700930 struct throtl_data *td;
Tejun Heo60c2bc22012-04-01 14:38:43 -0700931 int ret;
932
Tejun Heo3c798392012-04-16 13:57:25 -0700933 ret = blkg_conf_prep(blkcg, &blkcg_policy_throtl, buf, &ctx);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700934 if (ret)
935 return ret;
936
Tejun Heoaf133ce2012-04-01 14:38:44 -0700937 tg = blkg_to_tg(ctx.blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700938 td = ctx.blkg->q->td;
Tejun Heoaf133ce2012-04-01 14:38:44 -0700939
Tejun Heoa2b16932012-04-13 13:11:33 -0700940 if (!ctx.v)
941 ctx.v = -1;
Tejun Heoaf133ce2012-04-01 14:38:44 -0700942
Tejun Heoa2b16932012-04-13 13:11:33 -0700943 if (is_u64)
944 *(u64 *)((void *)tg + cft->private) = ctx.v;
945 else
946 *(unsigned int *)((void *)tg + cft->private) = ctx.v;
Tejun Heoaf133ce2012-04-01 14:38:44 -0700947
Tejun Heo0f3457f2013-05-14 13:52:32 -0700948 throtl_log_tg(tg, "limit change rbps=%llu wbps=%llu riops=%u wiops=%u",
Tejun Heo632b4492013-05-14 13:52:31 -0700949 tg->bps[READ], tg->bps[WRITE],
950 tg->iops[READ], tg->iops[WRITE]);
951
952 /*
953 * We're already holding queue_lock and know @tg is valid. Let's
954 * apply the new config directly.
955 *
956 * Restart the slices for both READ and WRITES. It might happen
957 * that a group's limit are dropped suddenly and we don't want to
958 * account recently dispatched IO with new low rate.
959 */
Tejun Heo0f3457f2013-05-14 13:52:32 -0700960 throtl_start_new_slice(tg, 0);
961 throtl_start_new_slice(tg, 1);
Tejun Heo632b4492013-05-14 13:52:31 -0700962
Tejun Heo5b2c16a2013-05-14 13:52:32 -0700963 if (tg->flags & THROTL_TG_PENDING) {
Tejun Heo0049af72013-05-14 13:52:33 -0700964 tg_update_disptime(tg, &td->service_queue);
Tejun Heo632b4492013-05-14 13:52:31 -0700965 throtl_schedule_next_dispatch(td);
966 }
Tejun Heo60c2bc22012-04-01 14:38:43 -0700967
968 blkg_conf_finish(&ctx);
Tejun Heoa2b16932012-04-13 13:11:33 -0700969 return 0;
Tejun Heo60c2bc22012-04-01 14:38:43 -0700970}
971
Tejun Heoaf133ce2012-04-01 14:38:44 -0700972static int tg_set_conf_u64(struct cgroup *cgrp, struct cftype *cft,
973 const char *buf)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700974{
Tejun Heoaf133ce2012-04-01 14:38:44 -0700975 return tg_set_conf(cgrp, cft, buf, true);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700976}
977
Tejun Heoaf133ce2012-04-01 14:38:44 -0700978static int tg_set_conf_uint(struct cgroup *cgrp, struct cftype *cft,
979 const char *buf)
Tejun Heo60c2bc22012-04-01 14:38:43 -0700980{
Tejun Heoaf133ce2012-04-01 14:38:44 -0700981 return tg_set_conf(cgrp, cft, buf, false);
Tejun Heo60c2bc22012-04-01 14:38:43 -0700982}
983
984static struct cftype throtl_files[] = {
985 {
986 .name = "throttle.read_bps_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -0700987 .private = offsetof(struct throtl_grp, bps[READ]),
988 .read_seq_string = tg_print_conf_u64,
989 .write_string = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -0700990 .max_write_len = 256,
991 },
992 {
993 .name = "throttle.write_bps_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -0700994 .private = offsetof(struct throtl_grp, bps[WRITE]),
995 .read_seq_string = tg_print_conf_u64,
996 .write_string = tg_set_conf_u64,
Tejun Heo60c2bc22012-04-01 14:38:43 -0700997 .max_write_len = 256,
998 },
999 {
1000 .name = "throttle.read_iops_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001001 .private = offsetof(struct throtl_grp, iops[READ]),
1002 .read_seq_string = tg_print_conf_uint,
1003 .write_string = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001004 .max_write_len = 256,
1005 },
1006 {
1007 .name = "throttle.write_iops_device",
Tejun Heoaf133ce2012-04-01 14:38:44 -07001008 .private = offsetof(struct throtl_grp, iops[WRITE]),
1009 .read_seq_string = tg_print_conf_uint,
1010 .write_string = tg_set_conf_uint,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001011 .max_write_len = 256,
1012 },
1013 {
1014 .name = "throttle.io_service_bytes",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001015 .private = offsetof(struct tg_stats_cpu, service_bytes),
Tejun Heo8a3d2612012-04-01 14:38:44 -07001016 .read_seq_string = tg_print_cpu_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001017 },
1018 {
1019 .name = "throttle.io_serviced",
Tejun Heo5bc4afb12012-04-01 14:38:45 -07001020 .private = offsetof(struct tg_stats_cpu, serviced),
Tejun Heo8a3d2612012-04-01 14:38:44 -07001021 .read_seq_string = tg_print_cpu_rwstat,
Tejun Heo60c2bc22012-04-01 14:38:43 -07001022 },
1023 { } /* terminate */
1024};
1025
Vivek Goyalda527772011-03-02 19:05:33 -05001026static void throtl_shutdown_wq(struct request_queue *q)
Vivek Goyale43473b2010-09-15 17:06:35 -04001027{
1028 struct throtl_data *td = q->td;
1029
Tejun Heocb761992013-05-14 13:52:31 -07001030 cancel_delayed_work_sync(&td->dispatch_work);
Vivek Goyale43473b2010-09-15 17:06:35 -04001031}
1032
Tejun Heo3c798392012-04-16 13:57:25 -07001033static struct blkcg_policy blkcg_policy_throtl = {
Tejun Heof9fcc2d2012-04-16 13:57:27 -07001034 .pd_size = sizeof(struct throtl_grp),
1035 .cftypes = throtl_files,
1036
1037 .pd_init_fn = throtl_pd_init,
1038 .pd_exit_fn = throtl_pd_exit,
1039 .pd_reset_stats_fn = throtl_pd_reset_stats,
Vivek Goyale43473b2010-09-15 17:06:35 -04001040};
1041
Tejun Heobc16a4f2011-10-19 14:33:01 +02001042bool blk_throtl_bio(struct request_queue *q, struct bio *bio)
Vivek Goyale43473b2010-09-15 17:06:35 -04001043{
1044 struct throtl_data *td = q->td;
1045 struct throtl_grp *tg;
Vivek Goyale43473b2010-09-15 17:06:35 -04001046 bool rw = bio_data_dir(bio), update_disptime = true;
Tejun Heo3c798392012-04-16 13:57:25 -07001047 struct blkcg *blkcg;
Tejun Heobc16a4f2011-10-19 14:33:01 +02001048 bool throttled = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001049
1050 if (bio->bi_rw & REQ_THROTTLED) {
1051 bio->bi_rw &= ~REQ_THROTTLED;
Tejun Heobc16a4f2011-10-19 14:33:01 +02001052 goto out;
Vivek Goyale43473b2010-09-15 17:06:35 -04001053 }
1054
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001055 /*
1056 * A throtl_grp pointer retrieved under rcu can be used to access
1057 * basic fields like stats and io rates. If a group has no rules,
1058 * just update the dispatch stats in lockless manner and return.
1059 */
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001060 rcu_read_lock();
Tejun Heo3c798392012-04-16 13:57:25 -07001061 blkcg = bio_blkcg(bio);
Tejun Heocd1604f2012-03-05 13:15:06 -08001062 tg = throtl_lookup_tg(td, blkcg);
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001063 if (tg) {
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001064 if (tg_no_rule_group(tg, rw)) {
Tejun Heo629ed0b2012-04-01 14:38:44 -07001065 throtl_update_dispatch_stats(tg_to_blkg(tg),
1066 bio->bi_size, bio->bi_rw);
Tejun Heo2a7f1242012-03-05 13:15:01 -08001067 goto out_unlock_rcu;
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001068 }
1069 }
Vivek Goyalaf75cd32011-05-19 15:38:31 -04001070
1071 /*
1072 * Either group has not been allocated yet or it is not an unlimited
1073 * IO group
1074 */
Vivek Goyale43473b2010-09-15 17:06:35 -04001075 spin_lock_irq(q->queue_lock);
Tejun Heocd1604f2012-03-05 13:15:06 -08001076 tg = throtl_lookup_create_tg(td, blkcg);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001077 if (unlikely(!tg))
1078 goto out_unlock;
Vivek Goyalf469a7b2011-05-19 15:38:23 -04001079
Vivek Goyale43473b2010-09-15 17:06:35 -04001080 if (tg->nr_queued[rw]) {
1081 /*
1082 * There is already another bio queued in same dir. No
1083 * need to update dispatch time.
1084 */
Vivek Goyal231d7042011-03-07 21:05:14 +01001085 update_disptime = false;
Vivek Goyale43473b2010-09-15 17:06:35 -04001086 goto queue_bio;
Vivek Goyalde701c72011-03-07 21:09:32 +01001087
Vivek Goyale43473b2010-09-15 17:06:35 -04001088 }
1089
1090 /* Bio is with-in rate limit of group */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001091 if (tg_may_dispatch(tg, bio, NULL)) {
Vivek Goyale43473b2010-09-15 17:06:35 -04001092 throtl_charge_bio(tg, bio);
Vivek Goyal04521db2011-03-22 21:54:29 +01001093
1094 /*
1095 * We need to trim slice even when bios are not being queued
1096 * otherwise it might happen that a bio is not queued for
1097 * a long time and slice keeps on extending and trim is not
1098 * called for a long time. Now if limits are reduced suddenly
1099 * we take into account all the IO dispatched so far at new
1100 * low rate and * newly queued IO gets a really long dispatch
1101 * time.
1102 *
1103 * So keep on trimming slice even if bio is not queued.
1104 */
Tejun Heo0f3457f2013-05-14 13:52:32 -07001105 throtl_trim_slice(tg, rw);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001106 goto out_unlock;
Vivek Goyale43473b2010-09-15 17:06:35 -04001107 }
1108
1109queue_bio:
Tejun Heo0f3457f2013-05-14 13:52:32 -07001110 throtl_log_tg(tg, "[%c] bio. bdisp=%llu sz=%u bps=%llu"
Vivek Goyal8e89d132010-09-15 17:06:37 -04001111 " iodisp=%u iops=%u queued=%d/%d",
1112 rw == READ ? 'R' : 'W',
Vivek Goyale43473b2010-09-15 17:06:35 -04001113 tg->bytes_disp[rw], bio->bi_size, tg->bps[rw],
Vivek Goyal8e89d132010-09-15 17:06:37 -04001114 tg->io_disp[rw], tg->iops[rw],
Vivek Goyale43473b2010-09-15 17:06:35 -04001115 tg->nr_queued[READ], tg->nr_queued[WRITE]);
1116
Tejun Heo671058f2012-03-05 13:15:29 -08001117 bio_associate_current(bio);
Tejun Heo0049af72013-05-14 13:52:33 -07001118 throtl_add_bio_tg(bio, tg, &q->td->service_queue);
Tejun Heobc16a4f2011-10-19 14:33:01 +02001119 throttled = true;
Vivek Goyale43473b2010-09-15 17:06:35 -04001120
1121 if (update_disptime) {
Tejun Heo0049af72013-05-14 13:52:33 -07001122 tg_update_disptime(tg, &td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04001123 throtl_schedule_next_dispatch(td);
1124 }
1125
Tejun Heobc16a4f2011-10-19 14:33:01 +02001126out_unlock:
Vivek Goyale43473b2010-09-15 17:06:35 -04001127 spin_unlock_irq(q->queue_lock);
Tejun Heo2a7f1242012-03-05 13:15:01 -08001128out_unlock_rcu:
1129 rcu_read_unlock();
Tejun Heobc16a4f2011-10-19 14:33:01 +02001130out:
1131 return throttled;
Vivek Goyale43473b2010-09-15 17:06:35 -04001132}
1133
Tejun Heoc9a929d2011-10-19 14:42:16 +02001134/**
1135 * blk_throtl_drain - drain throttled bios
1136 * @q: request_queue to drain throttled bios for
1137 *
1138 * Dispatch all currently throttled bios on @q through ->make_request_fn().
1139 */
1140void blk_throtl_drain(struct request_queue *q)
1141 __releases(q->queue_lock) __acquires(q->queue_lock)
1142{
1143 struct throtl_data *td = q->td;
Tejun Heo0049af72013-05-14 13:52:33 -07001144 struct throtl_service_queue *parent_sq = &td->service_queue;
Tejun Heoc9a929d2011-10-19 14:42:16 +02001145 struct throtl_grp *tg;
1146 struct bio_list bl;
1147 struct bio *bio;
1148
Andi Kleen8bcb6c72012-03-30 12:33:28 +02001149 queue_lockdep_assert_held(q);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001150
1151 bio_list_init(&bl);
1152
Tejun Heo0049af72013-05-14 13:52:33 -07001153 while ((tg = throtl_rb_first(parent_sq))) {
1154 throtl_dequeue_tg(tg, parent_sq);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001155
1156 while ((bio = bio_list_peek(&tg->bio_lists[READ])))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001157 tg_dispatch_one_bio(tg, bio_data_dir(bio), &bl);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001158 while ((bio = bio_list_peek(&tg->bio_lists[WRITE])))
Tejun Heo0f3457f2013-05-14 13:52:32 -07001159 tg_dispatch_one_bio(tg, bio_data_dir(bio), &bl);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001160 }
1161 spin_unlock_irq(q->queue_lock);
1162
1163 while ((bio = bio_list_pop(&bl)))
1164 generic_make_request(bio);
1165
1166 spin_lock_irq(q->queue_lock);
1167}
1168
Vivek Goyale43473b2010-09-15 17:06:35 -04001169int blk_throtl_init(struct request_queue *q)
1170{
1171 struct throtl_data *td;
Tejun Heoa2b16932012-04-13 13:11:33 -07001172 int ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001173
1174 td = kzalloc_node(sizeof(*td), GFP_KERNEL, q->node);
1175 if (!td)
1176 return -ENOMEM;
1177
Tejun Heocb761992013-05-14 13:52:31 -07001178 INIT_DELAYED_WORK(&td->dispatch_work, blk_throtl_dispatch_work_fn);
Tejun Heo49a2f1e2013-05-14 13:52:34 -07001179 throtl_service_queue_init(&td->service_queue);
Vivek Goyale43473b2010-09-15 17:06:35 -04001180
Tejun Heocd1604f2012-03-05 13:15:06 -08001181 q->td = td;
Vivek Goyal29b12582011-05-19 15:38:24 -04001182 td->queue = q;
Vivek Goyal02977e42010-10-01 14:49:48 +02001183
Tejun Heoa2b16932012-04-13 13:11:33 -07001184 /* activate policy */
Tejun Heo3c798392012-04-16 13:57:25 -07001185 ret = blkcg_activate_policy(q, &blkcg_policy_throtl);
Tejun Heoa2b16932012-04-13 13:11:33 -07001186 if (ret)
Vivek Goyal29b12582011-05-19 15:38:24 -04001187 kfree(td);
Tejun Heoa2b16932012-04-13 13:11:33 -07001188 return ret;
Vivek Goyale43473b2010-09-15 17:06:35 -04001189}
1190
1191void blk_throtl_exit(struct request_queue *q)
1192{
Tejun Heoc875f4d2012-03-05 13:15:22 -08001193 BUG_ON(!q->td);
Vivek Goyalda527772011-03-02 19:05:33 -05001194 throtl_shutdown_wq(q);
Tejun Heo3c798392012-04-16 13:57:25 -07001195 blkcg_deactivate_policy(q, &blkcg_policy_throtl);
Tejun Heoc9a929d2011-10-19 14:42:16 +02001196 kfree(q->td);
Vivek Goyale43473b2010-09-15 17:06:35 -04001197}
1198
1199static int __init throtl_init(void)
1200{
Vivek Goyal450adcb2011-03-01 13:40:54 -05001201 kthrotld_workqueue = alloc_workqueue("kthrotld", WQ_MEM_RECLAIM, 0);
1202 if (!kthrotld_workqueue)
1203 panic("Failed to create kthrotld\n");
1204
Tejun Heo3c798392012-04-16 13:57:25 -07001205 return blkcg_policy_register(&blkcg_policy_throtl);
Vivek Goyale43473b2010-09-15 17:06:35 -04001206}
1207
1208module_init(throtl_init);