blob: e7dee617358e810aec57ff25162ff95604fabb3c [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 Heo3c798392012-04-16 13:57:25 -070034struct blkcg *cgroup_to_blkcg(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -050035{
36 return container_of(cgroup_subsys_state(cgroup, blkio_subsys_id),
Tejun Heo3c798392012-04-16 13:57:25 -070037 struct blkcg, css);
Vivek Goyal31e4c282009-12-03 12:59:42 -050038}
Tejun Heo3c798392012-04-16 13:57:25 -070039EXPORT_SYMBOL_GPL(cgroup_to_blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -050040
Tejun Heo3c798392012-04-16 13:57:25 -070041static struct blkcg *task_blkcg(struct task_struct *tsk)
Vivek Goyal70087dc2011-05-16 15:24:08 +020042{
43 return container_of(task_subsys_state(tsk, blkio_subsys_id),
Tejun Heo3c798392012-04-16 13:57:25 -070044 struct blkcg, css);
Vivek Goyal70087dc2011-05-16 15:24:08 +020045}
Tejun Heo4f85cb92012-03-05 13:15:28 -080046
Tejun Heo3c798392012-04-16 13:57:25 -070047struct blkcg *bio_blkcg(struct bio *bio)
Tejun Heo4f85cb92012-03-05 13:15:28 -080048{
49 if (bio && bio->bi_css)
Tejun Heo3c798392012-04-16 13:57:25 -070050 return container_of(bio->bi_css, struct blkcg, css);
51 return task_blkcg(current);
Tejun Heo4f85cb92012-03-05 13:15:28 -080052}
Tejun Heo3c798392012-04-16 13:57:25 -070053EXPORT_SYMBOL_GPL(bio_blkcg);
Vivek Goyal70087dc2011-05-16 15:24:08 +020054
Tejun Heoa2b16932012-04-13 13:11:33 -070055static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070056 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070057{
58 return pol && test_bit(pol->plid, q->blkcg_pols);
59}
60
Tejun Heo03814112012-03-05 13:15:14 -080061/**
62 * blkg_free - free a blkg
63 * @blkg: blkg to free
64 *
65 * Free @blkg which may be partially allocated.
66 */
Tejun Heo3c798392012-04-16 13:57:25 -070067static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080068{
Tejun Heoe8989fa2012-03-05 13:15:20 -080069 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080070
71 if (!blkg)
72 return;
73
Tejun Heo8bd435b2012-04-13 13:11:28 -070074 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -070075 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -080076 struct blkg_policy_data *pd = blkg->pd[i];
77
Tejun Heo9ade5ea2012-04-01 14:38:44 -070078 if (!pd)
79 continue;
80
Tejun Heof9fcc2d2012-04-16 13:57:27 -070081 if (pol && pol->pd_exit_fn)
82 pol->pd_exit_fn(blkg);
Tejun Heo9ade5ea2012-04-01 14:38:44 -070083
Tejun Heo9ade5ea2012-04-01 14:38:44 -070084 kfree(pd);
Tejun Heo03814112012-03-05 13:15:14 -080085 }
Tejun Heoe8989fa2012-03-05 13:15:20 -080086
Tejun Heo549d3aa2012-03-05 13:15:16 -080087 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080088}
89
90/**
91 * blkg_alloc - allocate a blkg
92 * @blkcg: block cgroup the new blkg is associated with
93 * @q: request_queue the new blkg is associated with
Tejun Heo03814112012-03-05 13:15:14 -080094 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080095 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080096 */
Tejun Heo3c798392012-04-16 13:57:25 -070097static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo03814112012-03-05 13:15:14 -080098{
Tejun Heo3c798392012-04-16 13:57:25 -070099 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800100 int i;
Tejun Heo03814112012-03-05 13:15:14 -0800101
102 /* alloc and init base part */
103 blkg = kzalloc_node(sizeof(*blkg), GFP_ATOMIC, q->node);
104 if (!blkg)
105 return NULL;
106
Tejun Heoc875f4d2012-03-05 13:15:22 -0800107 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800108 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800109 blkg->blkcg = blkcg;
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800110 blkg->refcnt = 1;
Tejun Heo03814112012-03-05 13:15:14 -0800111
Tejun Heo8bd435b2012-04-13 13:11:28 -0700112 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700113 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800114 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800115
Tejun Heoa2b16932012-04-13 13:11:33 -0700116 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800117 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800118
Tejun Heoe8989fa2012-03-05 13:15:20 -0800119 /* alloc per-policy data and attach it to blkg */
Tejun Heof95a04a2012-04-16 13:57:26 -0700120 pd = kzalloc_node(pol->pd_size, GFP_ATOMIC, q->node);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800121 if (!pd) {
122 blkg_free(blkg);
123 return NULL;
124 }
Tejun Heo549d3aa2012-03-05 13:15:16 -0800125
Tejun Heoe8989fa2012-03-05 13:15:20 -0800126 blkg->pd[i] = pd;
127 pd->blkg = blkg;
Tejun Heo03814112012-03-05 13:15:14 -0800128
Tejun Heo9b2ea862012-06-04 15:21:00 +0900129 /* invoke per-policy init */
Tejun Heoa2b16932012-04-13 13:11:33 -0700130 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700131 pol->pd_init_fn(blkg);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800132 }
133
Tejun Heo03814112012-03-05 13:15:14 -0800134 return blkg;
135}
136
Tejun Heo3c798392012-04-16 13:57:25 -0700137static struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
138 struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700139{
Tejun Heo3c798392012-04-16 13:57:25 -0700140 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700141
Tejun Heoa6371202012-04-19 16:29:24 -0700142 blkg = rcu_dereference(blkcg->blkg_hint);
143 if (blkg && blkg->q == q)
144 return blkg;
145
146 /*
147 * Hint didn't match. Look up from the radix tree. Note that we
148 * may not be holding queue_lock and thus are not sure whether
149 * @blkg from blkg_tree has already been removed or not, so we
150 * can't update hint to the lookup result. Leave it to the caller.
151 */
152 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
153 if (blkg && blkg->q == q)
154 return blkg;
155
Tejun Heo80fd9972012-04-13 14:50:53 -0700156 return NULL;
157}
158
159/**
160 * blkg_lookup - lookup blkg for the specified blkcg - q pair
161 * @blkcg: blkcg of interest
162 * @q: request_queue of interest
163 *
164 * Lookup blkg for the @blkcg - @q pair. This function should be called
165 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
166 * - see blk_queue_bypass_start() for details.
167 */
Tejun Heo3c798392012-04-16 13:57:25 -0700168struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700169{
170 WARN_ON_ONCE(!rcu_read_lock_held());
171
172 if (unlikely(blk_queue_bypass(q)))
173 return NULL;
174 return __blkg_lookup(blkcg, q);
175}
176EXPORT_SYMBOL_GPL(blkg_lookup);
177
Tejun Heo3c798392012-04-16 13:57:25 -0700178static struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
179 struct request_queue *q)
Tejun Heocd1604f2012-03-05 13:15:06 -0800180 __releases(q->queue_lock) __acquires(q->queue_lock)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400181{
Tejun Heo3c798392012-04-16 13:57:25 -0700182 struct blkcg_gq *blkg;
Tejun Heo496fb782012-04-19 16:29:23 -0700183 int ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400184
Tejun Heocd1604f2012-03-05 13:15:06 -0800185 WARN_ON_ONCE(!rcu_read_lock_held());
186 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500187
Tejun Heoa6371202012-04-19 16:29:24 -0700188 /* lookup and update hint on success, see __blkg_lookup() for details */
Tejun Heo80fd9972012-04-13 14:50:53 -0700189 blkg = __blkg_lookup(blkcg, q);
Tejun Heoa6371202012-04-19 16:29:24 -0700190 if (blkg) {
191 rcu_assign_pointer(blkcg->blkg_hint, blkg);
Tejun Heocd1604f2012-03-05 13:15:06 -0800192 return blkg;
Tejun Heoa6371202012-04-19 16:29:24 -0700193 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800194
Tejun Heo7ee9c562012-03-05 13:15:11 -0800195 /* blkg holds a reference to blkcg */
Tejun Heocd1604f2012-03-05 13:15:06 -0800196 if (!css_tryget(&blkcg->css))
197 return ERR_PTR(-EINVAL);
198
Tejun Heo496fb782012-04-19 16:29:23 -0700199 /* allocate */
200 ret = -ENOMEM;
Vivek Goyal1cd9e032012-03-08 10:53:56 -0800201 blkg = blkg_alloc(blkcg, q);
Tejun Heo496fb782012-04-19 16:29:23 -0700202 if (unlikely(!blkg))
203 goto err_put;
Tejun Heocd1604f2012-03-05 13:15:06 -0800204
205 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700206 ret = radix_tree_preload(GFP_ATOMIC);
207 if (ret)
208 goto err_free;
Tejun Heo496fb782012-04-19 16:29:23 -0700209
Tejun Heoa6371202012-04-19 16:29:24 -0700210 spin_lock(&blkcg->lock);
211 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
212 if (likely(!ret)) {
213 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
214 list_add(&blkg->q_node, &q->blkg_list);
215 }
216 spin_unlock(&blkcg->lock);
217
218 radix_tree_preload_end();
219
220 if (!ret)
221 return blkg;
222err_free:
223 blkg_free(blkg);
Tejun Heo496fb782012-04-19 16:29:23 -0700224err_put:
225 css_put(&blkcg->css);
226 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500227}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700228
Tejun Heo3c798392012-04-16 13:57:25 -0700229struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
230 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700231{
232 /*
233 * This could be the first entry point of blkcg implementation and
234 * we shouldn't allow anything to go through for a bypassing queue.
235 */
236 if (unlikely(blk_queue_bypass(q)))
237 return ERR_PTR(blk_queue_dead(q) ? -EINVAL : -EBUSY);
238 return __blkg_lookup_create(blkcg, q);
239}
Tejun Heocd1604f2012-03-05 13:15:06 -0800240EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500241
Tejun Heo3c798392012-04-16 13:57:25 -0700242static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800243{
Tejun Heo3c798392012-04-16 13:57:25 -0700244 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800245
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200246 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800247 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800248
249 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800250 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800251 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700252
253 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800254 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800255 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800256
Tejun Heo03aa2642012-03-05 13:15:19 -0800257 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700258 * Both setting lookup hint to and clearing it from @blkg are done
259 * under queue_lock. If it's not pointing to @blkg now, it never
260 * will. Hint assignment itself can race safely.
261 */
262 if (rcu_dereference_raw(blkcg->blkg_hint) == blkg)
263 rcu_assign_pointer(blkcg->blkg_hint, NULL);
264
265 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800266 * Put the reference taken at the time of creation so that when all
267 * queues are gone, group can be destroyed.
268 */
269 blkg_put(blkg);
270}
271
Tejun Heo9f13ef62012-03-05 13:15:21 -0800272/**
273 * blkg_destroy_all - destroy all blkgs associated with a request_queue
274 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800275 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700276 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800277 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700278static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800279{
Tejun Heo3c798392012-04-16 13:57:25 -0700280 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800281
Tejun Heo6d18b002012-04-13 13:11:35 -0700282 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800283
Tejun Heo9f13ef62012-03-05 13:15:21 -0800284 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700285 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800286
Tejun Heo9f13ef62012-03-05 13:15:21 -0800287 spin_lock(&blkcg->lock);
288 blkg_destroy(blkg);
289 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800290 }
291}
292
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800293static void blkg_rcu_free(struct rcu_head *rcu_head)
294{
Tejun Heo3c798392012-04-16 13:57:25 -0700295 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800296}
297
Tejun Heo3c798392012-04-16 13:57:25 -0700298void __blkg_release(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800299{
300 /* release the extra blkcg reference this blkg has been holding */
301 css_put(&blkg->blkcg->css);
302
303 /*
304 * A group is freed in rcu manner. But having an rcu lock does not
305 * mean that one can access all the fields of blkg and assume these
306 * are valid. For example, don't try to follow throtl_data and
307 * request queue links.
308 *
309 * Having a reference to blkg under an rcu allows acess to only
310 * values local to groups like group stats and group rate limits
311 */
312 call_rcu(&blkg->rcu_head, blkg_rcu_free);
313}
314EXPORT_SYMBOL_GPL(__blkg_release);
315
Tejun Heo3c798392012-04-16 13:57:25 -0700316static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
317 u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700318{
Tejun Heo3c798392012-04-16 13:57:25 -0700319 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
320 struct blkcg_gq *blkg;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700321 struct hlist_node *n;
Tejun Heobc0d6502012-04-13 13:11:26 -0700322 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700323
Tejun Heobc0d6502012-04-13 13:11:26 -0700324 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700325 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800326
327 /*
328 * Note that stat reset is racy - it doesn't synchronize against
329 * stat updates. This is a debug feature which shouldn't exist
330 * anyway. If you get hit by a race, retry.
331 */
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700332 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700333 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700334 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800335
Tejun Heoa2b16932012-04-13 13:11:33 -0700336 if (blkcg_policy_enabled(blkg->q, pol) &&
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700337 pol->pd_reset_stats_fn)
338 pol->pd_reset_stats_fn(blkg);
Tejun Heobc0d6502012-04-13 13:11:26 -0700339 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700340 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400341
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700342 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700343 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700344 return 0;
345}
346
Tejun Heo3c798392012-04-16 13:57:25 -0700347static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700348{
Tejun Heod3d32e62012-04-01 14:38:42 -0700349 /* some drivers (floppy) instantiate a queue w/o disk registered */
350 if (blkg->q->backing_dev_info.dev)
351 return dev_name(blkg->q->backing_dev_info.dev);
352 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700353}
354
Tejun Heod3d32e62012-04-01 14:38:42 -0700355/**
356 * blkcg_print_blkgs - helper for printing per-blkg data
357 * @sf: seq_file to print to
358 * @blkcg: blkcg of interest
359 * @prfill: fill function to print out a blkg
360 * @pol: policy in question
361 * @data: data to be passed to @prfill
362 * @show_total: to print out sum of prfill return values or not
363 *
364 * This function invokes @prfill on each blkg of @blkcg if pd for the
365 * policy specified by @pol exists. @prfill is invoked with @sf, the
366 * policy data and @data. If @show_total is %true, the sum of the return
367 * values from @prfill is printed with "Total" label at the end.
368 *
369 * This is to be used to construct print functions for
370 * cftype->read_seq_string method.
371 */
Tejun Heo3c798392012-04-16 13:57:25 -0700372void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700373 u64 (*prfill)(struct seq_file *,
374 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700375 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700376 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400377{
Tejun Heo3c798392012-04-16 13:57:25 -0700378 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700379 struct hlist_node *n;
380 u64 total = 0;
381
382 spin_lock_irq(&blkcg->lock);
383 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
Tejun Heoa2b16932012-04-13 13:11:33 -0700384 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700385 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heod3d32e62012-04-01 14:38:42 -0700386 spin_unlock_irq(&blkcg->lock);
387
388 if (show_total)
389 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
390}
Tejun Heo829fdb52012-04-01 14:38:43 -0700391EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700392
393/**
394 * __blkg_prfill_u64 - prfill helper for a single u64 value
395 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700396 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700397 * @v: value to print
398 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700399 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700400 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700401u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700402{
Tejun Heof95a04a2012-04-16 13:57:26 -0700403 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700404
405 if (!dname)
406 return 0;
407
408 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
409 return v;
410}
Tejun Heo829fdb52012-04-01 14:38:43 -0700411EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700412
413/**
414 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
415 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700416 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700417 * @rwstat: rwstat to print
418 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700419 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700420 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700421u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700422 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700423{
424 static const char *rwstr[] = {
425 [BLKG_RWSTAT_READ] = "Read",
426 [BLKG_RWSTAT_WRITE] = "Write",
427 [BLKG_RWSTAT_SYNC] = "Sync",
428 [BLKG_RWSTAT_ASYNC] = "Async",
429 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700430 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700431 u64 v;
432 int i;
433
434 if (!dname)
435 return 0;
436
437 for (i = 0; i < BLKG_RWSTAT_NR; i++)
438 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
439 (unsigned long long)rwstat->cnt[i]);
440
441 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
442 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
443 return v;
444}
445
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700446/**
447 * blkg_prfill_stat - prfill callback for blkg_stat
448 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700449 * @pd: policy private data of interest
450 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700451 *
452 * prfill callback for printing a blkg_stat.
453 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700454u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700455{
Tejun Heof95a04a2012-04-16 13:57:26 -0700456 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700457}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700458EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700459
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700460/**
461 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
462 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700463 * @pd: policy private data of interest
464 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700465 *
466 * prfill callback for printing a blkg_rwstat.
467 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700468u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
469 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700470{
Tejun Heof95a04a2012-04-16 13:57:26 -0700471 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700472
Tejun Heof95a04a2012-04-16 13:57:26 -0700473 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700474}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700475EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700476
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700477/**
478 * blkg_conf_prep - parse and prepare for per-blkg config update
479 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700480 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700481 * @input: input string
482 * @ctx: blkg_conf_ctx to be filled
483 *
484 * Parse per-blkg config update from @input and initialize @ctx with the
485 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700486 * value. This function returns with RCU read lock and queue lock held and
487 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700488 */
Tejun Heo3c798392012-04-16 13:57:25 -0700489int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
490 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700491 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800492{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700493 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700494 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700495 unsigned int major, minor;
496 unsigned long long v;
497 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800498
Tejun Heo726fa692012-04-01 14:38:43 -0700499 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
500 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700501
Tejun Heo726fa692012-04-01 14:38:43 -0700502 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800503 if (!disk || part)
Tejun Heo726fa692012-04-01 14:38:43 -0700504 return -EINVAL;
Tejun Heoe56da7e2012-03-05 13:15:07 -0800505
506 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800507 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700508
Tejun Heoa2b16932012-04-13 13:11:33 -0700509 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700510 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700511 else
512 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800513
Tejun Heo4bfd4822012-03-05 13:15:08 -0800514 if (IS_ERR(blkg)) {
515 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700516 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700517 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700518 put_disk(disk);
519 /*
520 * If queue was bypassing, we should retry. Do so after a
521 * short msleep(). It isn't strictly necessary but queue
522 * can be bypassing for some time and it's always nice to
523 * avoid busy looping.
524 */
525 if (ret == -EBUSY) {
526 msleep(10);
527 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400528 }
Tejun Heo726fa692012-04-01 14:38:43 -0700529 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400530 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800531
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700532 ctx->disk = disk;
533 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700534 ctx->v = v;
535 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800536}
Tejun Heo829fdb52012-04-01 14:38:43 -0700537EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800538
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700539/**
540 * blkg_conf_finish - finish up per-blkg config update
541 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
542 *
543 * Finish up after per-blkg config update. This function must be paired
544 * with blkg_conf_prep().
545 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700546void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700547 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800548{
Tejun Heoda8b0662012-04-13 13:11:29 -0700549 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700550 rcu_read_unlock();
551 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800552}
Tejun Heo829fdb52012-04-01 14:38:43 -0700553EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800554
Tejun Heo3c798392012-04-16 13:57:25 -0700555struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500556 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200557 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700558 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500559 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700560 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500561};
562
Tejun Heo9f13ef62012-03-05 13:15:21 -0800563/**
Tejun Heo3c798392012-04-16 13:57:25 -0700564 * blkcg_pre_destroy - cgroup pre_destroy callback
Tejun Heo9f13ef62012-03-05 13:15:21 -0800565 * @cgroup: cgroup of interest
566 *
567 * This function is called when @cgroup is about to go away and responsible
568 * for shooting down all blkgs associated with @cgroup. blkgs should be
569 * removed while holding both q and blkcg locks. As blkcg lock is nested
570 * inside q lock, this function performs reverse double lock dancing.
571 *
572 * This is the blkcg counterpart of ioc_release_fn().
573 */
Tejun Heo3c798392012-04-16 13:57:25 -0700574static int blkcg_pre_destroy(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500575{
Tejun Heo3c798392012-04-16 13:57:25 -0700576 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500577
Tejun Heo9f13ef62012-03-05 13:15:21 -0800578 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800579
Tejun Heo9f13ef62012-03-05 13:15:21 -0800580 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700581 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
582 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800583 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500584
Tejun Heo9f13ef62012-03-05 13:15:21 -0800585 if (spin_trylock(q->queue_lock)) {
586 blkg_destroy(blkg);
587 spin_unlock(q->queue_lock);
588 } else {
589 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800590 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200591 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200592 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800593 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200594
Tejun Heo9f13ef62012-03-05 13:15:21 -0800595 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800596 return 0;
597}
598
Tejun Heo3c798392012-04-16 13:57:25 -0700599static void blkcg_destroy(struct cgroup *cgroup)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800600{
Tejun Heo3c798392012-04-16 13:57:25 -0700601 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800602
Tejun Heo3c798392012-04-16 13:57:25 -0700603 if (blkcg != &blkcg_root)
Ben Blum67523c42010-03-10 15:22:11 -0800604 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500605}
606
Tejun Heo3c798392012-04-16 13:57:25 -0700607static struct cgroup_subsys_state *blkcg_create(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500608{
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700609 static atomic64_t id_seq = ATOMIC64_INIT(0);
Tejun Heo3c798392012-04-16 13:57:25 -0700610 struct blkcg *blkcg;
Li Zefan03415092010-05-07 08:57:00 +0200611 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500612
Li Zefan03415092010-05-07 08:57:00 +0200613 if (!parent) {
Tejun Heo3c798392012-04-16 13:57:25 -0700614 blkcg = &blkcg_root;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500615 goto done;
616 }
617
Vivek Goyal31e4c282009-12-03 12:59:42 -0500618 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
619 if (!blkcg)
620 return ERR_PTR(-ENOMEM);
621
Tejun Heo3381cb82012-04-01 14:38:44 -0700622 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700623 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500624done:
625 spin_lock_init(&blkcg->lock);
Tejun Heoa6371202012-04-19 16:29:24 -0700626 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_ATOMIC);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500627 INIT_HLIST_HEAD(&blkcg->blkg_list);
628
629 return &blkcg->css;
630}
631
Tejun Heo5efd6112012-03-05 13:15:12 -0800632/**
633 * blkcg_init_queue - initialize blkcg part of request queue
634 * @q: request_queue to initialize
635 *
636 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
637 * part of new request_queue @q.
638 *
639 * RETURNS:
640 * 0 on success, -errno on failure.
641 */
642int blkcg_init_queue(struct request_queue *q)
643{
644 might_sleep();
645
Tejun Heo3c96cb32012-04-13 13:11:34 -0700646 return blk_throtl_init(q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800647}
648
649/**
650 * blkcg_drain_queue - drain blkcg part of request_queue
651 * @q: request_queue to drain
652 *
653 * Called from blk_drain_queue(). Responsible for draining blkcg part.
654 */
655void blkcg_drain_queue(struct request_queue *q)
656{
657 lockdep_assert_held(q->queue_lock);
658
659 blk_throtl_drain(q);
660}
661
662/**
663 * blkcg_exit_queue - exit and release blkcg part of request_queue
664 * @q: request_queue being released
665 *
666 * Called from blk_release_queue(). Responsible for exiting blkcg part.
667 */
668void blkcg_exit_queue(struct request_queue *q)
669{
Tejun Heo6d18b002012-04-13 13:11:35 -0700670 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700671 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700672 spin_unlock_irq(q->queue_lock);
673
Tejun Heo5efd6112012-03-05 13:15:12 -0800674 blk_throtl_exit(q);
675}
676
Vivek Goyal31e4c282009-12-03 12:59:42 -0500677/*
678 * We cannot support shared io contexts, as we have no mean to support
679 * two tasks with the same ioc in two different groups without major rework
680 * of the main cic data structures. For now we allow a task to change
681 * its cgroup only if it's the only owner of its ioc.
682 */
Tejun Heo3c798392012-04-16 13:57:25 -0700683static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500684{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800685 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500686 struct io_context *ioc;
687 int ret = 0;
688
689 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -0800690 cgroup_taskset_for_each(task, cgrp, tset) {
691 task_lock(task);
692 ioc = task->io_context;
693 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
694 ret = -EINVAL;
695 task_unlock(task);
696 if (ret)
697 break;
698 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500699 return ret;
700}
701
Tejun Heo676f7c82012-04-01 12:09:55 -0700702struct cgroup_subsys blkio_subsys = {
703 .name = "blkio",
Tejun Heo3c798392012-04-16 13:57:25 -0700704 .create = blkcg_create,
705 .can_attach = blkcg_can_attach,
706 .pre_destroy = blkcg_pre_destroy,
707 .destroy = blkcg_destroy,
Tejun Heo676f7c82012-04-01 12:09:55 -0700708 .subsys_id = blkio_subsys_id,
Tejun Heo3c798392012-04-16 13:57:25 -0700709 .base_cftypes = blkcg_files,
Tejun Heo676f7c82012-04-01 12:09:55 -0700710 .module = THIS_MODULE,
711};
712EXPORT_SYMBOL_GPL(blkio_subsys);
713
Tejun Heo8bd435b2012-04-13 13:11:28 -0700714/**
Tejun Heoa2b16932012-04-13 13:11:33 -0700715 * blkcg_activate_policy - activate a blkcg policy on a request_queue
716 * @q: request_queue of interest
717 * @pol: blkcg policy to activate
718 *
719 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
720 * bypass mode to populate its blkgs with policy_data for @pol.
721 *
722 * Activation happens with @q bypassed, so nobody would be accessing blkgs
723 * from IO path. Update of each blkg is protected by both queue and blkcg
724 * locks so that holding either lock and testing blkcg_policy_enabled() is
725 * always enough for dereferencing policy data.
726 *
727 * The caller is responsible for synchronizing [de]activations and policy
728 * [un]registerations. Returns 0 on success, -errno on failure.
729 */
730int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700731 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700732{
733 LIST_HEAD(pds);
Tejun Heo3c798392012-04-16 13:57:25 -0700734 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700735 struct blkg_policy_data *pd, *n;
736 int cnt = 0, ret;
737
738 if (blkcg_policy_enabled(q, pol))
739 return 0;
740
741 blk_queue_bypass_start(q);
742
743 /* make sure the root blkg exists and count the existing blkgs */
744 spin_lock_irq(q->queue_lock);
745
746 rcu_read_lock();
Tejun Heo3c798392012-04-16 13:57:25 -0700747 blkg = __blkg_lookup_create(&blkcg_root, q);
Tejun Heoa2b16932012-04-13 13:11:33 -0700748 rcu_read_unlock();
749
750 if (IS_ERR(blkg)) {
751 ret = PTR_ERR(blkg);
752 goto out_unlock;
753 }
754 q->root_blkg = blkg;
755
756 list_for_each_entry(blkg, &q->blkg_list, q_node)
757 cnt++;
758
759 spin_unlock_irq(q->queue_lock);
760
761 /* allocate policy_data for all existing blkgs */
762 while (cnt--) {
Tejun Heof95a04a2012-04-16 13:57:26 -0700763 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
Tejun Heoa2b16932012-04-13 13:11:33 -0700764 if (!pd) {
765 ret = -ENOMEM;
766 goto out_free;
767 }
768 list_add_tail(&pd->alloc_node, &pds);
769 }
770
771 /*
772 * Install the allocated pds. With @q bypassing, no new blkg
773 * should have been created while the queue lock was dropped.
774 */
775 spin_lock_irq(q->queue_lock);
776
777 list_for_each_entry(blkg, &q->blkg_list, q_node) {
778 if (WARN_ON(list_empty(&pds))) {
779 /* umm... this shouldn't happen, just abort */
780 ret = -ENOMEM;
781 goto out_unlock;
782 }
783 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
784 list_del_init(&pd->alloc_node);
785
786 /* grab blkcg lock too while installing @pd on @blkg */
787 spin_lock(&blkg->blkcg->lock);
788
789 blkg->pd[pol->plid] = pd;
790 pd->blkg = blkg;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700791 pol->pd_init_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700792
793 spin_unlock(&blkg->blkcg->lock);
794 }
795
796 __set_bit(pol->plid, q->blkcg_pols);
797 ret = 0;
798out_unlock:
799 spin_unlock_irq(q->queue_lock);
800out_free:
801 blk_queue_bypass_end(q);
802 list_for_each_entry_safe(pd, n, &pds, alloc_node)
803 kfree(pd);
804 return ret;
805}
806EXPORT_SYMBOL_GPL(blkcg_activate_policy);
807
808/**
809 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
810 * @q: request_queue of interest
811 * @pol: blkcg policy to deactivate
812 *
813 * Deactivate @pol on @q. Follows the same synchronization rules as
814 * blkcg_activate_policy().
815 */
816void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700817 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700818{
Tejun Heo3c798392012-04-16 13:57:25 -0700819 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700820
821 if (!blkcg_policy_enabled(q, pol))
822 return;
823
824 blk_queue_bypass_start(q);
825 spin_lock_irq(q->queue_lock);
826
827 __clear_bit(pol->plid, q->blkcg_pols);
828
Tejun Heo6d18b002012-04-13 13:11:35 -0700829 /* if no policy is left, no need for blkgs - shoot them down */
830 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
831 blkg_destroy_all(q);
832
Tejun Heoa2b16932012-04-13 13:11:33 -0700833 list_for_each_entry(blkg, &q->blkg_list, q_node) {
834 /* grab blkcg lock too while removing @pd from @blkg */
835 spin_lock(&blkg->blkcg->lock);
836
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700837 if (pol->pd_exit_fn)
838 pol->pd_exit_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700839
840 kfree(blkg->pd[pol->plid]);
841 blkg->pd[pol->plid] = NULL;
842
843 spin_unlock(&blkg->blkcg->lock);
844 }
845
846 spin_unlock_irq(q->queue_lock);
847 blk_queue_bypass_end(q);
848}
849EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
850
851/**
Tejun Heo3c798392012-04-16 13:57:25 -0700852 * blkcg_policy_register - register a blkcg policy
853 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -0700854 *
Tejun Heo3c798392012-04-16 13:57:25 -0700855 * Register @pol with blkcg core. Might sleep and @pol may be modified on
856 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700857 */
Tejun Heo3c798392012-04-16 13:57:25 -0700858int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500859{
Tejun Heo8bd435b2012-04-13 13:11:28 -0700860 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800861
Tejun Heof95a04a2012-04-16 13:57:26 -0700862 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
863 return -EINVAL;
864
Tejun Heobc0d6502012-04-13 13:11:26 -0700865 mutex_lock(&blkcg_pol_mutex);
866
Tejun Heo8bd435b2012-04-13 13:11:28 -0700867 /* find an empty slot */
868 ret = -ENOSPC;
869 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -0700870 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -0700871 break;
872 if (i >= BLKCG_MAX_POLS)
873 goto out_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -0800874
Tejun Heo8bd435b2012-04-13 13:11:28 -0700875 /* register and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700876 pol->plid = i;
877 blkcg_policy[i] = pol;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700878
Tejun Heo8bd435b2012-04-13 13:11:28 -0700879 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -0700880 if (pol->cftypes)
881 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
Tejun Heo8bd435b2012-04-13 13:11:28 -0700882 ret = 0;
883out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700884 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -0700885 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -0500886}
Tejun Heo3c798392012-04-16 13:57:25 -0700887EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -0500888
Tejun Heo8bd435b2012-04-13 13:11:28 -0700889/**
Tejun Heo3c798392012-04-16 13:57:25 -0700890 * blkcg_policy_unregister - unregister a blkcg policy
891 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -0700892 *
Tejun Heo3c798392012-04-16 13:57:25 -0700893 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700894 */
Tejun Heo3c798392012-04-16 13:57:25 -0700895void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500896{
Tejun Heobc0d6502012-04-13 13:11:26 -0700897 mutex_lock(&blkcg_pol_mutex);
898
Tejun Heo3c798392012-04-16 13:57:25 -0700899 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -0700900 goto out_unlock;
901
902 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -0700903 if (pol->cftypes)
904 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -0700905
Tejun Heo8bd435b2012-04-13 13:11:28 -0700906 /* unregister and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700907 blkcg_policy[pol->plid] = NULL;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700908out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700909 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -0500910}
Tejun Heo3c798392012-04-16 13:57:25 -0700911EXPORT_SYMBOL_GPL(blkcg_policy_unregister);