blob: fc197ea4c992d06e5b6e19b28fe64027cc3b8d49 [file] [log] [blame]
Vivek Goyal31e4c282009-12-03 12:59:42 -05001/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
Arianna Avanzinie48453c2015-06-05 23:38:42 +020012 *
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
Vivek Goyal31e4c282009-12-03 12:59:42 -050016 */
17#include <linux/ioprio.h>
Vivek Goyal22084192009-12-03 12:59:49 -050018#include <linux/kdev_t.h>
Vivek Goyal9d6a9862009-12-04 10:36:41 -050019#include <linux/module.h>
Stephen Rothwellaccee782009-12-07 19:29:39 +110020#include <linux/err.h>
Divyesh Shah91952912010-04-01 15:01:41 -070021#include <linux/blkdev.h>
Tejun Heo52ebea72015-05-22 17:13:37 -040022#include <linux/backing-dev.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Gui Jianfeng34d0f172010-04-13 16:05:49 +080024#include <linux/genhd.h>
Tejun Heo72e06c22012-03-05 13:15:00 -080025#include <linux/delay.h>
Tejun Heo9a9e8a22012-03-19 15:10:56 -070026#include <linux/atomic.h>
Tejun Heoeea8f412015-05-22 17:13:17 -040027#include <linux/blk-cgroup.h>
Tejun Heo5efd6112012-03-05 13:15:12 -080028#include "blk.h"
Vivek Goyal3e252062009-12-04 10:36:42 -050029
Divyesh Shah84c124d2010-04-09 08:31:19 +020030#define MAX_KEY_LEN 100
31
Tejun Heo838f13b2015-07-09 16:39:47 -040032/*
33 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
34 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
35 * policy [un]register operations including cgroup file additions /
36 * removals. Putting cgroup file registration outside blkcg_pol_mutex
37 * allows grabbing it from cgroup callbacks.
38 */
39static DEFINE_MUTEX(blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -070040static DEFINE_MUTEX(blkcg_pol_mutex);
Tejun Heo923adde2012-03-05 13:15:13 -080041
Arianna Avanzinie48453c2015-06-05 23:38:42 +020042struct blkcg blkcg_root;
Tejun Heo3c798392012-04-16 13:57:25 -070043EXPORT_SYMBOL_GPL(blkcg_root);
Vivek Goyal9d6a9862009-12-04 10:36:41 -050044
Tejun Heo496d5e72015-05-22 17:13:21 -040045struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
46
Tejun Heo3c798392012-04-16 13:57:25 -070047static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
Tejun Heo035d10b2012-03-05 13:15:04 -080048
Tejun Heo7876f932015-07-09 16:39:49 -040049static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
50
Tejun Heoa2b16932012-04-13 13:11:33 -070051static bool blkcg_policy_enabled(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -070052 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -070053{
54 return pol && test_bit(pol->plid, q->blkcg_pols);
55}
56
Tejun Heo03814112012-03-05 13:15:14 -080057/**
58 * blkg_free - free a blkg
59 * @blkg: blkg to free
60 *
61 * Free @blkg which may be partially allocated.
62 */
Tejun Heo3c798392012-04-16 13:57:25 -070063static void blkg_free(struct blkcg_gq *blkg)
Tejun Heo03814112012-03-05 13:15:14 -080064{
Tejun Heoe8989fa2012-03-05 13:15:20 -080065 int i;
Tejun Heo549d3aa2012-03-05 13:15:16 -080066
67 if (!blkg)
68 return;
69
Tejun Heodb613672013-05-14 13:52:31 -070070 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo001bea72015-08-18 14:55:11 -070071 if (blkg->pd[i])
72 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
Tejun Heoe8989fa2012-03-05 13:15:20 -080073
Tejun Heo994b7832015-08-18 14:55:07 -070074 if (blkg->blkcg != &blkcg_root)
75 blk_exit_rl(&blkg->rl);
Tejun Heo77ea7332015-08-18 14:55:24 -070076
77 blkg_rwstat_exit(&blkg->stat_ios);
78 blkg_rwstat_exit(&blkg->stat_bytes);
Tejun Heo549d3aa2012-03-05 13:15:16 -080079 kfree(blkg);
Tejun Heo03814112012-03-05 13:15:14 -080080}
81
82/**
83 * blkg_alloc - allocate a blkg
84 * @blkcg: block cgroup the new blkg is associated with
85 * @q: request_queue the new blkg is associated with
Tejun Heo15974992012-06-04 20:40:52 -070086 * @gfp_mask: allocation mask to use
Tejun Heo03814112012-03-05 13:15:14 -080087 *
Tejun Heoe8989fa2012-03-05 13:15:20 -080088 * Allocate a new blkg assocating @blkcg and @q.
Tejun Heo03814112012-03-05 13:15:14 -080089 */
Tejun Heo15974992012-06-04 20:40:52 -070090static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
91 gfp_t gfp_mask)
Tejun Heo03814112012-03-05 13:15:14 -080092{
Tejun Heo3c798392012-04-16 13:57:25 -070093 struct blkcg_gq *blkg;
Tejun Heoe8989fa2012-03-05 13:15:20 -080094 int i;
Tejun Heo03814112012-03-05 13:15:14 -080095
96 /* alloc and init base part */
Tejun Heo15974992012-06-04 20:40:52 -070097 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
Tejun Heo03814112012-03-05 13:15:14 -080098 if (!blkg)
99 return NULL;
100
Tejun Heo77ea7332015-08-18 14:55:24 -0700101 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
102 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
103 goto err_free;
104
Tejun Heoc875f4d2012-03-05 13:15:22 -0800105 blkg->q = q;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800106 INIT_LIST_HEAD(&blkg->q_node);
Tejun Heo03814112012-03-05 13:15:14 -0800107 blkg->blkcg = blkcg;
Tejun Heoa5049a82014-06-19 17:42:57 -0400108 atomic_set(&blkg->refcnt, 1);
Tejun Heo03814112012-03-05 13:15:14 -0800109
Tejun Heoa0516612012-06-26 15:05:44 -0700110 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
111 if (blkcg != &blkcg_root) {
112 if (blk_init_rl(&blkg->rl, q, gfp_mask))
113 goto err_free;
114 blkg->rl.blkg = blkg;
115 }
116
Tejun Heo8bd435b2012-04-13 13:11:28 -0700117 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700118 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heoe8989fa2012-03-05 13:15:20 -0800119 struct blkg_policy_data *pd;
Tejun Heo03814112012-03-05 13:15:14 -0800120
Tejun Heoa2b16932012-04-13 13:11:33 -0700121 if (!blkcg_policy_enabled(q, pol))
Tejun Heoe8989fa2012-03-05 13:15:20 -0800122 continue;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800123
Tejun Heoe8989fa2012-03-05 13:15:20 -0800124 /* alloc per-policy data and attach it to blkg */
Tejun Heo001bea72015-08-18 14:55:11 -0700125 pd = pol->pd_alloc_fn(gfp_mask, q->node);
Tejun Heoa0516612012-06-26 15:05:44 -0700126 if (!pd)
127 goto err_free;
Tejun Heo549d3aa2012-03-05 13:15:16 -0800128
Tejun Heoe8989fa2012-03-05 13:15:20 -0800129 blkg->pd[i] = pd;
130 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -0800131 pd->plid = i;
Tejun Heoe8989fa2012-03-05 13:15:20 -0800132 }
133
Tejun Heo03814112012-03-05 13:15:14 -0800134 return blkg;
Tejun Heoa0516612012-06-26 15:05:44 -0700135
136err_free:
137 blkg_free(blkg);
138 return NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800139}
140
Tejun Heo24f29042015-08-18 14:55:17 -0700141struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
142 struct request_queue *q, bool update_hint)
Tejun Heo80fd9972012-04-13 14:50:53 -0700143{
Tejun Heo3c798392012-04-16 13:57:25 -0700144 struct blkcg_gq *blkg;
Tejun Heo80fd9972012-04-13 14:50:53 -0700145
Tejun Heoa6371202012-04-19 16:29:24 -0700146 /*
Tejun Heo86cde6b2013-01-09 08:05:10 -0800147 * Hint didn't match. Look up from the radix tree. Note that the
148 * hint can only be updated under queue_lock as otherwise @blkg
149 * could have already been removed from blkg_tree. The caller is
150 * responsible for grabbing queue_lock if @update_hint.
Tejun Heoa6371202012-04-19 16:29:24 -0700151 */
152 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800153 if (blkg && blkg->q == q) {
154 if (update_hint) {
155 lockdep_assert_held(q->queue_lock);
156 rcu_assign_pointer(blkcg->blkg_hint, blkg);
157 }
Tejun Heoa6371202012-04-19 16:29:24 -0700158 return blkg;
Tejun Heo86cde6b2013-01-09 08:05:10 -0800159 }
Tejun Heoa6371202012-04-19 16:29:24 -0700160
Tejun Heo80fd9972012-04-13 14:50:53 -0700161 return NULL;
162}
Tejun Heoae118892015-08-18 14:55:20 -0700163EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
Tejun Heo80fd9972012-04-13 14:50:53 -0700164
Tejun Heo15974992012-06-04 20:40:52 -0700165/*
166 * If @new_blkg is %NULL, this function tries to allocate a new one as
Tejun Heod93a11f2015-08-18 14:55:01 -0700167 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
Tejun Heo15974992012-06-04 20:40:52 -0700168 */
Tejun Heo86cde6b2013-01-09 08:05:10 -0800169static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
170 struct request_queue *q,
171 struct blkcg_gq *new_blkg)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400172{
Tejun Heo3c798392012-04-16 13:57:25 -0700173 struct blkcg_gq *blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400174 struct bdi_writeback_congested *wb_congested;
Tejun Heof427d902013-01-09 08:05:12 -0800175 int i, ret;
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400176
Tejun Heocd1604f2012-03-05 13:15:06 -0800177 WARN_ON_ONCE(!rcu_read_lock_held());
178 lockdep_assert_held(q->queue_lock);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500179
Tejun Heo7ee9c562012-03-05 13:15:11 -0800180 /* blkg holds a reference to blkcg */
Tejun Heoec903c02014-05-13 12:11:01 -0400181 if (!css_tryget_online(&blkcg->css)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700182 ret = -ENODEV;
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800183 goto err_free_blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700184 }
Tejun Heocd1604f2012-03-05 13:15:06 -0800185
Tejun Heoce7acfe2015-05-22 17:13:38 -0400186 wb_congested = wb_congested_get_create(&q->backing_dev_info,
Tejun Heod93a11f2015-08-18 14:55:01 -0700187 blkcg->css.id, GFP_NOWAIT);
Tejun Heoce7acfe2015-05-22 17:13:38 -0400188 if (!wb_congested) {
189 ret = -ENOMEM;
190 goto err_put_css;
191 }
192
Tejun Heo496fb782012-04-19 16:29:23 -0700193 /* allocate */
Tejun Heo15974992012-06-04 20:40:52 -0700194 if (!new_blkg) {
Tejun Heod93a11f2015-08-18 14:55:01 -0700195 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT);
Tejun Heo15974992012-06-04 20:40:52 -0700196 if (unlikely(!new_blkg)) {
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800197 ret = -ENOMEM;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400198 goto err_put_congested;
Tejun Heo15974992012-06-04 20:40:52 -0700199 }
200 }
201 blkg = new_blkg;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400202 blkg->wb_congested = wb_congested;
Tejun Heocd1604f2012-03-05 13:15:06 -0800203
Tejun Heodb613672013-05-14 13:52:31 -0700204 /* link parent */
Tejun Heo3c547862013-01-09 08:05:10 -0800205 if (blkcg_parent(blkcg)) {
206 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
207 if (WARN_ON_ONCE(!blkg->parent)) {
Tejun Heo20386ce2015-08-18 14:55:28 -0700208 ret = -ENODEV;
Tejun Heoce7acfe2015-05-22 17:13:38 -0400209 goto err_put_congested;
Tejun Heo3c547862013-01-09 08:05:10 -0800210 }
211 blkg_get(blkg->parent);
212 }
213
Tejun Heodb613672013-05-14 13:52:31 -0700214 /* invoke per-policy init */
215 for (i = 0; i < BLKCG_MAX_POLS; i++) {
216 struct blkcg_policy *pol = blkcg_policy[i];
217
218 if (blkg->pd[i] && pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700219 pol->pd_init_fn(blkg->pd[i]);
Tejun Heodb613672013-05-14 13:52:31 -0700220 }
221
222 /* insert */
Tejun Heoa6371202012-04-19 16:29:24 -0700223 spin_lock(&blkcg->lock);
224 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
225 if (likely(!ret)) {
226 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
227 list_add(&blkg->q_node, &q->blkg_list);
Tejun Heof427d902013-01-09 08:05:12 -0800228
229 for (i = 0; i < BLKCG_MAX_POLS; i++) {
230 struct blkcg_policy *pol = blkcg_policy[i];
231
232 if (blkg->pd[i] && pol->pd_online_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700233 pol->pd_online_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800234 }
Tejun Heoa6371202012-04-19 16:29:24 -0700235 }
Tejun Heof427d902013-01-09 08:05:12 -0800236 blkg->online = true;
Tejun Heoa6371202012-04-19 16:29:24 -0700237 spin_unlock(&blkcg->lock);
238
Tejun Heoec13b1d2015-05-22 17:13:19 -0400239 if (!ret)
Tejun Heoa6371202012-04-19 16:29:24 -0700240 return blkg;
Tejun Heo15974992012-06-04 20:40:52 -0700241
Tejun Heo3c547862013-01-09 08:05:10 -0800242 /* @blkg failed fully initialized, use the usual release path */
243 blkg_put(blkg);
244 return ERR_PTR(ret);
245
Tejun Heoce7acfe2015-05-22 17:13:38 -0400246err_put_congested:
247 wb_congested_put(wb_congested);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800248err_put_css:
Tejun Heo496fb782012-04-19 16:29:23 -0700249 css_put(&blkcg->css);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800250err_free_blkg:
Tejun Heo15974992012-06-04 20:40:52 -0700251 blkg_free(new_blkg);
Tejun Heo93e6d5d2013-01-09 08:05:10 -0800252 return ERR_PTR(ret);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500253}
Tejun Heo3c96cb32012-04-13 13:11:34 -0700254
Tejun Heo86cde6b2013-01-09 08:05:10 -0800255/**
256 * blkg_lookup_create - lookup blkg, try to create one if not there
257 * @blkcg: blkcg of interest
258 * @q: request_queue of interest
259 *
260 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
Tejun Heo3c547862013-01-09 08:05:10 -0800261 * create one. blkg creation is performed recursively from blkcg_root such
262 * that all non-root blkg's have access to the parent blkg. This function
263 * should be called under RCU read lock and @q->queue_lock.
Tejun Heo86cde6b2013-01-09 08:05:10 -0800264 *
265 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
266 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
267 * dead and bypassing, returns ERR_PTR(-EBUSY).
268 */
Tejun Heo3c798392012-04-16 13:57:25 -0700269struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
270 struct request_queue *q)
Tejun Heo3c96cb32012-04-13 13:11:34 -0700271{
Tejun Heo86cde6b2013-01-09 08:05:10 -0800272 struct blkcg_gq *blkg;
273
274 WARN_ON_ONCE(!rcu_read_lock_held());
275 lockdep_assert_held(q->queue_lock);
276
Tejun Heo3c96cb32012-04-13 13:11:34 -0700277 /*
278 * This could be the first entry point of blkcg implementation and
279 * we shouldn't allow anything to go through for a bypassing queue.
280 */
281 if (unlikely(blk_queue_bypass(q)))
Tejun Heo20386ce2015-08-18 14:55:28 -0700282 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
Tejun Heo86cde6b2013-01-09 08:05:10 -0800283
284 blkg = __blkg_lookup(blkcg, q, true);
285 if (blkg)
286 return blkg;
287
Tejun Heo3c547862013-01-09 08:05:10 -0800288 /*
289 * Create blkgs walking down from blkcg_root to @blkcg, so that all
290 * non-root blkgs have access to their parents.
291 */
292 while (true) {
293 struct blkcg *pos = blkcg;
294 struct blkcg *parent = blkcg_parent(blkcg);
295
296 while (parent && !__blkg_lookup(parent, q, false)) {
297 pos = parent;
298 parent = blkcg_parent(parent);
299 }
300
301 blkg = blkg_create(pos, q, NULL);
302 if (pos == blkcg || IS_ERR(blkg))
303 return blkg;
304 }
Tejun Heo3c96cb32012-04-13 13:11:34 -0700305}
Vivek Goyal31e4c282009-12-03 12:59:42 -0500306
Tejun Heo3c798392012-04-16 13:57:25 -0700307static void blkg_destroy(struct blkcg_gq *blkg)
Tejun Heo72e06c22012-03-05 13:15:00 -0800308{
Tejun Heo3c798392012-04-16 13:57:25 -0700309 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo77ea7332015-08-18 14:55:24 -0700310 struct blkcg_gq *parent = blkg->parent;
Tejun Heof427d902013-01-09 08:05:12 -0800311 int i;
Tejun Heo03aa2642012-03-05 13:15:19 -0800312
Tejun Heo27e1f9d2012-06-05 13:36:44 +0200313 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800314 lockdep_assert_held(&blkcg->lock);
Tejun Heo03aa2642012-03-05 13:15:19 -0800315
316 /* Something wrong if we are trying to remove same group twice */
Tejun Heoe8989fa2012-03-05 13:15:20 -0800317 WARN_ON_ONCE(list_empty(&blkg->q_node));
Tejun Heo9f13ef62012-03-05 13:15:21 -0800318 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
Tejun Heoa6371202012-04-19 16:29:24 -0700319
Tejun Heof427d902013-01-09 08:05:12 -0800320 for (i = 0; i < BLKCG_MAX_POLS; i++) {
321 struct blkcg_policy *pol = blkcg_policy[i];
322
323 if (blkg->pd[i] && pol->pd_offline_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -0700324 pol->pd_offline_fn(blkg->pd[i]);
Tejun Heof427d902013-01-09 08:05:12 -0800325 }
Tejun Heo77ea7332015-08-18 14:55:24 -0700326
327 if (parent) {
328 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
329 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
330 }
331
Tejun Heof427d902013-01-09 08:05:12 -0800332 blkg->online = false;
333
Tejun Heoa6371202012-04-19 16:29:24 -0700334 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800335 list_del_init(&blkg->q_node);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800336 hlist_del_init_rcu(&blkg->blkcg_node);
Tejun Heo03aa2642012-03-05 13:15:19 -0800337
Tejun Heo03aa2642012-03-05 13:15:19 -0800338 /*
Tejun Heoa6371202012-04-19 16:29:24 -0700339 * Both setting lookup hint to and clearing it from @blkg are done
340 * under queue_lock. If it's not pointing to @blkg now, it never
341 * will. Hint assignment itself can race safely.
342 */
Paul E. McKenneyec6c6762014-02-17 13:35:57 -0800343 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
Tejun Heoa6371202012-04-19 16:29:24 -0700344 rcu_assign_pointer(blkcg->blkg_hint, NULL);
345
346 /*
Tejun Heo03aa2642012-03-05 13:15:19 -0800347 * Put the reference taken at the time of creation so that when all
348 * queues are gone, group can be destroyed.
349 */
350 blkg_put(blkg);
351}
352
Tejun Heo9f13ef62012-03-05 13:15:21 -0800353/**
354 * blkg_destroy_all - destroy all blkgs associated with a request_queue
355 * @q: request_queue of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800356 *
Tejun Heo3c96cb32012-04-13 13:11:34 -0700357 * Destroy all blkgs associated with @q.
Tejun Heo9f13ef62012-03-05 13:15:21 -0800358 */
Tejun Heo3c96cb32012-04-13 13:11:34 -0700359static void blkg_destroy_all(struct request_queue *q)
Tejun Heo03aa2642012-03-05 13:15:19 -0800360{
Tejun Heo3c798392012-04-16 13:57:25 -0700361 struct blkcg_gq *blkg, *n;
Tejun Heo72e06c22012-03-05 13:15:00 -0800362
Tejun Heo6d18b002012-04-13 13:11:35 -0700363 lockdep_assert_held(q->queue_lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800364
Tejun Heo9f13ef62012-03-05 13:15:21 -0800365 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
Tejun Heo3c798392012-04-16 13:57:25 -0700366 struct blkcg *blkcg = blkg->blkcg;
Tejun Heo72e06c22012-03-05 13:15:00 -0800367
Tejun Heo9f13ef62012-03-05 13:15:21 -0800368 spin_lock(&blkcg->lock);
369 blkg_destroy(blkg);
370 spin_unlock(&blkcg->lock);
Tejun Heo72e06c22012-03-05 13:15:00 -0800371 }
372}
373
Tejun Heo2a4fd072013-05-14 13:52:31 -0700374/*
375 * A group is RCU protected, but having an rcu lock does not mean that one
376 * can access all the fields of blkg and assume these are valid. For
377 * example, don't try to follow throtl_data and request queue links.
378 *
379 * Having a reference to blkg under an rcu allows accesses to only values
380 * local to groups like group stats and group rate limits.
381 */
382void __blkg_release_rcu(struct rcu_head *rcu_head)
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800383{
Tejun Heo2a4fd072013-05-14 13:52:31 -0700384 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
Tejun Heodb613672013-05-14 13:52:31 -0700385
Tejun Heo3c547862013-01-09 08:05:10 -0800386 /* release the blkcg and parent blkg refs this blkg has been holding */
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800387 css_put(&blkg->blkcg->css);
Tejun Heoa5049a82014-06-19 17:42:57 -0400388 if (blkg->parent)
Tejun Heo3c547862013-01-09 08:05:10 -0800389 blkg_put(blkg->parent);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800390
Tejun Heoce7acfe2015-05-22 17:13:38 -0400391 wb_congested_put(blkg->wb_congested);
392
Tejun Heo2a4fd072013-05-14 13:52:31 -0700393 blkg_free(blkg);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800394}
Tejun Heo2a4fd072013-05-14 13:52:31 -0700395EXPORT_SYMBOL_GPL(__blkg_release_rcu);
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800396
Tejun Heoa0516612012-06-26 15:05:44 -0700397/*
398 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
399 * because the root blkg uses @q->root_rl instead of its own rl.
400 */
401struct request_list *__blk_queue_next_rl(struct request_list *rl,
402 struct request_queue *q)
403{
404 struct list_head *ent;
405 struct blkcg_gq *blkg;
406
407 /*
408 * Determine the current blkg list_head. The first entry is
409 * root_rl which is off @q->blkg_list and mapped to the head.
410 */
411 if (rl == &q->root_rl) {
412 ent = &q->blkg_list;
Jun'ichi Nomura65c77fd2012-10-22 10:15:37 +0900413 /* There are no more block groups, hence no request lists */
414 if (list_empty(ent))
415 return NULL;
Tejun Heoa0516612012-06-26 15:05:44 -0700416 } else {
417 blkg = container_of(rl, struct blkcg_gq, rl);
418 ent = &blkg->q_node;
419 }
420
421 /* walk to the next list_head, skip root blkcg */
422 ent = ent->next;
423 if (ent == &q->root_blkg->q_node)
424 ent = ent->next;
425 if (ent == &q->blkg_list)
426 return NULL;
427
428 blkg = container_of(ent, struct blkcg_gq, q_node);
429 return &blkg->rl;
430}
431
Tejun Heo182446d2013-08-08 20:11:24 -0400432static int blkcg_reset_stats(struct cgroup_subsys_state *css,
433 struct cftype *cftype, u64 val)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700434{
Tejun Heo182446d2013-08-08 20:11:24 -0400435 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heo3c798392012-04-16 13:57:25 -0700436 struct blkcg_gq *blkg;
Tejun Heobc0d6502012-04-13 13:11:26 -0700437 int i;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700438
Tejun Heo838f13b2015-07-09 16:39:47 -0400439 mutex_lock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700440 spin_lock_irq(&blkcg->lock);
Tejun Heo997a0262012-03-08 10:53:58 -0800441
442 /*
443 * Note that stat reset is racy - it doesn't synchronize against
444 * stat updates. This is a debug feature which shouldn't exist
445 * anyway. If you get hit by a race, retry.
446 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800447 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo77ea7332015-08-18 14:55:24 -0700448 blkg_rwstat_reset(&blkg->stat_bytes);
449 blkg_rwstat_reset(&blkg->stat_ios);
450
Tejun Heo8bd435b2012-04-13 13:11:28 -0700451 for (i = 0; i < BLKCG_MAX_POLS; i++) {
Tejun Heo3c798392012-04-16 13:57:25 -0700452 struct blkcg_policy *pol = blkcg_policy[i];
Tejun Heo549d3aa2012-03-05 13:15:16 -0800453
Tejun Heoa9520cd2015-08-18 14:55:14 -0700454 if (blkg->pd[i] && pol->pd_reset_stats_fn)
455 pol->pd_reset_stats_fn(blkg->pd[i]);
Tejun Heobc0d6502012-04-13 13:11:26 -0700456 }
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700457 }
Vivek Goyalf0bdc8c2011-05-19 15:38:30 -0400458
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700459 spin_unlock_irq(&blkcg->lock);
Tejun Heobc0d6502012-04-13 13:11:26 -0700460 mutex_unlock(&blkcg_pol_mutex);
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700461 return 0;
462}
463
Tejun Heo3c798392012-04-16 13:57:25 -0700464static const char *blkg_dev_name(struct blkcg_gq *blkg)
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700465{
Tejun Heod3d32e62012-04-01 14:38:42 -0700466 /* some drivers (floppy) instantiate a queue w/o disk registered */
467 if (blkg->q->backing_dev_info.dev)
468 return dev_name(blkg->q->backing_dev_info.dev);
469 return NULL;
Divyesh Shah303a3ac2010-04-01 15:01:24 -0700470}
471
Tejun Heod3d32e62012-04-01 14:38:42 -0700472/**
473 * blkcg_print_blkgs - helper for printing per-blkg data
474 * @sf: seq_file to print to
475 * @blkcg: blkcg of interest
476 * @prfill: fill function to print out a blkg
477 * @pol: policy in question
478 * @data: data to be passed to @prfill
479 * @show_total: to print out sum of prfill return values or not
480 *
481 * This function invokes @prfill on each blkg of @blkcg if pd for the
482 * policy specified by @pol exists. @prfill is invoked with @sf, the
Tejun Heo810ecfa2013-01-09 08:05:13 -0800483 * policy data and @data and the matching queue lock held. If @show_total
484 * is %true, the sum of the return values from @prfill is printed with
485 * "Total" label at the end.
Tejun Heod3d32e62012-04-01 14:38:42 -0700486 *
487 * This is to be used to construct print functions for
488 * cftype->read_seq_string method.
489 */
Tejun Heo3c798392012-04-16 13:57:25 -0700490void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
Tejun Heof95a04a2012-04-16 13:57:26 -0700491 u64 (*prfill)(struct seq_file *,
492 struct blkg_policy_data *, int),
Tejun Heo3c798392012-04-16 13:57:25 -0700493 const struct blkcg_policy *pol, int data,
Tejun Heoec399342012-04-13 13:11:27 -0700494 bool show_total)
Vivek Goyal5624a4e2011-05-19 15:38:28 -0400495{
Tejun Heo3c798392012-04-16 13:57:25 -0700496 struct blkcg_gq *blkg;
Tejun Heod3d32e62012-04-01 14:38:42 -0700497 u64 total = 0;
498
Tejun Heo810ecfa2013-01-09 08:05:13 -0800499 rcu_read_lock();
Linus Torvaldsee89f812013-02-28 12:52:24 -0800500 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
Tejun Heo810ecfa2013-01-09 08:05:13 -0800501 spin_lock_irq(blkg->q->queue_lock);
Tejun Heoa2b16932012-04-13 13:11:33 -0700502 if (blkcg_policy_enabled(blkg->q, pol))
Tejun Heof95a04a2012-04-16 13:57:26 -0700503 total += prfill(sf, blkg->pd[pol->plid], data);
Tejun Heo810ecfa2013-01-09 08:05:13 -0800504 spin_unlock_irq(blkg->q->queue_lock);
505 }
506 rcu_read_unlock();
Tejun Heod3d32e62012-04-01 14:38:42 -0700507
508 if (show_total)
509 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
510}
Tejun Heo829fdb52012-04-01 14:38:43 -0700511EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
Tejun Heod3d32e62012-04-01 14:38:42 -0700512
513/**
514 * __blkg_prfill_u64 - prfill helper for a single u64 value
515 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700516 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700517 * @v: value to print
518 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700519 * Print @v to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700520 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700521u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
Tejun Heod3d32e62012-04-01 14:38:42 -0700522{
Tejun Heof95a04a2012-04-16 13:57:26 -0700523 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700524
525 if (!dname)
526 return 0;
527
528 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
529 return v;
530}
Tejun Heo829fdb52012-04-01 14:38:43 -0700531EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
Tejun Heod3d32e62012-04-01 14:38:42 -0700532
533/**
534 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
535 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700536 * @pd: policy private data of interest
Tejun Heod3d32e62012-04-01 14:38:42 -0700537 * @rwstat: rwstat to print
538 *
Tejun Heof95a04a2012-04-16 13:57:26 -0700539 * Print @rwstat to @sf for the device assocaited with @pd.
Tejun Heod3d32e62012-04-01 14:38:42 -0700540 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700541u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
Tejun Heo829fdb52012-04-01 14:38:43 -0700542 const struct blkg_rwstat *rwstat)
Tejun Heod3d32e62012-04-01 14:38:42 -0700543{
544 static const char *rwstr[] = {
545 [BLKG_RWSTAT_READ] = "Read",
546 [BLKG_RWSTAT_WRITE] = "Write",
547 [BLKG_RWSTAT_SYNC] = "Sync",
548 [BLKG_RWSTAT_ASYNC] = "Async",
549 };
Tejun Heof95a04a2012-04-16 13:57:26 -0700550 const char *dname = blkg_dev_name(pd->blkg);
Tejun Heod3d32e62012-04-01 14:38:42 -0700551 u64 v;
552 int i;
553
554 if (!dname)
555 return 0;
556
557 for (i = 0; i < BLKG_RWSTAT_NR; i++)
558 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700559 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
Tejun Heod3d32e62012-04-01 14:38:42 -0700560
Tejun Heo24bdb8e2015-08-18 14:55:22 -0700561 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
562 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
Tejun Heod3d32e62012-04-01 14:38:42 -0700563 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
564 return v;
565}
Tejun Heob50da392013-01-09 08:05:12 -0800566EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700567
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700568/**
569 * blkg_prfill_stat - prfill callback for blkg_stat
570 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700571 * @pd: policy private data of interest
572 * @off: offset to the blkg_stat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700573 *
574 * prfill callback for printing a blkg_stat.
575 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700576u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700577{
Tejun Heof95a04a2012-04-16 13:57:26 -0700578 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
Tejun Heod3d32e62012-04-01 14:38:42 -0700579}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700580EXPORT_SYMBOL_GPL(blkg_prfill_stat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700581
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700582/**
583 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
584 * @sf: seq_file to print to
Tejun Heof95a04a2012-04-16 13:57:26 -0700585 * @pd: policy private data of interest
586 * @off: offset to the blkg_rwstat in @pd
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700587 *
588 * prfill callback for printing a blkg_rwstat.
589 */
Tejun Heof95a04a2012-04-16 13:57:26 -0700590u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
591 int off)
Tejun Heod3d32e62012-04-01 14:38:42 -0700592{
Tejun Heof95a04a2012-04-16 13:57:26 -0700593 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
Tejun Heod3d32e62012-04-01 14:38:42 -0700594
Tejun Heof95a04a2012-04-16 13:57:26 -0700595 return __blkg_prfill_rwstat(sf, pd, &rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700596}
Tejun Heo5bc4afb12012-04-01 14:38:45 -0700597EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
Tejun Heod3d32e62012-04-01 14:38:42 -0700598
Tejun Heo77ea7332015-08-18 14:55:24 -0700599static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
600 struct blkg_policy_data *pd, int off)
601{
602 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
603
604 return __blkg_prfill_rwstat(sf, pd, &rwstat);
605}
606
607/**
608 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
609 * @sf: seq_file to print to
610 * @v: unused
611 *
612 * To be used as cftype->seq_show to print blkg->stat_bytes.
613 * cftype->private must be set to the blkcg_policy.
614 */
615int blkg_print_stat_bytes(struct seq_file *sf, void *v)
616{
617 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
618 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
619 offsetof(struct blkcg_gq, stat_bytes), true);
620 return 0;
621}
622EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
623
624/**
625 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
626 * @sf: seq_file to print to
627 * @v: unused
628 *
629 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
630 * must be set to the blkcg_policy.
631 */
632int blkg_print_stat_ios(struct seq_file *sf, void *v)
633{
634 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
635 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
636 offsetof(struct blkcg_gq, stat_ios), true);
637 return 0;
638}
639EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
640
641static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
642 struct blkg_policy_data *pd,
643 int off)
644{
645 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
646 NULL, off);
647 return __blkg_prfill_rwstat(sf, pd, &rwstat);
648}
649
650/**
651 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
652 * @sf: seq_file to print to
653 * @v: unused
654 */
655int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
656{
657 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
658 blkg_prfill_rwstat_field_recursive,
659 (void *)seq_cft(sf)->private,
660 offsetof(struct blkcg_gq, stat_bytes), true);
661 return 0;
662}
663EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
664
665/**
666 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
667 * @sf: seq_file to print to
668 * @v: unused
669 */
670int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
671{
672 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
673 blkg_prfill_rwstat_field_recursive,
674 (void *)seq_cft(sf)->private,
675 offsetof(struct blkcg_gq, stat_ios), true);
676 return 0;
677}
678EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
679
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700680/**
Tejun Heo16b3de62013-01-09 08:05:12 -0800681 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
Tejun Heof12c74c2015-08-18 14:55:23 -0700682 * @blkg: blkg of interest
683 * @pol: blkcg_policy which contains the blkg_stat
684 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800685 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700686 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
687 * online descendants and their aux counts. The caller must be holding the
688 * queue lock for online tests.
689 *
690 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
691 * at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800692 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700693u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
694 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800695{
Tejun Heo16b3de62013-01-09 08:05:12 -0800696 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400697 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400698 u64 sum = 0;
Tejun Heo16b3de62013-01-09 08:05:12 -0800699
Tejun Heof12c74c2015-08-18 14:55:23 -0700700 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800701
Tejun Heo16b3de62013-01-09 08:05:12 -0800702 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700703 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
704 struct blkg_stat *stat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800705
Tejun Heof12c74c2015-08-18 14:55:23 -0700706 if (!pos_blkg->online)
707 continue;
708
709 if (pol)
710 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
711 else
712 stat = (void *)blkg + off;
713
714 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
Tejun Heo16b3de62013-01-09 08:05:12 -0800715 }
716 rcu_read_unlock();
717
718 return sum;
719}
720EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
721
722/**
723 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
Tejun Heof12c74c2015-08-18 14:55:23 -0700724 * @blkg: blkg of interest
725 * @pol: blkcg_policy which contains the blkg_rwstat
726 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
Tejun Heo16b3de62013-01-09 08:05:12 -0800727 *
Tejun Heof12c74c2015-08-18 14:55:23 -0700728 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
729 * online descendants and their aux counts. The caller must be holding the
730 * queue lock for online tests.
731 *
732 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
733 * is at @off bytes into @blkg's blkg_policy_data of the policy.
Tejun Heo16b3de62013-01-09 08:05:12 -0800734 */
Tejun Heof12c74c2015-08-18 14:55:23 -0700735struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
736 struct blkcg_policy *pol, int off)
Tejun Heo16b3de62013-01-09 08:05:12 -0800737{
Tejun Heo16b3de62013-01-09 08:05:12 -0800738 struct blkcg_gq *pos_blkg;
Tejun Heo492eb212013-08-08 20:11:25 -0400739 struct cgroup_subsys_state *pos_css;
Tejun Heobd8815a2013-08-08 20:11:27 -0400740 struct blkg_rwstat sum = { };
Tejun Heo16b3de62013-01-09 08:05:12 -0800741 int i;
742
Tejun Heof12c74c2015-08-18 14:55:23 -0700743 lockdep_assert_held(blkg->q->queue_lock);
Tejun Heo16b3de62013-01-09 08:05:12 -0800744
Tejun Heo16b3de62013-01-09 08:05:12 -0800745 rcu_read_lock();
Tejun Heof12c74c2015-08-18 14:55:23 -0700746 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
Tejun Heo3a7faea2015-08-18 14:55:26 -0700747 struct blkg_rwstat *rwstat;
Tejun Heo16b3de62013-01-09 08:05:12 -0800748
749 if (!pos_blkg->online)
750 continue;
751
Tejun Heof12c74c2015-08-18 14:55:23 -0700752 if (pol)
753 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
754 else
755 rwstat = (void *)pos_blkg + off;
756
Tejun Heo16b3de62013-01-09 08:05:12 -0800757 for (i = 0; i < BLKG_RWSTAT_NR; i++)
Tejun Heo3a7faea2015-08-18 14:55:26 -0700758 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
759 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
760 &sum.aux_cnt[i]);
Tejun Heo16b3de62013-01-09 08:05:12 -0800761 }
762 rcu_read_unlock();
763
764 return sum;
765}
766EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
767
768/**
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700769 * blkg_conf_prep - parse and prepare for per-blkg config update
770 * @blkcg: target block cgroup
Tejun Heoda8b0662012-04-13 13:11:29 -0700771 * @pol: target policy
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700772 * @input: input string
773 * @ctx: blkg_conf_ctx to be filled
774 *
775 * Parse per-blkg config update from @input and initialize @ctx with the
776 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
Tejun Heoda8b0662012-04-13 13:11:29 -0700777 * value. This function returns with RCU read lock and queue lock held and
778 * must be paired with blkg_conf_finish().
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700779 */
Tejun Heo3c798392012-04-16 13:57:25 -0700780int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
781 const char *input, struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700782 __acquires(rcu) __acquires(disk->queue->queue_lock)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800783{
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700784 struct gendisk *disk;
Tejun Heo3c798392012-04-16 13:57:25 -0700785 struct blkcg_gq *blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700786 unsigned int major, minor;
787 unsigned long long v;
788 int part, ret;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800789
Tejun Heo726fa692012-04-01 14:38:43 -0700790 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
791 return -EINVAL;
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700792
Tejun Heo726fa692012-04-01 14:38:43 -0700793 disk = get_gendisk(MKDEV(major, minor), &part);
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400794 if (!disk)
Tejun Heo20386ce2015-08-18 14:55:28 -0700795 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400796 if (part) {
797 put_disk(disk);
Tejun Heo20386ce2015-08-18 14:55:28 -0700798 return -ENODEV;
Tejun Heo5f6c2d22015-07-22 18:05:53 -0400799 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800800
801 rcu_read_lock();
Tejun Heo4bfd4822012-03-05 13:15:08 -0800802 spin_lock_irq(disk->queue->queue_lock);
Tejun Heoda8b0662012-04-13 13:11:29 -0700803
Tejun Heoa2b16932012-04-13 13:11:33 -0700804 if (blkcg_policy_enabled(disk->queue, pol))
Tejun Heo3c96cb32012-04-13 13:11:34 -0700805 blkg = blkg_lookup_create(blkcg, disk->queue);
Tejun Heoa2b16932012-04-13 13:11:33 -0700806 else
Tejun Heo20386ce2015-08-18 14:55:28 -0700807 blkg = ERR_PTR(-EOPNOTSUPP);
Tejun Heoe56da7e2012-03-05 13:15:07 -0800808
Tejun Heo4bfd4822012-03-05 13:15:08 -0800809 if (IS_ERR(blkg)) {
810 ret = PTR_ERR(blkg);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700811 rcu_read_unlock();
Tejun Heoda8b0662012-04-13 13:11:29 -0700812 spin_unlock_irq(disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700813 put_disk(disk);
814 /*
815 * If queue was bypassing, we should retry. Do so after a
816 * short msleep(). It isn't strictly necessary but queue
817 * can be bypassing for some time and it's always nice to
818 * avoid busy looping.
819 */
820 if (ret == -EBUSY) {
821 msleep(10);
822 ret = restart_syscall();
Vivek Goyal7702e8f2010-09-15 17:06:36 -0400823 }
Tejun Heo726fa692012-04-01 14:38:43 -0700824 return ret;
Vivek Goyal062a6442010-09-15 17:06:33 -0400825 }
Tejun Heoe56da7e2012-03-05 13:15:07 -0800826
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700827 ctx->disk = disk;
828 ctx->blkg = blkg;
Tejun Heo726fa692012-04-01 14:38:43 -0700829 ctx->v = v;
830 return 0;
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800831}
Tejun Heo829fdb52012-04-01 14:38:43 -0700832EXPORT_SYMBOL_GPL(blkg_conf_prep);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800833
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700834/**
835 * blkg_conf_finish - finish up per-blkg config update
836 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
837 *
838 * Finish up after per-blkg config update. This function must be paired
839 * with blkg_conf_prep().
840 */
Tejun Heo829fdb52012-04-01 14:38:43 -0700841void blkg_conf_finish(struct blkg_conf_ctx *ctx)
Tejun Heoda8b0662012-04-13 13:11:29 -0700842 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800843{
Tejun Heoda8b0662012-04-13 13:11:29 -0700844 spin_unlock_irq(ctx->disk->queue->queue_lock);
Tejun Heo3a8b31d2012-04-01 14:38:43 -0700845 rcu_read_unlock();
846 put_disk(ctx->disk);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800847}
Tejun Heo829fdb52012-04-01 14:38:43 -0700848EXPORT_SYMBOL_GPL(blkg_conf_finish);
Gui Jianfeng34d0f172010-04-13 16:05:49 +0800849
Tejun Heo3c798392012-04-16 13:57:25 -0700850struct cftype blkcg_files[] = {
Vivek Goyal31e4c282009-12-03 12:59:42 -0500851 {
Divyesh Shah84c124d2010-04-09 08:31:19 +0200852 .name = "reset_stats",
Tejun Heo3c798392012-04-16 13:57:25 -0700853 .write_u64 = blkcg_reset_stats,
Vivek Goyal22084192009-12-03 12:59:49 -0500854 },
Tejun Heo4baf6e32012-04-01 12:09:55 -0700855 { } /* terminate */
Vivek Goyal31e4c282009-12-03 12:59:42 -0500856};
857
Tejun Heo9f13ef62012-03-05 13:15:21 -0800858/**
Tejun Heo92fb9742012-11-19 08:13:38 -0800859 * blkcg_css_offline - cgroup css_offline callback
Tejun Heoeb954192013-08-08 20:11:23 -0400860 * @css: css of interest
Tejun Heo9f13ef62012-03-05 13:15:21 -0800861 *
Tejun Heoeb954192013-08-08 20:11:23 -0400862 * This function is called when @css is about to go away and responsible
863 * for shooting down all blkgs associated with @css. blkgs should be
Tejun Heo9f13ef62012-03-05 13:15:21 -0800864 * removed while holding both q and blkcg locks. As blkcg lock is nested
865 * inside q lock, this function performs reverse double lock dancing.
866 *
867 * This is the blkcg counterpart of ioc_release_fn().
868 */
Tejun Heoeb954192013-08-08 20:11:23 -0400869static void blkcg_css_offline(struct cgroup_subsys_state *css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500870{
Tejun Heoeb954192013-08-08 20:11:23 -0400871 struct blkcg *blkcg = css_to_blkcg(css);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500872
Tejun Heo9f13ef62012-03-05 13:15:21 -0800873 spin_lock_irq(&blkcg->lock);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800874
Tejun Heo9f13ef62012-03-05 13:15:21 -0800875 while (!hlist_empty(&blkcg->blkg_list)) {
Tejun Heo3c798392012-04-16 13:57:25 -0700876 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
877 struct blkcg_gq, blkcg_node);
Tejun Heoc875f4d2012-03-05 13:15:22 -0800878 struct request_queue *q = blkg->q;
Vivek Goyalb1c35762009-12-03 12:59:47 -0500879
Tejun Heo9f13ef62012-03-05 13:15:21 -0800880 if (spin_trylock(q->queue_lock)) {
881 blkg_destroy(blkg);
882 spin_unlock(q->queue_lock);
883 } else {
884 spin_unlock_irq(&blkcg->lock);
Tejun Heo9f13ef62012-03-05 13:15:21 -0800885 cpu_relax();
Dan Carpentera5567932012-03-29 20:57:08 +0200886 spin_lock_irq(&blkcg->lock);
Jens Axboe0f3942a2010-05-03 14:28:55 +0200887 }
Tejun Heo9f13ef62012-03-05 13:15:21 -0800888 }
Jens Axboe0f3942a2010-05-03 14:28:55 +0200889
Tejun Heo9f13ef62012-03-05 13:15:21 -0800890 spin_unlock_irq(&blkcg->lock);
Tejun Heo52ebea72015-05-22 17:13:37 -0400891
892 wb_blkcg_offline(blkcg);
Tejun Heo7ee9c562012-03-05 13:15:11 -0800893}
894
Tejun Heoeb954192013-08-08 20:11:23 -0400895static void blkcg_css_free(struct cgroup_subsys_state *css)
Tejun Heo7ee9c562012-03-05 13:15:11 -0800896{
Tejun Heoeb954192013-08-08 20:11:23 -0400897 struct blkcg *blkcg = css_to_blkcg(css);
Tejun Heobc915e62015-08-18 14:55:08 -0700898 int i;
Tejun Heo7ee9c562012-03-05 13:15:11 -0800899
Tejun Heo7876f932015-07-09 16:39:49 -0400900 mutex_lock(&blkcg_pol_mutex);
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700901
Tejun Heo7876f932015-07-09 16:39:49 -0400902 list_del(&blkcg->all_blkcgs_node);
Tejun Heo7876f932015-07-09 16:39:49 -0400903
Tejun Heobc915e62015-08-18 14:55:08 -0700904 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700905 if (blkcg->cpd[i])
906 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
907
908 mutex_unlock(&blkcg_pol_mutex);
909
Tejun Heobc915e62015-08-18 14:55:08 -0700910 kfree(blkcg);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500911}
912
Tejun Heoeb954192013-08-08 20:11:23 -0400913static struct cgroup_subsys_state *
914blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
Vivek Goyal31e4c282009-12-03 12:59:42 -0500915{
Tejun Heo3c798392012-04-16 13:57:25 -0700916 struct blkcg *blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200917 struct cgroup_subsys_state *ret;
918 int i;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500919
Tejun Heo7876f932015-07-09 16:39:49 -0400920 mutex_lock(&blkcg_pol_mutex);
921
Tejun Heoeb954192013-08-08 20:11:23 -0400922 if (!parent_css) {
Tejun Heo3c798392012-04-16 13:57:25 -0700923 blkcg = &blkcg_root;
Tejun Heobc915e62015-08-18 14:55:08 -0700924 } else {
925 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
926 if (!blkcg) {
927 ret = ERR_PTR(-ENOMEM);
928 goto free_blkcg;
929 }
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200930 }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500931
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200932 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
933 struct blkcg_policy *pol = blkcg_policy[i];
934 struct blkcg_policy_data *cpd;
935
936 /*
937 * If the policy hasn't been attached yet, wait for it
938 * to be attached before doing anything else. Otherwise,
939 * check if the policy requires any specific per-cgroup
940 * data: if it does, allocate and initialize it.
941 */
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700942 if (!pol || !pol->cpd_alloc_fn)
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200943 continue;
944
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700945 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200946 if (!cpd) {
947 ret = ERR_PTR(-ENOMEM);
948 goto free_pd_blkcg;
949 }
Tejun Heo81437642015-08-18 14:55:15 -0700950 blkcg->cpd[i] = cpd;
951 cpd->blkcg = blkcg;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200952 cpd->plid = i;
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700953 if (pol->cpd_init_fn)
954 pol->cpd_init_fn(cpd);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200955 }
956
Vivek Goyal31e4c282009-12-03 12:59:42 -0500957 spin_lock_init(&blkcg->lock);
Tejun Heod93a11f2015-08-18 14:55:01 -0700958 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500959 INIT_HLIST_HEAD(&blkcg->blkg_list);
Tejun Heo52ebea72015-05-22 17:13:37 -0400960#ifdef CONFIG_CGROUP_WRITEBACK
961 INIT_LIST_HEAD(&blkcg->cgwb_list);
962#endif
Tejun Heo7876f932015-07-09 16:39:49 -0400963 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
964
965 mutex_unlock(&blkcg_pol_mutex);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500966 return &blkcg->css;
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200967
968free_pd_blkcg:
969 for (i--; i >= 0; i--)
Tejun Heoe4a9bde2015-08-18 14:55:16 -0700970 if (blkcg->cpd[i])
971 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200972free_blkcg:
973 kfree(blkcg);
Tejun Heo7876f932015-07-09 16:39:49 -0400974 mutex_unlock(&blkcg_pol_mutex);
Arianna Avanzinie48453c2015-06-05 23:38:42 +0200975 return ret;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500976}
977
Tejun Heo5efd6112012-03-05 13:15:12 -0800978/**
979 * blkcg_init_queue - initialize blkcg part of request queue
980 * @q: request_queue to initialize
981 *
982 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
983 * part of new request_queue @q.
984 *
985 * RETURNS:
986 * 0 on success, -errno on failure.
987 */
988int blkcg_init_queue(struct request_queue *q)
989{
Tejun Heoec13b1d2015-05-22 17:13:19 -0400990 struct blkcg_gq *new_blkg, *blkg;
991 bool preloaded;
992 int ret;
Tejun Heo5efd6112012-03-05 13:15:12 -0800993
Tejun Heoec13b1d2015-05-22 17:13:19 -0400994 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
995 if (!new_blkg)
996 return -ENOMEM;
997
998 preloaded = !radix_tree_preload(GFP_KERNEL);
999
1000 /*
1001 * Make sure the root blkg exists and count the existing blkgs. As
1002 * @q is bypassing at this point, blkg_lookup_create() can't be
1003 * used. Open code insertion.
1004 */
1005 rcu_read_lock();
1006 spin_lock_irq(q->queue_lock);
1007 blkg = blkg_create(&blkcg_root, q, new_blkg);
1008 spin_unlock_irq(q->queue_lock);
1009 rcu_read_unlock();
1010
1011 if (preloaded)
1012 radix_tree_preload_end();
1013
1014 if (IS_ERR(blkg)) {
Tejun Heo994b7832015-08-18 14:55:07 -07001015 blkg_free(new_blkg);
Tejun Heoec13b1d2015-05-22 17:13:19 -04001016 return PTR_ERR(blkg);
1017 }
1018
1019 q->root_blkg = blkg;
1020 q->root_rl.blkg = blkg;
1021
1022 ret = blk_throtl_init(q);
1023 if (ret) {
1024 spin_lock_irq(q->queue_lock);
1025 blkg_destroy_all(q);
1026 spin_unlock_irq(q->queue_lock);
1027 }
1028 return ret;
Tejun Heo5efd6112012-03-05 13:15:12 -08001029}
1030
1031/**
1032 * blkcg_drain_queue - drain blkcg part of request_queue
1033 * @q: request_queue to drain
1034 *
1035 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1036 */
1037void blkcg_drain_queue(struct request_queue *q)
1038{
1039 lockdep_assert_held(q->queue_lock);
1040
Tejun Heo0b462c82014-07-05 18:43:21 -04001041 /*
1042 * @q could be exiting and already have destroyed all blkgs as
1043 * indicated by NULL root_blkg. If so, don't confuse policies.
1044 */
1045 if (!q->root_blkg)
1046 return;
1047
Tejun Heo5efd6112012-03-05 13:15:12 -08001048 blk_throtl_drain(q);
1049}
1050
1051/**
1052 * blkcg_exit_queue - exit and release blkcg part of request_queue
1053 * @q: request_queue being released
1054 *
1055 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1056 */
1057void blkcg_exit_queue(struct request_queue *q)
1058{
Tejun Heo6d18b002012-04-13 13:11:35 -07001059 spin_lock_irq(q->queue_lock);
Tejun Heo3c96cb32012-04-13 13:11:34 -07001060 blkg_destroy_all(q);
Tejun Heo6d18b002012-04-13 13:11:35 -07001061 spin_unlock_irq(q->queue_lock);
1062
Tejun Heo5efd6112012-03-05 13:15:12 -08001063 blk_throtl_exit(q);
1064}
1065
Vivek Goyal31e4c282009-12-03 12:59:42 -05001066/*
1067 * We cannot support shared io contexts, as we have no mean to support
1068 * two tasks with the same ioc in two different groups without major rework
1069 * of the main cic data structures. For now we allow a task to change
1070 * its cgroup only if it's the only owner of its ioc.
1071 */
Tejun Heoeb954192013-08-08 20:11:23 -04001072static int blkcg_can_attach(struct cgroup_subsys_state *css,
1073 struct cgroup_taskset *tset)
Vivek Goyal31e4c282009-12-03 12:59:42 -05001074{
Tejun Heobb9d97b2011-12-12 18:12:21 -08001075 struct task_struct *task;
Vivek Goyal31e4c282009-12-03 12:59:42 -05001076 struct io_context *ioc;
1077 int ret = 0;
1078
1079 /* task_lock() is needed to avoid races with exit_io_context() */
Tejun Heo924f0d92014-02-13 06:58:41 -05001080 cgroup_taskset_for_each(task, tset) {
Tejun Heobb9d97b2011-12-12 18:12:21 -08001081 task_lock(task);
1082 ioc = task->io_context;
1083 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1084 ret = -EINVAL;
1085 task_unlock(task);
1086 if (ret)
1087 break;
1088 }
Vivek Goyal31e4c282009-12-03 12:59:42 -05001089 return ret;
1090}
1091
Tejun Heoc165b3e2015-08-18 14:55:29 -07001092struct cgroup_subsys io_cgrp_subsys = {
Tejun Heo92fb9742012-11-19 08:13:38 -08001093 .css_alloc = blkcg_css_alloc,
1094 .css_offline = blkcg_css_offline,
1095 .css_free = blkcg_css_free,
Tejun Heo3c798392012-04-16 13:57:25 -07001096 .can_attach = blkcg_can_attach,
Tejun Heo55779642014-07-15 11:05:09 -04001097 .legacy_cftypes = blkcg_files,
Tejun Heoc165b3e2015-08-18 14:55:29 -07001098 .legacy_name = "blkio",
Tejun Heo1ced9532014-07-08 18:02:57 -04001099#ifdef CONFIG_MEMCG
1100 /*
1101 * This ensures that, if available, memcg is automatically enabled
1102 * together on the default hierarchy so that the owner cgroup can
1103 * be retrieved from writeback pages.
1104 */
1105 .depends_on = 1 << memory_cgrp_id,
1106#endif
Tejun Heo676f7c82012-04-01 12:09:55 -07001107};
Tejun Heoc165b3e2015-08-18 14:55:29 -07001108EXPORT_SYMBOL_GPL(io_cgrp_subsys);
Tejun Heo676f7c82012-04-01 12:09:55 -07001109
Tejun Heo8bd435b2012-04-13 13:11:28 -07001110/**
Tejun Heoa2b16932012-04-13 13:11:33 -07001111 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1112 * @q: request_queue of interest
1113 * @pol: blkcg policy to activate
1114 *
1115 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1116 * bypass mode to populate its blkgs with policy_data for @pol.
1117 *
1118 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1119 * from IO path. Update of each blkg is protected by both queue and blkcg
1120 * locks so that holding either lock and testing blkcg_policy_enabled() is
1121 * always enough for dereferencing policy data.
1122 *
1123 * The caller is responsible for synchronizing [de]activations and policy
1124 * [un]registerations. Returns 0 on success, -errno on failure.
1125 */
1126int blkcg_activate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001127 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001128{
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001129 struct blkg_policy_data *pd_prealloc = NULL;
Tejun Heoec13b1d2015-05-22 17:13:19 -04001130 struct blkcg_gq *blkg;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001131 int ret;
Tejun Heoa2b16932012-04-13 13:11:33 -07001132
1133 if (blkcg_policy_enabled(q, pol))
1134 return 0;
1135
1136 blk_queue_bypass_start(q);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001137pd_prealloc:
1138 if (!pd_prealloc) {
Tejun Heo001bea72015-08-18 14:55:11 -07001139 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001140 if (!pd_prealloc) {
Tejun Heoa2b16932012-04-13 13:11:33 -07001141 ret = -ENOMEM;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001142 goto out_bypass_end;
Tejun Heoa2b16932012-04-13 13:11:33 -07001143 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001144 }
1145
Tejun Heoa2b16932012-04-13 13:11:33 -07001146 spin_lock_irq(q->queue_lock);
1147
1148 list_for_each_entry(blkg, &q->blkg_list, q_node) {
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001149 struct blkg_policy_data *pd;
Tejun Heoa2b16932012-04-13 13:11:33 -07001150
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001151 if (blkg->pd[pol->plid])
1152 continue;
1153
Tejun Heo001bea72015-08-18 14:55:11 -07001154 pd = pol->pd_alloc_fn(GFP_NOWAIT, q->node);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001155 if (!pd)
1156 swap(pd, pd_prealloc);
1157 if (!pd) {
1158 spin_unlock_irq(q->queue_lock);
1159 goto pd_prealloc;
1160 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001161
1162 blkg->pd[pol->plid] = pd;
1163 pd->blkg = blkg;
Tejun Heob276a872013-01-09 08:05:12 -08001164 pd->plid = pol->plid;
Tejun Heo3e418712015-08-18 14:55:10 -07001165 if (pol->pd_init_fn)
Tejun Heoa9520cd2015-08-18 14:55:14 -07001166 pol->pd_init_fn(pd);
Tejun Heoa2b16932012-04-13 13:11:33 -07001167 }
1168
1169 __set_bit(pol->plid, q->blkcg_pols);
1170 ret = 0;
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001171
Tejun Heoa2b16932012-04-13 13:11:33 -07001172 spin_unlock_irq(q->queue_lock);
Tejun Heo4c55f4f2015-08-18 14:55:09 -07001173out_bypass_end:
Tejun Heoa2b16932012-04-13 13:11:33 -07001174 blk_queue_bypass_end(q);
Tejun Heo001bea72015-08-18 14:55:11 -07001175 if (pd_prealloc)
1176 pol->pd_free_fn(pd_prealloc);
Tejun Heoa2b16932012-04-13 13:11:33 -07001177 return ret;
1178}
1179EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1180
1181/**
1182 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1183 * @q: request_queue of interest
1184 * @pol: blkcg policy to deactivate
1185 *
1186 * Deactivate @pol on @q. Follows the same synchronization rules as
1187 * blkcg_activate_policy().
1188 */
1189void blkcg_deactivate_policy(struct request_queue *q,
Tejun Heo3c798392012-04-16 13:57:25 -07001190 const struct blkcg_policy *pol)
Tejun Heoa2b16932012-04-13 13:11:33 -07001191{
Tejun Heo3c798392012-04-16 13:57:25 -07001192 struct blkcg_gq *blkg;
Tejun Heoa2b16932012-04-13 13:11:33 -07001193
1194 if (!blkcg_policy_enabled(q, pol))
1195 return;
1196
1197 blk_queue_bypass_start(q);
1198 spin_lock_irq(q->queue_lock);
1199
1200 __clear_bit(pol->plid, q->blkcg_pols);
1201
1202 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1203 /* grab blkcg lock too while removing @pd from @blkg */
1204 spin_lock(&blkg->blkcg->lock);
1205
Tejun Heo001bea72015-08-18 14:55:11 -07001206 if (blkg->pd[pol->plid]) {
Tejun Heoa9520cd2015-08-18 14:55:14 -07001207 if (pol->pd_offline_fn)
1208 pol->pd_offline_fn(blkg->pd[pol->plid]);
Tejun Heo001bea72015-08-18 14:55:11 -07001209 pol->pd_free_fn(blkg->pd[pol->plid]);
1210 blkg->pd[pol->plid] = NULL;
1211 }
Tejun Heoa2b16932012-04-13 13:11:33 -07001212
1213 spin_unlock(&blkg->blkcg->lock);
1214 }
1215
1216 spin_unlock_irq(q->queue_lock);
1217 blk_queue_bypass_end(q);
1218}
1219EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1220
1221/**
Tejun Heo3c798392012-04-16 13:57:25 -07001222 * blkcg_policy_register - register a blkcg policy
1223 * @pol: blkcg policy to register
Tejun Heo8bd435b2012-04-13 13:11:28 -07001224 *
Tejun Heo3c798392012-04-16 13:57:25 -07001225 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1226 * successful registration. Returns 0 on success and -errno on failure.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001227 */
Jens Axboed5bf0292014-06-22 16:31:56 -06001228int blkcg_policy_register(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001229{
Tejun Heo06b285b2015-07-09 16:39:50 -04001230 struct blkcg *blkcg;
Tejun Heo8bd435b2012-04-13 13:11:28 -07001231 int i, ret;
Tejun Heoe8989fa2012-03-05 13:15:20 -08001232
Tejun Heo838f13b2015-07-09 16:39:47 -04001233 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001234 mutex_lock(&blkcg_pol_mutex);
1235
Tejun Heo8bd435b2012-04-13 13:11:28 -07001236 /* find an empty slot */
1237 ret = -ENOSPC;
1238 for (i = 0; i < BLKCG_MAX_POLS; i++)
Tejun Heo3c798392012-04-16 13:57:25 -07001239 if (!blkcg_policy[i])
Tejun Heo8bd435b2012-04-13 13:11:28 -07001240 break;
1241 if (i >= BLKCG_MAX_POLS)
Tejun Heo838f13b2015-07-09 16:39:47 -04001242 goto err_unlock;
Tejun Heo035d10b2012-03-05 13:15:04 -08001243
Tejun Heo06b285b2015-07-09 16:39:50 -04001244 /* register @pol */
Tejun Heo3c798392012-04-16 13:57:25 -07001245 pol->plid = i;
Tejun Heo06b285b2015-07-09 16:39:50 -04001246 blkcg_policy[pol->plid] = pol;
1247
1248 /* allocate and install cpd's */
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001249 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001250 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1251 struct blkcg_policy_data *cpd;
1252
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001253 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
Tejun Heo06b285b2015-07-09 16:39:50 -04001254 if (!cpd) {
1255 mutex_unlock(&blkcg_pol_mutex);
1256 goto err_free_cpds;
1257 }
1258
Tejun Heo81437642015-08-18 14:55:15 -07001259 blkcg->cpd[pol->plid] = cpd;
1260 cpd->blkcg = blkcg;
Tejun Heo06b285b2015-07-09 16:39:50 -04001261 cpd->plid = pol->plid;
Tejun Heo81437642015-08-18 14:55:15 -07001262 pol->cpd_init_fn(cpd);
Tejun Heo06b285b2015-07-09 16:39:50 -04001263 }
1264 }
1265
Tejun Heo838f13b2015-07-09 16:39:47 -04001266 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001267
Tejun Heo8bd435b2012-04-13 13:11:28 -07001268 /* everything is in place, add intf files for the new policy */
Tejun Heo3c798392012-04-16 13:57:25 -07001269 if (pol->cftypes)
Tejun Heoc165b3e2015-08-18 14:55:29 -07001270 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
Tejun Heo2cf669a2014-07-15 11:05:09 -04001271 pol->cftypes));
Tejun Heo838f13b2015-07-09 16:39:47 -04001272 mutex_unlock(&blkcg_pol_register_mutex);
1273 return 0;
1274
Tejun Heo06b285b2015-07-09 16:39:50 -04001275err_free_cpds:
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001276 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001277 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001278 if (blkcg->cpd[pol->plid]) {
1279 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1280 blkcg->cpd[pol->plid] = NULL;
1281 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001282 }
1283 }
1284 blkcg_policy[pol->plid] = NULL;
Tejun Heo838f13b2015-07-09 16:39:47 -04001285err_unlock:
Tejun Heobc0d6502012-04-13 13:11:26 -07001286 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001287 mutex_unlock(&blkcg_pol_register_mutex);
Tejun Heo8bd435b2012-04-13 13:11:28 -07001288 return ret;
Vivek Goyal3e252062009-12-04 10:36:42 -05001289}
Tejun Heo3c798392012-04-16 13:57:25 -07001290EXPORT_SYMBOL_GPL(blkcg_policy_register);
Vivek Goyal3e252062009-12-04 10:36:42 -05001291
Tejun Heo8bd435b2012-04-13 13:11:28 -07001292/**
Tejun Heo3c798392012-04-16 13:57:25 -07001293 * blkcg_policy_unregister - unregister a blkcg policy
1294 * @pol: blkcg policy to unregister
Tejun Heo8bd435b2012-04-13 13:11:28 -07001295 *
Tejun Heo3c798392012-04-16 13:57:25 -07001296 * Undo blkcg_policy_register(@pol). Might sleep.
Tejun Heo8bd435b2012-04-13 13:11:28 -07001297 */
Tejun Heo3c798392012-04-16 13:57:25 -07001298void blkcg_policy_unregister(struct blkcg_policy *pol)
Vivek Goyal3e252062009-12-04 10:36:42 -05001299{
Tejun Heo06b285b2015-07-09 16:39:50 -04001300 struct blkcg *blkcg;
1301
Tejun Heo838f13b2015-07-09 16:39:47 -04001302 mutex_lock(&blkcg_pol_register_mutex);
Tejun Heobc0d6502012-04-13 13:11:26 -07001303
Tejun Heo3c798392012-04-16 13:57:25 -07001304 if (WARN_ON(blkcg_policy[pol->plid] != pol))
Tejun Heo8bd435b2012-04-13 13:11:28 -07001305 goto out_unlock;
1306
1307 /* kill the intf files first */
Tejun Heo3c798392012-04-16 13:57:25 -07001308 if (pol->cftypes)
Tejun Heo2bb566c2013-08-08 20:11:23 -04001309 cgroup_rm_cftypes(pol->cftypes);
Tejun Heo44ea53d2012-04-01 14:38:43 -07001310
Tejun Heo06b285b2015-07-09 16:39:50 -04001311 /* remove cpds and unregister */
Tejun Heo838f13b2015-07-09 16:39:47 -04001312 mutex_lock(&blkcg_pol_mutex);
Tejun Heo06b285b2015-07-09 16:39:50 -04001313
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001314 if (pol->cpd_alloc_fn) {
Tejun Heo06b285b2015-07-09 16:39:50 -04001315 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
Tejun Heoe4a9bde2015-08-18 14:55:16 -07001316 if (blkcg->cpd[pol->plid]) {
1317 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1318 blkcg->cpd[pol->plid] = NULL;
1319 }
Tejun Heo06b285b2015-07-09 16:39:50 -04001320 }
1321 }
Tejun Heo3c798392012-04-16 13:57:25 -07001322 blkcg_policy[pol->plid] = NULL;
Tejun Heo06b285b2015-07-09 16:39:50 -04001323
Tejun Heobc0d6502012-04-13 13:11:26 -07001324 mutex_unlock(&blkcg_pol_mutex);
Tejun Heo838f13b2015-07-09 16:39:47 -04001325out_unlock:
1326 mutex_unlock(&blkcg_pol_register_mutex);
Vivek Goyal3e252062009-12-04 10:36:42 -05001327}
Tejun Heo3c798392012-04-16 13:57:25 -07001328EXPORT_SYMBOL_GPL(blkcg_policy_unregister);