blob: eb85cb87c40f46f54b96cd06ae078600e8e8cac4 [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>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010020#include <linux/sched/signal.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110021#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070022#include <linux/blkdev.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040023#include <linux/backing-dev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080025#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080026#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070027#include <linux/atomic.h>
Tejun Heo36aa9e52015-08-18 14:55:31 -070028#include <linux/ctype.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040029#include <linux/blk-cgroup.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080030#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050031
Divyesh Shah84c124d2010-04-09 08:31:19 +020032#define MAX_KEY_LEN 100
33
Tejun Heo838f13b2015-07-09 16:39:47 -040034/*
35 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
36 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
37 * policy [un]register operations including cgroup file additions /
38 * removals. Putting cgroup file registration outside blkcg_pol_mutex
39 * allows grabbing it from cgroup callbacks.
40 */
41static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070042static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080043
Arianna Avanzinie48453c2015-06-05 23:38:42 +020044struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070045EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050046
Tejun Heo496d5e72015-05-22 17:13:21 -040047struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
48
Tejun Heo3c798392012-04-16 13:57:25 -070049static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080050
Tejun Heo7876f932015-07-09 16:39:49 -040051static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
52
Tejun Heoa2b16932012-04-13 13:11:33 -070053static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070054 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070055{
56 return pol && test_bit(pol->plid, q->blkcg_pols);
57}
58
Tejun Heo03814112012-03-05 13:15:14 -080059/**
60 * blkg_free - free a blkg
61 * @blkg: blkg to free
62 *
63 * Free @blkg which may be partially allocated.
64 */
Tejun Heo3c798392012-04-16 13:57:25 -070065static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080066{
Tejun Heoe8989fa2012-03-05 13:15:20 -080067 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080068
69 if (!blkg)
70 return;
71
Tejun Heodb613672013-05-14 13:52:31 -070072 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070073 if (blkg->pd[i])
74 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080075
Tejun Heo994b7832015-08-18 14:55:07 -070076 if (blkg->blkcg != &blkcg_root)
Bart Van Asscheb425e502017-05-31 14:43:45 -070077 blk_exit_rl(blkg->q, &blkg->rl);
Tejun Heo77ea7332015-08-18 14:55:24 -070078
79 blkg_rwstat_exit(&blkg->stat_ios);
80 blkg_rwstat_exit(&blkg->stat_bytes);
Tejun Heo549d3aa2012-03-05 13:15:16 -080081 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080082}
83
84/**
85 * blkg_alloc - allocate a blkg
86 * @blkcg: block cgroup the new blkg is associated with
87 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070088 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080089 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080090 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080091 */
Tejun Heo15974992012-06-04 20:40:52 -070092static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
93 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080094{
Tejun Heo3c798392012-04-16 13:57:25 -070095 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080096 int i;
Tejun Heo03814112012-03-05 13:15:14 -080097
98 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070099 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -0800100 if (!blkg)
101 return NULL;
102
Tejun Heo77ea7332015-08-18 14:55:24 -0700103 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
104 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
105 goto err_free;
106
Tejun Heoc875f4d2012-03-05 13:15:22 -0800107 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800108 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800109 blkg->blkcg = blkcg;
Tejun Heoa5049a82014-06-19 17:42:57 -0400110 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800111
Tejun Heoa0516612012-06-26 15:05:44 -0700112 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
113 if (blkcg != &blkcg_root) {
114 if (blk_init_rl(&blkg->rl, q, gfp_mask))
115 goto err_free;
116 blkg->rl.blkg = blkg;
117 }
118
Tejun Heo8bd435b2012-04-13 13:11:28 -0700119 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700120 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800121 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800122
Tejun Heoa2b16932012-04-13 13:11:33 -0700123 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800124 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800125
Tejun Heoe8989fa2012-03-05 13:15:20 -0800126 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700127 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700128 if (!pd)
129 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800130
Tejun Heoe8989fa2012-03-05 13:15:20 -0800131 blkg->pd[i] = pd;
132 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800133 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800134 }
135
Tejun Heo03814112012-03-05 13:15:14 -0800136 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700137
138err_free:
139 blkg_free(blkg);
140 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800141}
142
Tejun Heo24f29042015-08-18 14:55:17 -0700143struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
144 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700145{
Tejun Heo3c798392012-04-16 13:57:25 -0700146 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700147
Tejun Heoa6371202012-04-19 16:29:24 -0700148 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800149 * Hint didn't match. Look up from the radix tree. Note that the
150 * hint can only be updated under queue_lock as otherwise @blkg
151 * could have already been removed from blkg_tree. The caller is
152 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700153 */
154 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800155 if (blkg && blkg->q == q) {
156 if (update_hint) {
157 lockdep_assert_held(q->queue_lock);
158 rcu_assign_pointer(blkcg->blkg_hint, blkg);
159 }
Tejun Heoa6371202012-04-19 16:29:24 -0700160 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800161 }
Tejun Heoa6371202012-04-19 16:29:24 -0700162
Tejun Heo80fd9972012-04-13 14:50:53 -0700163 return NULL;
164}
Tejun Heoae118892015-08-18 14:55:20 -0700165EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700166
Tejun Heo15974992012-06-04 20:40:52 -0700167/*
Jens Axboed708f0d2017-03-29 11:25:48 -0600168 * If @new_blkg is %NULL, this function tries to allocate a new one as
169 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700170 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800171static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
Jens Axboed708f0d2017-03-29 11:25:48 -0600172 struct request_queue *q,
173 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400174{
Jens Axboed708f0d2017-03-29 11:25:48 -0600175 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400176 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800177 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400178
Tejun Heocd1604f2012-03-05 13:15:06 -0800179 WARN_ON_ONCE(!rcu_read_lock_held());
180 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500181
Tejun Heo7ee9c562012-03-05 13:15:11 -0800182 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400183 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700184 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800185 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700186 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800187
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800188 wb_congested = wb_congested_get_create(q->backing_dev_info,
Jens Axboed708f0d2017-03-29 11:25:48 -0600189 blkcg->css.id,
190 GFP_NOWAIT | __GFP_NOWARN);
191 if (!wb_congested) {
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800192 ret = -ENOMEM;
Jens Axboed708f0d2017-03-29 11:25:48 -0600193 goto err_put_css;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800194 }
195
Jens Axboed708f0d2017-03-29 11:25:48 -0600196 /* allocate */
197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
199 if (unlikely(!new_blkg)) {
200 ret = -ENOMEM;
201 goto err_put_congested;
202 }
203 }
204 blkg = new_blkg;
Tahsin Erdogan7fc6b872017-03-09 00:05:31 -0800205 blkg->wb_congested = wb_congested;
206
Tejun Heodb613672013-05-14 13:52:31 -0700207 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800208 if (blkcg_parent(blkcg)) {
209 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
210 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700211 ret = -ENODEV;
Jens Axboed708f0d2017-03-29 11:25:48 -0600212 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800213 }
214 blkg_get(blkg->parent);
215 }
216
Tejun Heodb613672013-05-14 13:52:31 -0700217 /* invoke per-policy init */
218 for (i = 0; i < BLKCG_MAX_POLS; i++) {
219 struct blkcg_policy *pol = blkcg_policy[i];
220
221 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700222 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700223 }
224
225 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700226 spin_lock(&blkcg->lock);
227 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
228 if (likely(!ret)) {
229 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
230 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800231
232 for (i = 0; i < BLKCG_MAX_POLS; i++) {
233 struct blkcg_policy *pol = blkcg_policy[i];
234
235 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700236 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800237 }
Tejun Heoa6371202012-04-19 16:29:24 -0700238 }
Tejun Heof427d902013-01-09 08:05:12 -0800239 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700240 spin_unlock(&blkcg->lock);
241
Tejun Heoec13b1d2015-05-22 17:13:19 -0400242 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700243 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700244
Tejun Heo3c547862013-01-09 08:05:10 -0800245 /* @blkg failed fully initialized, use the usual release path */
246 blkg_put(blkg);
247 return ERR_PTR(ret);
248
Jens Axboed708f0d2017-03-29 11:25:48 -0600249err_put_congested:
250 wb_congested_put(wb_congested);
251err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700252 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800253err_free_blkg:
Jens Axboed708f0d2017-03-29 11:25:48 -0600254 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800255 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500256}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700257
Tejun Heo86cde6b2013-01-09 08:05:10 -0800258/**
Jens Axboed708f0d2017-03-29 11:25:48 -0600259 * blkg_lookup_create - lookup blkg, try to create one if not there
Tejun Heo86cde6b2013-01-09 08:05:10 -0800260 * @blkcg: blkcg of interest
261 * @q: request_queue of interest
262 *
263 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800264 * create one. blkg creation is performed recursively from blkcg_root such
265 * that all non-root blkg's have access to the parent blkg. This function
266 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800267 *
268 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
269 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
270 * dead and bypassing, returns ERR_PTR(-EBUSY).
271 */
Jens Axboed708f0d2017-03-29 11:25:48 -0600272struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
273 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700274{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800275 struct blkcg_gq *blkg;
276
277 WARN_ON_ONCE(!rcu_read_lock_held());
278 lockdep_assert_held(q->queue_lock);
279
Jens Axboed708f0d2017-03-29 11:25:48 -0600280 /*
281 * This could be the first entry point of blkcg implementation and
282 * we shouldn't allow anything to go through for a bypassing queue.
283 */
284 if (unlikely(blk_queue_bypass(q)))
285 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
286
Tejun Heo86cde6b2013-01-09 08:05:10 -0800287 blkg = __blkg_lookup(blkcg, q, true);
288 if (blkg)
289 return blkg;
290
Tejun Heo3c547862013-01-09 08:05:10 -0800291 /*
292 * Create blkgs walking down from blkcg_root to @blkcg, so that all
293 * non-root blkgs have access to their parents.
294 */
295 while (true) {
296 struct blkcg *pos = blkcg;
297 struct blkcg *parent = blkcg_parent(blkcg);
298
299 while (parent && !__blkg_lookup(parent, q, false)) {
300 pos = parent;
301 parent = blkcg_parent(parent);
302 }
303
Jens Axboed708f0d2017-03-29 11:25:48 -0600304 blkg = blkg_create(pos, q, NULL);
Tejun Heo3c547862013-01-09 08:05:10 -0800305 if (pos == blkcg || IS_ERR(blkg))
306 return blkg;
307 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700308}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500309
Joseph Qi4c699482018-03-16 14:51:27 +0800310static void blkg_pd_offline(struct blkcg_gq *blkg)
311{
312 int i;
313
314 lockdep_assert_held(blkg->q->queue_lock);
315 lockdep_assert_held(&blkg->blkcg->lock);
316
317 for (i = 0; i < BLKCG_MAX_POLS; i++) {
318 struct blkcg_policy *pol = blkcg_policy[i];
319
320 if (blkg->pd[i] && !blkg->pd[i]->offline &&
321 pol->pd_offline_fn) {
322 pol->pd_offline_fn(blkg->pd[i]);
323 blkg->pd[i]->offline = true;
324 }
325 }
326}
327
Tejun Heo3c798392012-04-16 13:57:25 -0700328static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800329{
Tejun Heo3c798392012-04-16 13:57:25 -0700330 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700331 struct blkcg_gq *parent = blkg->parent;
Tejun Heo03aa2642012-03-05 13:15:19 -0800332
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200333 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800334 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800335
336 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800337 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800338 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700339
Tejun Heo77ea7332015-08-18 14:55:24 -0700340 if (parent) {
341 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
342 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
343 }
344
Tejun Heof427d902013-01-09 08:05:12 -0800345 blkg->online = false;
346
Tejun Heoa6371202012-04-19 16:29:24 -0700347 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800348 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800349 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800350
Tejun Heo03aa2642012-03-05 13:15:19 -0800351 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700352 * Both setting lookup hint to and clearing it from @blkg are done
353 * under queue_lock. If it's not pointing to @blkg now, it never
354 * will. Hint assignment itself can race safely.
355 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -0800356 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700357 rcu_assign_pointer(blkcg->blkg_hint, NULL);
358
359 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800360 * Put the reference taken at the time of creation so that when all
361 * queues are gone, group can be destroyed.
362 */
363 blkg_put(blkg);
364}
365
Tejun Heo9f13ef62012-03-05 13:15:21 -0800366/**
367 * blkg_destroy_all - destroy all blkgs associated with a request_queue
368 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800369 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700370 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800371 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700372static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800373{
Tejun Heo3c798392012-04-16 13:57:25 -0700374 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800375
Tejun Heo6d18b002012-04-13 13:11:35 -0700376 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800377
Tejun Heo9f13ef62012-03-05 13:15:21 -0800378 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700379 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800380
Tejun Heo9f13ef62012-03-05 13:15:21 -0800381 spin_lock(&blkcg->lock);
Joseph Qi4c699482018-03-16 14:51:27 +0800382 blkg_pd_offline(blkg);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800383 blkg_destroy(blkg);
384 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800385 }
Tejun Heo6fe810b2015-09-05 15:47:36 -0400386
387 q->root_blkg = NULL;
388 q->root_rl.blkg = NULL;
Tejun Heo72e06c22012-03-05 13:15:00 -0800389}
390
Tejun Heo2a4fd072013-05-14 13:52:31 -0700391/*
392 * A group is RCU protected, but having an rcu lock does not mean that one
393 * can access all the fields of blkg and assume these are valid. For
394 * example, don't try to follow throtl_data and request queue links.
395 *
396 * Having a reference to blkg under an rcu allows accesses to only values
397 * local to groups like group stats and group rate limits.
398 */
399void __blkg_release_rcu(struct rcu_head *rcu_head)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800400{
Tejun Heo2a4fd072013-05-14 13:52:31 -0700401 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
Tejun Heodb613672013-05-14 13:52:31 -0700402
Tejun Heo3c547862013-01-09 08:05:10 -0800403 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800404 css_put(&blkg->blkcg->css);
Tejun Heoa5049a82014-06-19 17:42:57 -0400405 if (blkg->parent)
Tejun Heo3c547862013-01-09 08:05:10 -0800406 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800407
Tejun Heoce7acfe2015-05-22 17:13:38 -0400408 wb_congested_put(blkg->wb_congested);
409
Tejun Heo2a4fd072013-05-14 13:52:31 -0700410 blkg_free(blkg);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800411}
Tejun Heo2a4fd072013-05-14 13:52:31 -0700412EXPORT_SYMBOL_GPL(__blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800413
Tejun Heoa0516612012-06-26 15:05:44 -0700414/*
415 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
416 * because the root blkg uses @q->root_rl instead of its own rl.
417 */
418struct request_list *__blk_queue_next_rl(struct request_list *rl,
419 struct request_queue *q)
420{
421 struct list_head *ent;
422 struct blkcg_gq *blkg;
423
424 /*
425 * Determine the current blkg list_head. The first entry is
426 * root_rl which is off @q->blkg_list and mapped to the head.
427 */
428 if (rl == &q->root_rl) {
429 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900430 /* There are no more block groups, hence no request lists */
431 if (list_empty(ent))
432 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700433 } else {
434 blkg = container_of(rl, struct blkcg_gq, rl);
435 ent = &blkg->q_node;
436 }
437
438 /* walk to the next list_head, skip root blkcg */
439 ent = ent->next;
440 if (ent == &q->root_blkg->q_node)
441 ent = ent->next;
442 if (ent == &q->blkg_list)
443 return NULL;
444
445 blkg = container_of(ent, struct blkcg_gq, q_node);
446 return &blkg->rl;
447}
448
Tejun Heo182446d2013-08-08 20:11:24 -0400449static int blkcg_reset_stats(struct cgroup_subsys_state *css,
450 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700451{
Tejun Heo182446d2013-08-08 20:11:24 -0400452 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700453 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700454 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700455
Tejun Heo838f13b2015-07-09 16:39:47 -0400456 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700457 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800458
459 /*
460 * Note that stat reset is racy - it doesn't synchronize against
461 * stat updates. This is a debug feature which shouldn't exist
462 * anyway. If you get hit by a race, retry.
463 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800464 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700465 blkg_rwstat_reset(&blkg->stat_bytes);
466 blkg_rwstat_reset(&blkg->stat_ios);
467
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 Heodd165eb2015-08-18 14:55:33 -0700481const 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 */
Jan Karadc3b17c2017-02-02 15:56:50 +0100484 if (blkg->q->backing_dev_info->dev)
485 return dev_name(blkg->q->backing_dev_info->dev);
Tejun Heod3d32e62012-04-01 14:38:42 -0700486 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700487}
Tejun Heodd165eb2015-08-18 14:55:33 -0700488EXPORT_SYMBOL_GPL(blkg_dev_name);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700489
Tejun Heod3d32e62012-04-01 14:38:42 -0700490/**
491 * blkcg_print_blkgs - helper for printing per-blkg data
492 * @sf: seq_file to print to
493 * @blkcg: blkcg of interest
494 * @prfill: fill function to print out a blkg
495 * @pol: policy in question
496 * @data: data to be passed to @prfill
497 * @show_total: to print out sum of prfill return values or not
498 *
499 * This function invokes @prfill on each blkg of @blkcg if pd for the
500 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800501 * policy data and @data and the matching queue lock held. If @show_total
502 * is %true, the sum of the return values from @prfill is printed with
503 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700504 *
505 * This is to be used to construct print functions for
506 * cftype->read_seq_string method.
507 */
Tejun Heo3c798392012-04-16 13:57:25 -0700508void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700509 u64 (*prfill)(struct seq_file *,
510 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700511 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700512 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400513{
Tejun Heo3c798392012-04-16 13:57:25 -0700514 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700515 u64 total = 0;
516
Tejun Heo810ecfa2013-01-09 08:05:13 -0800517 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800518 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo810ecfa2013-01-09 08:05:13 -0800519 spin_lock_irq(blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700520 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700521 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800522 spin_unlock_irq(blkg->q->queue_lock);
523 }
524 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700525
526 if (show_total)
527 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
528}
Tejun Heo829fdb52012-04-01 14:38:43 -0700529EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700530
531/**
532 * __blkg_prfill_u64 - prfill helper for a single u64 value
533 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700534 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700535 * @v: value to print
536 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700537 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700538 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700539u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700540{
Tejun Heof95a04a2012-04-16 13:57:26 -0700541 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700542
543 if (!dname)
544 return 0;
545
546 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
547 return v;
548}
Tejun Heo829fdb52012-04-01 14:38:43 -0700549EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700550
551/**
552 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
553 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700554 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700555 * @rwstat: rwstat to print
556 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700557 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700558 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700559u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700560 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700561{
562 static const char *rwstr[] = {
563 [BLKG_RWSTAT_READ] = "Read",
564 [BLKG_RWSTAT_WRITE] = "Write",
565 [BLKG_RWSTAT_SYNC] = "Sync",
566 [BLKG_RWSTAT_ASYNC] = "Async",
567 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700568 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700569 u64 v;
570 int i;
571
572 if (!dname)
573 return 0;
574
575 for (i = 0; i < BLKG_RWSTAT_NR; i++)
576 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700577 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700578
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700579 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
580 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700581 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
582 return v;
583}
Tejun Heob50da392013-01-09 08:05:12 -0800584EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700585
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700586/**
587 * blkg_prfill_stat - prfill callback for blkg_stat
588 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700589 * @pd: policy private data of interest
590 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700591 *
592 * prfill callback for printing a blkg_stat.
593 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700594u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700595{
Tejun Heof95a04a2012-04-16 13:57:26 -0700596 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700597}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700598EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700599
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700600/**
601 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
602 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700603 * @pd: policy private data of interest
604 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700605 *
606 * prfill callback for printing a blkg_rwstat.
607 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700608u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
609 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700610{
Tejun Heof95a04a2012-04-16 13:57:26 -0700611 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700612
Tejun Heof95a04a2012-04-16 13:57:26 -0700613 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700614}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700615EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700616
Tejun Heo77ea7332015-08-18 14:55:24 -0700617static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
618 struct blkg_policy_data *pd, int off)
619{
620 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
621
622 return __blkg_prfill_rwstat(sf, pd, &rwstat);
623}
624
625/**
626 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
627 * @sf: seq_file to print to
628 * @v: unused
629 *
630 * To be used as cftype->seq_show to print blkg->stat_bytes.
631 * cftype->private must be set to the blkcg_policy.
632 */
633int blkg_print_stat_bytes(struct seq_file *sf, void *v)
634{
635 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
636 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
637 offsetof(struct blkcg_gq, stat_bytes), true);
638 return 0;
639}
640EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
641
642/**
643 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
644 * @sf: seq_file to print to
645 * @v: unused
646 *
647 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
648 * must be set to the blkcg_policy.
649 */
650int blkg_print_stat_ios(struct seq_file *sf, void *v)
651{
652 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
653 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
654 offsetof(struct blkcg_gq, stat_ios), true);
655 return 0;
656}
657EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
658
659static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
660 struct blkg_policy_data *pd,
661 int off)
662{
663 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
664 NULL, off);
665 return __blkg_prfill_rwstat(sf, pd, &rwstat);
666}
667
668/**
669 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
670 * @sf: seq_file to print to
671 * @v: unused
672 */
673int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
674{
675 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
676 blkg_prfill_rwstat_field_recursive,
677 (void *)seq_cft(sf)->private,
678 offsetof(struct blkcg_gq, stat_bytes), true);
679 return 0;
680}
681EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
682
683/**
684 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
685 * @sf: seq_file to print to
686 * @v: unused
687 */
688int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
689{
690 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
691 blkg_prfill_rwstat_field_recursive,
692 (void *)seq_cft(sf)->private,
693 offsetof(struct blkcg_gq, stat_ios), true);
694 return 0;
695}
696EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
697
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700698/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800699 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700700 * @blkg: blkg of interest
701 * @pol: blkcg_policy which contains the blkg_stat
702 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800703 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700704 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
705 * online descendants and their aux counts. The caller must be holding the
706 * queue lock for online tests.
707 *
708 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
709 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800710 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700711u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
712 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800713{
Tejun Heo16b3de62013-01-09 08:05:12 -0800714 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400715 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400716 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800717
Tejun Heof12c74c2015-08-18 14:55:23 -0700718 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800719
Tejun Heo16b3de62013-01-09 08:05:12 -0800720 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700721 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
722 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800723
Tejun Heof12c74c2015-08-18 14:55:23 -0700724 if (!pos_blkg->online)
725 continue;
726
727 if (pol)
728 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
729 else
730 stat = (void *)blkg + off;
731
732 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800733 }
734 rcu_read_unlock();
735
736 return sum;
737}
738EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
739
740/**
741 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700742 * @blkg: blkg of interest
743 * @pol: blkcg_policy which contains the blkg_rwstat
744 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800745 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700746 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
747 * online descendants and their aux counts. The caller must be holding the
748 * queue lock for online tests.
749 *
750 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
751 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800752 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700753struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
754 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800755{
Tejun Heo16b3de62013-01-09 08:05:12 -0800756 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400757 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400758 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800759 int i;
760
Tejun Heof12c74c2015-08-18 14:55:23 -0700761 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800762
Tejun Heo16b3de62013-01-09 08:05:12 -0800763 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700764 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700765 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800766
767 if (!pos_blkg->online)
768 continue;
769
Tejun Heof12c74c2015-08-18 14:55:23 -0700770 if (pol)
771 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
772 else
773 rwstat = (void *)pos_blkg + off;
774
Tejun Heo16b3de62013-01-09 08:05:12 -0800775 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700776 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
777 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
778 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800779 }
780 rcu_read_unlock();
781
782 return sum;
783}
784EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
785
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600786/* Performs queue bypass and policy enabled checks then looks up blkg. */
787static struct blkcg_gq *blkg_lookup_check(struct blkcg *blkcg,
788 const struct blkcg_policy *pol,
789 struct request_queue *q)
790{
791 WARN_ON_ONCE(!rcu_read_lock_held());
792 lockdep_assert_held(q->queue_lock);
793
794 if (!blkcg_policy_enabled(q, pol))
795 return ERR_PTR(-EOPNOTSUPP);
796
797 /*
798 * This could be the first entry point of blkcg implementation and
799 * we shouldn't allow anything to go through for a bypassing queue.
800 */
801 if (unlikely(blk_queue_bypass(q)))
802 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
803
804 return __blkg_lookup(blkcg, q, true /* update_hint */);
805}
806
Tejun Heo16b3de62013-01-09 08:05:12 -0800807/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700808 * blkg_conf_prep - parse and prepare for per-blkg config update
809 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700810 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700811 * @input: input string
812 * @ctx: blkg_conf_ctx to be filled
813 *
814 * Parse per-blkg config update from @input and initialize @ctx with the
Tejun Heo36aa9e52015-08-18 14:55:31 -0700815 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
816 * part of @input following MAJ:MIN. This function returns with RCU read
817 * lock and queue lock held and must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700818 */
Tejun Heo3c798392012-04-16 13:57:25 -0700819int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
Tejun Heo36aa9e52015-08-18 14:55:31 -0700820 char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700821 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800822{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700823 struct gendisk *disk;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600824 struct request_queue *q;
Tejun Heo3c798392012-04-16 13:57:25 -0700825 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700826 unsigned int major, minor;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700827 int key_len, part, ret;
828 char *body;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800829
Tejun Heo36aa9e52015-08-18 14:55:31 -0700830 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
Tejun Heo726fa692012-04-01 14:38:43 -0700831 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700832
Tejun Heo36aa9e52015-08-18 14:55:31 -0700833 body = input + key_len;
834 if (!isspace(*body))
835 return -EINVAL;
836 body = skip_spaces(body);
837
Tejun Heo726fa692012-04-01 14:38:43 -0700838 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400839 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700840 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400841 if (part) {
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600842 ret = -ENODEV;
843 goto fail;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400844 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800845
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600846 q = disk->queue;
847
Tejun Heoe56da7e2012-03-05 13:15:07 -0800848 rcu_read_lock();
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600849 spin_lock_irq(q->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700850
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600851 blkg = blkg_lookup_check(blkcg, pol, q);
Tejun Heo4bfd4822012-03-05 13:15:08 -0800852 if (IS_ERR(blkg)) {
853 ret = PTR_ERR(blkg);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600854 goto fail_unlock;
Vivek Goyal062a6442010-09-15 17:06:33 -0400855 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800856
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600857 if (blkg)
858 goto success;
859
860 /*
861 * Create blkgs walking down from blkcg_root to @blkcg, so that all
862 * non-root blkgs have access to their parents.
863 */
864 while (true) {
865 struct blkcg *pos = blkcg;
866 struct blkcg *parent;
867 struct blkcg_gq *new_blkg;
868
869 parent = blkcg_parent(blkcg);
870 while (parent && !__blkg_lookup(parent, q, false)) {
871 pos = parent;
872 parent = blkcg_parent(parent);
873 }
874
875 /* Drop locks to do new blkg allocation with GFP_KERNEL. */
876 spin_unlock_irq(q->queue_lock);
877 rcu_read_unlock();
878
879 new_blkg = blkg_alloc(pos, q, GFP_KERNEL);
880 if (unlikely(!new_blkg)) {
881 ret = -ENOMEM;
882 goto fail;
883 }
884
885 rcu_read_lock();
886 spin_lock_irq(q->queue_lock);
887
888 blkg = blkg_lookup_check(pos, pol, q);
889 if (IS_ERR(blkg)) {
890 ret = PTR_ERR(blkg);
891 goto fail_unlock;
892 }
893
894 if (blkg) {
895 blkg_free(new_blkg);
896 } else {
897 blkg = blkg_create(pos, q, new_blkg);
898 if (unlikely(IS_ERR(blkg))) {
899 ret = PTR_ERR(blkg);
900 goto fail_unlock;
901 }
902 }
903
904 if (pos == blkcg)
905 goto success;
906 }
907success:
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700908 ctx->disk = disk;
909 ctx->blkg = blkg;
Tejun Heo36aa9e52015-08-18 14:55:31 -0700910 ctx->body = body;
Tejun Heo726fa692012-04-01 14:38:43 -0700911 return 0;
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600912
913fail_unlock:
914 spin_unlock_irq(q->queue_lock);
915 rcu_read_unlock();
916fail:
Jan Kara9df6c292018-02-26 13:01:39 +0100917 put_disk_and_module(disk);
Tahsin Erdogan457e490f2017-03-29 11:27:19 -0600918 /*
919 * If queue was bypassing, we should retry. Do so after a
920 * short msleep(). It isn't strictly necessary but queue
921 * can be bypassing for some time and it's always nice to
922 * avoid busy looping.
923 */
924 if (ret == -EBUSY) {
925 msleep(10);
926 ret = restart_syscall();
927 }
928 return ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800929}
Tejun Heo829fdb52012-04-01 14:38:43 -0700930EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800931
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700932/**
933 * blkg_conf_finish - finish up per-blkg config update
934 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
935 *
936 * Finish up after per-blkg config update. This function must be paired
937 * with blkg_conf_prep().
938 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700939void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700940 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800941{
Tejun Heoda8b0662012-04-13 13:11:29 -0700942 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700943 rcu_read_unlock();
Jan Kara9df6c292018-02-26 13:01:39 +0100944 put_disk_and_module(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800945}
Tejun Heo829fdb52012-04-01 14:38:43 -0700946EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800947
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700948static int blkcg_print_stat(struct seq_file *sf, void *v)
949{
950 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
951 struct blkcg_gq *blkg;
952
953 rcu_read_lock();
954
955 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
956 const char *dname;
957 struct blkg_rwstat rwstat;
958 u64 rbytes, wbytes, rios, wios;
959
960 dname = blkg_dev_name(blkg);
961 if (!dname)
962 continue;
963
964 spin_lock_irq(blkg->q->queue_lock);
965
966 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
967 offsetof(struct blkcg_gq, stat_bytes));
968 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
969 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
970
971 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
972 offsetof(struct blkcg_gq, stat_ios));
973 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
974 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
975
976 spin_unlock_irq(blkg->q->queue_lock);
977
978 if (rbytes || wbytes || rios || wios)
979 seq_printf(sf, "%s rbytes=%llu wbytes=%llu rios=%llu wios=%llu\n",
980 dname, rbytes, wbytes, rios, wios);
981 }
982
983 rcu_read_unlock();
984 return 0;
985}
986
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200987static struct cftype blkcg_files[] = {
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700988 {
989 .name = "stat",
Tejun Heoca0752c2015-10-22 09:48:37 +0900990 .flags = CFTYPE_NOT_ON_ROOT,
Tejun Heo2ee867dc2015-08-18 14:55:34 -0700991 .seq_show = blkcg_print_stat,
992 },
993 { } /* terminate */
994};
995
Bart Van Asschee1f3b942016-06-14 17:04:32 +0200996static struct cftype blkcg_legacy_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500997 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200998 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700999 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -05001000 },
Tejun Heo4baf6e32012-04-01 12:09:55 -07001001 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -05001002};
1003
Tejun Heo9f13ef62012-03-05 13:15:21 -08001004/**
Tejun Heo92fb9742012-11-19 08:13:38 -08001005 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -04001006 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -08001007 *
Tejun Heoeb954192013-08-08 20:11:23 -04001008 * This function is called when @css is about to go away and responsible
Joseph Qi4c699482018-03-16 14:51:27 +08001009 * for offlining all blkgs pd and killing all wbs associated with @css.
1010 * blkgs pd offline should be done while holding both q and blkcg locks.
1011 * As blkcg lock is nested inside q lock, this function performs reverse
1012 * double lock dancing.
Tejun Heo9f13ef62012-03-05 13:15:21 -08001013 *
1014 * This is the blkcg counterpart of ioc_release_fn().
1015 */
Tejun Heoeb954192013-08-08 20:11:23 -04001016static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001017{
Tejun Heoeb954192013-08-08 20:11:23 -04001018 struct blkcg *blkcg = css_to_blkcg(css);
Joseph Qi4c699482018-03-16 14:51:27 +08001019 struct blkcg_gq *blkg;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001020
Tejun Heo9f13ef62012-03-05 13:15:21 -08001021 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001022
Joseph Qi4c699482018-03-16 14:51:27 +08001023 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heoc875f4d2012-03-05 13:15:22 -08001024 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -05001025
Tejun Heo9f13ef62012-03-05 13:15:21 -08001026 if (spin_trylock(q->queue_lock)) {
Joseph Qi4c699482018-03-16 14:51:27 +08001027 blkg_pd_offline(blkg);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001028 spin_unlock(q->queue_lock);
1029 } else {
1030 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -08001031 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +02001032 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +02001033 }
Tejun Heo9f13ef62012-03-05 13:15:21 -08001034 }
Jens Axboe0f3942a2010-05-03 14:28:55 +02001035
Tejun Heo9f13ef62012-03-05 13:15:21 -08001036 spin_unlock_irq(&blkcg->lock);
Tejun Heo52ebea72015-05-22 17:13:37 -04001037
1038 wb_blkcg_offline(blkcg);
Tejun Heo7ee9c562012-03-05 13:15:11 -08001039}
1040
Joseph Qi4c699482018-03-16 14:51:27 +08001041/**
1042 * blkcg_destroy_all_blkgs - destroy all blkgs associated with a blkcg
1043 * @blkcg: blkcg of interest
1044 *
1045 * This function is called when blkcg css is about to free and responsible for
1046 * destroying all blkgs associated with @blkcg.
1047 * blkgs should be removed while holding both q and blkcg locks. As blkcg lock
1048 * is nested inside q lock, this function performs reverse double lock dancing.
1049 */
1050static void blkcg_destroy_all_blkgs(struct blkcg *blkcg)
1051{
1052 spin_lock_irq(&blkcg->lock);
1053 while (!hlist_empty(&blkcg->blkg_list)) {
1054 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
1055 struct blkcg_gq,
1056 blkcg_node);
1057 struct request_queue *q = blkg->q;
1058
1059 if (spin_trylock(q->queue_lock)) {
1060 blkg_destroy(blkg);
1061 spin_unlock(q->queue_lock);
1062 } else {
1063 spin_unlock_irq(&blkcg->lock);
1064 cpu_relax();
1065 spin_lock_irq(&blkcg->lock);
1066 }
1067 }
1068 spin_unlock_irq(&blkcg->lock);
1069}
1070
Tejun Heoeb954192013-08-08 20:11:23 -04001071static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -08001072{
Tejun Heoeb954192013-08-08 20:11:23 -04001073 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -07001074 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -08001075
Joseph Qi4c699482018-03-16 14:51:27 +08001076 blkcg_destroy_all_blkgs(blkcg);
1077
Tejun Heo7876f932015-07-09 16:39:49 -04001078 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001079
Tejun Heo7876f932015-07-09 16:39:49 -04001080 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -04001081
Tejun Heobc915e62015-08-18 14:55:08 -07001082 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001083 if (blkcg->cpd[i])
1084 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1085
1086 mutex_unlock(&blkcg_pol_mutex);
1087
Tejun Heobc915e62015-08-18 14:55:08 -07001088 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001089}
1090
Tejun Heoeb954192013-08-08 20:11:23 -04001091static struct cgroup_subsys_state *
1092blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001093{
Tejun Heo3c798392012-04-16 13:57:25 -07001094 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001095 struct cgroup_subsys_state *ret;
1096 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001097
Tejun Heo7876f932015-07-09 16:39:49 -04001098 mutex_lock(&blkcg_pol_mutex);
1099
Tejun Heoeb954192013-08-08 20:11:23 -04001100 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -07001101 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -07001102 } else {
1103 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
1104 if (!blkcg) {
1105 ret = ERR_PTR(-ENOMEM);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001106 goto unlock;
Tejun Heobc915e62015-08-18 14:55:08 -07001107 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001108 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001109
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001110 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1111 struct blkcg_policy *pol = blkcg_policy[i];
1112 struct blkcg_policy_data *cpd;
1113
1114 /*
1115 * If the policy hasn't been attached yet, wait for it
1116 * to be attached before doing anything else. Otherwise,
1117 * check if the policy requires any specific per-cgroup
1118 * data: if it does, allocate and initialize it.
1119 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001120 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001121 continue;
1122
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001123 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001124 if (!cpd) {
1125 ret = ERR_PTR(-ENOMEM);
1126 goto free_pd_blkcg;
1127 }
Tejun Heo81437642015-08-18 14:55:15 -07001128 blkcg->cpd[i] = cpd;
1129 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001130 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001131 if (pol->cpd_init_fn)
1132 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001133 }
1134
Vivek Goyal31e4c282009-12-03 12:59:42 -05001135 spin_lock_init(&blkcg->lock);
Tejun Heoe00f4f42016-11-21 18:03:32 -05001136 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001137 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -04001138#ifdef CONFIG_CGROUP_WRITEBACK
1139 INIT_LIST_HEAD(&blkcg->cgwb_list);
1140#endif
Tejun Heo7876f932015-07-09 16:39:49 -04001141 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1142
1143 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -05001144 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001145
1146free_pd_blkcg:
1147 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001148 if (blkcg->cpd[i])
1149 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
weiping zhang4c18c9e2017-08-25 23:49:32 +08001150
1151 if (blkcg != &blkcg_root)
1152 kfree(blkcg);
1153unlock:
Tejun Heo7876f932015-07-09 16:39:49 -04001154 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +02001155 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001156}
1157
Tejun Heo5efd6112012-03-05 13:15:12 -08001158/**
1159 * blkcg_init_queue - initialize blkcg part of request queue
1160 * @q: request_queue to initialize
1161 *
1162 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1163 * part of new request_queue @q.
1164 *
1165 * RETURNS:
1166 * 0 on success, -errno on failure.
1167 */
1168int blkcg_init_queue(struct request_queue *q)
1169{
Jens Axboed708f0d2017-03-29 11:25:48 -06001170 struct blkcg_gq *new_blkg, *blkg;
1171 bool preloaded;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001172 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001173
Jens Axboed708f0d2017-03-29 11:25:48 -06001174 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1175 if (!new_blkg)
1176 return -ENOMEM;
1177
1178 preloaded = !radix_tree_preload(GFP_KERNEL);
1179
Jiang Biaobea54882018-04-19 12:04:26 +08001180 /* Make sure the root blkg exists. */
Tejun Heoec13b1d2015-05-22 17:13:19 -04001181 rcu_read_lock();
1182 spin_lock_irq(q->queue_lock);
Jens Axboed708f0d2017-03-29 11:25:48 -06001183 blkg = blkg_create(&blkcg_root, q, new_blkg);
Jiang Biao901932a2018-04-19 12:06:09 +08001184 if (IS_ERR(blkg))
1185 goto err_unlock;
1186 q->root_blkg = blkg;
1187 q->root_rl.blkg = blkg;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001188 spin_unlock_irq(q->queue_lock);
1189 rcu_read_unlock();
1190
Jens Axboed708f0d2017-03-29 11:25:48 -06001191 if (preloaded)
1192 radix_tree_preload_end();
1193
Tejun Heoec13b1d2015-05-22 17:13:19 -04001194 ret = blk_throtl_init(q);
1195 if (ret) {
1196 spin_lock_irq(q->queue_lock);
1197 blkg_destroy_all(q);
1198 spin_unlock_irq(q->queue_lock);
1199 }
1200 return ret;
Jiang Biao901932a2018-04-19 12:06:09 +08001201
1202err_unlock:
1203 spin_unlock_irq(q->queue_lock);
1204 rcu_read_unlock();
1205 if (preloaded)
1206 radix_tree_preload_end();
1207 return PTR_ERR(blkg);
Tejun Heo5efd6112012-03-05 13:15:12 -08001208}
1209
1210/**
1211 * blkcg_drain_queue - drain blkcg part of request_queue
1212 * @q: request_queue to drain
1213 *
1214 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1215 */
1216void blkcg_drain_queue(struct request_queue *q)
1217{
1218 lockdep_assert_held(q->queue_lock);
1219
Tejun Heo0b462c82014-07-05 18:43:21 -04001220 /*
1221 * @q could be exiting and already have destroyed all blkgs as
1222 * indicated by NULL root_blkg. If so, don't confuse policies.
1223 */
1224 if (!q->root_blkg)
1225 return;
1226
Tejun Heo5efd6112012-03-05 13:15:12 -08001227 blk_throtl_drain(q);
1228}
1229
1230/**
1231 * blkcg_exit_queue - exit and release blkcg part of request_queue
1232 * @q: request_queue being released
1233 *
1234 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1235 */
1236void blkcg_exit_queue(struct request_queue *q)
1237{
Tejun Heo6d18b002012-04-13 13:11:35 -07001238 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -07001239 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -07001240 spin_unlock_irq(q->queue_lock);
1241
Tejun Heo5efd6112012-03-05 13:15:12 -08001242 blk_throtl_exit(q);
1243}
1244
Vivek Goyal31e4c282009-12-03 12:59:42 -05001245/*
1246 * We cannot support shared io contexts, as we have no mean to support
1247 * two tasks with the same ioc in two different groups without major rework
1248 * of the main cic data structures. For now we allow a task to change
1249 * its cgroup only if it's the only owner of its ioc.
1250 */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001251static int blkcg_can_attach(struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001252{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001253 struct task_struct *task;
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001254 struct cgroup_subsys_state *dst_css;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001255 struct io_context *ioc;
1256 int ret = 0;
1257
1258 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo1f7dd3e52015-12-03 10:18:21 -05001259 cgroup_taskset_for_each(task, dst_css, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001260 task_lock(task);
1261 ioc = task->io_context;
1262 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1263 ret = -EINVAL;
1264 task_unlock(task);
1265 if (ret)
1266 break;
1267 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001268 return ret;
1269}
1270
Tejun Heo69d7fde2015-08-18 14:55:36 -07001271static void blkcg_bind(struct cgroup_subsys_state *root_css)
1272{
1273 int i;
1274
1275 mutex_lock(&blkcg_pol_mutex);
1276
1277 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1278 struct blkcg_policy *pol = blkcg_policy[i];
1279 struct blkcg *blkcg;
1280
1281 if (!pol || !pol->cpd_bind_fn)
1282 continue;
1283
1284 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1285 if (blkcg->cpd[pol->plid])
1286 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1287 }
1288 mutex_unlock(&blkcg_pol_mutex);
1289}
1290
Tejun Heoc165b3e2015-08-18 14:55:29 -07001291struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001292 .css_alloc = blkcg_css_alloc,
1293 .css_offline = blkcg_css_offline,
1294 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001295 .can_attach = blkcg_can_attach,
Tejun Heo69d7fde2015-08-18 14:55:36 -07001296 .bind = blkcg_bind,
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001297 .dfl_cftypes = blkcg_files,
Tejun Heo880f50e2015-08-18 14:55:30 -07001298 .legacy_cftypes = blkcg_legacy_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001299 .legacy_name = "blkio",
Tejun Heo1ced9532014-07-08 18:02:57 -04001300#ifdef CONFIG_MEMCG
1301 /*
1302 * This ensures that, if available, memcg is automatically enabled
1303 * together on the default hierarchy so that the owner cgroup can
1304 * be retrieved from writeback pages.
1305 */
1306 .depends_on = 1 << memory_cgrp_id,
1307#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001308};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001309EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001310
Tejun Heo8bd435b2012-04-13 13:11:28 -07001311/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001312 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1313 * @q: request_queue of interest
1314 * @pol: blkcg policy to activate
1315 *
1316 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1317 * bypass mode to populate its blkgs with policy_data for @pol.
1318 *
1319 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1320 * from IO path. Update of each blkg is protected by both queue and blkcg
1321 * locks so that holding either lock and testing blkcg_policy_enabled() is
1322 * always enough for dereferencing policy data.
1323 *
1324 * The caller is responsible for synchronizing [de]activations and policy
1325 * [un]registerations. Returns 0 on success, -errno on failure.
1326 */
1327int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001328 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001329{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001330 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001331 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001332 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001333
1334 if (blkcg_policy_enabled(q, pol))
1335 return 0;
1336
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001337 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001338 blk_mq_freeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001339 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001340 blk_queue_bypass_start(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001341pd_prealloc:
1342 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001343 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001344 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001345 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001346 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001347 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001348 }
1349
Tejun Heoa2b16932012-04-13 13:11:33 -07001350 spin_lock_irq(q->queue_lock);
1351
1352 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001353 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001354
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001355 if (blkg->pd[pol->plid])
1356 continue;
1357
Tejun Heoe00f4f42016-11-21 18:03:32 -05001358 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001359 if (!pd)
1360 swap(pd, pd_prealloc);
1361 if (!pd) {
1362 spin_unlock_irq(q->queue_lock);
1363 goto pd_prealloc;
1364 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001365
1366 blkg->pd[pol->plid] = pd;
1367 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001368 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001369 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001370 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001371 }
1372
1373 __set_bit(pol->plid, q->blkcg_pols);
1374 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001375
Tejun Heoa2b16932012-04-13 13:11:33 -07001376 spin_unlock_irq(q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001377out_bypass_end:
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001378 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001379 blk_mq_unfreeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001380 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001381 blk_queue_bypass_end(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001382 if (pd_prealloc)
1383 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001384 return ret;
1385}
1386EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1387
1388/**
1389 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1390 * @q: request_queue of interest
1391 * @pol: blkcg policy to deactivate
1392 *
1393 * Deactivate @pol on @q. Follows the same synchronization rules as
1394 * blkcg_activate_policy().
1395 */
1396void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001397 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001398{
Tejun Heo3c798392012-04-16 13:57:25 -07001399 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001400
1401 if (!blkcg_policy_enabled(q, pol))
1402 return;
1403
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001404 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001405 blk_mq_freeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001406 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001407 blk_queue_bypass_start(q);
1408
Tejun Heoa2b16932012-04-13 13:11:33 -07001409 spin_lock_irq(q->queue_lock);
1410
1411 __clear_bit(pol->plid, q->blkcg_pols);
1412
1413 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo001bea72015-08-18 14:55:11 -07001414 if (blkg->pd[pol->plid]) {
Joseph Qi4c699482018-03-16 14:51:27 +08001415 if (!blkg->pd[pol->plid]->offline &&
1416 pol->pd_offline_fn) {
Tejun Heoa9520cd2015-08-18 14:55:14 -07001417 pol->pd_offline_fn(blkg->pd[pol->plid]);
Joseph Qi4c699482018-03-16 14:51:27 +08001418 blkg->pd[pol->plid]->offline = true;
1419 }
Tejun Heo001bea72015-08-18 14:55:11 -07001420 pol->pd_free_fn(blkg->pd[pol->plid]);
1421 blkg->pd[pol->plid] = NULL;
1422 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001423 }
1424
1425 spin_unlock_irq(q->queue_lock);
Jens Axboebd166ef2017-01-17 06:03:22 -07001426
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001427 if (q->mq_ops)
Jens Axboebd166ef2017-01-17 06:03:22 -07001428 blk_mq_unfreeze_queue(q);
Jens Axboe38dbb7d2017-01-18 15:37:27 -07001429 else
Jens Axboebd166ef2017-01-17 06:03:22 -07001430 blk_queue_bypass_end(q);
Tejun Heoa2b16932012-04-13 13:11:33 -07001431}
1432EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1433
1434/**
Tejun Heo3c798392012-04-16 13:57:25 -07001435 * blkcg_policy_register - register a blkcg policy
1436 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001437 *
Tejun Heo3c798392012-04-16 13:57:25 -07001438 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1439 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001440 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001441int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001442{
Tejun Heo06b285b2015-07-09 16:39:50 -04001443 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001444 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001445
Tejun Heo838f13b2015-07-09 16:39:47 -04001446 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001447 mutex_lock(&blkcg_pol_mutex);
1448
Tejun Heo8bd435b2012-04-13 13:11:28 -07001449 /* find an empty slot */
1450 ret = -ENOSPC;
1451 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001452 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001453 break;
1454 if (i >= BLKCG_MAX_POLS)
Tejun Heo838f13b2015-07-09 16:39:47 -04001455 goto err_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001456
weiping zhange8401072017-10-17 23:56:21 +08001457 /* Make sure cpd/pd_alloc_fn and cpd/pd_free_fn in pairs */
1458 if ((!pol->cpd_alloc_fn ^ !pol->cpd_free_fn) ||
1459 (!pol->pd_alloc_fn ^ !pol->pd_free_fn))
1460 goto err_unlock;
1461
Tejun Heo06b285b2015-07-09 16:39:50 -04001462 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001463 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001464 blkcg_policy[pol->plid] = pol;
1465
1466 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001467 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001468 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1469 struct blkcg_policy_data *cpd;
1470
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001471 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Bart Van Asschebbb427e2016-09-29 08:33:30 -07001472 if (!cpd)
Tejun Heo06b285b2015-07-09 16:39:50 -04001473 goto err_free_cpds;
Tejun Heo06b285b2015-07-09 16:39:50 -04001474
Tejun Heo81437642015-08-18 14:55:15 -07001475 blkcg->cpd[pol->plid] = cpd;
1476 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001477 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001478 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001479 }
1480 }
1481
Tejun Heo838f13b2015-07-09 16:39:47 -04001482 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001483
Tejun Heo8bd435b2012-04-13 13:11:28 -07001484 /* everything is in place, add intf files for the new policy */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001485 if (pol->dfl_cftypes)
1486 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1487 pol->dfl_cftypes));
Tejun Heo880f50e2015-08-18 14:55:30 -07001488 if (pol->legacy_cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001489 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo880f50e2015-08-18 14:55:30 -07001490 pol->legacy_cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001491 mutex_unlock(&blkcg_pol_register_mutex);
1492 return 0;
1493
Tejun Heo06b285b2015-07-09 16:39:50 -04001494err_free_cpds:
weiping zhang58a9edc2017-10-10 22:53:46 +08001495 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001496 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001497 if (blkcg->cpd[pol->plid]) {
1498 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1499 blkcg->cpd[pol->plid] = NULL;
1500 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001501 }
1502 }
1503 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001504err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001505 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001506 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001507 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001508}
Tejun Heo3c798392012-04-16 13:57:25 -07001509EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001510
Tejun Heo8bd435b2012-04-13 13:11:28 -07001511/**
Tejun Heo3c798392012-04-16 13:57:25 -07001512 * blkcg_policy_unregister - unregister a blkcg policy
1513 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001514 *
Tejun Heo3c798392012-04-16 13:57:25 -07001515 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001516 */
Tejun Heo3c798392012-04-16 13:57:25 -07001517void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001518{
Tejun Heo06b285b2015-07-09 16:39:50 -04001519 struct blkcg *blkcg;
1520
Tejun Heo838f13b2015-07-09 16:39:47 -04001521 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001522
Tejun Heo3c798392012-04-16 13:57:25 -07001523 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001524 goto out_unlock;
1525
1526 /* kill the intf files first */
Tejun Heo2ee867dc2015-08-18 14:55:34 -07001527 if (pol->dfl_cftypes)
1528 cgroup_rm_cftypes(pol->dfl_cftypes);
Tejun Heo880f50e2015-08-18 14:55:30 -07001529 if (pol->legacy_cftypes)
1530 cgroup_rm_cftypes(pol->legacy_cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001531
Tejun Heo06b285b2015-07-09 16:39:50 -04001532 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001533 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001534
weiping zhang58a9edc2017-10-10 22:53:46 +08001535 if (pol->cpd_free_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001536 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001537 if (blkcg->cpd[pol->plid]) {
1538 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1539 blkcg->cpd[pol->plid] = NULL;
1540 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001541 }
1542 }
Tejun Heo3c798392012-04-16 13:57:25 -07001543 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001544
Tejun Heobc0d6502012-04-13 13:11:26 -07001545 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001546out_unlock:
1547 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001548}
Tejun Heo3c798392012-04-16 13:57:25 -07001549EXPORT_SYMBOL_GPL(blkcg_policy_unregister);