blob: 02cf6335e9bdc5bb940ec89fcdbfe63746f9b5df [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 }
129
Tejun Heo549d3aa2012-03-05 13:15:16 -0800130 /* invoke per-policy init */
Tejun Heo8bd435b2012-04-13 13:11:28 -0700131 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700132 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800133
Tejun Heoa2b16932012-04-13 13:11:33 -0700134 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700135 pol->pd_init_fn(blkg);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800136 }
137
Tejun Heo03814112012-03-05 13:15:14 -0800138 return blkg;
139}
140
Tejun Heo3c798392012-04-16 13:57:25 -0700141static struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
142 struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700143{
Tejun Heo3c798392012-04-16 13:57:25 -0700144 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700145
Tejun Heoa6371202012-04-19 16:29:24 -0700146 blkg = rcu_dereference(blkcg->blkg_hint);
147 if (blkg && blkg->q == q)
148 return blkg;
149
150 /*
151 * Hint didn't match. Look up from the radix tree. Note that we
152 * may not be holding queue_lock and thus are not sure whether
153 * @blkg from blkg_tree has already been removed or not, so we
154 * can't update hint to the lookup result. Leave it to the caller.
155 */
156 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
157 if (blkg && blkg->q == q)
158 return blkg;
159
Tejun Heo80fd9972012-04-13 14:50:53 -0700160 return NULL;
161}
162
163/**
164 * blkg_lookup - lookup blkg for the specified blkcg - q pair
165 * @blkcg: blkcg of interest
166 * @q: request_queue of interest
167 *
168 * Lookup blkg for the @blkcg - @q pair. This function should be called
169 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
170 * - see blk_queue_bypass_start() for details.
171 */
Tejun Heo3c798392012-04-16 13:57:25 -0700172struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700173{
174 WARN_ON_ONCE(!rcu_read_lock_held());
175
176 if (unlikely(blk_queue_bypass(q)))
177 return NULL;
178 return __blkg_lookup(blkcg, q);
179}
180EXPORT_SYMBOL_GPL(blkg_lookup);
181
Tejun Heo3c798392012-04-16 13:57:25 -0700182static struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
183 struct request_queue *q)
Tejun Heocd1604f2012-03-05 13:15:06 -0800184 __releases(q->queue_lock) __acquires(q->queue_lock)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400185{
Tejun Heo3c798392012-04-16 13:57:25 -0700186 struct blkcg_gq *blkg;
Tejun Heo496fb782012-04-19 16:29:23 -0700187 int ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400188
Tejun Heocd1604f2012-03-05 13:15:06 -0800189 WARN_ON_ONCE(!rcu_read_lock_held());
190 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500191
Tejun Heoa6371202012-04-19 16:29:24 -0700192 /* lookup and update hint on success, see __blkg_lookup() for details */
Tejun Heo80fd9972012-04-13 14:50:53 -0700193 blkg = __blkg_lookup(blkcg, q);
Tejun Heoa6371202012-04-19 16:29:24 -0700194 if (blkg) {
195 rcu_assign_pointer(blkcg->blkg_hint, blkg);
Tejun Heocd1604f2012-03-05 13:15:06 -0800196 return blkg;
Tejun Heoa6371202012-04-19 16:29:24 -0700197 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800198
Tejun Heo7ee9c562012-03-05 13:15:11 -0800199 /* blkg holds a reference to blkcg */
Tejun Heocd1604f2012-03-05 13:15:06 -0800200 if (!css_tryget(&blkcg->css))
201 return ERR_PTR(-EINVAL);
202
Tejun Heo496fb782012-04-19 16:29:23 -0700203 /* allocate */
204 ret = -ENOMEM;
Vivek Goyal1cd9e032012-03-08 10:53:56 -0800205 blkg = blkg_alloc(blkcg, q);
Tejun Heo496fb782012-04-19 16:29:23 -0700206 if (unlikely(!blkg))
207 goto err_put;
Tejun Heocd1604f2012-03-05 13:15:06 -0800208
209 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700210 ret = radix_tree_preload(GFP_ATOMIC);
211 if (ret)
212 goto err_free;
Tejun Heo496fb782012-04-19 16:29:23 -0700213
Tejun Heoa6371202012-04-19 16:29:24 -0700214 spin_lock(&blkcg->lock);
215 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
216 if (likely(!ret)) {
217 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
218 list_add(&blkg->q_node, &q->blkg_list);
219 }
220 spin_unlock(&blkcg->lock);
221
222 radix_tree_preload_end();
223
224 if (!ret)
225 return blkg;
226err_free:
227 blkg_free(blkg);
Tejun Heo496fb782012-04-19 16:29:23 -0700228err_put:
229 css_put(&blkcg->css);
230 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500231}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700232
Tejun Heo3c798392012-04-16 13:57:25 -0700233struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
234 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700235{
236 /*
237 * This could be the first entry point of blkcg implementation and
238 * we shouldn't allow anything to go through for a bypassing queue.
239 */
240 if (unlikely(blk_queue_bypass(q)))
241 return ERR_PTR(blk_queue_dead(q) ? -EINVAL : -EBUSY);
242 return __blkg_lookup_create(blkcg, q);
243}
Tejun Heocd1604f2012-03-05 13:15:06 -0800244EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500245
Tejun Heo3c798392012-04-16 13:57:25 -0700246static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800247{
Tejun Heo03aa2642012-03-05 13:15:19 -0800248 struct request_queue *q = blkg->q;
Tejun Heo3c798392012-04-16 13:57:25 -0700249 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800250
251 lockdep_assert_held(q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800252 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800253
254 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800255 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800256 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700257
258 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800259 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800260 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800261
Tejun Heo03aa2642012-03-05 13:15:19 -0800262 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700263 * Both setting lookup hint to and clearing it from @blkg are done
264 * under queue_lock. If it's not pointing to @blkg now, it never
265 * will. Hint assignment itself can race safely.
266 */
267 if (rcu_dereference_raw(blkcg->blkg_hint) == blkg)
268 rcu_assign_pointer(blkcg->blkg_hint, NULL);
269
270 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800271 * Put the reference taken at the time of creation so that when all
272 * queues are gone, group can be destroyed.
273 */
274 blkg_put(blkg);
275}
276
Tejun Heo9f13ef62012-03-05 13:15:21 -0800277/**
278 * blkg_destroy_all - destroy all blkgs associated with a request_queue
279 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800280 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700281 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800282 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700283static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800284{
Tejun Heo3c798392012-04-16 13:57:25 -0700285 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800286
Tejun Heo6d18b002012-04-13 13:11:35 -0700287 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800288
Tejun Heo9f13ef62012-03-05 13:15:21 -0800289 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700290 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800291
Tejun Heo9f13ef62012-03-05 13:15:21 -0800292 spin_lock(&blkcg->lock);
293 blkg_destroy(blkg);
294 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800295 }
296}
297
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800298static void blkg_rcu_free(struct rcu_head *rcu_head)
299{
Tejun Heo3c798392012-04-16 13:57:25 -0700300 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800301}
302
Tejun Heo3c798392012-04-16 13:57:25 -0700303void __blkg_release(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800304{
305 /* release the extra blkcg reference this blkg has been holding */
306 css_put(&blkg->blkcg->css);
307
308 /*
309 * A group is freed in rcu manner. But having an rcu lock does not
310 * mean that one can access all the fields of blkg and assume these
311 * are valid. For example, don't try to follow throtl_data and
312 * request queue links.
313 *
314 * Having a reference to blkg under an rcu allows acess to only
315 * values local to groups like group stats and group rate limits
316 */
317 call_rcu(&blkg->rcu_head, blkg_rcu_free);
318}
319EXPORT_SYMBOL_GPL(__blkg_release);
320
Tejun Heo3c798392012-04-16 13:57:25 -0700321static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
322 u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700323{
Tejun Heo3c798392012-04-16 13:57:25 -0700324 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
325 struct blkcg_gq *blkg;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700326 struct hlist_node *n;
Tejun Heobc0d6502012-04-13 13:11:26 -0700327 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700328
Tejun Heobc0d6502012-04-13 13:11:26 -0700329 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700330 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800331
332 /*
333 * Note that stat reset is racy - it doesn't synchronize against
334 * stat updates. This is a debug feature which shouldn't exist
335 * anyway. If you get hit by a race, retry.
336 */
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700337 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700338 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700339 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800340
Tejun Heoa2b16932012-04-13 13:11:33 -0700341 if (blkcg_policy_enabled(blkg->q, pol) &&
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700342 pol->pd_reset_stats_fn)
343 pol->pd_reset_stats_fn(blkg);
Tejun Heobc0d6502012-04-13 13:11:26 -0700344 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700345 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400346
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700347 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700348 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700349 return 0;
350}
351
Tejun Heo3c798392012-04-16 13:57:25 -0700352static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700353{
Tejun Heod3d32e62012-04-01 14:38:42 -0700354 /* some drivers (floppy) instantiate a queue w/o disk registered */
355 if (blkg->q->backing_dev_info.dev)
356 return dev_name(blkg->q->backing_dev_info.dev);
357 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700358}
359
Tejun Heod3d32e62012-04-01 14:38:42 -0700360/**
361 * blkcg_print_blkgs - helper for printing per-blkg data
362 * @sf: seq_file to print to
363 * @blkcg: blkcg of interest
364 * @prfill: fill function to print out a blkg
365 * @pol: policy in question
366 * @data: data to be passed to @prfill
367 * @show_total: to print out sum of prfill return values or not
368 *
369 * This function invokes @prfill on each blkg of @blkcg if pd for the
370 * policy specified by @pol exists. @prfill is invoked with @sf, the
371 * policy data and @data. If @show_total is %true, the sum of the return
372 * values from @prfill is printed with "Total" label at the end.
373 *
374 * This is to be used to construct print functions for
375 * cftype->read_seq_string method.
376 */
Tejun Heo3c798392012-04-16 13:57:25 -0700377void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700378 u64 (*prfill)(struct seq_file *,
379 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700380 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700381 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400382{
Tejun Heo3c798392012-04-16 13:57:25 -0700383 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700384 struct hlist_node *n;
385 u64 total = 0;
386
387 spin_lock_irq(&blkcg->lock);
388 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
Tejun Heoa2b16932012-04-13 13:11:33 -0700389 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700390 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heod3d32e62012-04-01 14:38:42 -0700391 spin_unlock_irq(&blkcg->lock);
392
393 if (show_total)
394 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
395}
Tejun Heo829fdb52012-04-01 14:38:43 -0700396EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700397
398/**
399 * __blkg_prfill_u64 - prfill helper for a single u64 value
400 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700401 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700402 * @v: value to print
403 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700404 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700405 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700406u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700407{
Tejun Heof95a04a2012-04-16 13:57:26 -0700408 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700409
410 if (!dname)
411 return 0;
412
413 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
414 return v;
415}
Tejun Heo829fdb52012-04-01 14:38:43 -0700416EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700417
418/**
419 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
420 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700421 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700422 * @rwstat: rwstat to print
423 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700424 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700425 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700426u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700427 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700428{
429 static const char *rwstr[] = {
430 [BLKG_RWSTAT_READ] = "Read",
431 [BLKG_RWSTAT_WRITE] = "Write",
432 [BLKG_RWSTAT_SYNC] = "Sync",
433 [BLKG_RWSTAT_ASYNC] = "Async",
434 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700435 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700436 u64 v;
437 int i;
438
439 if (!dname)
440 return 0;
441
442 for (i = 0; i < BLKG_RWSTAT_NR; i++)
443 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
444 (unsigned long long)rwstat->cnt[i]);
445
446 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
447 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
448 return v;
449}
450
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700451/**
452 * blkg_prfill_stat - prfill callback for blkg_stat
453 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700454 * @pd: policy private data of interest
455 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700456 *
457 * prfill callback for printing a blkg_stat.
458 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700459u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700460{
Tejun Heof95a04a2012-04-16 13:57:26 -0700461 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700462}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700463EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700464
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700465/**
466 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
467 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700468 * @pd: policy private data of interest
469 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700470 *
471 * prfill callback for printing a blkg_rwstat.
472 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700473u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
474 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700475{
Tejun Heof95a04a2012-04-16 13:57:26 -0700476 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700477
Tejun Heof95a04a2012-04-16 13:57:26 -0700478 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700479}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700480EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700481
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700482/**
483 * blkg_conf_prep - parse and prepare for per-blkg config update
484 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700485 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700486 * @input: input string
487 * @ctx: blkg_conf_ctx to be filled
488 *
489 * Parse per-blkg config update from @input and initialize @ctx with the
490 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700491 * value. This function returns with RCU read lock and queue lock held and
492 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700493 */
Tejun Heo3c798392012-04-16 13:57:25 -0700494int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
495 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700496 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800497{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700498 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700499 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700500 unsigned int major, minor;
501 unsigned long long v;
502 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800503
Tejun Heo726fa692012-04-01 14:38:43 -0700504 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
505 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700506
Tejun Heo726fa692012-04-01 14:38:43 -0700507 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800508 if (!disk || part)
Tejun Heo726fa692012-04-01 14:38:43 -0700509 return -EINVAL;
Tejun Heoe56da7e2012-03-05 13:15:07 -0800510
511 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800512 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700513
Tejun Heoa2b16932012-04-13 13:11:33 -0700514 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700515 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700516 else
517 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800518
Tejun Heo4bfd4822012-03-05 13:15:08 -0800519 if (IS_ERR(blkg)) {
520 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700521 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700522 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700523 put_disk(disk);
524 /*
525 * If queue was bypassing, we should retry. Do so after a
526 * short msleep(). It isn't strictly necessary but queue
527 * can be bypassing for some time and it's always nice to
528 * avoid busy looping.
529 */
530 if (ret == -EBUSY) {
531 msleep(10);
532 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400533 }
Tejun Heo726fa692012-04-01 14:38:43 -0700534 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400535 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800536
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700537 ctx->disk = disk;
538 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700539 ctx->v = v;
540 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800541}
Tejun Heo829fdb52012-04-01 14:38:43 -0700542EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800543
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700544/**
545 * blkg_conf_finish - finish up per-blkg config update
546 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
547 *
548 * Finish up after per-blkg config update. This function must be paired
549 * with blkg_conf_prep().
550 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700551void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700552 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800553{
Tejun Heoda8b0662012-04-13 13:11:29 -0700554 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700555 rcu_read_unlock();
556 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800557}
Tejun Heo829fdb52012-04-01 14:38:43 -0700558EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800559
Tejun Heo3c798392012-04-16 13:57:25 -0700560struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500561 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200562 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700563 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500564 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700565 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500566};
567
Tejun Heo9f13ef62012-03-05 13:15:21 -0800568/**
Tejun Heo3c798392012-04-16 13:57:25 -0700569 * blkcg_pre_destroy - cgroup pre_destroy callback
Tejun Heo9f13ef62012-03-05 13:15:21 -0800570 * @cgroup: cgroup of interest
571 *
572 * This function is called when @cgroup is about to go away and responsible
573 * for shooting down all blkgs associated with @cgroup. blkgs should be
574 * removed while holding both q and blkcg locks. As blkcg lock is nested
575 * inside q lock, this function performs reverse double lock dancing.
576 *
577 * This is the blkcg counterpart of ioc_release_fn().
578 */
Tejun Heo3c798392012-04-16 13:57:25 -0700579static int blkcg_pre_destroy(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500580{
Tejun Heo3c798392012-04-16 13:57:25 -0700581 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500582
Tejun Heo9f13ef62012-03-05 13:15:21 -0800583 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800584
Tejun Heo9f13ef62012-03-05 13:15:21 -0800585 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700586 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
587 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800588 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500589
Tejun Heo9f13ef62012-03-05 13:15:21 -0800590 if (spin_trylock(q->queue_lock)) {
591 blkg_destroy(blkg);
592 spin_unlock(q->queue_lock);
593 } else {
594 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800595 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200596 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200597 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800598 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200599
Tejun Heo9f13ef62012-03-05 13:15:21 -0800600 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800601 return 0;
602}
603
Tejun Heo3c798392012-04-16 13:57:25 -0700604static void blkcg_destroy(struct cgroup *cgroup)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800605{
Tejun Heo3c798392012-04-16 13:57:25 -0700606 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800607
Tejun Heo3c798392012-04-16 13:57:25 -0700608 if (blkcg != &blkcg_root)
Ben Blum67523c42010-03-10 15:22:11 -0800609 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500610}
611
Tejun Heo3c798392012-04-16 13:57:25 -0700612static struct cgroup_subsys_state *blkcg_create(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500613{
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700614 static atomic64_t id_seq = ATOMIC64_INIT(0);
Tejun Heo3c798392012-04-16 13:57:25 -0700615 struct blkcg *blkcg;
Li Zefan03415092010-05-07 08:57:00 +0200616 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500617
Li Zefan03415092010-05-07 08:57:00 +0200618 if (!parent) {
Tejun Heo3c798392012-04-16 13:57:25 -0700619 blkcg = &blkcg_root;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500620 goto done;
621 }
622
Vivek Goyal31e4c282009-12-03 12:59:42 -0500623 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
624 if (!blkcg)
625 return ERR_PTR(-ENOMEM);
626
Tejun Heo3381cb82012-04-01 14:38:44 -0700627 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700628 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500629done:
630 spin_lock_init(&blkcg->lock);
Tejun Heoa6371202012-04-19 16:29:24 -0700631 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_ATOMIC);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500632 INIT_HLIST_HEAD(&blkcg->blkg_list);
633
634 return &blkcg->css;
635}
636
Tejun Heo5efd6112012-03-05 13:15:12 -0800637/**
638 * blkcg_init_queue - initialize blkcg part of request queue
639 * @q: request_queue to initialize
640 *
641 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
642 * part of new request_queue @q.
643 *
644 * RETURNS:
645 * 0 on success, -errno on failure.
646 */
647int blkcg_init_queue(struct request_queue *q)
648{
649 might_sleep();
650
Tejun Heo3c96cb32012-04-13 13:11:34 -0700651 return blk_throtl_init(q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800652}
653
654/**
655 * blkcg_drain_queue - drain blkcg part of request_queue
656 * @q: request_queue to drain
657 *
658 * Called from blk_drain_queue(). Responsible for draining blkcg part.
659 */
660void blkcg_drain_queue(struct request_queue *q)
661{
662 lockdep_assert_held(q->queue_lock);
663
664 blk_throtl_drain(q);
665}
666
667/**
668 * blkcg_exit_queue - exit and release blkcg part of request_queue
669 * @q: request_queue being released
670 *
671 * Called from blk_release_queue(). Responsible for exiting blkcg part.
672 */
673void blkcg_exit_queue(struct request_queue *q)
674{
Tejun Heo6d18b002012-04-13 13:11:35 -0700675 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700676 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700677 spin_unlock_irq(q->queue_lock);
678
Tejun Heo5efd6112012-03-05 13:15:12 -0800679 blk_throtl_exit(q);
680}
681
Vivek Goyal31e4c282009-12-03 12:59:42 -0500682/*
683 * We cannot support shared io contexts, as we have no mean to support
684 * two tasks with the same ioc in two different groups without major rework
685 * of the main cic data structures. For now we allow a task to change
686 * its cgroup only if it's the only owner of its ioc.
687 */
Tejun Heo3c798392012-04-16 13:57:25 -0700688static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500689{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800690 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500691 struct io_context *ioc;
692 int ret = 0;
693
694 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -0800695 cgroup_taskset_for_each(task, cgrp, tset) {
696 task_lock(task);
697 ioc = task->io_context;
698 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
699 ret = -EINVAL;
700 task_unlock(task);
701 if (ret)
702 break;
703 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500704 return ret;
705}
706
Tejun Heo676f7c82012-04-01 12:09:55 -0700707struct cgroup_subsys blkio_subsys = {
708 .name = "blkio",
Tejun Heo3c798392012-04-16 13:57:25 -0700709 .create = blkcg_create,
710 .can_attach = blkcg_can_attach,
711 .pre_destroy = blkcg_pre_destroy,
712 .destroy = blkcg_destroy,
Tejun Heo676f7c82012-04-01 12:09:55 -0700713 .subsys_id = blkio_subsys_id,
Tejun Heo3c798392012-04-16 13:57:25 -0700714 .base_cftypes = blkcg_files,
Tejun Heo676f7c82012-04-01 12:09:55 -0700715 .module = THIS_MODULE,
716};
717EXPORT_SYMBOL_GPL(blkio_subsys);
718
Tejun Heo8bd435b2012-04-13 13:11:28 -0700719/**
Tejun Heoa2b16932012-04-13 13:11:33 -0700720 * blkcg_activate_policy - activate a blkcg policy on a request_queue
721 * @q: request_queue of interest
722 * @pol: blkcg policy to activate
723 *
724 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
725 * bypass mode to populate its blkgs with policy_data for @pol.
726 *
727 * Activation happens with @q bypassed, so nobody would be accessing blkgs
728 * from IO path. Update of each blkg is protected by both queue and blkcg
729 * locks so that holding either lock and testing blkcg_policy_enabled() is
730 * always enough for dereferencing policy data.
731 *
732 * The caller is responsible for synchronizing [de]activations and policy
733 * [un]registerations. Returns 0 on success, -errno on failure.
734 */
735int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700736 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700737{
738 LIST_HEAD(pds);
Tejun Heo3c798392012-04-16 13:57:25 -0700739 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700740 struct blkg_policy_data *pd, *n;
741 int cnt = 0, ret;
742
743 if (blkcg_policy_enabled(q, pol))
744 return 0;
745
746 blk_queue_bypass_start(q);
747
748 /* make sure the root blkg exists and count the existing blkgs */
749 spin_lock_irq(q->queue_lock);
750
751 rcu_read_lock();
Tejun Heo3c798392012-04-16 13:57:25 -0700752 blkg = __blkg_lookup_create(&blkcg_root, q);
Tejun Heoa2b16932012-04-13 13:11:33 -0700753 rcu_read_unlock();
754
755 if (IS_ERR(blkg)) {
756 ret = PTR_ERR(blkg);
757 goto out_unlock;
758 }
759 q->root_blkg = blkg;
760
761 list_for_each_entry(blkg, &q->blkg_list, q_node)
762 cnt++;
763
764 spin_unlock_irq(q->queue_lock);
765
766 /* allocate policy_data for all existing blkgs */
767 while (cnt--) {
Tejun Heof95a04a2012-04-16 13:57:26 -0700768 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
Tejun Heoa2b16932012-04-13 13:11:33 -0700769 if (!pd) {
770 ret = -ENOMEM;
771 goto out_free;
772 }
773 list_add_tail(&pd->alloc_node, &pds);
774 }
775
776 /*
777 * Install the allocated pds. With @q bypassing, no new blkg
778 * should have been created while the queue lock was dropped.
779 */
780 spin_lock_irq(q->queue_lock);
781
782 list_for_each_entry(blkg, &q->blkg_list, q_node) {
783 if (WARN_ON(list_empty(&pds))) {
784 /* umm... this shouldn't happen, just abort */
785 ret = -ENOMEM;
786 goto out_unlock;
787 }
788 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
789 list_del_init(&pd->alloc_node);
790
791 /* grab blkcg lock too while installing @pd on @blkg */
792 spin_lock(&blkg->blkcg->lock);
793
794 blkg->pd[pol->plid] = pd;
795 pd->blkg = blkg;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700796 pol->pd_init_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700797
798 spin_unlock(&blkg->blkcg->lock);
799 }
800
801 __set_bit(pol->plid, q->blkcg_pols);
802 ret = 0;
803out_unlock:
804 spin_unlock_irq(q->queue_lock);
805out_free:
806 blk_queue_bypass_end(q);
807 list_for_each_entry_safe(pd, n, &pds, alloc_node)
808 kfree(pd);
809 return ret;
810}
811EXPORT_SYMBOL_GPL(blkcg_activate_policy);
812
813/**
814 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
815 * @q: request_queue of interest
816 * @pol: blkcg policy to deactivate
817 *
818 * Deactivate @pol on @q. Follows the same synchronization rules as
819 * blkcg_activate_policy().
820 */
821void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700822 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700823{
Tejun Heo3c798392012-04-16 13:57:25 -0700824 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700825
826 if (!blkcg_policy_enabled(q, pol))
827 return;
828
829 blk_queue_bypass_start(q);
830 spin_lock_irq(q->queue_lock);
831
832 __clear_bit(pol->plid, q->blkcg_pols);
833
Tejun Heo6d18b002012-04-13 13:11:35 -0700834 /* if no policy is left, no need for blkgs - shoot them down */
835 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
836 blkg_destroy_all(q);
837
Tejun Heoa2b16932012-04-13 13:11:33 -0700838 list_for_each_entry(blkg, &q->blkg_list, q_node) {
839 /* grab blkcg lock too while removing @pd from @blkg */
840 spin_lock(&blkg->blkcg->lock);
841
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700842 if (pol->pd_exit_fn)
843 pol->pd_exit_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700844
845 kfree(blkg->pd[pol->plid]);
846 blkg->pd[pol->plid] = NULL;
847
848 spin_unlock(&blkg->blkcg->lock);
849 }
850
851 spin_unlock_irq(q->queue_lock);
852 blk_queue_bypass_end(q);
853}
854EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
855
856/**
Tejun Heo3c798392012-04-16 13:57:25 -0700857 * blkcg_policy_register - register a blkcg policy
858 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -0700859 *
Tejun Heo3c798392012-04-16 13:57:25 -0700860 * Register @pol with blkcg core. Might sleep and @pol may be modified on
861 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700862 */
Tejun Heo3c798392012-04-16 13:57:25 -0700863int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500864{
Tejun Heo8bd435b2012-04-13 13:11:28 -0700865 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800866
Tejun Heof95a04a2012-04-16 13:57:26 -0700867 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
868 return -EINVAL;
869
Tejun Heobc0d6502012-04-13 13:11:26 -0700870 mutex_lock(&blkcg_pol_mutex);
871
Tejun Heo8bd435b2012-04-13 13:11:28 -0700872 /* find an empty slot */
873 ret = -ENOSPC;
874 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -0700875 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -0700876 break;
877 if (i >= BLKCG_MAX_POLS)
878 goto out_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -0800879
Tejun Heo8bd435b2012-04-13 13:11:28 -0700880 /* register and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700881 pol->plid = i;
882 blkcg_policy[i] = pol;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700883
Tejun Heo8bd435b2012-04-13 13:11:28 -0700884 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -0700885 if (pol->cftypes)
886 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
Tejun Heo8bd435b2012-04-13 13:11:28 -0700887 ret = 0;
888out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700889 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -0700890 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -0500891}
Tejun Heo3c798392012-04-16 13:57:25 -0700892EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -0500893
Tejun Heo8bd435b2012-04-13 13:11:28 -0700894/**
Tejun Heo3c798392012-04-16 13:57:25 -0700895 * blkcg_policy_unregister - unregister a blkcg policy
896 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -0700897 *
Tejun Heo3c798392012-04-16 13:57:25 -0700898 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700899 */
Tejun Heo3c798392012-04-16 13:57:25 -0700900void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500901{
Tejun Heobc0d6502012-04-13 13:11:26 -0700902 mutex_lock(&blkcg_pol_mutex);
903
Tejun Heo3c798392012-04-16 13:57:25 -0700904 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -0700905 goto out_unlock;
906
907 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -0700908 if (pol->cftypes)
909 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -0700910
Tejun Heo8bd435b2012-04-13 13:11:28 -0700911 /* unregister and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700912 blkcg_policy[pol->plid] = NULL;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700913out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700914 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -0500915}
Tejun Heo3c798392012-04-16 13:57:25 -0700916EXPORT_SYMBOL_GPL(blkcg_policy_unregister);