blob: cafcd743118969daec377f52f09e41594d188347 [file] [log] [blame]
Vivek Goyal31e4c282009-12-03 12:59:42 -05001/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
12 */
13#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050014#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050015#include <linux/module.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110016#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070017#include <linux/blkdev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080019#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080020#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070021#include <linux/atomic.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080022#include "blk-cgroup.h"
Tejun Heo5efd6112012-03-05 13:15:12 -080023#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050024
Divyesh Shah84c124d2010-04-09 08:31:19 +020025#define MAX_KEY_LEN 100
26
Tejun Heobc0d6502012-04-13 13:11:26 -070027static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080028
Tejun Heo3c798392012-04-16 13:57:25 -070029struct blkcg blkcg_root = { .cfq_weight = 2 * CFQ_WEIGHT_DEFAULT };
30EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050031
Tejun Heo3c798392012-04-16 13:57:25 -070032static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080033
Tejun Heoa2b16932012-04-13 13:11:33 -070034static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070035 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070036{
37 return pol && test_bit(pol->plid, q->blkcg_pols);
38}
39
Tejun Heo03814112012-03-05 13:15:14 -080040/**
41 * blkg_free - free a blkg
42 * @blkg: blkg to free
43 *
44 * Free @blkg which may be partially allocated.
45 */
Tejun Heo3c798392012-04-16 13:57:25 -070046static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080047{
Tejun Heoe8989fa2012-03-05 13:15:20 -080048 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080049
50 if (!blkg)
51 return;
52
Tejun Heo8bd435b2012-04-13 13:11:28 -070053 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -070054 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -080055 struct blkg_policy_data *pd = blkg->pd[i];
56
Tejun Heo9ade5ea2012-04-01 14:38:44 -070057 if (!pd)
58 continue;
59
Tejun Heof9fcc2d2012-04-16 13:57:27 -070060 if (pol && pol->pd_exit_fn)
61 pol->pd_exit_fn(blkg);
Tejun Heo9ade5ea2012-04-01 14:38:44 -070062
Tejun Heo9ade5ea2012-04-01 14:38:44 -070063 kfree(pd);
Tejun Heo03814112012-03-05 13:15:14 -080064 }
Tejun Heoe8989fa2012-03-05 13:15:20 -080065
Tejun Heoa0516612012-06-26 15:05:44 -070066 blk_exit_rl(&blkg->rl);
Tejun Heo549d3aa2012-03-05 13:15:16 -080067 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080068}
69
70/**
71 * blkg_alloc - allocate a blkg
72 * @blkcg: block cgroup the new blkg is associated with
73 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070074 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080075 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080076 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080077 */
Tejun Heo15974992012-06-04 20:40:52 -070078static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
79 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080080{
Tejun Heo3c798392012-04-16 13:57:25 -070081 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080082 int i;
Tejun Heo03814112012-03-05 13:15:14 -080083
84 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070085 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -080086 if (!blkg)
87 return NULL;
88
Tejun Heoc875f4d2012-03-05 13:15:22 -080089 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -080090 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -080091 blkg->blkcg = blkcg;
Tejun Heo1adaf3d2012-03-05 13:15:15 -080092 blkg->refcnt = 1;
Tejun Heo03814112012-03-05 13:15:14 -080093
Tejun Heoa0516612012-06-26 15:05:44 -070094 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
95 if (blkcg != &blkcg_root) {
96 if (blk_init_rl(&blkg->rl, q, gfp_mask))
97 goto err_free;
98 blkg->rl.blkg = blkg;
99 }
100
Tejun Heo8bd435b2012-04-13 13:11:28 -0700101 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700102 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800103 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800104
Tejun Heoa2b16932012-04-13 13:11:33 -0700105 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800106 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800107
Tejun Heoe8989fa2012-03-05 13:15:20 -0800108 /* alloc per-policy data and attach it to blkg */
Tejun Heo15974992012-06-04 20:40:52 -0700109 pd = kzalloc_node(pol->pd_size, gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700110 if (!pd)
111 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800112
Tejun Heoe8989fa2012-03-05 13:15:20 -0800113 blkg->pd[i] = pd;
114 pd->blkg = blkg;
Tejun Heo03814112012-03-05 13:15:14 -0800115
Tejun Heo9b2ea862012-06-04 15:21:00 +0900116 /* invoke per-policy init */
Tejun Heoa2b16932012-04-13 13:11:33 -0700117 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700118 pol->pd_init_fn(blkg);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800119 }
120
Tejun Heo03814112012-03-05 13:15:14 -0800121 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700122
123err_free:
124 blkg_free(blkg);
125 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800126}
127
Tejun Heo3c798392012-04-16 13:57:25 -0700128static struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
129 struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700130{
Tejun Heo3c798392012-04-16 13:57:25 -0700131 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700132
Tejun Heoa6371202012-04-19 16:29:24 -0700133 blkg = rcu_dereference(blkcg->blkg_hint);
134 if (blkg && blkg->q == q)
135 return blkg;
136
137 /*
138 * Hint didn't match. Look up from the radix tree. Note that we
139 * may not be holding queue_lock and thus are not sure whether
140 * @blkg from blkg_tree has already been removed or not, so we
141 * can't update hint to the lookup result. Leave it to the caller.
142 */
143 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
144 if (blkg && blkg->q == q)
145 return blkg;
146
Tejun Heo80fd9972012-04-13 14:50:53 -0700147 return NULL;
148}
149
150/**
151 * blkg_lookup - lookup blkg for the specified blkcg - q pair
152 * @blkcg: blkcg of interest
153 * @q: request_queue of interest
154 *
155 * Lookup blkg for the @blkcg - @q pair. This function should be called
156 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
157 * - see blk_queue_bypass_start() for details.
158 */
Tejun Heo3c798392012-04-16 13:57:25 -0700159struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700160{
161 WARN_ON_ONCE(!rcu_read_lock_held());
162
163 if (unlikely(blk_queue_bypass(q)))
164 return NULL;
165 return __blkg_lookup(blkcg, q);
166}
167EXPORT_SYMBOL_GPL(blkg_lookup);
168
Tejun Heo15974992012-06-04 20:40:52 -0700169/*
170 * If @new_blkg is %NULL, this function tries to allocate a new one as
171 * necessary using %GFP_ATOMIC. @new_blkg is always consumed on return.
172 */
Tejun Heo3c798392012-04-16 13:57:25 -0700173static struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
Tejun Heo15974992012-06-04 20:40:52 -0700174 struct request_queue *q,
175 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400176{
Tejun Heo3c798392012-04-16 13:57:25 -0700177 struct blkcg_gq *blkg;
Tejun Heo496fb782012-04-19 16:29:23 -0700178 int ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400179
Tejun Heocd1604f2012-03-05 13:15:06 -0800180 WARN_ON_ONCE(!rcu_read_lock_held());
181 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500182
Tejun Heoa6371202012-04-19 16:29:24 -0700183 /* lookup and update hint on success, see __blkg_lookup() for details */
Tejun Heo80fd9972012-04-13 14:50:53 -0700184 blkg = __blkg_lookup(blkcg, q);
Tejun Heoa6371202012-04-19 16:29:24 -0700185 if (blkg) {
186 rcu_assign_pointer(blkcg->blkg_hint, blkg);
Tejun Heo15974992012-06-04 20:40:52 -0700187 goto out_free;
Tejun Heoa6371202012-04-19 16:29:24 -0700188 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800189
Tejun Heo7ee9c562012-03-05 13:15:11 -0800190 /* blkg holds a reference to blkcg */
Tejun Heo15974992012-06-04 20:40:52 -0700191 if (!css_tryget(&blkcg->css)) {
192 blkg = ERR_PTR(-EINVAL);
193 goto out_free;
194 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800195
Tejun Heo496fb782012-04-19 16:29:23 -0700196 /* allocate */
Tejun Heo15974992012-06-04 20:40:52 -0700197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_ATOMIC);
199 if (unlikely(!new_blkg)) {
200 blkg = ERR_PTR(-ENOMEM);
201 goto out_put;
202 }
203 }
204 blkg = new_blkg;
Tejun Heocd1604f2012-03-05 13:15:06 -0800205
206 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700207 spin_lock(&blkcg->lock);
208 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
209 if (likely(!ret)) {
210 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
211 list_add(&blkg->q_node, &q->blkg_list);
212 }
213 spin_unlock(&blkcg->lock);
214
Tejun Heoa6371202012-04-19 16:29:24 -0700215 if (!ret)
216 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700217
218 blkg = ERR_PTR(ret);
219out_put:
Tejun Heo496fb782012-04-19 16:29:23 -0700220 css_put(&blkcg->css);
Tejun Heo15974992012-06-04 20:40:52 -0700221out_free:
222 blkg_free(new_blkg);
223 return blkg;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500224}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700225
Tejun Heo3c798392012-04-16 13:57:25 -0700226struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
227 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700228{
229 /*
230 * This could be the first entry point of blkcg implementation and
231 * we shouldn't allow anything to go through for a bypassing queue.
232 */
233 if (unlikely(blk_queue_bypass(q)))
234 return ERR_PTR(blk_queue_dead(q) ? -EINVAL : -EBUSY);
Tejun Heo15974992012-06-04 20:40:52 -0700235 return __blkg_lookup_create(blkcg, q, NULL);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700236}
Tejun Heocd1604f2012-03-05 13:15:06 -0800237EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500238
Tejun Heo3c798392012-04-16 13:57:25 -0700239static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800240{
Tejun Heo3c798392012-04-16 13:57:25 -0700241 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800242
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200243 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800244 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800245
246 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800247 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800248 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700249
250 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800251 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800252 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800253
Tejun Heo03aa2642012-03-05 13:15:19 -0800254 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700255 * Both setting lookup hint to and clearing it from @blkg are done
256 * under queue_lock. If it's not pointing to @blkg now, it never
257 * will. Hint assignment itself can race safely.
258 */
259 if (rcu_dereference_raw(blkcg->blkg_hint) == blkg)
260 rcu_assign_pointer(blkcg->blkg_hint, NULL);
261
262 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800263 * Put the reference taken at the time of creation so that when all
264 * queues are gone, group can be destroyed.
265 */
266 blkg_put(blkg);
267}
268
Tejun Heo9f13ef62012-03-05 13:15:21 -0800269/**
270 * blkg_destroy_all - destroy all blkgs associated with a request_queue
271 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800272 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700273 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800274 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700275static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800276{
Tejun Heo3c798392012-04-16 13:57:25 -0700277 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800278
Tejun Heo6d18b002012-04-13 13:11:35 -0700279 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800280
Tejun Heo9f13ef62012-03-05 13:15:21 -0800281 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700282 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800283
Tejun Heo9f13ef62012-03-05 13:15:21 -0800284 spin_lock(&blkcg->lock);
285 blkg_destroy(blkg);
286 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800287 }
288}
289
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800290static void blkg_rcu_free(struct rcu_head *rcu_head)
291{
Tejun Heo3c798392012-04-16 13:57:25 -0700292 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800293}
294
Tejun Heo3c798392012-04-16 13:57:25 -0700295void __blkg_release(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800296{
297 /* release the extra blkcg reference this blkg has been holding */
298 css_put(&blkg->blkcg->css);
299
300 /*
301 * A group is freed in rcu manner. But having an rcu lock does not
302 * mean that one can access all the fields of blkg and assume these
303 * are valid. For example, don't try to follow throtl_data and
304 * request queue links.
305 *
306 * Having a reference to blkg under an rcu allows acess to only
307 * values local to groups like group stats and group rate limits
308 */
309 call_rcu(&blkg->rcu_head, blkg_rcu_free);
310}
311EXPORT_SYMBOL_GPL(__blkg_release);
312
Tejun Heoa0516612012-06-26 15:05:44 -0700313/*
314 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
315 * because the root blkg uses @q->root_rl instead of its own rl.
316 */
317struct request_list *__blk_queue_next_rl(struct request_list *rl,
318 struct request_queue *q)
319{
320 struct list_head *ent;
321 struct blkcg_gq *blkg;
322
323 /*
324 * Determine the current blkg list_head. The first entry is
325 * root_rl which is off @q->blkg_list and mapped to the head.
326 */
327 if (rl == &q->root_rl) {
328 ent = &q->blkg_list;
329 } else {
330 blkg = container_of(rl, struct blkcg_gq, rl);
331 ent = &blkg->q_node;
332 }
333
334 /* walk to the next list_head, skip root blkcg */
335 ent = ent->next;
336 if (ent == &q->root_blkg->q_node)
337 ent = ent->next;
338 if (ent == &q->blkg_list)
339 return NULL;
340
341 blkg = container_of(ent, struct blkcg_gq, q_node);
342 return &blkg->rl;
343}
344
Tejun Heo3c798392012-04-16 13:57:25 -0700345static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
346 u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700347{
Tejun Heo3c798392012-04-16 13:57:25 -0700348 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
349 struct blkcg_gq *blkg;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700350 struct hlist_node *n;
Tejun Heobc0d6502012-04-13 13:11:26 -0700351 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700352
Tejun Heobc0d6502012-04-13 13:11:26 -0700353 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700354 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800355
356 /*
357 * Note that stat reset is racy - it doesn't synchronize against
358 * stat updates. This is a debug feature which shouldn't exist
359 * anyway. If you get hit by a race, retry.
360 */
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700361 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700362 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700363 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800364
Tejun Heoa2b16932012-04-13 13:11:33 -0700365 if (blkcg_policy_enabled(blkg->q, pol) &&
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700366 pol->pd_reset_stats_fn)
367 pol->pd_reset_stats_fn(blkg);
Tejun Heobc0d6502012-04-13 13:11:26 -0700368 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700369 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400370
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700371 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700372 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700373 return 0;
374}
375
Tejun Heo3c798392012-04-16 13:57:25 -0700376static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700377{
Tejun Heod3d32e62012-04-01 14:38:42 -0700378 /* some drivers (floppy) instantiate a queue w/o disk registered */
379 if (blkg->q->backing_dev_info.dev)
380 return dev_name(blkg->q->backing_dev_info.dev);
381 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700382}
383
Tejun Heod3d32e62012-04-01 14:38:42 -0700384/**
385 * blkcg_print_blkgs - helper for printing per-blkg data
386 * @sf: seq_file to print to
387 * @blkcg: blkcg of interest
388 * @prfill: fill function to print out a blkg
389 * @pol: policy in question
390 * @data: data to be passed to @prfill
391 * @show_total: to print out sum of prfill return values or not
392 *
393 * This function invokes @prfill on each blkg of @blkcg if pd for the
394 * policy specified by @pol exists. @prfill is invoked with @sf, the
395 * policy data and @data. If @show_total is %true, the sum of the return
396 * values from @prfill is printed with "Total" label at the end.
397 *
398 * This is to be used to construct print functions for
399 * cftype->read_seq_string method.
400 */
Tejun Heo3c798392012-04-16 13:57:25 -0700401void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700402 u64 (*prfill)(struct seq_file *,
403 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700404 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700405 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400406{
Tejun Heo3c798392012-04-16 13:57:25 -0700407 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700408 struct hlist_node *n;
409 u64 total = 0;
410
411 spin_lock_irq(&blkcg->lock);
412 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
Tejun Heoa2b16932012-04-13 13:11:33 -0700413 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700414 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heod3d32e62012-04-01 14:38:42 -0700415 spin_unlock_irq(&blkcg->lock);
416
417 if (show_total)
418 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
419}
Tejun Heo829fdb52012-04-01 14:38:43 -0700420EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700421
422/**
423 * __blkg_prfill_u64 - prfill helper for a single u64 value
424 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700425 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700426 * @v: value to print
427 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700428 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700429 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700430u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700431{
Tejun Heof95a04a2012-04-16 13:57:26 -0700432 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700433
434 if (!dname)
435 return 0;
436
437 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
438 return v;
439}
Tejun Heo829fdb52012-04-01 14:38:43 -0700440EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700441
442/**
443 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
444 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700445 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700446 * @rwstat: rwstat to print
447 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700448 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700449 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700450u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700451 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700452{
453 static const char *rwstr[] = {
454 [BLKG_RWSTAT_READ] = "Read",
455 [BLKG_RWSTAT_WRITE] = "Write",
456 [BLKG_RWSTAT_SYNC] = "Sync",
457 [BLKG_RWSTAT_ASYNC] = "Async",
458 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700459 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700460 u64 v;
461 int i;
462
463 if (!dname)
464 return 0;
465
466 for (i = 0; i < BLKG_RWSTAT_NR; i++)
467 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
468 (unsigned long long)rwstat->cnt[i]);
469
470 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
471 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
472 return v;
473}
474
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700475/**
476 * blkg_prfill_stat - prfill callback for blkg_stat
477 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700478 * @pd: policy private data of interest
479 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700480 *
481 * prfill callback for printing a blkg_stat.
482 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700483u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700484{
Tejun Heof95a04a2012-04-16 13:57:26 -0700485 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700486}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700487EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700488
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700489/**
490 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
491 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700492 * @pd: policy private data of interest
493 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700494 *
495 * prfill callback for printing a blkg_rwstat.
496 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700497u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
498 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700499{
Tejun Heof95a04a2012-04-16 13:57:26 -0700500 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700501
Tejun Heof95a04a2012-04-16 13:57:26 -0700502 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700503}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700504EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700505
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700506/**
507 * blkg_conf_prep - parse and prepare for per-blkg config update
508 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700509 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700510 * @input: input string
511 * @ctx: blkg_conf_ctx to be filled
512 *
513 * Parse per-blkg config update from @input and initialize @ctx with the
514 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700515 * value. This function returns with RCU read lock and queue lock held and
516 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700517 */
Tejun Heo3c798392012-04-16 13:57:25 -0700518int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
519 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700520 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800521{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700522 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700523 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700524 unsigned int major, minor;
525 unsigned long long v;
526 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800527
Tejun Heo726fa692012-04-01 14:38:43 -0700528 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
529 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700530
Tejun Heo726fa692012-04-01 14:38:43 -0700531 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800532 if (!disk || part)
Tejun Heo726fa692012-04-01 14:38:43 -0700533 return -EINVAL;
Tejun Heoe56da7e2012-03-05 13:15:07 -0800534
535 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800536 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700537
Tejun Heoa2b16932012-04-13 13:11:33 -0700538 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700539 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700540 else
541 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800542
Tejun Heo4bfd4822012-03-05 13:15:08 -0800543 if (IS_ERR(blkg)) {
544 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700545 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700546 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700547 put_disk(disk);
548 /*
549 * If queue was bypassing, we should retry. Do so after a
550 * short msleep(). It isn't strictly necessary but queue
551 * can be bypassing for some time and it's always nice to
552 * avoid busy looping.
553 */
554 if (ret == -EBUSY) {
555 msleep(10);
556 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400557 }
Tejun Heo726fa692012-04-01 14:38:43 -0700558 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400559 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800560
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700561 ctx->disk = disk;
562 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700563 ctx->v = v;
564 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800565}
Tejun Heo829fdb52012-04-01 14:38:43 -0700566EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800567
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700568/**
569 * blkg_conf_finish - finish up per-blkg config update
570 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
571 *
572 * Finish up after per-blkg config update. This function must be paired
573 * with blkg_conf_prep().
574 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700575void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700576 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800577{
Tejun Heoda8b0662012-04-13 13:11:29 -0700578 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700579 rcu_read_unlock();
580 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800581}
Tejun Heo829fdb52012-04-01 14:38:43 -0700582EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800583
Tejun Heo3c798392012-04-16 13:57:25 -0700584struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500585 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200586 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700587 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500588 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700589 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500590};
591
Tejun Heo9f13ef62012-03-05 13:15:21 -0800592/**
Tejun Heo3c798392012-04-16 13:57:25 -0700593 * blkcg_pre_destroy - cgroup pre_destroy callback
Tejun Heo9f13ef62012-03-05 13:15:21 -0800594 * @cgroup: cgroup of interest
595 *
596 * This function is called when @cgroup is about to go away and responsible
597 * for shooting down all blkgs associated with @cgroup. blkgs should be
598 * removed while holding both q and blkcg locks. As blkcg lock is nested
599 * inside q lock, this function performs reverse double lock dancing.
600 *
601 * This is the blkcg counterpart of ioc_release_fn().
602 */
Tejun Heo3c798392012-04-16 13:57:25 -0700603static int blkcg_pre_destroy(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500604{
Tejun Heo3c798392012-04-16 13:57:25 -0700605 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500606
Tejun Heo9f13ef62012-03-05 13:15:21 -0800607 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800608
Tejun Heo9f13ef62012-03-05 13:15:21 -0800609 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700610 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
611 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800612 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500613
Tejun Heo9f13ef62012-03-05 13:15:21 -0800614 if (spin_trylock(q->queue_lock)) {
615 blkg_destroy(blkg);
616 spin_unlock(q->queue_lock);
617 } else {
618 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800619 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200620 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200621 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800622 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200623
Tejun Heo9f13ef62012-03-05 13:15:21 -0800624 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800625 return 0;
626}
627
Tejun Heo3c798392012-04-16 13:57:25 -0700628static void blkcg_destroy(struct cgroup *cgroup)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800629{
Tejun Heo3c798392012-04-16 13:57:25 -0700630 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800631
Tejun Heo3c798392012-04-16 13:57:25 -0700632 if (blkcg != &blkcg_root)
Ben Blum67523c42010-03-10 15:22:11 -0800633 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500634}
635
Tejun Heo3c798392012-04-16 13:57:25 -0700636static struct cgroup_subsys_state *blkcg_create(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500637{
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700638 static atomic64_t id_seq = ATOMIC64_INIT(0);
Tejun Heo3c798392012-04-16 13:57:25 -0700639 struct blkcg *blkcg;
Li Zefan03415092010-05-07 08:57:00 +0200640 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500641
Li Zefan03415092010-05-07 08:57:00 +0200642 if (!parent) {
Tejun Heo3c798392012-04-16 13:57:25 -0700643 blkcg = &blkcg_root;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500644 goto done;
645 }
646
Vivek Goyal31e4c282009-12-03 12:59:42 -0500647 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
648 if (!blkcg)
649 return ERR_PTR(-ENOMEM);
650
Tejun Heo3381cb82012-04-01 14:38:44 -0700651 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700652 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500653done:
654 spin_lock_init(&blkcg->lock);
Tejun Heoa6371202012-04-19 16:29:24 -0700655 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_ATOMIC);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500656 INIT_HLIST_HEAD(&blkcg->blkg_list);
657
658 return &blkcg->css;
659}
660
Tejun Heo5efd6112012-03-05 13:15:12 -0800661/**
662 * blkcg_init_queue - initialize blkcg part of request queue
663 * @q: request_queue to initialize
664 *
665 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
666 * part of new request_queue @q.
667 *
668 * RETURNS:
669 * 0 on success, -errno on failure.
670 */
671int blkcg_init_queue(struct request_queue *q)
672{
673 might_sleep();
674
Tejun Heo3c96cb32012-04-13 13:11:34 -0700675 return blk_throtl_init(q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800676}
677
678/**
679 * blkcg_drain_queue - drain blkcg part of request_queue
680 * @q: request_queue to drain
681 *
682 * Called from blk_drain_queue(). Responsible for draining blkcg part.
683 */
684void blkcg_drain_queue(struct request_queue *q)
685{
686 lockdep_assert_held(q->queue_lock);
687
688 blk_throtl_drain(q);
689}
690
691/**
692 * blkcg_exit_queue - exit and release blkcg part of request_queue
693 * @q: request_queue being released
694 *
695 * Called from blk_release_queue(). Responsible for exiting blkcg part.
696 */
697void blkcg_exit_queue(struct request_queue *q)
698{
Tejun Heo6d18b002012-04-13 13:11:35 -0700699 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700700 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700701 spin_unlock_irq(q->queue_lock);
702
Tejun Heo5efd6112012-03-05 13:15:12 -0800703 blk_throtl_exit(q);
704}
705
Vivek Goyal31e4c282009-12-03 12:59:42 -0500706/*
707 * We cannot support shared io contexts, as we have no mean to support
708 * two tasks with the same ioc in two different groups without major rework
709 * of the main cic data structures. For now we allow a task to change
710 * its cgroup only if it's the only owner of its ioc.
711 */
Tejun Heo3c798392012-04-16 13:57:25 -0700712static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500713{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800714 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500715 struct io_context *ioc;
716 int ret = 0;
717
718 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -0800719 cgroup_taskset_for_each(task, cgrp, tset) {
720 task_lock(task);
721 ioc = task->io_context;
722 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
723 ret = -EINVAL;
724 task_unlock(task);
725 if (ret)
726 break;
727 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500728 return ret;
729}
730
Tejun Heo676f7c82012-04-01 12:09:55 -0700731struct cgroup_subsys blkio_subsys = {
732 .name = "blkio",
Tejun Heo3c798392012-04-16 13:57:25 -0700733 .create = blkcg_create,
734 .can_attach = blkcg_can_attach,
735 .pre_destroy = blkcg_pre_destroy,
736 .destroy = blkcg_destroy,
Tejun Heo676f7c82012-04-01 12:09:55 -0700737 .subsys_id = blkio_subsys_id,
Tejun Heo3c798392012-04-16 13:57:25 -0700738 .base_cftypes = blkcg_files,
Tejun Heo676f7c82012-04-01 12:09:55 -0700739 .module = THIS_MODULE,
Tejun Heo8c7f6ed2012-09-13 12:20:58 -0700740
741 /*
742 * blkio subsystem is utterly broken in terms of hierarchy support.
743 * It treats all cgroups equally regardless of where they're
744 * located in the hierarchy - all cgroups are treated as if they're
745 * right below the root. Fix it and remove the following.
746 */
747 .broken_hierarchy = true,
Tejun Heo676f7c82012-04-01 12:09:55 -0700748};
749EXPORT_SYMBOL_GPL(blkio_subsys);
750
Tejun Heo8bd435b2012-04-13 13:11:28 -0700751/**
Tejun Heoa2b16932012-04-13 13:11:33 -0700752 * blkcg_activate_policy - activate a blkcg policy on a request_queue
753 * @q: request_queue of interest
754 * @pol: blkcg policy to activate
755 *
756 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
757 * bypass mode to populate its blkgs with policy_data for @pol.
758 *
759 * Activation happens with @q bypassed, so nobody would be accessing blkgs
760 * from IO path. Update of each blkg is protected by both queue and blkcg
761 * locks so that holding either lock and testing blkcg_policy_enabled() is
762 * always enough for dereferencing policy data.
763 *
764 * The caller is responsible for synchronizing [de]activations and policy
765 * [un]registerations. Returns 0 on success, -errno on failure.
766 */
767int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700768 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700769{
770 LIST_HEAD(pds);
Tejun Heo3c798392012-04-16 13:57:25 -0700771 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700772 struct blkg_policy_data *pd, *n;
773 int cnt = 0, ret;
Tejun Heo15974992012-06-04 20:40:52 -0700774 bool preloaded;
Tejun Heoa2b16932012-04-13 13:11:33 -0700775
776 if (blkcg_policy_enabled(q, pol))
777 return 0;
778
Tejun Heo15974992012-06-04 20:40:52 -0700779 /* preallocations for root blkg */
780 blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
781 if (!blkg)
782 return -ENOMEM;
783
784 preloaded = !radix_tree_preload(GFP_KERNEL);
785
Tejun Heoa2b16932012-04-13 13:11:33 -0700786 blk_queue_bypass_start(q);
787
788 /* make sure the root blkg exists and count the existing blkgs */
789 spin_lock_irq(q->queue_lock);
790
791 rcu_read_lock();
Tejun Heo15974992012-06-04 20:40:52 -0700792 blkg = __blkg_lookup_create(&blkcg_root, q, blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700793 rcu_read_unlock();
794
Tejun Heo15974992012-06-04 20:40:52 -0700795 if (preloaded)
796 radix_tree_preload_end();
797
Tejun Heoa2b16932012-04-13 13:11:33 -0700798 if (IS_ERR(blkg)) {
799 ret = PTR_ERR(blkg);
800 goto out_unlock;
801 }
802 q->root_blkg = blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700803 q->root_rl.blkg = blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700804
805 list_for_each_entry(blkg, &q->blkg_list, q_node)
806 cnt++;
807
808 spin_unlock_irq(q->queue_lock);
809
810 /* allocate policy_data for all existing blkgs */
811 while (cnt--) {
Tejun Heof95a04a2012-04-16 13:57:26 -0700812 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
Tejun Heoa2b16932012-04-13 13:11:33 -0700813 if (!pd) {
814 ret = -ENOMEM;
815 goto out_free;
816 }
817 list_add_tail(&pd->alloc_node, &pds);
818 }
819
820 /*
821 * Install the allocated pds. With @q bypassing, no new blkg
822 * should have been created while the queue lock was dropped.
823 */
824 spin_lock_irq(q->queue_lock);
825
826 list_for_each_entry(blkg, &q->blkg_list, q_node) {
827 if (WARN_ON(list_empty(&pds))) {
828 /* umm... this shouldn't happen, just abort */
829 ret = -ENOMEM;
830 goto out_unlock;
831 }
832 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
833 list_del_init(&pd->alloc_node);
834
835 /* grab blkcg lock too while installing @pd on @blkg */
836 spin_lock(&blkg->blkcg->lock);
837
838 blkg->pd[pol->plid] = pd;
839 pd->blkg = blkg;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700840 pol->pd_init_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700841
842 spin_unlock(&blkg->blkcg->lock);
843 }
844
845 __set_bit(pol->plid, q->blkcg_pols);
846 ret = 0;
847out_unlock:
848 spin_unlock_irq(q->queue_lock);
849out_free:
850 blk_queue_bypass_end(q);
851 list_for_each_entry_safe(pd, n, &pds, alloc_node)
852 kfree(pd);
853 return ret;
854}
855EXPORT_SYMBOL_GPL(blkcg_activate_policy);
856
857/**
858 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
859 * @q: request_queue of interest
860 * @pol: blkcg policy to deactivate
861 *
862 * Deactivate @pol on @q. Follows the same synchronization rules as
863 * blkcg_activate_policy().
864 */
865void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700866 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700867{
Tejun Heo3c798392012-04-16 13:57:25 -0700868 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700869
870 if (!blkcg_policy_enabled(q, pol))
871 return;
872
873 blk_queue_bypass_start(q);
874 spin_lock_irq(q->queue_lock);
875
876 __clear_bit(pol->plid, q->blkcg_pols);
877
Tejun Heo6d18b002012-04-13 13:11:35 -0700878 /* if no policy is left, no need for blkgs - shoot them down */
879 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
880 blkg_destroy_all(q);
881
Tejun Heoa2b16932012-04-13 13:11:33 -0700882 list_for_each_entry(blkg, &q->blkg_list, q_node) {
883 /* grab blkcg lock too while removing @pd from @blkg */
884 spin_lock(&blkg->blkcg->lock);
885
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700886 if (pol->pd_exit_fn)
887 pol->pd_exit_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700888
889 kfree(blkg->pd[pol->plid]);
890 blkg->pd[pol->plid] = NULL;
891
892 spin_unlock(&blkg->blkcg->lock);
893 }
894
895 spin_unlock_irq(q->queue_lock);
896 blk_queue_bypass_end(q);
897}
898EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
899
900/**
Tejun Heo3c798392012-04-16 13:57:25 -0700901 * blkcg_policy_register - register a blkcg policy
902 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -0700903 *
Tejun Heo3c798392012-04-16 13:57:25 -0700904 * Register @pol with blkcg core. Might sleep and @pol may be modified on
905 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700906 */
Tejun Heo3c798392012-04-16 13:57:25 -0700907int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500908{
Tejun Heo8bd435b2012-04-13 13:11:28 -0700909 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800910
Tejun Heof95a04a2012-04-16 13:57:26 -0700911 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
912 return -EINVAL;
913
Tejun Heobc0d6502012-04-13 13:11:26 -0700914 mutex_lock(&blkcg_pol_mutex);
915
Tejun Heo8bd435b2012-04-13 13:11:28 -0700916 /* find an empty slot */
917 ret = -ENOSPC;
918 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -0700919 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -0700920 break;
921 if (i >= BLKCG_MAX_POLS)
922 goto out_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -0800923
Tejun Heo8bd435b2012-04-13 13:11:28 -0700924 /* register and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700925 pol->plid = i;
926 blkcg_policy[i] = pol;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700927
Tejun Heo8bd435b2012-04-13 13:11:28 -0700928 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -0700929 if (pol->cftypes)
930 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
Tejun Heo8bd435b2012-04-13 13:11:28 -0700931 ret = 0;
932out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700933 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -0700934 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -0500935}
Tejun Heo3c798392012-04-16 13:57:25 -0700936EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -0500937
Tejun Heo8bd435b2012-04-13 13:11:28 -0700938/**
Tejun Heo3c798392012-04-16 13:57:25 -0700939 * blkcg_policy_unregister - unregister a blkcg policy
940 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -0700941 *
Tejun Heo3c798392012-04-16 13:57:25 -0700942 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700943 */
Tejun Heo3c798392012-04-16 13:57:25 -0700944void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500945{
Tejun Heobc0d6502012-04-13 13:11:26 -0700946 mutex_lock(&blkcg_pol_mutex);
947
Tejun Heo3c798392012-04-16 13:57:25 -0700948 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -0700949 goto out_unlock;
950
951 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -0700952 if (pol->cftypes)
953 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -0700954
Tejun Heo8bd435b2012-04-13 13:11:28 -0700955 /* unregister and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700956 blkcg_policy[pol->plid] = NULL;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700957out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700958 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -0500959}
Tejun Heo3c798392012-04-16 13:57:25 -0700960EXPORT_SYMBOL_GPL(blkcg_policy_unregister);