blob: b5e72d756be1f7f6e702cbc9d75473ea760118c8 [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 Heo36aa9e52015-08-18 14:55:31 -070027#include <linux/ctype.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040028#include <linux/blk-cgroup.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080029#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050030
Divyesh Shah84c124d2010-04-09 08:31:19 +020031#define MAX_KEY_LEN 100
32
Tejun Heo838f13b2015-07-09 16:39:47 -040033/*
34 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
35 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
36 * policy [un]register operations including cgroup file additions /
37 * removals. Putting cgroup file registration outside blkcg_pol_mutex
38 * allows grabbing it from cgroup callbacks.
39 */
40static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070041static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080042
Arianna Avanzinie48453c2015-06-05 23:38:42 +020043struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070044EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050045
Tejun Heo496d5e72015-05-22 17:13:21 -040046struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
47
Tejun Heo3c798392012-04-16 13:57:25 -070048static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080049
Tejun Heo7876f932015-07-09 16:39:49 -040050static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
51
Tejun Heoa2b16932012-04-13 13:11:33 -070052static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070053 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070054{
55 return pol && test_bit(pol->plid, q->blkcg_pols);
56}
57
Tejun Heo03814112012-03-05 13:15:14 -080058/**
59 * blkg_free - free a blkg
60 * @blkg: blkg to free
61 *
62 * Free @blkg which may be partially allocated.
63 */
Tejun Heo3c798392012-04-16 13:57:25 -070064static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080065{
Tejun Heoe8989fa2012-03-05 13:15:20 -080066 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080067
68 if (!blkg)
69 return;
70
Tejun Heodb613672013-05-14 13:52:31 -070071 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070072 if (blkg->pd[i])
73 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080074
Tejun Heo994b7832015-08-18 14:55:07 -070075 if (blkg->blkcg != &blkcg_root)
76 blk_exit_rl(&blkg->rl);
Tejun Heo77ea7332015-08-18 14:55:24 -070077
78 blkg_rwstat_exit(&blkg->stat_ios);
79 blkg_rwstat_exit(&blkg->stat_bytes);
Tejun Heo549d3aa2012-03-05 13:15:16 -080080 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080081}
82
83/**
84 * blkg_alloc - allocate a blkg
85 * @blkcg: block cgroup the new blkg is associated with
86 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070087 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080088 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080089 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080090 */
Tejun Heo15974992012-06-04 20:40:52 -070091static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
92 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080093{
Tejun Heo3c798392012-04-16 13:57:25 -070094 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080095 int i;
Tejun Heo03814112012-03-05 13:15:14 -080096
97 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070098 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -080099 if (!blkg)
100 return NULL;
101
Tejun Heo77ea7332015-08-18 14:55:24 -0700102 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
103 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
104 goto err_free;
105
Tejun Heoc875f4d2012-03-05 13:15:22 -0800106 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800107 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800108 blkg->blkcg = blkcg;
Tejun Heoa5049a82014-06-19 17:42:57 -0400109 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800110
Tejun Heoa0516612012-06-26 15:05:44 -0700111 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
112 if (blkcg != &blkcg_root) {
113 if (blk_init_rl(&blkg->rl, q, gfp_mask))
114 goto err_free;
115 blkg->rl.blkg = blkg;
116 }
117
Tejun Heo8bd435b2012-04-13 13:11:28 -0700118 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700119 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800120 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800121
Tejun Heoa2b16932012-04-13 13:11:33 -0700122 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800123 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800124
Tejun Heoe8989fa2012-03-05 13:15:20 -0800125 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700126 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700127 if (!pd)
128 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800129
Tejun Heoe8989fa2012-03-05 13:15:20 -0800130 blkg->pd[i] = pd;
131 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800132 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800133 }
134
Tejun Heo03814112012-03-05 13:15:14 -0800135 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700136
137err_free:
138 blkg_free(blkg);
139 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800140}
141
Tejun Heo24f29042015-08-18 14:55:17 -0700142struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
143 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700144{
Tejun Heo3c798392012-04-16 13:57:25 -0700145 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700146
Tejun Heoa6371202012-04-19 16:29:24 -0700147 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800148 * Hint didn't match. Look up from the radix tree. Note that the
149 * hint can only be updated under queue_lock as otherwise @blkg
150 * could have already been removed from blkg_tree. The caller is
151 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700152 */
153 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800154 if (blkg && blkg->q == q) {
155 if (update_hint) {
156 lockdep_assert_held(q->queue_lock);
157 rcu_assign_pointer(blkcg->blkg_hint, blkg);
158 }
Tejun Heoa6371202012-04-19 16:29:24 -0700159 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800160 }
Tejun Heoa6371202012-04-19 16:29:24 -0700161
Tejun Heo80fd9972012-04-13 14:50:53 -0700162 return NULL;
163}
Tejun Heoae118892015-08-18 14:55:20 -0700164EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700165
Tejun Heo15974992012-06-04 20:40:52 -0700166/*
167 * If @new_blkg is %NULL, this function tries to allocate a new one as
Tejun Heod93a11f2015-08-18 14:55:01 -0700168 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700169 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800170static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
171 struct request_queue *q,
172 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400173{
Tejun Heo3c798392012-04-16 13:57:25 -0700174 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400175 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800176 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400177
Tejun Heocd1604f2012-03-05 13:15:06 -0800178 WARN_ON_ONCE(!rcu_read_lock_held());
179 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500180
Tejun Heo7ee9c562012-03-05 13:15:11 -0800181 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400182 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700183 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800184 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700185 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800186
Tejun Heoce7acfe2015-05-22 17:13:38 -0400187 wb_congested = wb_congested_get_create(&q->backing_dev_info,
Tejun Heod93a11f2015-08-18 14:55:01 -0700188 blkcg->css.id, GFP_NOWAIT);
Tejun Heoce7acfe2015-05-22 17:13:38 -0400189 if (!wb_congested) {
190 ret = -ENOMEM;
191 goto err_put_css;
192 }
193
Tejun Heo496fb782012-04-19 16:29:23 -0700194 /* allocate */
Tejun Heo15974992012-06-04 20:40:52 -0700195 if (!new_blkg) {
Tejun Heod93a11f2015-08-18 14:55:01 -0700196 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT);
Tejun Heo15974992012-06-04 20:40:52 -0700197 if (unlikely(!new_blkg)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800198 ret = -ENOMEM;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400199 goto err_put_congested;
Tejun Heo15974992012-06-04 20:40:52 -0700200 }
201 }
202 blkg = new_blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400203 blkg->wb_congested = wb_congested;
Tejun Heocd1604f2012-03-05 13:15:06 -0800204
Tejun Heodb613672013-05-14 13:52:31 -0700205 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800206 if (blkcg_parent(blkcg)) {
207 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
208 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700209 ret = -ENODEV;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400210 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800211 }
212 blkg_get(blkg->parent);
213 }
214
Tejun Heodb613672013-05-14 13:52:31 -0700215 /* invoke per-policy init */
216 for (i = 0; i < BLKCG_MAX_POLS; i++) {
217 struct blkcg_policy *pol = blkcg_policy[i];
218
219 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700220 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700221 }
222
223 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700224 spin_lock(&blkcg->lock);
225 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
226 if (likely(!ret)) {
227 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
228 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800229
230 for (i = 0; i < BLKCG_MAX_POLS; i++) {
231 struct blkcg_policy *pol = blkcg_policy[i];
232
233 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700234 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800235 }
Tejun Heoa6371202012-04-19 16:29:24 -0700236 }
Tejun Heof427d902013-01-09 08:05:12 -0800237 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700238 spin_unlock(&blkcg->lock);
239
Tejun Heoec13b1d2015-05-22 17:13:19 -0400240 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700241 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700242
Tejun Heo3c547862013-01-09 08:05:10 -0800243 /* @blkg failed fully initialized, use the usual release path */
244 blkg_put(blkg);
245 return ERR_PTR(ret);
246
Tejun Heoce7acfe2015-05-22 17:13:38 -0400247err_put_congested:
248 wb_congested_put(wb_congested);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800249err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700250 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800251err_free_blkg:
Tejun Heo15974992012-06-04 20:40:52 -0700252 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800253 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500254}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700255
Tejun Heo86cde6b2013-01-09 08:05:10 -0800256/**
257 * blkg_lookup_create - lookup blkg, try to create one if not there
258 * @blkcg: blkcg of interest
259 * @q: request_queue of interest
260 *
261 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800262 * create one. blkg creation is performed recursively from blkcg_root such
263 * that all non-root blkg's have access to the parent blkg. This function
264 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800265 *
266 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
267 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
268 * dead and bypassing, returns ERR_PTR(-EBUSY).
269 */
Tejun Heo3c798392012-04-16 13:57:25 -0700270struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
271 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700272{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800273 struct blkcg_gq *blkg;
274
275 WARN_ON_ONCE(!rcu_read_lock_held());
276 lockdep_assert_held(q->queue_lock);
277
Tejun Heo3c96cb32012-04-13 13:11:34 -0700278 /*
279 * This could be the first entry point of blkcg implementation and
280 * we shouldn't allow anything to go through for a bypassing queue.
281 */
282 if (unlikely(blk_queue_bypass(q)))
Tejun Heo20386ce2015-08-18 14:55:28 -0700283 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800284
285 blkg = __blkg_lookup(blkcg, q, true);
286 if (blkg)
287 return blkg;
288
Tejun Heo3c547862013-01-09 08:05:10 -0800289 /*
290 * Create blkgs walking down from blkcg_root to @blkcg, so that all
291 * non-root blkgs have access to their parents.
292 */
293 while (true) {
294 struct blkcg *pos = blkcg;
295 struct blkcg *parent = blkcg_parent(blkcg);
296
297 while (parent && !__blkg_lookup(parent, q, false)) {
298 pos = parent;
299 parent = blkcg_parent(parent);
300 }
301
302 blkg = blkg_create(pos, q, NULL);
303 if (pos == blkcg || IS_ERR(blkg))
304 return blkg;
305 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700306}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500307
Tejun Heo3c798392012-04-16 13:57:25 -0700308static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800309{
Tejun Heo3c798392012-04-16 13:57:25 -0700310 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700311 struct blkcg_gq *parent = blkg->parent;
Tejun Heof427d902013-01-09 08:05:12 -0800312 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800313
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200314 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800315 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800316
317 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800318 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800319 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700320
Tejun Heof427d902013-01-09 08:05:12 -0800321 for (i = 0; i < BLKCG_MAX_POLS; i++) {
322 struct blkcg_policy *pol = blkcg_policy[i];
323
324 if (blkg->pd[i] && pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700325 pol->pd_offline_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800326 }
Tejun Heo77ea7332015-08-18 14:55:24 -0700327
328 if (parent) {
329 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
330 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
331 }
332
Tejun Heof427d902013-01-09 08:05:12 -0800333 blkg->online = false;
334
Tejun Heoa6371202012-04-19 16:29:24 -0700335 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800336 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800337 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800338
Tejun Heo03aa2642012-03-05 13:15:19 -0800339 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700340 * Both setting lookup hint to and clearing it from @blkg are done
341 * under queue_lock. If it's not pointing to @blkg now, it never
342 * will. Hint assignment itself can race safely.
343 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -0800344 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700345 rcu_assign_pointer(blkcg->blkg_hint, NULL);
346
347 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800348 * Put the reference taken at the time of creation so that when all
349 * queues are gone, group can be destroyed.
350 */
351 blkg_put(blkg);
352}
353
Tejun Heo9f13ef62012-03-05 13:15:21 -0800354/**
355 * blkg_destroy_all - destroy all blkgs associated with a request_queue
356 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800357 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700358 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800359 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700360static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800361{
Tejun Heo3c798392012-04-16 13:57:25 -0700362 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800363
Tejun Heo6d18b002012-04-13 13:11:35 -0700364 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800365
Tejun Heo9f13ef62012-03-05 13:15:21 -0800366 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700367 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800368
Tejun Heo9f13ef62012-03-05 13:15:21 -0800369 spin_lock(&blkcg->lock);
370 blkg_destroy(blkg);
371 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800372 }
373}
374
Tejun Heo2a4fd072013-05-14 13:52:31 -0700375/*
376 * A group is RCU protected, but having an rcu lock does not mean that one
377 * can access all the fields of blkg and assume these are valid. For
378 * example, don't try to follow throtl_data and request queue links.
379 *
380 * Having a reference to blkg under an rcu allows accesses to only values
381 * local to groups like group stats and group rate limits.
382 */
383void __blkg_release_rcu(struct rcu_head *rcu_head)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800384{
Tejun Heo2a4fd072013-05-14 13:52:31 -0700385 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
Tejun Heodb613672013-05-14 13:52:31 -0700386
Tejun Heo3c547862013-01-09 08:05:10 -0800387 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800388 css_put(&blkg->blkcg->css);
Tejun Heoa5049a82014-06-19 17:42:57 -0400389 if (blkg->parent)
Tejun Heo3c547862013-01-09 08:05:10 -0800390 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800391
Tejun Heoce7acfe2015-05-22 17:13:38 -0400392 wb_congested_put(blkg->wb_congested);
393
Tejun Heo2a4fd072013-05-14 13:52:31 -0700394 blkg_free(blkg);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800395}
Tejun Heo2a4fd072013-05-14 13:52:31 -0700396EXPORT_SYMBOL_GPL(__blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800397
Tejun Heoa0516612012-06-26 15:05:44 -0700398/*
399 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
400 * because the root blkg uses @q->root_rl instead of its own rl.
401 */
402struct request_list *__blk_queue_next_rl(struct request_list *rl,
403 struct request_queue *q)
404{
405 struct list_head *ent;
406 struct blkcg_gq *blkg;
407
408 /*
409 * Determine the current blkg list_head. The first entry is
410 * root_rl which is off @q->blkg_list and mapped to the head.
411 */
412 if (rl == &q->root_rl) {
413 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900414 /* There are no more block groups, hence no request lists */
415 if (list_empty(ent))
416 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700417 } else {
418 blkg = container_of(rl, struct blkcg_gq, rl);
419 ent = &blkg->q_node;
420 }
421
422 /* walk to the next list_head, skip root blkcg */
423 ent = ent->next;
424 if (ent == &q->root_blkg->q_node)
425 ent = ent->next;
426 if (ent == &q->blkg_list)
427 return NULL;
428
429 blkg = container_of(ent, struct blkcg_gq, q_node);
430 return &blkg->rl;
431}
432
Tejun Heo182446d2013-08-08 20:11:24 -0400433static int blkcg_reset_stats(struct cgroup_subsys_state *css,
434 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700435{
Tejun Heo182446d2013-08-08 20:11:24 -0400436 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700437 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700438 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700439
Tejun Heo838f13b2015-07-09 16:39:47 -0400440 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700441 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800442
443 /*
444 * Note that stat reset is racy - it doesn't synchronize against
445 * stat updates. This is a debug feature which shouldn't exist
446 * anyway. If you get hit by a race, retry.
447 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800448 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700449 blkg_rwstat_reset(&blkg->stat_bytes);
450 blkg_rwstat_reset(&blkg->stat_ios);
451
Tejun Heo8bd435b2012-04-13 13:11:28 -0700452 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700453 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800454
Tejun Heoa9520cd2015-08-18 14:55:14 -0700455 if (blkg->pd[i] && pol->pd_reset_stats_fn)
456 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700457 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700458 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400459
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700460 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700461 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700462 return 0;
463}
464
Tejun Heodd165eb2015-08-18 14:55:33 -0700465const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700466{
Tejun Heod3d32e62012-04-01 14:38:42 -0700467 /* some drivers (floppy) instantiate a queue w/o disk registered */
468 if (blkg->q->backing_dev_info.dev)
469 return dev_name(blkg->q->backing_dev_info.dev);
470 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700471}
Tejun Heodd165eb2015-08-18 14:55:33 -0700472EXPORT_SYMBOL_GPL(blkg_dev_name);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700473
Tejun Heod3d32e62012-04-01 14:38:42 -0700474/**
475 * blkcg_print_blkgs - helper for printing per-blkg data
476 * @sf: seq_file to print to
477 * @blkcg: blkcg of interest
478 * @prfill: fill function to print out a blkg
479 * @pol: policy in question
480 * @data: data to be passed to @prfill
481 * @show_total: to print out sum of prfill return values or not
482 *
483 * This function invokes @prfill on each blkg of @blkcg if pd for the
484 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800485 * policy data and @data and the matching queue lock held. If @show_total
486 * is %true, the sum of the return values from @prfill is printed with
487 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700488 *
489 * This is to be used to construct print functions for
490 * cftype->read_seq_string method.
491 */
Tejun Heo3c798392012-04-16 13:57:25 -0700492void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700493 u64 (*prfill)(struct seq_file *,
494 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700495 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700496 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400497{
Tejun Heo3c798392012-04-16 13:57:25 -0700498 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700499 u64 total = 0;
500
Tejun Heo810ecfa2013-01-09 08:05:13 -0800501 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800502 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo810ecfa2013-01-09 08:05:13 -0800503 spin_lock_irq(blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700504 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700505 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800506 spin_unlock_irq(blkg->q->queue_lock);
507 }
508 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700509
510 if (show_total)
511 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
512}
Tejun Heo829fdb52012-04-01 14:38:43 -0700513EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700514
515/**
516 * __blkg_prfill_u64 - prfill helper for a single u64 value
517 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700518 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700519 * @v: value to print
520 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700521 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700522 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700523u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700524{
Tejun Heof95a04a2012-04-16 13:57:26 -0700525 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700526
527 if (!dname)
528 return 0;
529
530 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
531 return v;
532}
Tejun Heo829fdb52012-04-01 14:38:43 -0700533EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700534
535/**
536 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
537 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700538 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700539 * @rwstat: rwstat to print
540 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700541 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700542 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700543u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700544 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700545{
546 static const char *rwstr[] = {
547 [BLKG_RWSTAT_READ] = "Read",
548 [BLKG_RWSTAT_WRITE] = "Write",
549 [BLKG_RWSTAT_SYNC] = "Sync",
550 [BLKG_RWSTAT_ASYNC] = "Async",
551 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700552 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700553 u64 v;
554 int i;
555
556 if (!dname)
557 return 0;
558
559 for (i = 0; i < BLKG_RWSTAT_NR; i++)
560 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700561 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700562
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700563 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
564 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700565 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
566 return v;
567}
Tejun Heob50da392013-01-09 08:05:12 -0800568EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700569
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700570/**
571 * blkg_prfill_stat - prfill callback for blkg_stat
572 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700573 * @pd: policy private data of interest
574 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700575 *
576 * prfill callback for printing a blkg_stat.
577 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700578u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700579{
Tejun Heof95a04a2012-04-16 13:57:26 -0700580 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700581}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700582EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700583
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700584/**
585 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
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_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700589 *
590 * prfill callback for printing a blkg_rwstat.
591 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700592u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
593 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700594{
Tejun Heof95a04a2012-04-16 13:57:26 -0700595 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700596
Tejun Heof95a04a2012-04-16 13:57:26 -0700597 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700598}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700599EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700600
Tejun Heo77ea7332015-08-18 14:55:24 -0700601static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
602 struct blkg_policy_data *pd, int off)
603{
604 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
605
606 return __blkg_prfill_rwstat(sf, pd, &rwstat);
607}
608
609/**
610 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
611 * @sf: seq_file to print to
612 * @v: unused
613 *
614 * To be used as cftype->seq_show to print blkg->stat_bytes.
615 * cftype->private must be set to the blkcg_policy.
616 */
617int blkg_print_stat_bytes(struct seq_file *sf, void *v)
618{
619 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
620 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
621 offsetof(struct blkcg_gq, stat_bytes), true);
622 return 0;
623}
624EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
625
626/**
627 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
628 * @sf: seq_file to print to
629 * @v: unused
630 *
631 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
632 * must be set to the blkcg_policy.
633 */
634int blkg_print_stat_ios(struct seq_file *sf, void *v)
635{
636 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
637 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
638 offsetof(struct blkcg_gq, stat_ios), true);
639 return 0;
640}
641EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
642
643static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
644 struct blkg_policy_data *pd,
645 int off)
646{
647 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
648 NULL, off);
649 return __blkg_prfill_rwstat(sf, pd, &rwstat);
650}
651
652/**
653 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
654 * @sf: seq_file to print to
655 * @v: unused
656 */
657int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
658{
659 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
660 blkg_prfill_rwstat_field_recursive,
661 (void *)seq_cft(sf)->private,
662 offsetof(struct blkcg_gq, stat_bytes), true);
663 return 0;
664}
665EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
666
667/**
668 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
669 * @sf: seq_file to print to
670 * @v: unused
671 */
672int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
673{
674 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
675 blkg_prfill_rwstat_field_recursive,
676 (void *)seq_cft(sf)->private,
677 offsetof(struct blkcg_gq, stat_ios), true);
678 return 0;
679}
680EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
681
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700682/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800683 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700684 * @blkg: blkg of interest
685 * @pol: blkcg_policy which contains the blkg_stat
686 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800687 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700688 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
689 * online descendants and their aux counts. The caller must be holding the
690 * queue lock for online tests.
691 *
692 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
693 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800694 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700695u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
696 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800697{
Tejun Heo16b3de62013-01-09 08:05:12 -0800698 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400699 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400700 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800701
Tejun Heof12c74c2015-08-18 14:55:23 -0700702 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800703
Tejun Heo16b3de62013-01-09 08:05:12 -0800704 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700705 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
706 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800707
Tejun Heof12c74c2015-08-18 14:55:23 -0700708 if (!pos_blkg->online)
709 continue;
710
711 if (pol)
712 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
713 else
714 stat = (void *)blkg + off;
715
716 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800717 }
718 rcu_read_unlock();
719
720 return sum;
721}
722EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
723
724/**
725 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700726 * @blkg: blkg of interest
727 * @pol: blkcg_policy which contains the blkg_rwstat
728 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800729 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700730 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
731 * online descendants and their aux counts. The caller must be holding the
732 * queue lock for online tests.
733 *
734 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
735 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800736 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700737struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
738 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800739{
Tejun Heo16b3de62013-01-09 08:05:12 -0800740 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400741 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400742 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800743 int i;
744
Tejun Heof12c74c2015-08-18 14:55:23 -0700745 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800746
Tejun Heo16b3de62013-01-09 08:05:12 -0800747 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700748 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700749 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800750
751 if (!pos_blkg->online)
752 continue;
753
Tejun Heof12c74c2015-08-18 14:55:23 -0700754 if (pol)
755 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
756 else
757 rwstat = (void *)pos_blkg + off;
758
Tejun Heo16b3de62013-01-09 08:05:12 -0800759 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700760 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
761 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
762 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800763 }
764 rcu_read_unlock();
765
766 return sum;
767}
768EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
769
770/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700771 * blkg_conf_prep - parse and prepare for per-blkg config update
772 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700773 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700774 * @input: input string
775 * @ctx: blkg_conf_ctx to be filled
776 *
777 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700778 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
779 * part of @input following MAJ:MIN. This function returns with RCU read
780 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700781 */
Tejun Heo3c798392012-04-16 13:57:25 -0700782int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700783 char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700784 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800785{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700786 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700787 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700788 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700789 int key_len, part, ret;
790 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800791
Tejun Heo36aa9e52015-08-18 14:55:31 -0700792 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700793 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700794
Tejun Heo36aa9e52015-08-18 14:55:31 -0700795 body = input + key_len;
796 if (!isspace(*body))
797 return -EINVAL;
798 body = skip_spaces(body);
799
Tejun Heo726fa692012-04-01 14:38:43 -0700800 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400801 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700802 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400803 if (part) {
804 put_disk(disk);
Tejun Heo20386ce2015-08-18 14:55:28 -0700805 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400806 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800807
808 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800809 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700810
Tejun Heoa2b16932012-04-13 13:11:33 -0700811 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700812 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700813 else
Tejun Heo20386ce2015-08-18 14:55:28 -0700814 blkg = ERR_PTR(-EOPNOTSUPP);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800815
Tejun Heo4bfd4822012-03-05 13:15:08 -0800816 if (IS_ERR(blkg)) {
817 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700818 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700819 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700820 put_disk(disk);
821 /*
822 * If queue was bypassing, we should retry. Do so after a
823 * short msleep(). It isn't strictly necessary but queue
824 * can be bypassing for some time and it's always nice to
825 * avoid busy looping.
826 */
827 if (ret == -EBUSY) {
828 msleep(10);
829 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400830 }
Tejun Heo726fa692012-04-01 14:38:43 -0700831 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400832 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800833
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700834 ctx->disk = disk;
835 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700836 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700837 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800838}
Tejun Heo829fdb52012-04-01 14:38:43 -0700839EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800840
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700841/**
842 * blkg_conf_finish - finish up per-blkg config update
843 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
844 *
845 * Finish up after per-blkg config update. This function must be paired
846 * with blkg_conf_prep().
847 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700848void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700849 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800850{
Tejun Heoda8b0662012-04-13 13:11:29 -0700851 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700852 rcu_read_unlock();
853 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800854}
Tejun Heo829fdb52012-04-01 14:38:43 -0700855EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800856
Tejun Heo880f50e2015-08-18 14:55:30 -0700857struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500858 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200859 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700860 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500861 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700862 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500863};
864
Tejun Heo9f13ef62012-03-05 13:15:21 -0800865/**
Tejun Heo92fb9742012-11-19 08:13:38 -0800866 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -0400867 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800868 *
Tejun Heoeb954192013-08-08 20:11:23 -0400869 * This function is called when @css is about to go away and responsible
870 * for shooting down all blkgs associated with @css. blkgs should be
Tejun Heo9f13ef62012-03-05 13:15:21 -0800871 * removed while holding both q and blkcg locks. As blkcg lock is nested
872 * inside q lock, this function performs reverse double lock dancing.
873 *
874 * This is the blkcg counterpart of ioc_release_fn().
875 */
Tejun Heoeb954192013-08-08 20:11:23 -0400876static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500877{
Tejun Heoeb954192013-08-08 20:11:23 -0400878 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500879
Tejun Heo9f13ef62012-03-05 13:15:21 -0800880 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800881
Tejun Heo9f13ef62012-03-05 13:15:21 -0800882 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700883 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
884 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800885 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500886
Tejun Heo9f13ef62012-03-05 13:15:21 -0800887 if (spin_trylock(q->queue_lock)) {
888 blkg_destroy(blkg);
889 spin_unlock(q->queue_lock);
890 } else {
891 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800892 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200893 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200894 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800895 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200896
Tejun Heo9f13ef62012-03-05 13:15:21 -0800897 spin_unlock_irq(&blkcg->lock);
Tejun Heo52ebea72015-05-22 17:13:37 -0400898
899 wb_blkcg_offline(blkcg);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800900}
901
Tejun Heoeb954192013-08-08 20:11:23 -0400902static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800903{
Tejun Heoeb954192013-08-08 20:11:23 -0400904 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -0700905 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -0800906
Tejun Heo7876f932015-07-09 16:39:49 -0400907 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700908
Tejun Heo7876f932015-07-09 16:39:49 -0400909 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -0400910
Tejun Heobc915e62015-08-18 14:55:08 -0700911 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700912 if (blkcg->cpd[i])
913 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
914
915 mutex_unlock(&blkcg_pol_mutex);
916
Tejun Heobc915e62015-08-18 14:55:08 -0700917 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500918}
919
Tejun Heoeb954192013-08-08 20:11:23 -0400920static struct cgroup_subsys_state *
921blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500922{
Tejun Heo3c798392012-04-16 13:57:25 -0700923 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200924 struct cgroup_subsys_state *ret;
925 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500926
Tejun Heo7876f932015-07-09 16:39:49 -0400927 mutex_lock(&blkcg_pol_mutex);
928
Tejun Heoeb954192013-08-08 20:11:23 -0400929 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -0700930 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -0700931 } else {
932 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
933 if (!blkcg) {
934 ret = ERR_PTR(-ENOMEM);
935 goto free_blkcg;
936 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200937 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500938
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200939 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
940 struct blkcg_policy *pol = blkcg_policy[i];
941 struct blkcg_policy_data *cpd;
942
943 /*
944 * If the policy hasn't been attached yet, wait for it
945 * to be attached before doing anything else. Otherwise,
946 * check if the policy requires any specific per-cgroup
947 * data: if it does, allocate and initialize it.
948 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700949 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200950 continue;
951
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700952 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200953 if (!cpd) {
954 ret = ERR_PTR(-ENOMEM);
955 goto free_pd_blkcg;
956 }
Tejun Heo81437642015-08-18 14:55:15 -0700957 blkcg->cpd[i] = cpd;
958 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200959 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700960 if (pol->cpd_init_fn)
961 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200962 }
963
Vivek Goyal31e4c282009-12-03 12:59:42 -0500964 spin_lock_init(&blkcg->lock);
Tejun Heod93a11f2015-08-18 14:55:01 -0700965 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500966 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -0400967#ifdef CONFIG_CGROUP_WRITEBACK
968 INIT_LIST_HEAD(&blkcg->cgwb_list);
969#endif
Tejun Heo7876f932015-07-09 16:39:49 -0400970 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
971
972 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500973 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200974
975free_pd_blkcg:
976 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700977 if (blkcg->cpd[i])
978 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200979free_blkcg:
980 kfree(blkcg);
Tejun Heo7876f932015-07-09 16:39:49 -0400981 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200982 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500983}
984
Tejun Heo5efd6112012-03-05 13:15:12 -0800985/**
986 * blkcg_init_queue - initialize blkcg part of request queue
987 * @q: request_queue to initialize
988 *
989 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
990 * part of new request_queue @q.
991 *
992 * RETURNS:
993 * 0 on success, -errno on failure.
994 */
995int blkcg_init_queue(struct request_queue *q)
996{
Tejun Heoec13b1d2015-05-22 17:13:19 -0400997 struct blkcg_gq *new_blkg, *blkg;
998 bool preloaded;
999 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001000
Tejun Heoec13b1d2015-05-22 17:13:19 -04001001 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1002 if (!new_blkg)
1003 return -ENOMEM;
1004
1005 preloaded = !radix_tree_preload(GFP_KERNEL);
1006
1007 /*
1008 * Make sure the root blkg exists and count the existing blkgs. As
1009 * @q is bypassing at this point, blkg_lookup_create() can't be
1010 * used. Open code insertion.
1011 */
1012 rcu_read_lock();
1013 spin_lock_irq(q->queue_lock);
1014 blkg = blkg_create(&blkcg_root, q, new_blkg);
1015 spin_unlock_irq(q->queue_lock);
1016 rcu_read_unlock();
1017
1018 if (preloaded)
1019 radix_tree_preload_end();
1020
1021 if (IS_ERR(blkg)) {
Tejun Heo994b7832015-08-18 14:55:07 -07001022 blkg_free(new_blkg);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001023 return PTR_ERR(blkg);
1024 }
1025
1026 q->root_blkg = blkg;
1027 q->root_rl.blkg = blkg;
1028
1029 ret = blk_throtl_init(q);
1030 if (ret) {
1031 spin_lock_irq(q->queue_lock);
1032 blkg_destroy_all(q);
1033 spin_unlock_irq(q->queue_lock);
1034 }
1035 return ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001036}
1037
1038/**
1039 * blkcg_drain_queue - drain blkcg part of request_queue
1040 * @q: request_queue to drain
1041 *
1042 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1043 */
1044void blkcg_drain_queue(struct request_queue *q)
1045{
1046 lockdep_assert_held(q->queue_lock);
1047
Tejun Heo0b462c82014-07-05 18:43:21 -04001048 /*
1049 * @q could be exiting and already have destroyed all blkgs as
1050 * indicated by NULL root_blkg. If so, don't confuse policies.
1051 */
1052 if (!q->root_blkg)
1053 return;
1054
Tejun Heo5efd6112012-03-05 13:15:12 -08001055 blk_throtl_drain(q);
1056}
1057
1058/**
1059 * blkcg_exit_queue - exit and release blkcg part of request_queue
1060 * @q: request_queue being released
1061 *
1062 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1063 */
1064void blkcg_exit_queue(struct request_queue *q)
1065{
Tejun Heo6d18b002012-04-13 13:11:35 -07001066 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -07001067 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -07001068 spin_unlock_irq(q->queue_lock);
1069
Tejun Heo5efd6112012-03-05 13:15:12 -08001070 blk_throtl_exit(q);
1071}
1072
Vivek Goyal31e4c282009-12-03 12:59:42 -05001073/*
1074 * We cannot support shared io contexts, as we have no mean to support
1075 * two tasks with the same ioc in two different groups without major rework
1076 * of the main cic data structures. For now we allow a task to change
1077 * its cgroup only if it's the only owner of its ioc.
1078 */
Tejun Heoeb954192013-08-08 20:11:23 -04001079static int blkcg_can_attach(struct cgroup_subsys_state *css,
1080 struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001081{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001082 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001083 struct io_context *ioc;
1084 int ret = 0;
1085
1086 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo924f0d92014-02-13 06:58:41 -05001087 cgroup_taskset_for_each(task, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001088 task_lock(task);
1089 ioc = task->io_context;
1090 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1091 ret = -EINVAL;
1092 task_unlock(task);
1093 if (ret)
1094 break;
1095 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001096 return ret;
1097}
1098
Tejun Heoc165b3e2015-08-18 14:55:29 -07001099struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001100 .css_alloc = blkcg_css_alloc,
1101 .css_offline = blkcg_css_offline,
1102 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001103 .can_attach = blkcg_can_attach,
Tejun Heo880f50e2015-08-18 14:55:30 -07001104 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001105 .legacy_name = "blkio",
Tejun Heo1ced9532014-07-08 18:02:57 -04001106#ifdef CONFIG_MEMCG
1107 /*
1108 * This ensures that, if available, memcg is automatically enabled
1109 * together on the default hierarchy so that the owner cgroup can
1110 * be retrieved from writeback pages.
1111 */
1112 .depends_on = 1 << memory_cgrp_id,
1113#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001114};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001115EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001116
Tejun Heo8bd435b2012-04-13 13:11:28 -07001117/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001118 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1119 * @q: request_queue of interest
1120 * @pol: blkcg policy to activate
1121 *
1122 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1123 * bypass mode to populate its blkgs with policy_data for @pol.
1124 *
1125 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1126 * from IO path. Update of each blkg is protected by both queue and blkcg
1127 * locks so that holding either lock and testing blkcg_policy_enabled() is
1128 * always enough for dereferencing policy data.
1129 *
1130 * The caller is responsible for synchronizing [de]activations and policy
1131 * [un]registerations. Returns 0 on success, -errno on failure.
1132 */
1133int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001134 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001135{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001136 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001137 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001138 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001139
1140 if (blkcg_policy_enabled(q, pol))
1141 return 0;
1142
1143 blk_queue_bypass_start(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001144pd_prealloc:
1145 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001146 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001147 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001148 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001149 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001150 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001151 }
1152
Tejun Heoa2b16932012-04-13 13:11:33 -07001153 spin_lock_irq(q->queue_lock);
1154
1155 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001156 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001157
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001158 if (blkg->pd[pol->plid])
1159 continue;
1160
Tejun Heo001bea72015-08-18 14:55:11 -07001161 pd = pol->pd_alloc_fn(GFP_NOWAIT, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001162 if (!pd)
1163 swap(pd, pd_prealloc);
1164 if (!pd) {
1165 spin_unlock_irq(q->queue_lock);
1166 goto pd_prealloc;
1167 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001168
1169 blkg->pd[pol->plid] = pd;
1170 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001171 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001172 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001173 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001174 }
1175
1176 __set_bit(pol->plid, q->blkcg_pols);
1177 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001178
Tejun Heoa2b16932012-04-13 13:11:33 -07001179 spin_unlock_irq(q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001180out_bypass_end:
Tejun Heoa2b16932012-04-13 13:11:33 -07001181 blk_queue_bypass_end(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001182 if (pd_prealloc)
1183 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001184 return ret;
1185}
1186EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1187
1188/**
1189 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1190 * @q: request_queue of interest
1191 * @pol: blkcg policy to deactivate
1192 *
1193 * Deactivate @pol on @q. Follows the same synchronization rules as
1194 * blkcg_activate_policy().
1195 */
1196void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001197 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001198{
Tejun Heo3c798392012-04-16 13:57:25 -07001199 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001200
1201 if (!blkcg_policy_enabled(q, pol))
1202 return;
1203
1204 blk_queue_bypass_start(q);
1205 spin_lock_irq(q->queue_lock);
1206
1207 __clear_bit(pol->plid, q->blkcg_pols);
1208
1209 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1210 /* grab blkcg lock too while removing @pd from @blkg */
1211 spin_lock(&blkg->blkcg->lock);
1212
Tejun Heo001bea72015-08-18 14:55:11 -07001213 if (blkg->pd[pol->plid]) {
Tejun Heoa9520cd2015-08-18 14:55:14 -07001214 if (pol->pd_offline_fn)
1215 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001216 pol->pd_free_fn(blkg->pd[pol->plid]);
1217 blkg->pd[pol->plid] = NULL;
1218 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001219
1220 spin_unlock(&blkg->blkcg->lock);
1221 }
1222
1223 spin_unlock_irq(q->queue_lock);
1224 blk_queue_bypass_end(q);
1225}
1226EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1227
1228/**
Tejun Heo3c798392012-04-16 13:57:25 -07001229 * blkcg_policy_register - register a blkcg policy
1230 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001231 *
Tejun Heo3c798392012-04-16 13:57:25 -07001232 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1233 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001234 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001235int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001236{
Tejun Heo06b285b2015-07-09 16:39:50 -04001237 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001238 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001239
Tejun Heo838f13b2015-07-09 16:39:47 -04001240 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001241 mutex_lock(&blkcg_pol_mutex);
1242
Tejun Heo8bd435b2012-04-13 13:11:28 -07001243 /* find an empty slot */
1244 ret = -ENOSPC;
1245 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001246 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001247 break;
1248 if (i >= BLKCG_MAX_POLS)
Tejun Heo838f13b2015-07-09 16:39:47 -04001249 goto err_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001250
Tejun Heo06b285b2015-07-09 16:39:50 -04001251 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001252 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001253 blkcg_policy[pol->plid] = pol;
1254
1255 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001256 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001257 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1258 struct blkcg_policy_data *cpd;
1259
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001260 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Tejun Heo06b285b2015-07-09 16:39:50 -04001261 if (!cpd) {
1262 mutex_unlock(&blkcg_pol_mutex);
1263 goto err_free_cpds;
1264 }
1265
Tejun Heo81437642015-08-18 14:55:15 -07001266 blkcg->cpd[pol->plid] = cpd;
1267 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001268 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001269 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001270 }
1271 }
1272
Tejun Heo838f13b2015-07-09 16:39:47 -04001273 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001274
Tejun Heo8bd435b2012-04-13 13:11:28 -07001275 /* everything is in place, add intf files for the new policy */
Tejun Heo880f50e2015-08-18 14:55:30 -07001276 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001277 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001278 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001279 mutex_unlock(&blkcg_pol_register_mutex);
1280 return 0;
1281
Tejun Heo06b285b2015-07-09 16:39:50 -04001282err_free_cpds:
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001283 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001284 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001285 if (blkcg->cpd[pol->plid]) {
1286 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1287 blkcg->cpd[pol->plid] = NULL;
1288 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001289 }
1290 }
1291 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001292err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001293 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001294 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001295 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001296}
Tejun Heo3c798392012-04-16 13:57:25 -07001297EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001298
Tejun Heo8bd435b2012-04-13 13:11:28 -07001299/**
Tejun Heo3c798392012-04-16 13:57:25 -07001300 * blkcg_policy_unregister - unregister a blkcg policy
1301 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001302 *
Tejun Heo3c798392012-04-16 13:57:25 -07001303 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001304 */
Tejun Heo3c798392012-04-16 13:57:25 -07001305void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001306{
Tejun Heo06b285b2015-07-09 16:39:50 -04001307 struct blkcg *blkcg;
1308
Tejun Heo838f13b2015-07-09 16:39:47 -04001309 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001310
Tejun Heo3c798392012-04-16 13:57:25 -07001311 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001312 goto out_unlock;
1313
1314 /* kill the intf files first */
Tejun Heo880f50e2015-08-18 14:55:30 -07001315 if (pol->legacy_cftypes)
1316 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001317
Tejun Heo06b285b2015-07-09 16:39:50 -04001318 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001319 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001320
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001321 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001322 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001323 if (blkcg->cpd[pol->plid]) {
1324 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1325 blkcg->cpd[pol->plid] = NULL;
1326 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001327 }
1328 }
Tejun Heo3c798392012-04-16 13:57:25 -07001329 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001330
Tejun Heobc0d6502012-04-13 13:11:26 -07001331 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001332out_unlock:
1333 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001334}
Tejun Heo3c798392012-04-16 13:57:25 -07001335EXPORT_SYMBOL_GPL(blkcg_policy_unregister);