blob: 3aec4cdc89686a3fca85cdf0c24dbe86441d2a42 [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 Heoe71357e2013-01-09 08:05:10 -080029struct blkcg blkcg_root = { .cfq_weight = 2 * CFQ_WEIGHT_DEFAULT,
30 .cfq_leaf_weight = 2 * CFQ_WEIGHT_DEFAULT, };
Tejun Heo3c798392012-04-16 13:57:25 -070031EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050032
Tejun Heo3c798392012-04-16 13:57:25 -070033static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080034
Tejun Heoa2b16932012-04-13 13:11:33 -070035static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070036 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070037{
38 return pol && test_bit(pol->plid, q->blkcg_pols);
39}
40
Tejun Heo03814112012-03-05 13:15:14 -080041/**
42 * blkg_free - free a blkg
43 * @blkg: blkg to free
44 *
45 * Free @blkg which may be partially allocated.
46 */
Tejun Heo3c798392012-04-16 13:57:25 -070047static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080048{
Tejun Heoe8989fa2012-03-05 13:15:20 -080049 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080050
51 if (!blkg)
52 return;
53
Tejun Heo8bd435b2012-04-13 13:11:28 -070054 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -070055 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -080056 struct blkg_policy_data *pd = blkg->pd[i];
57
Tejun Heo9ade5ea2012-04-01 14:38:44 -070058 if (!pd)
59 continue;
60
Tejun Heof9fcc2d2012-04-16 13:57:27 -070061 if (pol && pol->pd_exit_fn)
62 pol->pd_exit_fn(blkg);
Tejun Heo9ade5ea2012-04-01 14:38:44 -070063
Tejun Heo9ade5ea2012-04-01 14:38:44 -070064 kfree(pd);
Tejun Heo03814112012-03-05 13:15:14 -080065 }
Tejun Heoe8989fa2012-03-05 13:15:20 -080066
Tejun Heoa0516612012-06-26 15:05:44 -070067 blk_exit_rl(&blkg->rl);
Tejun Heo549d3aa2012-03-05 13:15:16 -080068 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080069}
70
71/**
72 * blkg_alloc - allocate a blkg
73 * @blkcg: block cgroup the new blkg is associated with
74 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070075 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080076 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080077 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080078 */
Tejun Heo15974992012-06-04 20:40:52 -070079static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
80 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080081{
Tejun Heo3c798392012-04-16 13:57:25 -070082 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080083 int i;
Tejun Heo03814112012-03-05 13:15:14 -080084
85 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070086 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -080087 if (!blkg)
88 return NULL;
89
Tejun Heoc875f4d2012-03-05 13:15:22 -080090 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -080091 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -080092 blkg->blkcg = blkcg;
Tejun Heo1adaf3d2012-03-05 13:15:15 -080093 blkg->refcnt = 1;
Tejun Heo03814112012-03-05 13:15:14 -080094
Tejun Heoa0516612012-06-26 15:05:44 -070095 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
96 if (blkcg != &blkcg_root) {
97 if (blk_init_rl(&blkg->rl, q, gfp_mask))
98 goto err_free;
99 blkg->rl.blkg = blkg;
100 }
101
Tejun Heo8bd435b2012-04-13 13:11:28 -0700102 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700103 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800104 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800105
Tejun Heoa2b16932012-04-13 13:11:33 -0700106 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800107 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800108
Tejun Heoe8989fa2012-03-05 13:15:20 -0800109 /* alloc per-policy data and attach it to blkg */
Tejun Heo15974992012-06-04 20:40:52 -0700110 pd = kzalloc_node(pol->pd_size, gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700111 if (!pd)
112 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800113
Tejun Heoe8989fa2012-03-05 13:15:20 -0800114 blkg->pd[i] = pd;
115 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800116 pd->plid = i;
Tejun Heo03814112012-03-05 13:15:14 -0800117
Tejun Heo9b2ea862012-06-04 15:21:00 +0900118 /* invoke per-policy init */
Tejun Heo356d2e52013-01-09 08:05:10 -0800119 if (pol->pd_init_fn)
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700120 pol->pd_init_fn(blkg);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800121 }
122
Tejun Heo03814112012-03-05 13:15:14 -0800123 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700124
125err_free:
126 blkg_free(blkg);
127 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800128}
129
Tejun Heo3c798392012-04-16 13:57:25 -0700130static struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
Tejun Heo86cde6b2013-01-09 08:05:10 -0800131 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700132{
Tejun Heo3c798392012-04-16 13:57:25 -0700133 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700134
Tejun Heoa6371202012-04-19 16:29:24 -0700135 blkg = rcu_dereference(blkcg->blkg_hint);
136 if (blkg && blkg->q == q)
137 return blkg;
138
139 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800140 * Hint didn't match. Look up from the radix tree. Note that the
141 * hint can only be updated under queue_lock as otherwise @blkg
142 * could have already been removed from blkg_tree. The caller is
143 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700144 */
145 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800146 if (blkg && blkg->q == q) {
147 if (update_hint) {
148 lockdep_assert_held(q->queue_lock);
149 rcu_assign_pointer(blkcg->blkg_hint, blkg);
150 }
Tejun Heoa6371202012-04-19 16:29:24 -0700151 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800152 }
Tejun Heoa6371202012-04-19 16:29:24 -0700153
Tejun Heo80fd9972012-04-13 14:50:53 -0700154 return NULL;
155}
156
157/**
158 * blkg_lookup - lookup blkg for the specified blkcg - q pair
159 * @blkcg: blkcg of interest
160 * @q: request_queue of interest
161 *
162 * Lookup blkg for the @blkcg - @q pair. This function should be called
163 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
164 * - see blk_queue_bypass_start() for details.
165 */
Tejun Heo3c798392012-04-16 13:57:25 -0700166struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700167{
168 WARN_ON_ONCE(!rcu_read_lock_held());
169
170 if (unlikely(blk_queue_bypass(q)))
171 return NULL;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800172 return __blkg_lookup(blkcg, q, false);
Tejun Heo80fd9972012-04-13 14:50:53 -0700173}
174EXPORT_SYMBOL_GPL(blkg_lookup);
175
Tejun Heo15974992012-06-04 20:40:52 -0700176/*
177 * If @new_blkg is %NULL, this function tries to allocate a new one as
178 * necessary using %GFP_ATOMIC. @new_blkg is always consumed on return.
179 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800180static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
181 struct request_queue *q,
182 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400183{
Tejun Heo3c798392012-04-16 13:57:25 -0700184 struct blkcg_gq *blkg;
Tejun Heof427d902013-01-09 08:05:12 -0800185 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400186
Tejun Heocd1604f2012-03-05 13:15:06 -0800187 WARN_ON_ONCE(!rcu_read_lock_held());
188 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500189
Tejun Heo7ee9c562012-03-05 13:15:11 -0800190 /* blkg holds a reference to blkcg */
Tejun Heo15974992012-06-04 20:40:52 -0700191 if (!css_tryget(&blkcg->css)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800192 ret = -EINVAL;
193 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700194 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800195
Tejun Heo496fb782012-04-19 16:29:23 -0700196 /* allocate */
Tejun Heo15974992012-06-04 20:40:52 -0700197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_ATOMIC);
199 if (unlikely(!new_blkg)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800200 ret = -ENOMEM;
201 goto err_put_css;
Tejun Heo15974992012-06-04 20:40:52 -0700202 }
203 }
204 blkg = new_blkg;
Tejun Heocd1604f2012-03-05 13:15:06 -0800205
Tejun Heo3c547862013-01-09 08:05:10 -0800206 /* link parent and insert */
207 if (blkcg_parent(blkcg)) {
208 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
209 if (WARN_ON_ONCE(!blkg->parent)) {
210 blkg = ERR_PTR(-EINVAL);
211 goto err_put_css;
212 }
213 blkg_get(blkg->parent);
214 }
215
Tejun Heoa6371202012-04-19 16:29:24 -0700216 spin_lock(&blkcg->lock);
217 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
218 if (likely(!ret)) {
219 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
220 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800221
222 for (i = 0; i < BLKCG_MAX_POLS; i++) {
223 struct blkcg_policy *pol = blkcg_policy[i];
224
225 if (blkg->pd[i] && pol->pd_online_fn)
226 pol->pd_online_fn(blkg);
227 }
Tejun Heoa6371202012-04-19 16:29:24 -0700228 }
Tejun Heof427d902013-01-09 08:05:12 -0800229 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700230 spin_unlock(&blkcg->lock);
231
Tejun Heoa6371202012-04-19 16:29:24 -0700232 if (!ret)
233 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700234
Tejun Heo3c547862013-01-09 08:05:10 -0800235 /* @blkg failed fully initialized, use the usual release path */
236 blkg_put(blkg);
237 return ERR_PTR(ret);
238
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800239err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700240 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800241err_free_blkg:
Tejun Heo15974992012-06-04 20:40:52 -0700242 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800243 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500244}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700245
Tejun Heo86cde6b2013-01-09 08:05:10 -0800246/**
247 * blkg_lookup_create - lookup blkg, try to create one if not there
248 * @blkcg: blkcg of interest
249 * @q: request_queue of interest
250 *
251 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800252 * create one. blkg creation is performed recursively from blkcg_root such
253 * that all non-root blkg's have access to the parent blkg. This function
254 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800255 *
256 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
257 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
258 * dead and bypassing, returns ERR_PTR(-EBUSY).
259 */
Tejun Heo3c798392012-04-16 13:57:25 -0700260struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
261 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700262{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800263 struct blkcg_gq *blkg;
264
265 WARN_ON_ONCE(!rcu_read_lock_held());
266 lockdep_assert_held(q->queue_lock);
267
Tejun Heo3c96cb32012-04-13 13:11:34 -0700268 /*
269 * This could be the first entry point of blkcg implementation and
270 * we shouldn't allow anything to go through for a bypassing queue.
271 */
272 if (unlikely(blk_queue_bypass(q)))
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100273 return ERR_PTR(blk_queue_dying(q) ? -EINVAL : -EBUSY);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800274
275 blkg = __blkg_lookup(blkcg, q, true);
276 if (blkg)
277 return blkg;
278
Tejun Heo3c547862013-01-09 08:05:10 -0800279 /*
280 * Create blkgs walking down from blkcg_root to @blkcg, so that all
281 * non-root blkgs have access to their parents.
282 */
283 while (true) {
284 struct blkcg *pos = blkcg;
285 struct blkcg *parent = blkcg_parent(blkcg);
286
287 while (parent && !__blkg_lookup(parent, q, false)) {
288 pos = parent;
289 parent = blkcg_parent(parent);
290 }
291
292 blkg = blkg_create(pos, q, NULL);
293 if (pos == blkcg || IS_ERR(blkg))
294 return blkg;
295 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700296}
Tejun Heocd1604f2012-03-05 13:15:06 -0800297EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500298
Tejun Heo3c798392012-04-16 13:57:25 -0700299static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800300{
Tejun Heo3c798392012-04-16 13:57:25 -0700301 struct blkcg *blkcg = blkg->blkcg;
Tejun Heof427d902013-01-09 08:05:12 -0800302 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800303
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200304 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800305 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800306
307 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800308 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800309 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700310
Tejun Heof427d902013-01-09 08:05:12 -0800311 for (i = 0; i < BLKCG_MAX_POLS; i++) {
312 struct blkcg_policy *pol = blkcg_policy[i];
313
314 if (blkg->pd[i] && pol->pd_offline_fn)
315 pol->pd_offline_fn(blkg);
316 }
317 blkg->online = false;
318
Tejun Heoa6371202012-04-19 16:29:24 -0700319 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800320 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800321 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800322
Tejun Heo03aa2642012-03-05 13:15:19 -0800323 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700324 * Both setting lookup hint to and clearing it from @blkg are done
325 * under queue_lock. If it's not pointing to @blkg now, it never
326 * will. Hint assignment itself can race safely.
327 */
328 if (rcu_dereference_raw(blkcg->blkg_hint) == blkg)
329 rcu_assign_pointer(blkcg->blkg_hint, NULL);
330
331 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800332 * Put the reference taken at the time of creation so that when all
333 * queues are gone, group can be destroyed.
334 */
335 blkg_put(blkg);
336}
337
Tejun Heo9f13ef62012-03-05 13:15:21 -0800338/**
339 * blkg_destroy_all - destroy all blkgs associated with a request_queue
340 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800341 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700342 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800343 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700344static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800345{
Tejun Heo3c798392012-04-16 13:57:25 -0700346 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800347
Tejun Heo6d18b002012-04-13 13:11:35 -0700348 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800349
Tejun Heo9f13ef62012-03-05 13:15:21 -0800350 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700351 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800352
Tejun Heo9f13ef62012-03-05 13:15:21 -0800353 spin_lock(&blkcg->lock);
354 blkg_destroy(blkg);
355 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800356 }
Jun'ichi Nomura65635cb2012-10-17 17:45:36 +0900357
358 /*
359 * root blkg is destroyed. Just clear the pointer since
360 * root_rl does not take reference on root blkg.
361 */
362 q->root_blkg = NULL;
363 q->root_rl.blkg = NULL;
Tejun Heo72e06c22012-03-05 13:15:00 -0800364}
365
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800366static void blkg_rcu_free(struct rcu_head *rcu_head)
367{
Tejun Heo3c798392012-04-16 13:57:25 -0700368 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800369}
370
Tejun Heo3c798392012-04-16 13:57:25 -0700371void __blkg_release(struct blkcg_gq *blkg)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800372{
Tejun Heo3c547862013-01-09 08:05:10 -0800373 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800374 css_put(&blkg->blkcg->css);
Tejun Heo3c547862013-01-09 08:05:10 -0800375 if (blkg->parent)
376 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800377
378 /*
379 * A group is freed in rcu manner. But having an rcu lock does not
380 * mean that one can access all the fields of blkg and assume these
381 * are valid. For example, don't try to follow throtl_data and
382 * request queue links.
383 *
384 * Having a reference to blkg under an rcu allows acess to only
385 * values local to groups like group stats and group rate limits
386 */
387 call_rcu(&blkg->rcu_head, blkg_rcu_free);
388}
389EXPORT_SYMBOL_GPL(__blkg_release);
390
Tejun Heoa0516612012-06-26 15:05:44 -0700391/*
392 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
393 * because the root blkg uses @q->root_rl instead of its own rl.
394 */
395struct request_list *__blk_queue_next_rl(struct request_list *rl,
396 struct request_queue *q)
397{
398 struct list_head *ent;
399 struct blkcg_gq *blkg;
400
401 /*
402 * Determine the current blkg list_head. The first entry is
403 * root_rl which is off @q->blkg_list and mapped to the head.
404 */
405 if (rl == &q->root_rl) {
406 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900407 /* There are no more block groups, hence no request lists */
408 if (list_empty(ent))
409 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700410 } else {
411 blkg = container_of(rl, struct blkcg_gq, rl);
412 ent = &blkg->q_node;
413 }
414
415 /* walk to the next list_head, skip root blkcg */
416 ent = ent->next;
417 if (ent == &q->root_blkg->q_node)
418 ent = ent->next;
419 if (ent == &q->blkg_list)
420 return NULL;
421
422 blkg = container_of(ent, struct blkcg_gq, q_node);
423 return &blkg->rl;
424}
425
Tejun Heo3c798392012-04-16 13:57:25 -0700426static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
427 u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700428{
Tejun Heo3c798392012-04-16 13:57:25 -0700429 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
430 struct blkcg_gq *blkg;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700431 struct hlist_node *n;
Tejun Heobc0d6502012-04-13 13:11:26 -0700432 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700433
Tejun Heobc0d6502012-04-13 13:11:26 -0700434 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700435 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800436
437 /*
438 * Note that stat reset is racy - it doesn't synchronize against
439 * stat updates. This is a debug feature which shouldn't exist
440 * anyway. If you get hit by a race, retry.
441 */
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700442 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700443 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700444 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800445
Tejun Heoa2b16932012-04-13 13:11:33 -0700446 if (blkcg_policy_enabled(blkg->q, pol) &&
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700447 pol->pd_reset_stats_fn)
448 pol->pd_reset_stats_fn(blkg);
Tejun Heobc0d6502012-04-13 13:11:26 -0700449 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700450 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400451
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700452 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700453 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700454 return 0;
455}
456
Tejun Heo3c798392012-04-16 13:57:25 -0700457static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700458{
Tejun Heod3d32e62012-04-01 14:38:42 -0700459 /* some drivers (floppy) instantiate a queue w/o disk registered */
460 if (blkg->q->backing_dev_info.dev)
461 return dev_name(blkg->q->backing_dev_info.dev);
462 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700463}
464
Tejun Heod3d32e62012-04-01 14:38:42 -0700465/**
466 * blkcg_print_blkgs - helper for printing per-blkg data
467 * @sf: seq_file to print to
468 * @blkcg: blkcg of interest
469 * @prfill: fill function to print out a blkg
470 * @pol: policy in question
471 * @data: data to be passed to @prfill
472 * @show_total: to print out sum of prfill return values or not
473 *
474 * This function invokes @prfill on each blkg of @blkcg if pd for the
475 * policy specified by @pol exists. @prfill is invoked with @sf, the
476 * policy data and @data. If @show_total is %true, the sum of the return
477 * values from @prfill is printed with "Total" label at the end.
478 *
479 * This is to be used to construct print functions for
480 * cftype->read_seq_string method.
481 */
Tejun Heo3c798392012-04-16 13:57:25 -0700482void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700483 u64 (*prfill)(struct seq_file *,
484 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700485 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700486 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400487{
Tejun Heo3c798392012-04-16 13:57:25 -0700488 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700489 struct hlist_node *n;
490 u64 total = 0;
491
492 spin_lock_irq(&blkcg->lock);
493 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
Tejun Heoa2b16932012-04-13 13:11:33 -0700494 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700495 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heod3d32e62012-04-01 14:38:42 -0700496 spin_unlock_irq(&blkcg->lock);
497
498 if (show_total)
499 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
500}
Tejun Heo829fdb52012-04-01 14:38:43 -0700501EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700502
503/**
504 * __blkg_prfill_u64 - prfill helper for a single u64 value
505 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700506 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700507 * @v: value to print
508 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700509 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700510 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700511u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700512{
Tejun Heof95a04a2012-04-16 13:57:26 -0700513 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700514
515 if (!dname)
516 return 0;
517
518 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
519 return v;
520}
Tejun Heo829fdb52012-04-01 14:38:43 -0700521EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700522
523/**
524 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
525 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700526 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700527 * @rwstat: rwstat to print
528 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700529 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700530 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700531u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700532 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700533{
534 static const char *rwstr[] = {
535 [BLKG_RWSTAT_READ] = "Read",
536 [BLKG_RWSTAT_WRITE] = "Write",
537 [BLKG_RWSTAT_SYNC] = "Sync",
538 [BLKG_RWSTAT_ASYNC] = "Async",
539 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700540 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700541 u64 v;
542 int i;
543
544 if (!dname)
545 return 0;
546
547 for (i = 0; i < BLKG_RWSTAT_NR; i++)
548 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
549 (unsigned long long)rwstat->cnt[i]);
550
551 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
552 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
553 return v;
554}
Tejun Heob50da392013-01-09 08:05:12 -0800555EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700556
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700557/**
558 * blkg_prfill_stat - prfill callback for blkg_stat
559 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700560 * @pd: policy private data of interest
561 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700562 *
563 * prfill callback for printing a blkg_stat.
564 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700565u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700566{
Tejun Heof95a04a2012-04-16 13:57:26 -0700567 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700568}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700569EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700570
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700571/**
572 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
573 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700574 * @pd: policy private data of interest
575 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700576 *
577 * prfill callback for printing a blkg_rwstat.
578 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700579u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
580 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700581{
Tejun Heof95a04a2012-04-16 13:57:26 -0700582 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700583
Tejun Heof95a04a2012-04-16 13:57:26 -0700584 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700585}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700586EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700587
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700588/**
589 * blkg_conf_prep - parse and prepare for per-blkg config update
590 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700591 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700592 * @input: input string
593 * @ctx: blkg_conf_ctx to be filled
594 *
595 * Parse per-blkg config update from @input and initialize @ctx with the
596 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700597 * value. This function returns with RCU read lock and queue lock held and
598 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700599 */
Tejun Heo3c798392012-04-16 13:57:25 -0700600int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
601 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700602 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800603{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700604 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700605 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700606 unsigned int major, minor;
607 unsigned long long v;
608 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800609
Tejun Heo726fa692012-04-01 14:38:43 -0700610 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
611 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700612
Tejun Heo726fa692012-04-01 14:38:43 -0700613 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800614 if (!disk || part)
Tejun Heo726fa692012-04-01 14:38:43 -0700615 return -EINVAL;
Tejun Heoe56da7e2012-03-05 13:15:07 -0800616
617 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800618 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700619
Tejun Heoa2b16932012-04-13 13:11:33 -0700620 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700621 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700622 else
623 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800624
Tejun Heo4bfd4822012-03-05 13:15:08 -0800625 if (IS_ERR(blkg)) {
626 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700627 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700628 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700629 put_disk(disk);
630 /*
631 * If queue was bypassing, we should retry. Do so after a
632 * short msleep(). It isn't strictly necessary but queue
633 * can be bypassing for some time and it's always nice to
634 * avoid busy looping.
635 */
636 if (ret == -EBUSY) {
637 msleep(10);
638 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400639 }
Tejun Heo726fa692012-04-01 14:38:43 -0700640 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400641 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800642
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700643 ctx->disk = disk;
644 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700645 ctx->v = v;
646 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800647}
Tejun Heo829fdb52012-04-01 14:38:43 -0700648EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800649
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700650/**
651 * blkg_conf_finish - finish up per-blkg config update
652 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
653 *
654 * Finish up after per-blkg config update. This function must be paired
655 * with blkg_conf_prep().
656 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700657void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700658 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800659{
Tejun Heoda8b0662012-04-13 13:11:29 -0700660 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700661 rcu_read_unlock();
662 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800663}
Tejun Heo829fdb52012-04-01 14:38:43 -0700664EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800665
Tejun Heo3c798392012-04-16 13:57:25 -0700666struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500667 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200668 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700669 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500670 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700671 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500672};
673
Tejun Heo9f13ef62012-03-05 13:15:21 -0800674/**
Tejun Heo92fb9742012-11-19 08:13:38 -0800675 * blkcg_css_offline - cgroup css_offline callback
Tejun Heo9f13ef62012-03-05 13:15:21 -0800676 * @cgroup: cgroup of interest
677 *
678 * This function is called when @cgroup is about to go away and responsible
679 * for shooting down all blkgs associated with @cgroup. blkgs should be
680 * removed while holding both q and blkcg locks. As blkcg lock is nested
681 * inside q lock, this function performs reverse double lock dancing.
682 *
683 * This is the blkcg counterpart of ioc_release_fn().
684 */
Tejun Heo92fb9742012-11-19 08:13:38 -0800685static void blkcg_css_offline(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500686{
Tejun Heo3c798392012-04-16 13:57:25 -0700687 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500688
Tejun Heo9f13ef62012-03-05 13:15:21 -0800689 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800690
Tejun Heo9f13ef62012-03-05 13:15:21 -0800691 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700692 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
693 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800694 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500695
Tejun Heo9f13ef62012-03-05 13:15:21 -0800696 if (spin_trylock(q->queue_lock)) {
697 blkg_destroy(blkg);
698 spin_unlock(q->queue_lock);
699 } else {
700 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800701 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200702 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200703 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800704 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200705
Tejun Heo9f13ef62012-03-05 13:15:21 -0800706 spin_unlock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800707}
708
Tejun Heo92fb9742012-11-19 08:13:38 -0800709static void blkcg_css_free(struct cgroup *cgroup)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800710{
Tejun Heo3c798392012-04-16 13:57:25 -0700711 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800712
Tejun Heo3c798392012-04-16 13:57:25 -0700713 if (blkcg != &blkcg_root)
Ben Blum67523c42010-03-10 15:22:11 -0800714 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500715}
716
Tejun Heo92fb9742012-11-19 08:13:38 -0800717static struct cgroup_subsys_state *blkcg_css_alloc(struct cgroup *cgroup)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500718{
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700719 static atomic64_t id_seq = ATOMIC64_INIT(0);
Tejun Heo3c798392012-04-16 13:57:25 -0700720 struct blkcg *blkcg;
Li Zefan03415092010-05-07 08:57:00 +0200721 struct cgroup *parent = cgroup->parent;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500722
Li Zefan03415092010-05-07 08:57:00 +0200723 if (!parent) {
Tejun Heo3c798392012-04-16 13:57:25 -0700724 blkcg = &blkcg_root;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500725 goto done;
726 }
727
Vivek Goyal31e4c282009-12-03 12:59:42 -0500728 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
729 if (!blkcg)
730 return ERR_PTR(-ENOMEM);
731
Tejun Heo3381cb82012-04-01 14:38:44 -0700732 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heoe71357e2013-01-09 08:05:10 -0800733 blkcg->cfq_leaf_weight = CFQ_WEIGHT_DEFAULT;
Tejun Heo9a9e8a22012-03-19 15:10:56 -0700734 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500735done:
736 spin_lock_init(&blkcg->lock);
Tejun Heoa6371202012-04-19 16:29:24 -0700737 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_ATOMIC);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500738 INIT_HLIST_HEAD(&blkcg->blkg_list);
739
740 return &blkcg->css;
741}
742
Tejun Heo5efd6112012-03-05 13:15:12 -0800743/**
744 * blkcg_init_queue - initialize blkcg part of request queue
745 * @q: request_queue to initialize
746 *
747 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
748 * part of new request_queue @q.
749 *
750 * RETURNS:
751 * 0 on success, -errno on failure.
752 */
753int blkcg_init_queue(struct request_queue *q)
754{
755 might_sleep();
756
Tejun Heo3c96cb32012-04-13 13:11:34 -0700757 return blk_throtl_init(q);
Tejun Heo5efd6112012-03-05 13:15:12 -0800758}
759
760/**
761 * blkcg_drain_queue - drain blkcg part of request_queue
762 * @q: request_queue to drain
763 *
764 * Called from blk_drain_queue(). Responsible for draining blkcg part.
765 */
766void blkcg_drain_queue(struct request_queue *q)
767{
768 lockdep_assert_held(q->queue_lock);
769
770 blk_throtl_drain(q);
771}
772
773/**
774 * blkcg_exit_queue - exit and release blkcg part of request_queue
775 * @q: request_queue being released
776 *
777 * Called from blk_release_queue(). Responsible for exiting blkcg part.
778 */
779void blkcg_exit_queue(struct request_queue *q)
780{
Tejun Heo6d18b002012-04-13 13:11:35 -0700781 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700782 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700783 spin_unlock_irq(q->queue_lock);
784
Tejun Heo5efd6112012-03-05 13:15:12 -0800785 blk_throtl_exit(q);
786}
787
Vivek Goyal31e4c282009-12-03 12:59:42 -0500788/*
789 * We cannot support shared io contexts, as we have no mean to support
790 * two tasks with the same ioc in two different groups without major rework
791 * of the main cic data structures. For now we allow a task to change
792 * its cgroup only if it's the only owner of its ioc.
793 */
Tejun Heo3c798392012-04-16 13:57:25 -0700794static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500795{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800796 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500797 struct io_context *ioc;
798 int ret = 0;
799
800 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heobb9d97b2011-12-12 18:12:21 -0800801 cgroup_taskset_for_each(task, cgrp, tset) {
802 task_lock(task);
803 ioc = task->io_context;
804 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
805 ret = -EINVAL;
806 task_unlock(task);
807 if (ret)
808 break;
809 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500810 return ret;
811}
812
Tejun Heo676f7c82012-04-01 12:09:55 -0700813struct cgroup_subsys blkio_subsys = {
814 .name = "blkio",
Tejun Heo92fb9742012-11-19 08:13:38 -0800815 .css_alloc = blkcg_css_alloc,
816 .css_offline = blkcg_css_offline,
817 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -0700818 .can_attach = blkcg_can_attach,
Tejun Heo676f7c82012-04-01 12:09:55 -0700819 .subsys_id = blkio_subsys_id,
Tejun Heo3c798392012-04-16 13:57:25 -0700820 .base_cftypes = blkcg_files,
Tejun Heo676f7c82012-04-01 12:09:55 -0700821 .module = THIS_MODULE,
Tejun Heo8c7f6ed2012-09-13 12:20:58 -0700822
823 /*
824 * blkio subsystem is utterly broken in terms of hierarchy support.
825 * It treats all cgroups equally regardless of where they're
826 * located in the hierarchy - all cgroups are treated as if they're
827 * right below the root. Fix it and remove the following.
828 */
829 .broken_hierarchy = true,
Tejun Heo676f7c82012-04-01 12:09:55 -0700830};
831EXPORT_SYMBOL_GPL(blkio_subsys);
832
Tejun Heo8bd435b2012-04-13 13:11:28 -0700833/**
Tejun Heoa2b16932012-04-13 13:11:33 -0700834 * blkcg_activate_policy - activate a blkcg policy on a request_queue
835 * @q: request_queue of interest
836 * @pol: blkcg policy to activate
837 *
838 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
839 * bypass mode to populate its blkgs with policy_data for @pol.
840 *
841 * Activation happens with @q bypassed, so nobody would be accessing blkgs
842 * from IO path. Update of each blkg is protected by both queue and blkcg
843 * locks so that holding either lock and testing blkcg_policy_enabled() is
844 * always enough for dereferencing policy data.
845 *
846 * The caller is responsible for synchronizing [de]activations and policy
847 * [un]registerations. Returns 0 on success, -errno on failure.
848 */
849int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700850 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700851{
852 LIST_HEAD(pds);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800853 struct blkcg_gq *blkg, *new_blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700854 struct blkg_policy_data *pd, *n;
855 int cnt = 0, ret;
Tejun Heo15974992012-06-04 20:40:52 -0700856 bool preloaded;
Tejun Heoa2b16932012-04-13 13:11:33 -0700857
858 if (blkcg_policy_enabled(q, pol))
859 return 0;
860
Tejun Heo15974992012-06-04 20:40:52 -0700861 /* preallocations for root blkg */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800862 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
863 if (!new_blkg)
Tejun Heo15974992012-06-04 20:40:52 -0700864 return -ENOMEM;
865
866 preloaded = !radix_tree_preload(GFP_KERNEL);
867
Tejun Heoa2b16932012-04-13 13:11:33 -0700868 blk_queue_bypass_start(q);
869
Tejun Heo86cde6b2013-01-09 08:05:10 -0800870 /*
871 * Make sure the root blkg exists and count the existing blkgs. As
872 * @q is bypassing at this point, blkg_lookup_create() can't be
873 * used. Open code it.
874 */
Tejun Heoa2b16932012-04-13 13:11:33 -0700875 spin_lock_irq(q->queue_lock);
876
877 rcu_read_lock();
Tejun Heo86cde6b2013-01-09 08:05:10 -0800878 blkg = __blkg_lookup(&blkcg_root, q, false);
879 if (blkg)
880 blkg_free(new_blkg);
881 else
882 blkg = blkg_create(&blkcg_root, q, new_blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700883 rcu_read_unlock();
884
Tejun Heo15974992012-06-04 20:40:52 -0700885 if (preloaded)
886 radix_tree_preload_end();
887
Tejun Heoa2b16932012-04-13 13:11:33 -0700888 if (IS_ERR(blkg)) {
889 ret = PTR_ERR(blkg);
890 goto out_unlock;
891 }
892 q->root_blkg = blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700893 q->root_rl.blkg = blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700894
895 list_for_each_entry(blkg, &q->blkg_list, q_node)
896 cnt++;
897
898 spin_unlock_irq(q->queue_lock);
899
900 /* allocate policy_data for all existing blkgs */
901 while (cnt--) {
Tejun Heof95a04a2012-04-16 13:57:26 -0700902 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
Tejun Heoa2b16932012-04-13 13:11:33 -0700903 if (!pd) {
904 ret = -ENOMEM;
905 goto out_free;
906 }
907 list_add_tail(&pd->alloc_node, &pds);
908 }
909
910 /*
911 * Install the allocated pds. With @q bypassing, no new blkg
912 * should have been created while the queue lock was dropped.
913 */
914 spin_lock_irq(q->queue_lock);
915
916 list_for_each_entry(blkg, &q->blkg_list, q_node) {
917 if (WARN_ON(list_empty(&pds))) {
918 /* umm... this shouldn't happen, just abort */
919 ret = -ENOMEM;
920 goto out_unlock;
921 }
922 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
923 list_del_init(&pd->alloc_node);
924
925 /* grab blkcg lock too while installing @pd on @blkg */
926 spin_lock(&blkg->blkcg->lock);
927
928 blkg->pd[pol->plid] = pd;
929 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800930 pd->plid = pol->plid;
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700931 pol->pd_init_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700932
933 spin_unlock(&blkg->blkcg->lock);
934 }
935
936 __set_bit(pol->plid, q->blkcg_pols);
937 ret = 0;
938out_unlock:
939 spin_unlock_irq(q->queue_lock);
940out_free:
941 blk_queue_bypass_end(q);
942 list_for_each_entry_safe(pd, n, &pds, alloc_node)
943 kfree(pd);
944 return ret;
945}
946EXPORT_SYMBOL_GPL(blkcg_activate_policy);
947
948/**
949 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
950 * @q: request_queue of interest
951 * @pol: blkcg policy to deactivate
952 *
953 * Deactivate @pol on @q. Follows the same synchronization rules as
954 * blkcg_activate_policy().
955 */
956void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -0700957 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -0700958{
Tejun Heo3c798392012-04-16 13:57:25 -0700959 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -0700960
961 if (!blkcg_policy_enabled(q, pol))
962 return;
963
964 blk_queue_bypass_start(q);
965 spin_lock_irq(q->queue_lock);
966
967 __clear_bit(pol->plid, q->blkcg_pols);
968
Tejun Heo6d18b002012-04-13 13:11:35 -0700969 /* if no policy is left, no need for blkgs - shoot them down */
970 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
971 blkg_destroy_all(q);
972
Tejun Heoa2b16932012-04-13 13:11:33 -0700973 list_for_each_entry(blkg, &q->blkg_list, q_node) {
974 /* grab blkcg lock too while removing @pd from @blkg */
975 spin_lock(&blkg->blkcg->lock);
976
Tejun Heof427d902013-01-09 08:05:12 -0800977 if (pol->pd_offline_fn)
978 pol->pd_offline_fn(blkg);
Tejun Heof9fcc2d2012-04-16 13:57:27 -0700979 if (pol->pd_exit_fn)
980 pol->pd_exit_fn(blkg);
Tejun Heoa2b16932012-04-13 13:11:33 -0700981
982 kfree(blkg->pd[pol->plid]);
983 blkg->pd[pol->plid] = NULL;
984
985 spin_unlock(&blkg->blkcg->lock);
986 }
987
988 spin_unlock_irq(q->queue_lock);
989 blk_queue_bypass_end(q);
990}
991EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
992
993/**
Tejun Heo3c798392012-04-16 13:57:25 -0700994 * blkcg_policy_register - register a blkcg policy
995 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -0700996 *
Tejun Heo3c798392012-04-16 13:57:25 -0700997 * Register @pol with blkcg core. Might sleep and @pol may be modified on
998 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -0700999 */
Tejun Heo3c798392012-04-16 13:57:25 -07001000int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001001{
Tejun Heo8bd435b2012-04-13 13:11:28 -07001002 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001003
Tejun Heof95a04a2012-04-16 13:57:26 -07001004 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
1005 return -EINVAL;
1006
Tejun Heobc0d6502012-04-13 13:11:26 -07001007 mutex_lock(&blkcg_pol_mutex);
1008
Tejun Heo8bd435b2012-04-13 13:11:28 -07001009 /* find an empty slot */
1010 ret = -ENOSPC;
1011 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001012 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001013 break;
1014 if (i >= BLKCG_MAX_POLS)
1015 goto out_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001016
Tejun Heo8bd435b2012-04-13 13:11:28 -07001017 /* register and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -07001018 pol->plid = i;
1019 blkcg_policy[i] = pol;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001020
Tejun Heo8bd435b2012-04-13 13:11:28 -07001021 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -07001022 if (pol->cftypes)
1023 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
Tejun Heo8bd435b2012-04-13 13:11:28 -07001024 ret = 0;
1025out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001026 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001027 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001028}
Tejun Heo3c798392012-04-16 13:57:25 -07001029EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001030
Tejun Heo8bd435b2012-04-13 13:11:28 -07001031/**
Tejun Heo3c798392012-04-16 13:57:25 -07001032 * blkcg_policy_unregister - unregister a blkcg policy
1033 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001034 *
Tejun Heo3c798392012-04-16 13:57:25 -07001035 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001036 */
Tejun Heo3c798392012-04-16 13:57:25 -07001037void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001038{
Tejun Heobc0d6502012-04-13 13:11:26 -07001039 mutex_lock(&blkcg_pol_mutex);
1040
Tejun Heo3c798392012-04-16 13:57:25 -07001041 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001042 goto out_unlock;
1043
1044 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -07001045 if (pol->cftypes)
1046 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001047
Tejun Heo8bd435b2012-04-13 13:11:28 -07001048 /* unregister and update blkgs */
Tejun Heo3c798392012-04-16 13:57:25 -07001049 blkcg_policy[pol->plid] = NULL;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001050out_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001051 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001052}
Tejun Heo3c798392012-04-16 13:57:25 -07001053EXPORT_SYMBOL_GPL(blkcg_policy_unregister);