blob: 247c42c8c83be5650dc1e0662a37597024da0c05 [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>
Arianna Avanzinie48453c2015-06-05 23:38:42 +020012 *
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
Vivek Goyal31e4c282009-12-03 12:59:42 -050016 */
17#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050018#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050019#include <linux/module.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110020#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070021#include <linux/blkdev.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040022#include <linux/backing-dev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080024#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080025#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070026#include <linux/atomic.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040027#include <linux/blk-cgroup.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080028#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050029
Divyesh Shah84c124d2010-04-09 08:31:19 +020030#define MAX_KEY_LEN 100
31
Tejun Heo838f13b2015-07-09 16:39:47 -040032/*
33 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
34 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
35 * policy [un]register operations including cgroup file additions /
36 * removals. Putting cgroup file registration outside blkcg_pol_mutex
37 * allows grabbing it from cgroup callbacks.
38 */
39static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070040static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080041
Arianna Avanzinie48453c2015-06-05 23:38:42 +020042struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070043EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050044
Tejun Heo496d5e72015-05-22 17:13:21 -040045struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
46
Tejun Heo3c798392012-04-16 13:57:25 -070047static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080048
Tejun Heo7876f932015-07-09 16:39:49 -040049static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
50
Tejun Heoa2b16932012-04-13 13:11:33 -070051static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070052 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070053{
54 return pol && test_bit(pol->plid, q->blkcg_pols);
55}
56
Tejun Heo03814112012-03-05 13:15:14 -080057/**
58 * blkg_free - free a blkg
59 * @blkg: blkg to free
60 *
61 * Free @blkg which may be partially allocated.
62 */
Tejun Heo3c798392012-04-16 13:57:25 -070063static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080064{
Tejun Heoe8989fa2012-03-05 13:15:20 -080065 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080066
67 if (!blkg)
68 return;
69
Tejun Heodb613672013-05-14 13:52:31 -070070 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070071 if (blkg->pd[i])
72 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080073
Tejun Heo994b7832015-08-18 14:55:07 -070074 if (blkg->blkcg != &blkcg_root)
75 blk_exit_rl(&blkg->rl);
Tejun Heo549d3aa2012-03-05 13:15:16 -080076 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080077}
78
79/**
80 * blkg_alloc - allocate a blkg
81 * @blkcg: block cgroup the new blkg is associated with
82 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070083 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080084 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080085 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080086 */
Tejun Heo15974992012-06-04 20:40:52 -070087static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
88 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080089{
Tejun Heo3c798392012-04-16 13:57:25 -070090 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080091 int i;
Tejun Heo03814112012-03-05 13:15:14 -080092
93 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070094 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -080095 if (!blkg)
96 return NULL;
97
Tejun Heoc875f4d2012-03-05 13:15:22 -080098 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -080099 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800100 blkg->blkcg = blkcg;
Tejun Heoa5049a82014-06-19 17:42:57 -0400101 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800102
Tejun Heoa0516612012-06-26 15:05:44 -0700103 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
104 if (blkcg != &blkcg_root) {
105 if (blk_init_rl(&blkg->rl, q, gfp_mask))
106 goto err_free;
107 blkg->rl.blkg = blkg;
108 }
109
Tejun Heo8bd435b2012-04-13 13:11:28 -0700110 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700111 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800112 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800113
Tejun Heoa2b16932012-04-13 13:11:33 -0700114 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800115 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800116
Tejun Heoe8989fa2012-03-05 13:15:20 -0800117 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700118 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700119 if (!pd)
120 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800121
Tejun Heoe8989fa2012-03-05 13:15:20 -0800122 blkg->pd[i] = pd;
123 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800124 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800125 }
126
Tejun Heo03814112012-03-05 13:15:14 -0800127 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700128
129err_free:
130 blkg_free(blkg);
131 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800132}
133
Tejun Heo16b3de62013-01-09 08:05:12 -0800134/**
135 * __blkg_lookup - internal version of blkg_lookup()
136 * @blkcg: blkcg of interest
137 * @q: request_queue of interest
138 * @update_hint: whether to update lookup hint with the result or not
139 *
140 * This is internal version and shouldn't be used by policy
141 * implementations. Looks up blkgs for the @blkcg - @q pair regardless of
142 * @q's bypass state. If @update_hint is %true, the caller should be
143 * holding @q->queue_lock and lookup hint is updated on success.
144 */
Tejun Heodd4a4ff2013-05-14 13:52:30 -0700145struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg, struct request_queue *q,
146 bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700147{
Tejun Heo3c798392012-04-16 13:57:25 -0700148 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700149
Tejun Heoa6371202012-04-19 16:29:24 -0700150 blkg = rcu_dereference(blkcg->blkg_hint);
151 if (blkg && blkg->q == q)
152 return blkg;
153
154 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800155 * Hint didn't match. Look up from the radix tree. Note that the
156 * hint can only be updated under queue_lock as otherwise @blkg
157 * could have already been removed from blkg_tree. The caller is
158 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700159 */
160 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800161 if (blkg && blkg->q == q) {
162 if (update_hint) {
163 lockdep_assert_held(q->queue_lock);
164 rcu_assign_pointer(blkcg->blkg_hint, blkg);
165 }
Tejun Heoa6371202012-04-19 16:29:24 -0700166 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800167 }
Tejun Heoa6371202012-04-19 16:29:24 -0700168
Tejun Heo80fd9972012-04-13 14:50:53 -0700169 return NULL;
170}
171
172/**
173 * blkg_lookup - lookup blkg for the specified blkcg - q pair
174 * @blkcg: blkcg of interest
175 * @q: request_queue of interest
176 *
177 * Lookup blkg for the @blkcg - @q pair. This function should be called
178 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
179 * - see blk_queue_bypass_start() for details.
180 */
Tejun Heo3c798392012-04-16 13:57:25 -0700181struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
Tejun Heo80fd9972012-04-13 14:50:53 -0700182{
183 WARN_ON_ONCE(!rcu_read_lock_held());
184
185 if (unlikely(blk_queue_bypass(q)))
186 return NULL;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800187 return __blkg_lookup(blkcg, q, false);
Tejun Heo80fd9972012-04-13 14:50:53 -0700188}
189EXPORT_SYMBOL_GPL(blkg_lookup);
190
Tejun Heo15974992012-06-04 20:40:52 -0700191/*
192 * If @new_blkg is %NULL, this function tries to allocate a new one as
Tejun Heod93a11f2015-08-18 14:55:01 -0700193 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700194 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800195static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
196 struct request_queue *q,
197 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400198{
Tejun Heo3c798392012-04-16 13:57:25 -0700199 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400200 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800201 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400202
Tejun Heocd1604f2012-03-05 13:15:06 -0800203 WARN_ON_ONCE(!rcu_read_lock_held());
204 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500205
Tejun Heo7ee9c562012-03-05 13:15:11 -0800206 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400207 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800208 ret = -EINVAL;
209 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700210 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800211
Tejun Heoce7acfe2015-05-22 17:13:38 -0400212 wb_congested = wb_congested_get_create(&q->backing_dev_info,
Tejun Heod93a11f2015-08-18 14:55:01 -0700213 blkcg->css.id, GFP_NOWAIT);
Tejun Heoce7acfe2015-05-22 17:13:38 -0400214 if (!wb_congested) {
215 ret = -ENOMEM;
216 goto err_put_css;
217 }
218
Tejun Heo496fb782012-04-19 16:29:23 -0700219 /* allocate */
Tejun Heo15974992012-06-04 20:40:52 -0700220 if (!new_blkg) {
Tejun Heod93a11f2015-08-18 14:55:01 -0700221 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT);
Tejun Heo15974992012-06-04 20:40:52 -0700222 if (unlikely(!new_blkg)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800223 ret = -ENOMEM;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400224 goto err_put_congested;
Tejun Heo15974992012-06-04 20:40:52 -0700225 }
226 }
227 blkg = new_blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400228 blkg->wb_congested = wb_congested;
Tejun Heocd1604f2012-03-05 13:15:06 -0800229
Tejun Heodb613672013-05-14 13:52:31 -0700230 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800231 if (blkcg_parent(blkcg)) {
232 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
233 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo2423c9c2013-05-14 13:52:30 -0700234 ret = -EINVAL;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400235 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800236 }
237 blkg_get(blkg->parent);
238 }
239
Tejun Heodb613672013-05-14 13:52:31 -0700240 /* invoke per-policy init */
241 for (i = 0; i < BLKCG_MAX_POLS; i++) {
242 struct blkcg_policy *pol = blkcg_policy[i];
243
244 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700245 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700246 }
247
248 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700249 spin_lock(&blkcg->lock);
250 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
251 if (likely(!ret)) {
252 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
253 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800254
255 for (i = 0; i < BLKCG_MAX_POLS; i++) {
256 struct blkcg_policy *pol = blkcg_policy[i];
257
258 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700259 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800260 }
Tejun Heoa6371202012-04-19 16:29:24 -0700261 }
Tejun Heof427d902013-01-09 08:05:12 -0800262 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700263 spin_unlock(&blkcg->lock);
264
Tejun Heoec13b1d2015-05-22 17:13:19 -0400265 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700266 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700267
Tejun Heo3c547862013-01-09 08:05:10 -0800268 /* @blkg failed fully initialized, use the usual release path */
269 blkg_put(blkg);
270 return ERR_PTR(ret);
271
Tejun Heoce7acfe2015-05-22 17:13:38 -0400272err_put_congested:
273 wb_congested_put(wb_congested);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800274err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700275 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800276err_free_blkg:
Tejun Heo15974992012-06-04 20:40:52 -0700277 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800278 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500279}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700280
Tejun Heo86cde6b2013-01-09 08:05:10 -0800281/**
282 * blkg_lookup_create - lookup blkg, try to create one if not there
283 * @blkcg: blkcg of interest
284 * @q: request_queue of interest
285 *
286 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800287 * create one. blkg creation is performed recursively from blkcg_root such
288 * that all non-root blkg's have access to the parent blkg. This function
289 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800290 *
291 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
292 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
293 * dead and bypassing, returns ERR_PTR(-EBUSY).
294 */
Tejun Heo3c798392012-04-16 13:57:25 -0700295struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
296 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700297{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800298 struct blkcg_gq *blkg;
299
300 WARN_ON_ONCE(!rcu_read_lock_held());
301 lockdep_assert_held(q->queue_lock);
302
Tejun Heo3c96cb32012-04-13 13:11:34 -0700303 /*
304 * This could be the first entry point of blkcg implementation and
305 * we shouldn't allow anything to go through for a bypassing queue.
306 */
307 if (unlikely(blk_queue_bypass(q)))
Bart Van Assche3f3299d2012-11-28 13:42:38 +0100308 return ERR_PTR(blk_queue_dying(q) ? -EINVAL : -EBUSY);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800309
310 blkg = __blkg_lookup(blkcg, q, true);
311 if (blkg)
312 return blkg;
313
Tejun Heo3c547862013-01-09 08:05:10 -0800314 /*
315 * Create blkgs walking down from blkcg_root to @blkcg, so that all
316 * non-root blkgs have access to their parents.
317 */
318 while (true) {
319 struct blkcg *pos = blkcg;
320 struct blkcg *parent = blkcg_parent(blkcg);
321
322 while (parent && !__blkg_lookup(parent, q, false)) {
323 pos = parent;
324 parent = blkcg_parent(parent);
325 }
326
327 blkg = blkg_create(pos, q, NULL);
328 if (pos == blkcg || IS_ERR(blkg))
329 return blkg;
330 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700331}
Tejun Heocd1604f2012-03-05 13:15:06 -0800332EXPORT_SYMBOL_GPL(blkg_lookup_create);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500333
Tejun Heo3c798392012-04-16 13:57:25 -0700334static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800335{
Tejun Heo3c798392012-04-16 13:57:25 -0700336 struct blkcg *blkcg = blkg->blkcg;
Tejun Heof427d902013-01-09 08:05:12 -0800337 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800338
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200339 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800340 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800341
342 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800343 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800344 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700345
Tejun Heof427d902013-01-09 08:05:12 -0800346 for (i = 0; i < BLKCG_MAX_POLS; i++) {
347 struct blkcg_policy *pol = blkcg_policy[i];
348
349 if (blkg->pd[i] && pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700350 pol->pd_offline_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800351 }
352 blkg->online = false;
353
Tejun Heoa6371202012-04-19 16:29:24 -0700354 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800355 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800356 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800357
Tejun Heo03aa2642012-03-05 13:15:19 -0800358 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700359 * Both setting lookup hint to and clearing it from @blkg are done
360 * under queue_lock. If it's not pointing to @blkg now, it never
361 * will. Hint assignment itself can race safely.
362 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -0800363 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700364 rcu_assign_pointer(blkcg->blkg_hint, NULL);
365
366 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800367 * Put the reference taken at the time of creation so that when all
368 * queues are gone, group can be destroyed.
369 */
370 blkg_put(blkg);
371}
372
Tejun Heo9f13ef62012-03-05 13:15:21 -0800373/**
374 * blkg_destroy_all - destroy all blkgs associated with a request_queue
375 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800376 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700377 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800378 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700379static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800380{
Tejun Heo3c798392012-04-16 13:57:25 -0700381 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800382
Tejun Heo6d18b002012-04-13 13:11:35 -0700383 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800384
Tejun Heo9f13ef62012-03-05 13:15:21 -0800385 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700386 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800387
Tejun Heo9f13ef62012-03-05 13:15:21 -0800388 spin_lock(&blkcg->lock);
389 blkg_destroy(blkg);
390 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800391 }
392}
393
Tejun Heo2a4fd072013-05-14 13:52:31 -0700394/*
395 * A group is RCU protected, but having an rcu lock does not mean that one
396 * can access all the fields of blkg and assume these are valid. For
397 * example, don't try to follow throtl_data and request queue links.
398 *
399 * Having a reference to blkg under an rcu allows accesses to only values
400 * local to groups like group stats and group rate limits.
401 */
402void __blkg_release_rcu(struct rcu_head *rcu_head)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800403{
Tejun Heo2a4fd072013-05-14 13:52:31 -0700404 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
Tejun Heodb613672013-05-14 13:52:31 -0700405
Tejun Heo3c547862013-01-09 08:05:10 -0800406 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800407 css_put(&blkg->blkcg->css);
Tejun Heoa5049a82014-06-19 17:42:57 -0400408 if (blkg->parent)
Tejun Heo3c547862013-01-09 08:05:10 -0800409 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800410
Tejun Heoce7acfe2015-05-22 17:13:38 -0400411 wb_congested_put(blkg->wb_congested);
412
Tejun Heo2a4fd072013-05-14 13:52:31 -0700413 blkg_free(blkg);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800414}
Tejun Heo2a4fd072013-05-14 13:52:31 -0700415EXPORT_SYMBOL_GPL(__blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800416
Tejun Heoa0516612012-06-26 15:05:44 -0700417/*
418 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
419 * because the root blkg uses @q->root_rl instead of its own rl.
420 */
421struct request_list *__blk_queue_next_rl(struct request_list *rl,
422 struct request_queue *q)
423{
424 struct list_head *ent;
425 struct blkcg_gq *blkg;
426
427 /*
428 * Determine the current blkg list_head. The first entry is
429 * root_rl which is off @q->blkg_list and mapped to the head.
430 */
431 if (rl == &q->root_rl) {
432 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900433 /* There are no more block groups, hence no request lists */
434 if (list_empty(ent))
435 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700436 } else {
437 blkg = container_of(rl, struct blkcg_gq, rl);
438 ent = &blkg->q_node;
439 }
440
441 /* walk to the next list_head, skip root blkcg */
442 ent = ent->next;
443 if (ent == &q->root_blkg->q_node)
444 ent = ent->next;
445 if (ent == &q->blkg_list)
446 return NULL;
447
448 blkg = container_of(ent, struct blkcg_gq, q_node);
449 return &blkg->rl;
450}
451
Tejun Heo182446d2013-08-08 20:11:24 -0400452static int blkcg_reset_stats(struct cgroup_subsys_state *css,
453 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700454{
Tejun Heo182446d2013-08-08 20:11:24 -0400455 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700456 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700457 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700458
Tejun Heo838f13b2015-07-09 16:39:47 -0400459 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700460 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800461
462 /*
463 * Note that stat reset is racy - it doesn't synchronize against
464 * stat updates. This is a debug feature which shouldn't exist
465 * anyway. If you get hit by a race, retry.
466 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800467 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo8bd435b2012-04-13 13:11:28 -0700468 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700469 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800470
Tejun Heoa9520cd2015-08-18 14:55:14 -0700471 if (blkg->pd[i] && pol->pd_reset_stats_fn)
472 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700473 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700474 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400475
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700476 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700477 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700478 return 0;
479}
480
Tejun Heo3c798392012-04-16 13:57:25 -0700481static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700482{
Tejun Heod3d32e62012-04-01 14:38:42 -0700483 /* some drivers (floppy) instantiate a queue w/o disk registered */
484 if (blkg->q->backing_dev_info.dev)
485 return dev_name(blkg->q->backing_dev_info.dev);
486 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700487}
488
Tejun Heod3d32e62012-04-01 14:38:42 -0700489/**
490 * blkcg_print_blkgs - helper for printing per-blkg data
491 * @sf: seq_file to print to
492 * @blkcg: blkcg of interest
493 * @prfill: fill function to print out a blkg
494 * @pol: policy in question
495 * @data: data to be passed to @prfill
496 * @show_total: to print out sum of prfill return values or not
497 *
498 * This function invokes @prfill on each blkg of @blkcg if pd for the
499 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800500 * policy data and @data and the matching queue lock held. If @show_total
501 * is %true, the sum of the return values from @prfill is printed with
502 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700503 *
504 * This is to be used to construct print functions for
505 * cftype->read_seq_string method.
506 */
Tejun Heo3c798392012-04-16 13:57:25 -0700507void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700508 u64 (*prfill)(struct seq_file *,
509 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700510 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700511 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400512{
Tejun Heo3c798392012-04-16 13:57:25 -0700513 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700514 u64 total = 0;
515
Tejun Heo810ecfa2013-01-09 08:05:13 -0800516 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800517 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo810ecfa2013-01-09 08:05:13 -0800518 spin_lock_irq(blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700519 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700520 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800521 spin_unlock_irq(blkg->q->queue_lock);
522 }
523 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700524
525 if (show_total)
526 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
527}
Tejun Heo829fdb52012-04-01 14:38:43 -0700528EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700529
530/**
531 * __blkg_prfill_u64 - prfill helper for a single u64 value
532 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700533 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700534 * @v: value to print
535 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700536 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700537 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700538u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700539{
Tejun Heof95a04a2012-04-16 13:57:26 -0700540 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700541
542 if (!dname)
543 return 0;
544
545 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
546 return v;
547}
Tejun Heo829fdb52012-04-01 14:38:43 -0700548EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700549
550/**
551 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
552 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700553 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700554 * @rwstat: rwstat to print
555 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700556 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700557 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700558u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700559 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700560{
561 static const char *rwstr[] = {
562 [BLKG_RWSTAT_READ] = "Read",
563 [BLKG_RWSTAT_WRITE] = "Write",
564 [BLKG_RWSTAT_SYNC] = "Sync",
565 [BLKG_RWSTAT_ASYNC] = "Async",
566 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700567 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700568 u64 v;
569 int i;
570
571 if (!dname)
572 return 0;
573
574 for (i = 0; i < BLKG_RWSTAT_NR; i++)
575 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
576 (unsigned long long)rwstat->cnt[i]);
577
578 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
579 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
580 return v;
581}
Tejun Heob50da392013-01-09 08:05:12 -0800582EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700583
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700584/**
585 * blkg_prfill_stat - prfill callback for blkg_stat
586 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700587 * @pd: policy private data of interest
588 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700589 *
590 * prfill callback for printing a blkg_stat.
591 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700592u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700593{
Tejun Heof95a04a2012-04-16 13:57:26 -0700594 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700595}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700596EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700597
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700598/**
599 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
600 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700601 * @pd: policy private data of interest
602 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700603 *
604 * prfill callback for printing a blkg_rwstat.
605 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700606u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
607 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700608{
Tejun Heof95a04a2012-04-16 13:57:26 -0700609 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700610
Tejun Heof95a04a2012-04-16 13:57:26 -0700611 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700612}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700613EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700614
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700615/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800616 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
617 * @pd: policy private data of interest
618 * @off: offset to the blkg_stat in @pd
619 *
620 * Collect the blkg_stat specified by @off from @pd and all its online
621 * descendants and return the sum. The caller must be holding the queue
622 * lock for online tests.
623 */
624u64 blkg_stat_recursive_sum(struct blkg_policy_data *pd, int off)
625{
626 struct blkcg_policy *pol = blkcg_policy[pd->plid];
627 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400628 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400629 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800630
631 lockdep_assert_held(pd->blkg->q->queue_lock);
632
Tejun Heo16b3de62013-01-09 08:05:12 -0800633 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -0400634 blkg_for_each_descendant_pre(pos_blkg, pos_css, pd_to_blkg(pd)) {
Tejun Heo16b3de62013-01-09 08:05:12 -0800635 struct blkg_policy_data *pos_pd = blkg_to_pd(pos_blkg, pol);
636 struct blkg_stat *stat = (void *)pos_pd + off;
637
638 if (pos_blkg->online)
639 sum += blkg_stat_read(stat);
640 }
641 rcu_read_unlock();
642
643 return sum;
644}
645EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
646
647/**
648 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
649 * @pd: policy private data of interest
650 * @off: offset to the blkg_stat in @pd
651 *
652 * Collect the blkg_rwstat specified by @off from @pd and all its online
653 * descendants and return the sum. The caller must be holding the queue
654 * lock for online tests.
655 */
656struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkg_policy_data *pd,
657 int off)
658{
659 struct blkcg_policy *pol = blkcg_policy[pd->plid];
660 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400661 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400662 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800663 int i;
664
665 lockdep_assert_held(pd->blkg->q->queue_lock);
666
Tejun Heo16b3de62013-01-09 08:05:12 -0800667 rcu_read_lock();
Tejun Heo492eb212013-08-08 20:11:25 -0400668 blkg_for_each_descendant_pre(pos_blkg, pos_css, pd_to_blkg(pd)) {
Tejun Heo16b3de62013-01-09 08:05:12 -0800669 struct blkg_policy_data *pos_pd = blkg_to_pd(pos_blkg, pol);
670 struct blkg_rwstat *rwstat = (void *)pos_pd + off;
671 struct blkg_rwstat tmp;
672
673 if (!pos_blkg->online)
674 continue;
675
676 tmp = blkg_rwstat_read(rwstat);
677
678 for (i = 0; i < BLKG_RWSTAT_NR; i++)
679 sum.cnt[i] += tmp.cnt[i];
680 }
681 rcu_read_unlock();
682
683 return sum;
684}
685EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
686
687/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700688 * blkg_conf_prep - parse and prepare for per-blkg config update
689 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700690 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700691 * @input: input string
692 * @ctx: blkg_conf_ctx to be filled
693 *
694 * Parse per-blkg config update from @input and initialize @ctx with the
695 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700696 * value. This function returns with RCU read lock and queue lock held and
697 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700698 */
Tejun Heo3c798392012-04-16 13:57:25 -0700699int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
700 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700701 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800702{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700703 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700704 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700705 unsigned int major, minor;
706 unsigned long long v;
707 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800708
Tejun Heo726fa692012-04-01 14:38:43 -0700709 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
710 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700711
Tejun Heo726fa692012-04-01 14:38:43 -0700712 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400713 if (!disk)
Tejun Heo726fa692012-04-01 14:38:43 -0700714 return -EINVAL;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400715 if (part) {
716 put_disk(disk);
717 return -EINVAL;
718 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800719
720 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800721 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700722
Tejun Heoa2b16932012-04-13 13:11:33 -0700723 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700724 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700725 else
726 blkg = ERR_PTR(-EINVAL);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800727
Tejun Heo4bfd4822012-03-05 13:15:08 -0800728 if (IS_ERR(blkg)) {
729 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700730 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700731 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700732 put_disk(disk);
733 /*
734 * If queue was bypassing, we should retry. Do so after a
735 * short msleep(). It isn't strictly necessary but queue
736 * can be bypassing for some time and it's always nice to
737 * avoid busy looping.
738 */
739 if (ret == -EBUSY) {
740 msleep(10);
741 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400742 }
Tejun Heo726fa692012-04-01 14:38:43 -0700743 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400744 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800745
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700746 ctx->disk = disk;
747 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700748 ctx->v = v;
749 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800750}
Tejun Heo829fdb52012-04-01 14:38:43 -0700751EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800752
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700753/**
754 * blkg_conf_finish - finish up per-blkg config update
755 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
756 *
757 * Finish up after per-blkg config update. This function must be paired
758 * with blkg_conf_prep().
759 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700760void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700761 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800762{
Tejun Heoda8b0662012-04-13 13:11:29 -0700763 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700764 rcu_read_unlock();
765 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800766}
Tejun Heo829fdb52012-04-01 14:38:43 -0700767EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800768
Tejun Heo3c798392012-04-16 13:57:25 -0700769struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500770 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200771 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700772 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500773 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700774 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500775};
776
Tejun Heo9f13ef62012-03-05 13:15:21 -0800777/**
Tejun Heo92fb9742012-11-19 08:13:38 -0800778 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -0400779 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800780 *
Tejun Heoeb954192013-08-08 20:11:23 -0400781 * This function is called when @css is about to go away and responsible
782 * for shooting down all blkgs associated with @css. blkgs should be
Tejun Heo9f13ef62012-03-05 13:15:21 -0800783 * removed while holding both q and blkcg locks. As blkcg lock is nested
784 * inside q lock, this function performs reverse double lock dancing.
785 *
786 * This is the blkcg counterpart of ioc_release_fn().
787 */
Tejun Heoeb954192013-08-08 20:11:23 -0400788static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500789{
Tejun Heoeb954192013-08-08 20:11:23 -0400790 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500791
Tejun Heo9f13ef62012-03-05 13:15:21 -0800792 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800793
Tejun Heo9f13ef62012-03-05 13:15:21 -0800794 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700795 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
796 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800797 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500798
Tejun Heo9f13ef62012-03-05 13:15:21 -0800799 if (spin_trylock(q->queue_lock)) {
800 blkg_destroy(blkg);
801 spin_unlock(q->queue_lock);
802 } else {
803 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800804 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200805 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200806 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800807 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200808
Tejun Heo9f13ef62012-03-05 13:15:21 -0800809 spin_unlock_irq(&blkcg->lock);
Tejun Heo52ebea72015-05-22 17:13:37 -0400810
811 wb_blkcg_offline(blkcg);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800812}
813
Tejun Heoeb954192013-08-08 20:11:23 -0400814static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800815{
Tejun Heoeb954192013-08-08 20:11:23 -0400816 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -0700817 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -0800818
Tejun Heo7876f932015-07-09 16:39:49 -0400819 mutex_lock(&blkcg_pol_mutex);
820 list_del(&blkcg->all_blkcgs_node);
821 mutex_unlock(&blkcg_pol_mutex);
822
Tejun Heobc915e62015-08-18 14:55:08 -0700823 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo81437642015-08-18 14:55:15 -0700824 kfree(blkcg->cpd[i]);
Tejun Heobc915e62015-08-18 14:55:08 -0700825 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500826}
827
Tejun Heoeb954192013-08-08 20:11:23 -0400828static struct cgroup_subsys_state *
829blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500830{
Tejun Heo3c798392012-04-16 13:57:25 -0700831 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200832 struct cgroup_subsys_state *ret;
833 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500834
Tejun Heo7876f932015-07-09 16:39:49 -0400835 mutex_lock(&blkcg_pol_mutex);
836
Tejun Heoeb954192013-08-08 20:11:23 -0400837 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -0700838 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -0700839 } else {
840 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
841 if (!blkcg) {
842 ret = ERR_PTR(-ENOMEM);
843 goto free_blkcg;
844 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200845 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500846
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200847 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
848 struct blkcg_policy *pol = blkcg_policy[i];
849 struct blkcg_policy_data *cpd;
850
851 /*
852 * If the policy hasn't been attached yet, wait for it
853 * to be attached before doing anything else. Otherwise,
854 * check if the policy requires any specific per-cgroup
855 * data: if it does, allocate and initialize it.
856 */
857 if (!pol || !pol->cpd_size)
858 continue;
859
Tejun Heo81437642015-08-18 14:55:15 -0700860 BUG_ON(blkcg->cpd[i]);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200861 cpd = kzalloc(pol->cpd_size, GFP_KERNEL);
862 if (!cpd) {
863 ret = ERR_PTR(-ENOMEM);
864 goto free_pd_blkcg;
865 }
Tejun Heo81437642015-08-18 14:55:15 -0700866 blkcg->cpd[i] = cpd;
867 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200868 cpd->plid = i;
Tejun Heo81437642015-08-18 14:55:15 -0700869 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200870 }
871
Vivek Goyal31e4c282009-12-03 12:59:42 -0500872 spin_lock_init(&blkcg->lock);
Tejun Heod93a11f2015-08-18 14:55:01 -0700873 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500874 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -0400875#ifdef CONFIG_CGROUP_WRITEBACK
876 INIT_LIST_HEAD(&blkcg->cgwb_list);
877#endif
Tejun Heo7876f932015-07-09 16:39:49 -0400878 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
879
880 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500881 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200882
883free_pd_blkcg:
884 for (i--; i >= 0; i--)
Tejun Heo81437642015-08-18 14:55:15 -0700885 kfree(blkcg->cpd[i]);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200886free_blkcg:
887 kfree(blkcg);
Tejun Heo7876f932015-07-09 16:39:49 -0400888 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200889 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500890}
891
Tejun Heo5efd6112012-03-05 13:15:12 -0800892/**
893 * blkcg_init_queue - initialize blkcg part of request queue
894 * @q: request_queue to initialize
895 *
896 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
897 * part of new request_queue @q.
898 *
899 * RETURNS:
900 * 0 on success, -errno on failure.
901 */
902int blkcg_init_queue(struct request_queue *q)
903{
Tejun Heoec13b1d2015-05-22 17:13:19 -0400904 struct blkcg_gq *new_blkg, *blkg;
905 bool preloaded;
906 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -0800907
Tejun Heoec13b1d2015-05-22 17:13:19 -0400908 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
909 if (!new_blkg)
910 return -ENOMEM;
911
912 preloaded = !radix_tree_preload(GFP_KERNEL);
913
914 /*
915 * Make sure the root blkg exists and count the existing blkgs. As
916 * @q is bypassing at this point, blkg_lookup_create() can't be
917 * used. Open code insertion.
918 */
919 rcu_read_lock();
920 spin_lock_irq(q->queue_lock);
921 blkg = blkg_create(&blkcg_root, q, new_blkg);
922 spin_unlock_irq(q->queue_lock);
923 rcu_read_unlock();
924
925 if (preloaded)
926 radix_tree_preload_end();
927
928 if (IS_ERR(blkg)) {
Tejun Heo994b7832015-08-18 14:55:07 -0700929 blkg_free(new_blkg);
Tejun Heoec13b1d2015-05-22 17:13:19 -0400930 return PTR_ERR(blkg);
931 }
932
933 q->root_blkg = blkg;
934 q->root_rl.blkg = blkg;
935
936 ret = blk_throtl_init(q);
937 if (ret) {
938 spin_lock_irq(q->queue_lock);
939 blkg_destroy_all(q);
940 spin_unlock_irq(q->queue_lock);
941 }
942 return ret;
Tejun Heo5efd6112012-03-05 13:15:12 -0800943}
944
945/**
946 * blkcg_drain_queue - drain blkcg part of request_queue
947 * @q: request_queue to drain
948 *
949 * Called from blk_drain_queue(). Responsible for draining blkcg part.
950 */
951void blkcg_drain_queue(struct request_queue *q)
952{
953 lockdep_assert_held(q->queue_lock);
954
Tejun Heo0b462c82014-07-05 18:43:21 -0400955 /*
956 * @q could be exiting and already have destroyed all blkgs as
957 * indicated by NULL root_blkg. If so, don't confuse policies.
958 */
959 if (!q->root_blkg)
960 return;
961
Tejun Heo5efd6112012-03-05 13:15:12 -0800962 blk_throtl_drain(q);
963}
964
965/**
966 * blkcg_exit_queue - exit and release blkcg part of request_queue
967 * @q: request_queue being released
968 *
969 * Called from blk_release_queue(). Responsible for exiting blkcg part.
970 */
971void blkcg_exit_queue(struct request_queue *q)
972{
Tejun Heo6d18b002012-04-13 13:11:35 -0700973 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -0700974 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -0700975 spin_unlock_irq(q->queue_lock);
976
Tejun Heo5efd6112012-03-05 13:15:12 -0800977 blk_throtl_exit(q);
978}
979
Vivek Goyal31e4c282009-12-03 12:59:42 -0500980/*
981 * We cannot support shared io contexts, as we have no mean to support
982 * two tasks with the same ioc in two different groups without major rework
983 * of the main cic data structures. For now we allow a task to change
984 * its cgroup only if it's the only owner of its ioc.
985 */
Tejun Heoeb954192013-08-08 20:11:23 -0400986static int blkcg_can_attach(struct cgroup_subsys_state *css,
987 struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500988{
Tejun Heobb9d97b2011-12-12 18:12:21 -0800989 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500990 struct io_context *ioc;
991 int ret = 0;
992
993 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo924f0d92014-02-13 06:58:41 -0500994 cgroup_taskset_for_each(task, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -0800995 task_lock(task);
996 ioc = task->io_context;
997 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
998 ret = -EINVAL;
999 task_unlock(task);
1000 if (ret)
1001 break;
1002 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001003 return ret;
1004}
1005
Tejun Heo073219e2014-02-08 10:36:58 -05001006struct cgroup_subsys blkio_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001007 .css_alloc = blkcg_css_alloc,
1008 .css_offline = blkcg_css_offline,
1009 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001010 .can_attach = blkcg_can_attach,
Tejun Heo55779642014-07-15 11:05:09 -04001011 .legacy_cftypes = blkcg_files,
Tejun Heo1ced9532014-07-08 18:02:57 -04001012#ifdef CONFIG_MEMCG
1013 /*
1014 * This ensures that, if available, memcg is automatically enabled
1015 * together on the default hierarchy so that the owner cgroup can
1016 * be retrieved from writeback pages.
1017 */
1018 .depends_on = 1 << memory_cgrp_id,
1019#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001020};
Tejun Heo073219e2014-02-08 10:36:58 -05001021EXPORT_SYMBOL_GPL(blkio_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001022
Tejun Heo8bd435b2012-04-13 13:11:28 -07001023/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001024 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1025 * @q: request_queue of interest
1026 * @pol: blkcg policy to activate
1027 *
1028 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1029 * bypass mode to populate its blkgs with policy_data for @pol.
1030 *
1031 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1032 * from IO path. Update of each blkg is protected by both queue and blkcg
1033 * locks so that holding either lock and testing blkcg_policy_enabled() is
1034 * always enough for dereferencing policy data.
1035 *
1036 * The caller is responsible for synchronizing [de]activations and policy
1037 * [un]registerations. Returns 0 on success, -errno on failure.
1038 */
1039int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001040 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001041{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001042 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001043 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001044 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001045
1046 if (blkcg_policy_enabled(q, pol))
1047 return 0;
1048
1049 blk_queue_bypass_start(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001050pd_prealloc:
1051 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001052 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001053 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001054 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001055 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001056 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001057 }
1058
Tejun Heoa2b16932012-04-13 13:11:33 -07001059 spin_lock_irq(q->queue_lock);
1060
1061 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001062 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001063
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001064 if (blkg->pd[pol->plid])
1065 continue;
1066
Tejun Heo001bea72015-08-18 14:55:11 -07001067 pd = pol->pd_alloc_fn(GFP_NOWAIT, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001068 if (!pd)
1069 swap(pd, pd_prealloc);
1070 if (!pd) {
1071 spin_unlock_irq(q->queue_lock);
1072 goto pd_prealloc;
1073 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001074
1075 blkg->pd[pol->plid] = pd;
1076 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001077 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001078 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001079 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001080 }
1081
1082 __set_bit(pol->plid, q->blkcg_pols);
1083 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001084
Tejun Heoa2b16932012-04-13 13:11:33 -07001085 spin_unlock_irq(q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001086out_bypass_end:
Tejun Heoa2b16932012-04-13 13:11:33 -07001087 blk_queue_bypass_end(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001088 if (pd_prealloc)
1089 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001090 return ret;
1091}
1092EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1093
1094/**
1095 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1096 * @q: request_queue of interest
1097 * @pol: blkcg policy to deactivate
1098 *
1099 * Deactivate @pol on @q. Follows the same synchronization rules as
1100 * blkcg_activate_policy().
1101 */
1102void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001103 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001104{
Tejun Heo3c798392012-04-16 13:57:25 -07001105 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001106
1107 if (!blkcg_policy_enabled(q, pol))
1108 return;
1109
1110 blk_queue_bypass_start(q);
1111 spin_lock_irq(q->queue_lock);
1112
1113 __clear_bit(pol->plid, q->blkcg_pols);
1114
1115 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1116 /* grab blkcg lock too while removing @pd from @blkg */
1117 spin_lock(&blkg->blkcg->lock);
1118
Tejun Heo001bea72015-08-18 14:55:11 -07001119 if (blkg->pd[pol->plid]) {
Tejun Heoa9520cd2015-08-18 14:55:14 -07001120 if (pol->pd_offline_fn)
1121 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001122 pol->pd_free_fn(blkg->pd[pol->plid]);
1123 blkg->pd[pol->plid] = NULL;
1124 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001125
1126 spin_unlock(&blkg->blkcg->lock);
1127 }
1128
1129 spin_unlock_irq(q->queue_lock);
1130 blk_queue_bypass_end(q);
1131}
1132EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1133
1134/**
Tejun Heo3c798392012-04-16 13:57:25 -07001135 * blkcg_policy_register - register a blkcg policy
1136 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001137 *
Tejun Heo3c798392012-04-16 13:57:25 -07001138 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1139 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001140 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001141int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001142{
Tejun Heo06b285b2015-07-09 16:39:50 -04001143 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001144 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001145
Tejun Heo838f13b2015-07-09 16:39:47 -04001146 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001147 mutex_lock(&blkcg_pol_mutex);
1148
Tejun Heo8bd435b2012-04-13 13:11:28 -07001149 /* find an empty slot */
1150 ret = -ENOSPC;
1151 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001152 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001153 break;
1154 if (i >= BLKCG_MAX_POLS)
Tejun Heo838f13b2015-07-09 16:39:47 -04001155 goto err_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001156
Tejun Heo06b285b2015-07-09 16:39:50 -04001157 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001158 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001159 blkcg_policy[pol->plid] = pol;
1160
1161 /* allocate and install cpd's */
1162 if (pol->cpd_size) {
1163 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1164 struct blkcg_policy_data *cpd;
1165
1166 cpd = kzalloc(pol->cpd_size, GFP_KERNEL);
1167 if (!cpd) {
1168 mutex_unlock(&blkcg_pol_mutex);
1169 goto err_free_cpds;
1170 }
1171
Tejun Heo81437642015-08-18 14:55:15 -07001172 blkcg->cpd[pol->plid] = cpd;
1173 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001174 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001175 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001176 }
1177 }
1178
Tejun Heo838f13b2015-07-09 16:39:47 -04001179 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001180
Tejun Heo8bd435b2012-04-13 13:11:28 -07001181 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -07001182 if (pol->cftypes)
Tejun Heo2cf669a2014-07-15 11:05:09 -04001183 WARN_ON(cgroup_add_legacy_cftypes(&blkio_cgrp_subsys,
1184 pol->cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001185 mutex_unlock(&blkcg_pol_register_mutex);
1186 return 0;
1187
Tejun Heo06b285b2015-07-09 16:39:50 -04001188err_free_cpds:
1189 if (pol->cpd_size) {
1190 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heo81437642015-08-18 14:55:15 -07001191 kfree(blkcg->cpd[pol->plid]);
1192 blkcg->cpd[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001193 }
1194 }
1195 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001196err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001197 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001198 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001199 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001200}
Tejun Heo3c798392012-04-16 13:57:25 -07001201EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001202
Tejun Heo8bd435b2012-04-13 13:11:28 -07001203/**
Tejun Heo3c798392012-04-16 13:57:25 -07001204 * blkcg_policy_unregister - unregister a blkcg policy
1205 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001206 *
Tejun Heo3c798392012-04-16 13:57:25 -07001207 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001208 */
Tejun Heo3c798392012-04-16 13:57:25 -07001209void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001210{
Tejun Heo06b285b2015-07-09 16:39:50 -04001211 struct blkcg *blkcg;
1212
Tejun Heo838f13b2015-07-09 16:39:47 -04001213 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001214
Tejun Heo3c798392012-04-16 13:57:25 -07001215 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001216 goto out_unlock;
1217
1218 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -07001219 if (pol->cftypes)
Tejun Heo2bb566c2013-08-08 20:11:23 -04001220 cgroup_rm_cftypes(pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001221
Tejun Heo06b285b2015-07-09 16:39:50 -04001222 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001223 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001224
1225 if (pol->cpd_size) {
1226 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heo81437642015-08-18 14:55:15 -07001227 kfree(blkcg->cpd[pol->plid]);
1228 blkcg->cpd[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001229 }
1230 }
Tejun Heo3c798392012-04-16 13:57:25 -07001231 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001232
Tejun Heobc0d6502012-04-13 13:11:26 -07001233 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001234out_unlock:
1235 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001236}
Tejun Heo3c798392012-04-16 13:57:25 -07001237EXPORT_SYMBOL_GPL(blkcg_policy_unregister);