blob: 30a7a9c58b3834b9d08ae22032cb8681a8fe779f [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 struct hlist_node *n;
146
147 hlist_for_each_entry_rcu(blkg, n, &blkcg->blkg_list, blkcg_node)
148 if (blkg->q == q)
149 return blkg;
150 return NULL;
151}
152
153/**
154 * blkg_lookup - lookup blkg for the specified blkcg - q pair
155 * @blkcg: blkcg of interest
156 * @q: request_queue of interest
157 *
158 * Lookup blkg for the @blkcg - @q pair. This function should be called
159 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
160 * - see blk_queue_bypass_start() for details.
161 */
Tejun Heo3c798392012-04-16 13:57:25 -0700162struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700163{
164 WARN_ON_ONCE(!rcu_read_lock_held());
165
166 if (unlikely(blk_queue_bypass(q)))
167 return NULL;
168 return __blkg_lookup(blkcg, q);
169}
170EXPORT_SYMBOL_GPL(blkg_lookup);
171
Tejun Heo3c798392012-04-16 13:57:25 -0700172static struct blkcg_gq *__blkg_lookup_create(struct blkcg *blkcg,
173 struct request_queue *q)
Tejun Heocd1604f2012-03-05 13:15:06 -0800174 __releases(q->queue_lock) __acquires(q->queue_lock)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400175{
Tejun Heo3c798392012-04-16 13:57:25 -0700176 struct blkcg_gq *blkg;
Tejun Heo496fb782012-04-19 16:29:23 -0700177 int ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400178
Tejun Heocd1604f2012-03-05 13:15:06 -0800179 WARN_ON_ONCE(!rcu_read_lock_held());
180 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500181
Tejun Heo80fd9972012-04-13 14:50:53 -0700182 blkg = __blkg_lookup(blkcg, q);
Tejun Heocd1604f2012-03-05 13:15:06 -0800183 if (blkg)
184 return blkg;
185
Tejun Heo7ee9c562012-03-05 13:15:11 -0800186 /* blkg holds a reference to blkcg */
Tejun Heocd1604f2012-03-05 13:15:06 -0800187 if (!css_tryget(&blkcg->css))
188 return ERR_PTR(-EINVAL);
189
Tejun Heo496fb782012-04-19 16:29:23 -0700190 /* allocate */
191 ret = -ENOMEM;
Vivek Goyal1cd9e032012-03-08 10:53:56 -0800192 blkg = blkg_alloc(blkcg, q);
Tejun Heo496fb782012-04-19 16:29:23 -0700193 if (unlikely(!blkg))
194 goto err_put;
Tejun Heocd1604f2012-03-05 13:15:06 -0800195
196 /* insert */
197 spin_lock(&blkcg->lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500198 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800199 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heocd1604f2012-03-05 13:15:06 -0800200 spin_unlock(&blkcg->lock);
Tejun Heocd1604f2012-03-05 13:15:06 -0800201 return blkg;
Tejun Heo496fb782012-04-19 16:29:23 -0700202
203err_put:
204 css_put(&blkcg->css);
205 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500206}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700207
Tejun Heo3c798392012-04-16 13:57:25 -0700208struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
209 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700210{
211 /*
212 * This could be the first entry point of blkcg implementation and
213 * we shouldn't allow anything to go through for a bypassing queue.
214 */
215 if (unlikely(blk_queue_bypass(q)))
216 return ERR_PTR(blk_queue_dead(q) ? -EINVAL : -EBUSY);
217 return __blkg_lookup_create(blkcg, q);
218}
Tejun Heocd1604f2012-03-05 13:15:06 -0800219EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500220
Tejun Heo3c798392012-04-16 13:57:25 -0700221static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800222{
Tejun Heo03aa2642012-03-05 13:15:19 -0800223 struct request_queue *q = blkg->q;
Tejun Heo3c798392012-04-16 13:57:25 -0700224 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo03aa2642012-03-05 13:15:19 -0800225
226 lockdep_assert_held(q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800227 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800228
229 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800230 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800231 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoe8989fa2012-03-05 13:15:20 -0800232 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800233 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800234
Tejun Heo03aa2642012-03-05 13:15:19 -0800235 /*
236 * Put the reference taken at the time of creation so that when all
237 * queues are gone, group can be destroyed.
238 */
239 blkg_put(blkg);
240}
241
Tejun Heo9f13ef62012-03-05 13:15:21 -0800242/**
243 * blkg_destroy_all - destroy all blkgs associated with a request_queue
244 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800245 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700246 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800247 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700248static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800249{
Tejun Heo3c798392012-04-16 13:57:25 -0700250 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800251
Tejun Heo6d18b002012-04-13 13:11:35 -0700252 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800253
Tejun Heo9f13ef62012-03-05 13:15:21 -0800254 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700255 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800256
Tejun Heo9f13ef62012-03-05 13:15:21 -0800257 spin_lock(&blkcg->lock);
258 blkg_destroy(blkg);
259 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800260 }
261}
262
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800263static void blkg_rcu_free(struct rcu_head *rcu_head)
264{
Tejun Heo3c798392012-04-16 13:57:25 -0700265 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800266}
267
Tejun Heo3c798392012-04-16 13:57:25 -0700268void __blkg_release(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800269{
270 /* release the extra blkcg reference this blkg has been holding */
271 css_put(&blkg->blkcg->css);
272
273 /*
274 * A group is freed in rcu manner. But having an rcu lock does not
275 * mean that one can access all the fields of blkg and assume these
276 * are valid. For example, don't try to follow throtl_data and
277 * request queue links.
278 *
279 * Having a reference to blkg under an rcu allows acess to only
280 * values local to groups like group stats and group rate limits
281 */
282 call_rcu(&blkg->rcu_head, blkg_rcu_free);
283}
284EXPORT_SYMBOL_GPL(__blkg_release);
285
Tejun Heo3c798392012-04-16 13:57:25 -0700286static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
287 u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700288{
Tejun Heo3c798392012-04-16 13:57:25 -0700289 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
290 struct blkcg_gq *blkg;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700291 struct hlist_node *n;
Tejun Heobc0d6502012-04-13 13:11:26 -0700292 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700293
Tejun Heobc0d6502012-04-13 13:11:26 -0700294 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700295 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800296
297 /*
298 * Note that stat reset is racy - it doesn't synchronize against
299 * stat updates. This is a debug feature which shouldn't exist
300 * anyway. If you get hit by a race, retry.
301 */
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700302 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700303 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700304 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800305
Tejun Heoa2b16932012-04-13 13:11:33 -0700306 if (blkcg_policy_enabled(blkg->q, pol) &&
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700307 pol->pd_reset_stats_fn)
308 pol->pd_reset_stats_fn(blkg);
Tejun Heobc0d6502012-04-13 13:11:26 -0700309 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700310 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400311
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700312 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700313 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700314 return 0;
315}
316
Tejun Heo3c798392012-04-16 13:57:25 -0700317static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700318{
Tejun Heod3d32e62012-04-01 14:38:42 -0700319 /* some drivers (floppy) instantiate a queue w/o disk registered */
320 if (blkg->q->backing_dev_info.dev)
321 return dev_name(blkg->q->backing_dev_info.dev);
322 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700323}
324
Tejun Heod3d32e62012-04-01 14:38:42 -0700325/**
326 * blkcg_print_blkgs - helper for printing per-blkg data
327 * @sf: seq_file to print to
328 * @blkcg: blkcg of interest
329 * @prfill: fill function to print out a blkg
330 * @pol: policy in question
331 * @data: data to be passed to @prfill
332 * @show_total: to print out sum of prfill return values or not
333 *
334 * This function invokes @prfill on each blkg of @blkcg if pd for the
335 * policy specified by @pol exists. @prfill is invoked with @sf, the
336 * policy data and @data. If @show_total is %true, the sum of the return
337 * values from @prfill is printed with "Total" label at the end.
338 *
339 * This is to be used to construct print functions for
340 * cftype->read_seq_string method.
341 */
Tejun Heo3c798392012-04-16 13:57:25 -0700342void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700343 u64 (*prfill)(struct seq_file *,
344 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700345 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700346 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400347{
Tejun Heo3c798392012-04-16 13:57:25 -0700348 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700349 struct hlist_node *n;
350 u64 total = 0;
351
352 spin_lock_irq(&blkcg->lock);
353 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
Tejun Heoa2b16932012-04-13 13:11:33 -0700354 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700355 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heod3d32e62012-04-01 14:38:42 -0700356 spin_unlock_irq(&blkcg->lock);
357
358 if (show_total)
359 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
360}
Tejun Heo829fdb52012-04-01 14:38:43 -0700361EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700362
363/**
364 * __blkg_prfill_u64 - prfill helper for a single u64 value
365 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700366 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700367 * @v: value to print
368 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700369 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700370 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700371u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700372{
Tejun Heof95a04a2012-04-16 13:57:26 -0700373 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700374
375 if (!dname)
376 return 0;
377
378 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
379 return v;
380}
Tejun Heo829fdb52012-04-01 14:38:43 -0700381EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700382
383/**
384 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
385 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700386 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700387 * @rwstat: rwstat to print
388 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700389 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700390 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700391u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700392 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700393{
394 static const char *rwstr[] = {
395 [BLKG_RWSTAT_READ] = "Read",
396 [BLKG_RWSTAT_WRITE] = "Write",
397 [BLKG_RWSTAT_SYNC] = "Sync",
398 [BLKG_RWSTAT_ASYNC] = "Async",
399 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700400 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700401 u64 v;
402 int i;
403
404 if (!dname)
405 return 0;
406
407 for (i = 0; i < BLKG_RWSTAT_NR; i++)
408 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
409 (unsigned long long)rwstat->cnt[i]);
410
411 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
412 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
413 return v;
414}
415
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700416/**
417 * blkg_prfill_stat - prfill callback for blkg_stat
418 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700419 * @pd: policy private data of interest
420 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700421 *
422 * prfill callback for printing a blkg_stat.
423 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700424u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700425{
Tejun Heof95a04a2012-04-16 13:57:26 -0700426 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700427}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700428EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700429
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700430/**
431 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
432 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700433 * @pd: policy private data of interest
434 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700435 *
436 * prfill callback for printing a blkg_rwstat.
437 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700438u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
439 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700440{
Tejun Heof95a04a2012-04-16 13:57:26 -0700441 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700442
Tejun Heof95a04a2012-04-16 13:57:26 -0700443 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700444}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700445EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700446
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700447/**
448 * blkg_conf_prep - parse and prepare for per-blkg config update
449 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700450 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700451 * @input: input string
452 * @ctx: blkg_conf_ctx to be filled
453 *
454 * Parse per-blkg config update from @input and initialize @ctx with the
455 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700456 * value. This function returns with RCU read lock and queue lock held and
457 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700458 */
Tejun Heo3c798392012-04-16 13:57:25 -0700459int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
460 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700461 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800462{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700463 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700464 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700465 unsigned int major, minor;
466 unsigned long long v;
467 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800468
Tejun Heo726fa692012-04-01 14:38:43 -0700469 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
470 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700471
Tejun Heo726fa692012-04-01 14:38:43 -0700472 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800473 if (!disk || part)
Tejun Heo726fa692012-04-01 14:38:43 -0700474 return -EINVAL;
Tejun Heoe56da7e2012-03-05 13:15:07 -0800475
476 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800477 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700478
Tejun Heoa2b16932012-04-13 13:11:33 -0700479 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700480 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700481 else
482 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800483
Tejun Heo4bfd4822012-03-05 13:15:08 -0800484 if (IS_ERR(blkg)) {
485 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700486 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700487 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700488 put_disk(disk);
489 /*
490 * If queue was bypassing, we should retry. Do so after a
491 * short msleep(). It isn't strictly necessary but queue
492 * can be bypassing for some time and it's always nice to
493 * avoid busy looping.
494 */
495 if (ret == -EBUSY) {
496 msleep(10);
497 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400498 }
Tejun Heo726fa692012-04-01 14:38:43 -0700499 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400500 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800501
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700502 ctx->disk = disk;
503 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700504 ctx->v = v;
505 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800506}
Tejun Heo829fdb52012-04-01 14:38:43 -0700507EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800508
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700509/**
510 * blkg_conf_finish - finish up per-blkg config update
511 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
512 *
513 * Finish up after per-blkg config update. This function must be paired
514 * with blkg_conf_prep().
515 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700516void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700517 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800518{
Tejun Heoda8b0662012-04-13 13:11:29 -0700519 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700520 rcu_read_unlock();
521 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800522}
Tejun Heo829fdb52012-04-01 14:38:43 -0700523EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800524
Tejun Heo3c798392012-04-16 13:57:25 -0700525struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500526 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200527 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700528 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500529 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700530 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500531};
532
Tejun Heo9f13ef62012-03-05 13:15:21 -0800533/**
Tejun Heo3c798392012-04-16 13:57:25 -0700534 * blkcg_pre_destroy - cgroup pre_destroy callback
Tejun Heo9f13ef62012-03-05 13:15:21 -0800535 * @cgroup: cgroup of interest
536 *
537 * This function is called when @cgroup is about to go away and responsible
538 * for shooting down all blkgs associated with @cgroup. blkgs should be
539 * removed while holding both q and blkcg locks. As blkcg lock is nested
540 * inside q lock, this function performs reverse double lock dancing.
541 *
542 * This is the blkcg counterpart of ioc_release_fn().
543 */
Tejun Heo3c798392012-04-16 13:57:25 -0700544static int blkcg_pre_destroy(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500545{
Tejun Heo3c798392012-04-16 13:57:25 -0700546 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500547
Tejun Heo9f13ef62012-03-05 13:15:21 -0800548 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800549
Tejun Heo9f13ef62012-03-05 13:15:21 -0800550 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700551 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
552 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800553 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500554
Tejun Heo9f13ef62012-03-05 13:15:21 -0800555 if (spin_trylock(q->queue_lock)) {
556 blkg_destroy(blkg);
557 spin_unlock(q->queue_lock);
558 } else {
559 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800560 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200561 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200562 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800563 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200564
Tejun Heo9f13ef62012-03-05 13:15:21 -0800565 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800566 return 0;
567}
568
Tejun Heo3c798392012-04-16 13:57:25 -0700569static void blkcg_destroy(struct cgroup *cgroup)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800570{
Tejun Heo3c798392012-04-16 13:57:25 -0700571 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800572
Tejun Heo3c798392012-04-16 13:57:25 -0700573 if (blkcg != &blkcg_root)
Ben Blum67523c42010-03-10 15:22:11 -0800574 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500575}
576
Tejun Heo3c798392012-04-16 13:57:25 -0700577static struct cgroup_subsys_state *blkcg_create(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500578{
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700579 static atomic64_t id_seq = ATOMIC64_INIT(0);
Tejun Heo3c798392012-04-16 13:57:25 -0700580 struct blkcg *blkcg;
Li Zefan03415092010-05-07 08:57:00 +0200581 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500582
Li Zefan03415092010-05-07 08:57:00 +0200583 if (!parent) {
Tejun Heo3c798392012-04-16 13:57:25 -0700584 blkcg = &blkcg_root;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500585 goto done;
586 }
587
Vivek Goyal31e4c282009-12-03 12:59:42 -0500588 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
589 if (!blkcg)
590 return ERR_PTR(-ENOMEM);
591
Tejun Heo3381cb82012-04-01 14:38:44 -0700592 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700593 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500594done:
595 spin_lock_init(&blkcg->lock);
596 INIT_HLIST_HEAD(&blkcg->blkg_list);
597
598 return &blkcg->css;
599}
600
Tejun Heo5efd6112012-03-05 13:15:12 -0800601/**
602 * blkcg_init_queue - initialize blkcg part of request queue
603 * @q: request_queue to initialize
604 *
605 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
606 * part of new request_queue @q.
607 *
608 * RETURNS:
609 * 0 on success, -errno on failure.
610 */
611int blkcg_init_queue(struct request_queue *q)
612{
613 might_sleep();
614
Tejun Heo3c96cb32012-04-13 13:11:34 -0700615 return blk_throtl_init(q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800616}
617
618/**
619 * blkcg_drain_queue - drain blkcg part of request_queue
620 * @q: request_queue to drain
621 *
622 * Called from blk_drain_queue(). Responsible for draining blkcg part.
623 */
624void blkcg_drain_queue(struct request_queue *q)
625{
626 lockdep_assert_held(q->queue_lock);
627
628 blk_throtl_drain(q);
629}
630
631/**
632 * blkcg_exit_queue - exit and release blkcg part of request_queue
633 * @q: request_queue being released
634 *
635 * Called from blk_release_queue(). Responsible for exiting blkcg part.
636 */
637void blkcg_exit_queue(struct request_queue *q)
638{
Tejun Heo6d18b002012-04-13 13:11:35 -0700639 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700640 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700641 spin_unlock_irq(q->queue_lock);
642
Tejun Heo5efd6112012-03-05 13:15:12 -0800643 blk_throtl_exit(q);
644}
645
Vivek Goyal31e4c282009-12-03 12:59:42 -0500646/*
647 * We cannot support shared io contexts, as we have no mean to support
648 * two tasks with the same ioc in two different groups without major rework
649 * of the main cic data structures. For now we allow a task to change
650 * its cgroup only if it's the only owner of its ioc.
651 */
Tejun Heo3c798392012-04-16 13:57:25 -0700652static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500653{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800654 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500655 struct io_context *ioc;
656 int ret = 0;
657
658 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -0800659 cgroup_taskset_for_each(task, cgrp, tset) {
660 task_lock(task);
661 ioc = task->io_context;
662 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
663 ret = -EINVAL;
664 task_unlock(task);
665 if (ret)
666 break;
667 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500668 return ret;
669}
670
Tejun Heo676f7c82012-04-01 12:09:55 -0700671struct cgroup_subsys blkio_subsys = {
672 .name = "blkio",
Tejun Heo3c798392012-04-16 13:57:25 -0700673 .create = blkcg_create,
674 .can_attach = blkcg_can_attach,
675 .pre_destroy = blkcg_pre_destroy,
676 .destroy = blkcg_destroy,
Tejun Heo676f7c82012-04-01 12:09:55 -0700677 .subsys_id = blkio_subsys_id,
Tejun Heo3c798392012-04-16 13:57:25 -0700678 .base_cftypes = blkcg_files,
Tejun Heo676f7c82012-04-01 12:09:55 -0700679 .module = THIS_MODULE,
680};
681EXPORT_SYMBOL_GPL(blkio_subsys);
682
Tejun Heo8bd435b2012-04-13 13:11:28 -0700683/**
Tejun Heoa2b16932012-04-13 13:11:33 -0700684 * blkcg_activate_policy - activate a blkcg policy on a request_queue
685 * @q: request_queue of interest
686 * @pol: blkcg policy to activate
687 *
688 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
689 * bypass mode to populate its blkgs with policy_data for @pol.
690 *
691 * Activation happens with @q bypassed, so nobody would be accessing blkgs
692 * from IO path. Update of each blkg is protected by both queue and blkcg
693 * locks so that holding either lock and testing blkcg_policy_enabled() is
694 * always enough for dereferencing policy data.
695 *
696 * The caller is responsible for synchronizing [de]activations and policy
697 * [un]registerations. Returns 0 on success, -errno on failure.
698 */
699int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700700 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700701{
702 LIST_HEAD(pds);
Tejun Heo3c798392012-04-16 13:57:25 -0700703 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700704 struct blkg_policy_data *pd, *n;
705 int cnt = 0, ret;
706
707 if (blkcg_policy_enabled(q, pol))
708 return 0;
709
710 blk_queue_bypass_start(q);
711
712 /* make sure the root blkg exists and count the existing blkgs */
713 spin_lock_irq(q->queue_lock);
714
715 rcu_read_lock();
Tejun Heo3c798392012-04-16 13:57:25 -0700716 blkg = __blkg_lookup_create(&blkcg_root, q);
Tejun Heoa2b16932012-04-13 13:11:33 -0700717 rcu_read_unlock();
718
719 if (IS_ERR(blkg)) {
720 ret = PTR_ERR(blkg);
721 goto out_unlock;
722 }
723 q->root_blkg = blkg;
724
725 list_for_each_entry(blkg, &q->blkg_list, q_node)
726 cnt++;
727
728 spin_unlock_irq(q->queue_lock);
729
730 /* allocate policy_data for all existing blkgs */
731 while (cnt--) {
Tejun Heof95a04a2012-04-16 13:57:26 -0700732 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
Tejun Heoa2b16932012-04-13 13:11:33 -0700733 if (!pd) {
734 ret = -ENOMEM;
735 goto out_free;
736 }
737 list_add_tail(&pd->alloc_node, &pds);
738 }
739
740 /*
741 * Install the allocated pds. With @q bypassing, no new blkg
742 * should have been created while the queue lock was dropped.
743 */
744 spin_lock_irq(q->queue_lock);
745
746 list_for_each_entry(blkg, &q->blkg_list, q_node) {
747 if (WARN_ON(list_empty(&pds))) {
748 /* umm... this shouldn't happen, just abort */
749 ret = -ENOMEM;
750 goto out_unlock;
751 }
752 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
753 list_del_init(&pd->alloc_node);
754
755 /* grab blkcg lock too while installing @pd on @blkg */
756 spin_lock(&blkg->blkcg->lock);
757
758 blkg->pd[pol->plid] = pd;
759 pd->blkg = blkg;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700760 pol->pd_init_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700761
762 spin_unlock(&blkg->blkcg->lock);
763 }
764
765 __set_bit(pol->plid, q->blkcg_pols);
766 ret = 0;
767out_unlock:
768 spin_unlock_irq(q->queue_lock);
769out_free:
770 blk_queue_bypass_end(q);
771 list_for_each_entry_safe(pd, n, &pds, alloc_node)
772 kfree(pd);
773 return ret;
774}
775EXPORT_SYMBOL_GPL(blkcg_activate_policy);
776
777/**
778 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
779 * @q: request_queue of interest
780 * @pol: blkcg policy to deactivate
781 *
782 * Deactivate @pol on @q. Follows the same synchronization rules as
783 * blkcg_activate_policy().
784 */
785void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700786 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700787{
Tejun Heo3c798392012-04-16 13:57:25 -0700788 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700789
790 if (!blkcg_policy_enabled(q, pol))
791 return;
792
793 blk_queue_bypass_start(q);
794 spin_lock_irq(q->queue_lock);
795
796 __clear_bit(pol->plid, q->blkcg_pols);
797
Tejun Heo6d18b002012-04-13 13:11:35 -0700798 /* if no policy is left, no need for blkgs - shoot them down */
799 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
800 blkg_destroy_all(q);
801
Tejun Heoa2b16932012-04-13 13:11:33 -0700802 list_for_each_entry(blkg, &q->blkg_list, q_node) {
803 /* grab blkcg lock too while removing @pd from @blkg */
804 spin_lock(&blkg->blkcg->lock);
805
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700806 if (pol->pd_exit_fn)
807 pol->pd_exit_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700808
809 kfree(blkg->pd[pol->plid]);
810 blkg->pd[pol->plid] = NULL;
811
812 spin_unlock(&blkg->blkcg->lock);
813 }
814
815 spin_unlock_irq(q->queue_lock);
816 blk_queue_bypass_end(q);
817}
818EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
819
820/**
Tejun Heo3c798392012-04-16 13:57:25 -0700821 * blkcg_policy_register - register a blkcg policy
822 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -0700823 *
Tejun Heo3c798392012-04-16 13:57:25 -0700824 * Register @pol with blkcg core. Might sleep and @pol may be modified on
825 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700826 */
Tejun Heo3c798392012-04-16 13:57:25 -0700827int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500828{
Tejun Heo8bd435b2012-04-13 13:11:28 -0700829 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800830
Tejun Heof95a04a2012-04-16 13:57:26 -0700831 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
832 return -EINVAL;
833
Tejun Heobc0d6502012-04-13 13:11:26 -0700834 mutex_lock(&blkcg_pol_mutex);
835
Tejun Heo8bd435b2012-04-13 13:11:28 -0700836 /* find an empty slot */
837 ret = -ENOSPC;
838 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -0700839 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -0700840 break;
841 if (i >= BLKCG_MAX_POLS)
842 goto out_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -0800843
Tejun Heo8bd435b2012-04-13 13:11:28 -0700844 /* register and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700845 pol->plid = i;
846 blkcg_policy[i] = pol;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700847
Tejun Heo8bd435b2012-04-13 13:11:28 -0700848 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -0700849 if (pol->cftypes)
850 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
Tejun Heo8bd435b2012-04-13 13:11:28 -0700851 ret = 0;
852out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700853 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -0700854 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -0500855}
Tejun Heo3c798392012-04-16 13:57:25 -0700856EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -0500857
Tejun Heo8bd435b2012-04-13 13:11:28 -0700858/**
Tejun Heo3c798392012-04-16 13:57:25 -0700859 * blkcg_policy_unregister - unregister a blkcg policy
860 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -0700861 *
Tejun Heo3c798392012-04-16 13:57:25 -0700862 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700863 */
Tejun Heo3c798392012-04-16 13:57:25 -0700864void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -0500865{
Tejun Heobc0d6502012-04-13 13:11:26 -0700866 mutex_lock(&blkcg_pol_mutex);
867
Tejun Heo3c798392012-04-16 13:57:25 -0700868 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -0700869 goto out_unlock;
870
871 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -0700872 if (pol->cftypes)
873 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -0700874
Tejun Heo8bd435b2012-04-13 13:11:28 -0700875 /* unregister and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -0700876 blkcg_policy[pol->plid] = NULL;
Tejun Heo8bd435b2012-04-13 13:11:28 -0700877out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -0700878 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -0500879}
Tejun Heo3c798392012-04-16 13:57:25 -0700880EXPORT_SYMBOL_GPL(blkcg_policy_unregister);