]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - block/blk-cgroup.c
blkcg: s/blkg_rwstat_sum()/blkg_rwstat_total()/
[mirror_ubuntu-zesty-kernel.git] / block / blk-cgroup.c
CommitLineData
31e4c28d
VG
1/*
2 * Common Block IO controller cgroup interface
3 *
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
6 *
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
9 *
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
12 */
13#include <linux/ioprio.h>
22084190 14#include <linux/kdev_t.h>
9d6a986c 15#include <linux/module.h>
accee785 16#include <linux/err.h>
9195291e 17#include <linux/blkdev.h>
5a0e3ad6 18#include <linux/slab.h>
34d0f179 19#include <linux/genhd.h>
72e06c25 20#include <linux/delay.h>
9a9e8a26 21#include <linux/atomic.h>
72e06c25 22#include "blk-cgroup.h"
5efd6113 23#include "blk.h"
3e252066 24
84c124da
DS
25#define MAX_KEY_LEN 100
26
bc0d6501 27static DEFINE_MUTEX(blkcg_pol_mutex);
923adde1 28
e71357e1
TH
29struct blkcg blkcg_root = { .cfq_weight = 2 * CFQ_WEIGHT_DEFAULT,
30 .cfq_leaf_weight = 2 * CFQ_WEIGHT_DEFAULT, };
3c798398 31EXPORT_SYMBOL_GPL(blkcg_root);
9d6a986c 32
3c798398 33static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
035d10b2 34
a2b1693b 35static bool blkcg_policy_enabled(struct request_queue *q,
3c798398 36 const struct blkcg_policy *pol)
a2b1693b
TH
37{
38 return pol && test_bit(pol->plid, q->blkcg_pols);
39}
40
0381411e
TH
41/**
42 * blkg_free - free a blkg
43 * @blkg: blkg to free
44 *
45 * Free @blkg which may be partially allocated.
46 */
3c798398 47static void blkg_free(struct blkcg_gq *blkg)
0381411e 48{
e8989fae 49 int i;
549d3aa8
TH
50
51 if (!blkg)
52 return;
53
8bd435b3 54 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 55 struct blkcg_policy *pol = blkcg_policy[i];
e8989fae
TH
56 struct blkg_policy_data *pd = blkg->pd[i];
57
9ade5ea4
TH
58 if (!pd)
59 continue;
60
f9fcc2d3
TH
61 if (pol && pol->pd_exit_fn)
62 pol->pd_exit_fn(blkg);
9ade5ea4 63
9ade5ea4 64 kfree(pd);
0381411e 65 }
e8989fae 66
a051661c 67 blk_exit_rl(&blkg->rl);
549d3aa8 68 kfree(blkg);
0381411e
TH
69}
70
71/**
72 * blkg_alloc - allocate a blkg
73 * @blkcg: block cgroup the new blkg is associated with
74 * @q: request_queue the new blkg is associated with
15974993 75 * @gfp_mask: allocation mask to use
0381411e 76 *
e8989fae 77 * Allocate a new blkg assocating @blkcg and @q.
0381411e 78 */
15974993
TH
79static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
80 gfp_t gfp_mask)
0381411e 81{
3c798398 82 struct blkcg_gq *blkg;
e8989fae 83 int i;
0381411e
TH
84
85 /* alloc and init base part */
15974993 86 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
0381411e
TH
87 if (!blkg)
88 return NULL;
89
c875f4d0 90 blkg->q = q;
e8989fae 91 INIT_LIST_HEAD(&blkg->q_node);
0381411e 92 blkg->blkcg = blkcg;
1adaf3dd 93 blkg->refcnt = 1;
0381411e 94
a051661c
TH
95 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
96 if (blkcg != &blkcg_root) {
97 if (blk_init_rl(&blkg->rl, q, gfp_mask))
98 goto err_free;
99 blkg->rl.blkg = blkg;
100 }
101
8bd435b3 102 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 103 struct blkcg_policy *pol = blkcg_policy[i];
e8989fae 104 struct blkg_policy_data *pd;
0381411e 105
a2b1693b 106 if (!blkcg_policy_enabled(q, pol))
e8989fae
TH
107 continue;
108
109 /* alloc per-policy data and attach it to blkg */
15974993 110 pd = kzalloc_node(pol->pd_size, gfp_mask, q->node);
a051661c
TH
111 if (!pd)
112 goto err_free;
549d3aa8 113
e8989fae
TH
114 blkg->pd[i] = pd;
115 pd->blkg = blkg;
b276a876 116 pd->plid = i;
e8989fae 117
9b2ea86b 118 /* invoke per-policy init */
356d2e58 119 if (pol->pd_init_fn)
f9fcc2d3 120 pol->pd_init_fn(blkg);
e8989fae
TH
121 }
122
0381411e 123 return blkg;
a051661c
TH
124
125err_free:
126 blkg_free(blkg);
127 return NULL;
0381411e
TH
128}
129
3c798398 130static struct blkcg_gq *__blkg_lookup(struct blkcg *blkcg,
86cde6b6 131 struct request_queue *q, bool update_hint)
80fd9979 132{
3c798398 133 struct blkcg_gq *blkg;
80fd9979 134
a637120e
TH
135 blkg = rcu_dereference(blkcg->blkg_hint);
136 if (blkg && blkg->q == q)
137 return blkg;
138
139 /*
86cde6b6
TH
140 * Hint didn't match. Look up from the radix tree. Note that the
141 * hint can only be updated under queue_lock as otherwise @blkg
142 * could have already been removed from blkg_tree. The caller is
143 * responsible for grabbing queue_lock if @update_hint.
a637120e
TH
144 */
145 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
86cde6b6
TH
146 if (blkg && blkg->q == q) {
147 if (update_hint) {
148 lockdep_assert_held(q->queue_lock);
149 rcu_assign_pointer(blkcg->blkg_hint, blkg);
150 }
a637120e 151 return blkg;
86cde6b6 152 }
a637120e 153
80fd9979
TH
154 return NULL;
155}
156
157/**
158 * blkg_lookup - lookup blkg for the specified blkcg - q pair
159 * @blkcg: blkcg of interest
160 * @q: request_queue of interest
161 *
162 * Lookup blkg for the @blkcg - @q pair. This function should be called
163 * under RCU read lock and is guaranteed to return %NULL if @q is bypassing
164 * - see blk_queue_bypass_start() for details.
165 */
3c798398 166struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q)
80fd9979
TH
167{
168 WARN_ON_ONCE(!rcu_read_lock_held());
169
170 if (unlikely(blk_queue_bypass(q)))
171 return NULL;
86cde6b6 172 return __blkg_lookup(blkcg, q, false);
80fd9979
TH
173}
174EXPORT_SYMBOL_GPL(blkg_lookup);
175
15974993
TH
176/*
177 * If @new_blkg is %NULL, this function tries to allocate a new one as
178 * necessary using %GFP_ATOMIC. @new_blkg is always consumed on return.
179 */
86cde6b6
TH
180static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
181 struct request_queue *q,
182 struct blkcg_gq *new_blkg)
5624a4e4 183{
3c798398 184 struct blkcg_gq *blkg;
f427d909 185 int i, ret;
5624a4e4 186
cd1604fa
TH
187 WARN_ON_ONCE(!rcu_read_lock_held());
188 lockdep_assert_held(q->queue_lock);
189
7ee9c562 190 /* blkg holds a reference to blkcg */
15974993 191 if (!css_tryget(&blkcg->css)) {
93e6d5d8
TH
192 ret = -EINVAL;
193 goto err_free_blkg;
15974993 194 }
cd1604fa 195
496fb780 196 /* allocate */
15974993
TH
197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_ATOMIC);
199 if (unlikely(!new_blkg)) {
93e6d5d8
TH
200 ret = -ENOMEM;
201 goto err_put_css;
15974993
TH
202 }
203 }
204 blkg = new_blkg;
cd1604fa 205
3c547865
TH
206 /* link parent and insert */
207 if (blkcg_parent(blkcg)) {
208 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
209 if (WARN_ON_ONCE(!blkg->parent)) {
210 blkg = ERR_PTR(-EINVAL);
211 goto err_put_css;
212 }
213 blkg_get(blkg->parent);
214 }
215
cd1604fa 216 spin_lock(&blkcg->lock);
a637120e
TH
217 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
218 if (likely(!ret)) {
219 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
220 list_add(&blkg->q_node, &q->blkg_list);
f427d909
TH
221
222 for (i = 0; i < BLKCG_MAX_POLS; i++) {
223 struct blkcg_policy *pol = blkcg_policy[i];
224
225 if (blkg->pd[i] && pol->pd_online_fn)
226 pol->pd_online_fn(blkg);
227 }
a637120e 228 }
f427d909 229 blkg->online = true;
cd1604fa 230 spin_unlock(&blkcg->lock);
496fb780 231
a637120e
TH
232 if (!ret)
233 return blkg;
15974993 234
3c547865
TH
235 /* @blkg failed fully initialized, use the usual release path */
236 blkg_put(blkg);
237 return ERR_PTR(ret);
238
93e6d5d8 239err_put_css:
496fb780 240 css_put(&blkcg->css);
93e6d5d8 241err_free_blkg:
15974993 242 blkg_free(new_blkg);
93e6d5d8 243 return ERR_PTR(ret);
31e4c28d 244}
3c96cb32 245
86cde6b6
TH
246/**
247 * blkg_lookup_create - lookup blkg, try to create one if not there
248 * @blkcg: blkcg of interest
249 * @q: request_queue of interest
250 *
251 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
3c547865
TH
252 * create one. blkg creation is performed recursively from blkcg_root such
253 * that all non-root blkg's have access to the parent blkg. This function
254 * should be called under RCU read lock and @q->queue_lock.
86cde6b6
TH
255 *
256 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
257 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
258 * dead and bypassing, returns ERR_PTR(-EBUSY).
259 */
3c798398
TH
260struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
261 struct request_queue *q)
3c96cb32 262{
86cde6b6
TH
263 struct blkcg_gq *blkg;
264
265 WARN_ON_ONCE(!rcu_read_lock_held());
266 lockdep_assert_held(q->queue_lock);
267
3c96cb32
TH
268 /*
269 * This could be the first entry point of blkcg implementation and
270 * we shouldn't allow anything to go through for a bypassing queue.
271 */
272 if (unlikely(blk_queue_bypass(q)))
3f3299d5 273 return ERR_PTR(blk_queue_dying(q) ? -EINVAL : -EBUSY);
86cde6b6
TH
274
275 blkg = __blkg_lookup(blkcg, q, true);
276 if (blkg)
277 return blkg;
278
3c547865
TH
279 /*
280 * Create blkgs walking down from blkcg_root to @blkcg, so that all
281 * non-root blkgs have access to their parents.
282 */
283 while (true) {
284 struct blkcg *pos = blkcg;
285 struct blkcg *parent = blkcg_parent(blkcg);
286
287 while (parent && !__blkg_lookup(parent, q, false)) {
288 pos = parent;
289 parent = blkcg_parent(parent);
290 }
291
292 blkg = blkg_create(pos, q, NULL);
293 if (pos == blkcg || IS_ERR(blkg))
294 return blkg;
295 }
3c96cb32 296}
cd1604fa 297EXPORT_SYMBOL_GPL(blkg_lookup_create);
31e4c28d 298
3c798398 299static void blkg_destroy(struct blkcg_gq *blkg)
03aa264a 300{
3c798398 301 struct blkcg *blkcg = blkg->blkcg;
f427d909 302 int i;
03aa264a 303
27e1f9d1 304 lockdep_assert_held(blkg->q->queue_lock);
9f13ef67 305 lockdep_assert_held(&blkcg->lock);
03aa264a
TH
306
307 /* Something wrong if we are trying to remove same group twice */
e8989fae 308 WARN_ON_ONCE(list_empty(&blkg->q_node));
9f13ef67 309 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
a637120e 310
f427d909
TH
311 for (i = 0; i < BLKCG_MAX_POLS; i++) {
312 struct blkcg_policy *pol = blkcg_policy[i];
313
314 if (blkg->pd[i] && pol->pd_offline_fn)
315 pol->pd_offline_fn(blkg);
316 }
317 blkg->online = false;
318
a637120e 319 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
e8989fae 320 list_del_init(&blkg->q_node);
9f13ef67 321 hlist_del_init_rcu(&blkg->blkcg_node);
03aa264a 322
a637120e
TH
323 /*
324 * Both setting lookup hint to and clearing it from @blkg are done
325 * under queue_lock. If it's not pointing to @blkg now, it never
326 * will. Hint assignment itself can race safely.
327 */
328 if (rcu_dereference_raw(blkcg->blkg_hint) == blkg)
329 rcu_assign_pointer(blkcg->blkg_hint, NULL);
330
03aa264a
TH
331 /*
332 * Put the reference taken at the time of creation so that when all
333 * queues are gone, group can be destroyed.
334 */
335 blkg_put(blkg);
336}
337
9f13ef67
TH
338/**
339 * blkg_destroy_all - destroy all blkgs associated with a request_queue
340 * @q: request_queue of interest
9f13ef67 341 *
3c96cb32 342 * Destroy all blkgs associated with @q.
9f13ef67 343 */
3c96cb32 344static void blkg_destroy_all(struct request_queue *q)
72e06c25 345{
3c798398 346 struct blkcg_gq *blkg, *n;
72e06c25 347
6d18b008 348 lockdep_assert_held(q->queue_lock);
72e06c25 349
9f13ef67 350 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
3c798398 351 struct blkcg *blkcg = blkg->blkcg;
72e06c25 352
9f13ef67
TH
353 spin_lock(&blkcg->lock);
354 blkg_destroy(blkg);
355 spin_unlock(&blkcg->lock);
72e06c25 356 }
65635cbc
JN
357
358 /*
359 * root blkg is destroyed. Just clear the pointer since
360 * root_rl does not take reference on root blkg.
361 */
362 q->root_blkg = NULL;
363 q->root_rl.blkg = NULL;
72e06c25
TH
364}
365
1adaf3dd
TH
366static void blkg_rcu_free(struct rcu_head *rcu_head)
367{
3c798398 368 blkg_free(container_of(rcu_head, struct blkcg_gq, rcu_head));
1adaf3dd
TH
369}
370
3c798398 371void __blkg_release(struct blkcg_gq *blkg)
1adaf3dd 372{
3c547865 373 /* release the blkcg and parent blkg refs this blkg has been holding */
1adaf3dd 374 css_put(&blkg->blkcg->css);
3c547865
TH
375 if (blkg->parent)
376 blkg_put(blkg->parent);
1adaf3dd
TH
377
378 /*
379 * A group is freed in rcu manner. But having an rcu lock does not
380 * mean that one can access all the fields of blkg and assume these
381 * are valid. For example, don't try to follow throtl_data and
382 * request queue links.
383 *
384 * Having a reference to blkg under an rcu allows acess to only
385 * values local to groups like group stats and group rate limits
386 */
387 call_rcu(&blkg->rcu_head, blkg_rcu_free);
388}
389EXPORT_SYMBOL_GPL(__blkg_release);
390
a051661c
TH
391/*
392 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
393 * because the root blkg uses @q->root_rl instead of its own rl.
394 */
395struct request_list *__blk_queue_next_rl(struct request_list *rl,
396 struct request_queue *q)
397{
398 struct list_head *ent;
399 struct blkcg_gq *blkg;
400
401 /*
402 * Determine the current blkg list_head. The first entry is
403 * root_rl which is off @q->blkg_list and mapped to the head.
404 */
405 if (rl == &q->root_rl) {
406 ent = &q->blkg_list;
65c77fd9
JN
407 /* There are no more block groups, hence no request lists */
408 if (list_empty(ent))
409 return NULL;
a051661c
TH
410 } else {
411 blkg = container_of(rl, struct blkcg_gq, rl);
412 ent = &blkg->q_node;
413 }
414
415 /* walk to the next list_head, skip root blkcg */
416 ent = ent->next;
417 if (ent == &q->root_blkg->q_node)
418 ent = ent->next;
419 if (ent == &q->blkg_list)
420 return NULL;
421
422 blkg = container_of(ent, struct blkcg_gq, q_node);
423 return &blkg->rl;
424}
425
3c798398
TH
426static int blkcg_reset_stats(struct cgroup *cgroup, struct cftype *cftype,
427 u64 val)
303a3acb 428{
3c798398
TH
429 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
430 struct blkcg_gq *blkg;
303a3acb 431 struct hlist_node *n;
bc0d6501 432 int i;
303a3acb 433
bc0d6501 434 mutex_lock(&blkcg_pol_mutex);
303a3acb 435 spin_lock_irq(&blkcg->lock);
997a026c
TH
436
437 /*
438 * Note that stat reset is racy - it doesn't synchronize against
439 * stat updates. This is a debug feature which shouldn't exist
440 * anyway. If you get hit by a race, retry.
441 */
303a3acb 442 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node) {
8bd435b3 443 for (i = 0; i < BLKCG_MAX_POLS; i++) {
3c798398 444 struct blkcg_policy *pol = blkcg_policy[i];
549d3aa8 445
a2b1693b 446 if (blkcg_policy_enabled(blkg->q, pol) &&
f9fcc2d3
TH
447 pol->pd_reset_stats_fn)
448 pol->pd_reset_stats_fn(blkg);
bc0d6501 449 }
303a3acb 450 }
f0bdc8cd 451
303a3acb 452 spin_unlock_irq(&blkcg->lock);
bc0d6501 453 mutex_unlock(&blkcg_pol_mutex);
303a3acb
DS
454 return 0;
455}
456
3c798398 457static const char *blkg_dev_name(struct blkcg_gq *blkg)
303a3acb 458{
d3d32e69
TH
459 /* some drivers (floppy) instantiate a queue w/o disk registered */
460 if (blkg->q->backing_dev_info.dev)
461 return dev_name(blkg->q->backing_dev_info.dev);
462 return NULL;
303a3acb
DS
463}
464
d3d32e69
TH
465/**
466 * blkcg_print_blkgs - helper for printing per-blkg data
467 * @sf: seq_file to print to
468 * @blkcg: blkcg of interest
469 * @prfill: fill function to print out a blkg
470 * @pol: policy in question
471 * @data: data to be passed to @prfill
472 * @show_total: to print out sum of prfill return values or not
473 *
474 * This function invokes @prfill on each blkg of @blkcg if pd for the
475 * policy specified by @pol exists. @prfill is invoked with @sf, the
476 * policy data and @data. If @show_total is %true, the sum of the return
477 * values from @prfill is printed with "Total" label at the end.
478 *
479 * This is to be used to construct print functions for
480 * cftype->read_seq_string method.
481 */
3c798398 482void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
f95a04af
TH
483 u64 (*prfill)(struct seq_file *,
484 struct blkg_policy_data *, int),
3c798398 485 const struct blkcg_policy *pol, int data,
ec399347 486 bool show_total)
5624a4e4 487{
3c798398 488 struct blkcg_gq *blkg;
d3d32e69
TH
489 struct hlist_node *n;
490 u64 total = 0;
5624a4e4 491
d3d32e69
TH
492 spin_lock_irq(&blkcg->lock);
493 hlist_for_each_entry(blkg, n, &blkcg->blkg_list, blkcg_node)
a2b1693b 494 if (blkcg_policy_enabled(blkg->q, pol))
f95a04af 495 total += prfill(sf, blkg->pd[pol->plid], data);
d3d32e69
TH
496 spin_unlock_irq(&blkcg->lock);
497
498 if (show_total)
499 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
500}
829fdb50 501EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
d3d32e69
TH
502
503/**
504 * __blkg_prfill_u64 - prfill helper for a single u64 value
505 * @sf: seq_file to print to
f95a04af 506 * @pd: policy private data of interest
d3d32e69
TH
507 * @v: value to print
508 *
f95a04af 509 * Print @v to @sf for the device assocaited with @pd.
d3d32e69 510 */
f95a04af 511u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
d3d32e69 512{
f95a04af 513 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
514
515 if (!dname)
516 return 0;
517
518 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
519 return v;
520}
829fdb50 521EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
d3d32e69
TH
522
523/**
524 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
525 * @sf: seq_file to print to
f95a04af 526 * @pd: policy private data of interest
d3d32e69
TH
527 * @rwstat: rwstat to print
528 *
f95a04af 529 * Print @rwstat to @sf for the device assocaited with @pd.
d3d32e69 530 */
f95a04af 531u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
829fdb50 532 const struct blkg_rwstat *rwstat)
d3d32e69
TH
533{
534 static const char *rwstr[] = {
535 [BLKG_RWSTAT_READ] = "Read",
536 [BLKG_RWSTAT_WRITE] = "Write",
537 [BLKG_RWSTAT_SYNC] = "Sync",
538 [BLKG_RWSTAT_ASYNC] = "Async",
539 };
f95a04af 540 const char *dname = blkg_dev_name(pd->blkg);
d3d32e69
TH
541 u64 v;
542 int i;
543
544 if (!dname)
545 return 0;
546
547 for (i = 0; i < BLKG_RWSTAT_NR; i++)
548 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
549 (unsigned long long)rwstat->cnt[i]);
550
551 v = rwstat->cnt[BLKG_RWSTAT_READ] + rwstat->cnt[BLKG_RWSTAT_WRITE];
552 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
553 return v;
554}
555
5bc4afb1
TH
556/**
557 * blkg_prfill_stat - prfill callback for blkg_stat
558 * @sf: seq_file to print to
f95a04af
TH
559 * @pd: policy private data of interest
560 * @off: offset to the blkg_stat in @pd
5bc4afb1
TH
561 *
562 * prfill callback for printing a blkg_stat.
563 */
f95a04af 564u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
d3d32e69 565{
f95a04af 566 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
d3d32e69 567}
5bc4afb1 568EXPORT_SYMBOL_GPL(blkg_prfill_stat);
d3d32e69 569
5bc4afb1
TH
570/**
571 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
572 * @sf: seq_file to print to
f95a04af
TH
573 * @pd: policy private data of interest
574 * @off: offset to the blkg_rwstat in @pd
5bc4afb1
TH
575 *
576 * prfill callback for printing a blkg_rwstat.
577 */
f95a04af
TH
578u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
579 int off)
d3d32e69 580{
f95a04af 581 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
d3d32e69 582
f95a04af 583 return __blkg_prfill_rwstat(sf, pd, &rwstat);
d3d32e69 584}
5bc4afb1 585EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
d3d32e69 586
3a8b31d3
TH
587/**
588 * blkg_conf_prep - parse and prepare for per-blkg config update
589 * @blkcg: target block cgroup
da8b0662 590 * @pol: target policy
3a8b31d3
TH
591 * @input: input string
592 * @ctx: blkg_conf_ctx to be filled
593 *
594 * Parse per-blkg config update from @input and initialize @ctx with the
595 * result. @ctx->blkg points to the blkg to be updated and @ctx->v the new
da8b0662
TH
596 * value. This function returns with RCU read lock and queue lock held and
597 * must be paired with blkg_conf_finish().
3a8b31d3 598 */
3c798398
TH
599int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
600 const char *input, struct blkg_conf_ctx *ctx)
da8b0662 601 __acquires(rcu) __acquires(disk->queue->queue_lock)
34d0f179 602{
3a8b31d3 603 struct gendisk *disk;
3c798398 604 struct blkcg_gq *blkg;
726fa694
TH
605 unsigned int major, minor;
606 unsigned long long v;
607 int part, ret;
34d0f179 608
726fa694
TH
609 if (sscanf(input, "%u:%u %llu", &major, &minor, &v) != 3)
610 return -EINVAL;
3a8b31d3 611
726fa694 612 disk = get_gendisk(MKDEV(major, minor), &part);
4bfd482e 613 if (!disk || part)
726fa694 614 return -EINVAL;
e56da7e2
TH
615
616 rcu_read_lock();
4bfd482e 617 spin_lock_irq(disk->queue->queue_lock);
da8b0662 618
a2b1693b 619 if (blkcg_policy_enabled(disk->queue, pol))
3c96cb32 620 blkg = blkg_lookup_create(blkcg, disk->queue);
a2b1693b
TH
621 else
622 blkg = ERR_PTR(-EINVAL);
e56da7e2 623
4bfd482e
TH
624 if (IS_ERR(blkg)) {
625 ret = PTR_ERR(blkg);
3a8b31d3 626 rcu_read_unlock();
da8b0662 627 spin_unlock_irq(disk->queue->queue_lock);
3a8b31d3
TH
628 put_disk(disk);
629 /*
630 * If queue was bypassing, we should retry. Do so after a
631 * short msleep(). It isn't strictly necessary but queue
632 * can be bypassing for some time and it's always nice to
633 * avoid busy looping.
634 */
635 if (ret == -EBUSY) {
636 msleep(10);
637 ret = restart_syscall();
7702e8f4 638 }
726fa694 639 return ret;
062a644d 640 }
3a8b31d3
TH
641
642 ctx->disk = disk;
643 ctx->blkg = blkg;
726fa694
TH
644 ctx->v = v;
645 return 0;
34d0f179 646}
829fdb50 647EXPORT_SYMBOL_GPL(blkg_conf_prep);
34d0f179 648
3a8b31d3
TH
649/**
650 * blkg_conf_finish - finish up per-blkg config update
651 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
652 *
653 * Finish up after per-blkg config update. This function must be paired
654 * with blkg_conf_prep().
655 */
829fdb50 656void blkg_conf_finish(struct blkg_conf_ctx *ctx)
da8b0662 657 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
34d0f179 658{
da8b0662 659 spin_unlock_irq(ctx->disk->queue->queue_lock);
3a8b31d3
TH
660 rcu_read_unlock();
661 put_disk(ctx->disk);
34d0f179 662}
829fdb50 663EXPORT_SYMBOL_GPL(blkg_conf_finish);
34d0f179 664
3c798398 665struct cftype blkcg_files[] = {
84c124da
DS
666 {
667 .name = "reset_stats",
3c798398 668 .write_u64 = blkcg_reset_stats,
22084190 669 },
4baf6e33 670 { } /* terminate */
31e4c28d
VG
671};
672
9f13ef67 673/**
92fb9748 674 * blkcg_css_offline - cgroup css_offline callback
9f13ef67
TH
675 * @cgroup: cgroup of interest
676 *
677 * This function is called when @cgroup is about to go away and responsible
678 * for shooting down all blkgs associated with @cgroup. blkgs should be
679 * removed while holding both q and blkcg locks. As blkcg lock is nested
680 * inside q lock, this function performs reverse double lock dancing.
681 *
682 * This is the blkcg counterpart of ioc_release_fn().
683 */
92fb9748 684static void blkcg_css_offline(struct cgroup *cgroup)
31e4c28d 685{
3c798398 686 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
b1c35769 687
9f13ef67 688 spin_lock_irq(&blkcg->lock);
7ee9c562 689
9f13ef67 690 while (!hlist_empty(&blkcg->blkg_list)) {
3c798398
TH
691 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
692 struct blkcg_gq, blkcg_node);
c875f4d0 693 struct request_queue *q = blkg->q;
b1c35769 694
9f13ef67
TH
695 if (spin_trylock(q->queue_lock)) {
696 blkg_destroy(blkg);
697 spin_unlock(q->queue_lock);
698 } else {
699 spin_unlock_irq(&blkcg->lock);
9f13ef67 700 cpu_relax();
a5567932 701 spin_lock_irq(&blkcg->lock);
0f3942a3 702 }
9f13ef67 703 }
b1c35769 704
9f13ef67 705 spin_unlock_irq(&blkcg->lock);
7ee9c562
TH
706}
707
92fb9748 708static void blkcg_css_free(struct cgroup *cgroup)
7ee9c562 709{
3c798398 710 struct blkcg *blkcg = cgroup_to_blkcg(cgroup);
7ee9c562 711
3c798398 712 if (blkcg != &blkcg_root)
67523c48 713 kfree(blkcg);
31e4c28d
VG
714}
715
92fb9748 716static struct cgroup_subsys_state *blkcg_css_alloc(struct cgroup *cgroup)
31e4c28d 717{
9a9e8a26 718 static atomic64_t id_seq = ATOMIC64_INIT(0);
3c798398 719 struct blkcg *blkcg;
0341509f 720 struct cgroup *parent = cgroup->parent;
31e4c28d 721
0341509f 722 if (!parent) {
3c798398 723 blkcg = &blkcg_root;
31e4c28d
VG
724 goto done;
725 }
726
31e4c28d
VG
727 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
728 if (!blkcg)
729 return ERR_PTR(-ENOMEM);
730
3381cb8d 731 blkcg->cfq_weight = CFQ_WEIGHT_DEFAULT;
e71357e1 732 blkcg->cfq_leaf_weight = CFQ_WEIGHT_DEFAULT;
9a9e8a26 733 blkcg->id = atomic64_inc_return(&id_seq); /* root is 0, start from 1 */
31e4c28d
VG
734done:
735 spin_lock_init(&blkcg->lock);
a637120e 736 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_ATOMIC);
31e4c28d
VG
737 INIT_HLIST_HEAD(&blkcg->blkg_list);
738
739 return &blkcg->css;
740}
741
5efd6113
TH
742/**
743 * blkcg_init_queue - initialize blkcg part of request queue
744 * @q: request_queue to initialize
745 *
746 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
747 * part of new request_queue @q.
748 *
749 * RETURNS:
750 * 0 on success, -errno on failure.
751 */
752int blkcg_init_queue(struct request_queue *q)
753{
754 might_sleep();
755
3c96cb32 756 return blk_throtl_init(q);
5efd6113
TH
757}
758
759/**
760 * blkcg_drain_queue - drain blkcg part of request_queue
761 * @q: request_queue to drain
762 *
763 * Called from blk_drain_queue(). Responsible for draining blkcg part.
764 */
765void blkcg_drain_queue(struct request_queue *q)
766{
767 lockdep_assert_held(q->queue_lock);
768
769 blk_throtl_drain(q);
770}
771
772/**
773 * blkcg_exit_queue - exit and release blkcg part of request_queue
774 * @q: request_queue being released
775 *
776 * Called from blk_release_queue(). Responsible for exiting blkcg part.
777 */
778void blkcg_exit_queue(struct request_queue *q)
779{
6d18b008 780 spin_lock_irq(q->queue_lock);
3c96cb32 781 blkg_destroy_all(q);
6d18b008
TH
782 spin_unlock_irq(q->queue_lock);
783
5efd6113
TH
784 blk_throtl_exit(q);
785}
786
31e4c28d
VG
787/*
788 * We cannot support shared io contexts, as we have no mean to support
789 * two tasks with the same ioc in two different groups without major rework
790 * of the main cic data structures. For now we allow a task to change
791 * its cgroup only if it's the only owner of its ioc.
792 */
3c798398 793static int blkcg_can_attach(struct cgroup *cgrp, struct cgroup_taskset *tset)
31e4c28d 794{
bb9d97b6 795 struct task_struct *task;
31e4c28d
VG
796 struct io_context *ioc;
797 int ret = 0;
798
799 /* task_lock() is needed to avoid races with exit_io_context() */
bb9d97b6
TH
800 cgroup_taskset_for_each(task, cgrp, tset) {
801 task_lock(task);
802 ioc = task->io_context;
803 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
804 ret = -EINVAL;
805 task_unlock(task);
806 if (ret)
807 break;
808 }
31e4c28d
VG
809 return ret;
810}
811
676f7c8f
TH
812struct cgroup_subsys blkio_subsys = {
813 .name = "blkio",
92fb9748
TH
814 .css_alloc = blkcg_css_alloc,
815 .css_offline = blkcg_css_offline,
816 .css_free = blkcg_css_free,
3c798398 817 .can_attach = blkcg_can_attach,
676f7c8f 818 .subsys_id = blkio_subsys_id,
3c798398 819 .base_cftypes = blkcg_files,
676f7c8f 820 .module = THIS_MODULE,
8c7f6edb
TH
821
822 /*
823 * blkio subsystem is utterly broken in terms of hierarchy support.
824 * It treats all cgroups equally regardless of where they're
825 * located in the hierarchy - all cgroups are treated as if they're
826 * right below the root. Fix it and remove the following.
827 */
828 .broken_hierarchy = true,
676f7c8f
TH
829};
830EXPORT_SYMBOL_GPL(blkio_subsys);
831
a2b1693b
TH
832/**
833 * blkcg_activate_policy - activate a blkcg policy on a request_queue
834 * @q: request_queue of interest
835 * @pol: blkcg policy to activate
836 *
837 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
838 * bypass mode to populate its blkgs with policy_data for @pol.
839 *
840 * Activation happens with @q bypassed, so nobody would be accessing blkgs
841 * from IO path. Update of each blkg is protected by both queue and blkcg
842 * locks so that holding either lock and testing blkcg_policy_enabled() is
843 * always enough for dereferencing policy data.
844 *
845 * The caller is responsible for synchronizing [de]activations and policy
846 * [un]registerations. Returns 0 on success, -errno on failure.
847 */
848int blkcg_activate_policy(struct request_queue *q,
3c798398 849 const struct blkcg_policy *pol)
a2b1693b
TH
850{
851 LIST_HEAD(pds);
86cde6b6 852 struct blkcg_gq *blkg, *new_blkg;
a2b1693b
TH
853 struct blkg_policy_data *pd, *n;
854 int cnt = 0, ret;
15974993 855 bool preloaded;
a2b1693b
TH
856
857 if (blkcg_policy_enabled(q, pol))
858 return 0;
859
15974993 860 /* preallocations for root blkg */
86cde6b6
TH
861 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
862 if (!new_blkg)
15974993
TH
863 return -ENOMEM;
864
865 preloaded = !radix_tree_preload(GFP_KERNEL);
866
a2b1693b
TH
867 blk_queue_bypass_start(q);
868
86cde6b6
TH
869 /*
870 * Make sure the root blkg exists and count the existing blkgs. As
871 * @q is bypassing at this point, blkg_lookup_create() can't be
872 * used. Open code it.
873 */
a2b1693b
TH
874 spin_lock_irq(q->queue_lock);
875
876 rcu_read_lock();
86cde6b6
TH
877 blkg = __blkg_lookup(&blkcg_root, q, false);
878 if (blkg)
879 blkg_free(new_blkg);
880 else
881 blkg = blkg_create(&blkcg_root, q, new_blkg);
a2b1693b
TH
882 rcu_read_unlock();
883
15974993
TH
884 if (preloaded)
885 radix_tree_preload_end();
886
a2b1693b
TH
887 if (IS_ERR(blkg)) {
888 ret = PTR_ERR(blkg);
889 goto out_unlock;
890 }
891 q->root_blkg = blkg;
a051661c 892 q->root_rl.blkg = blkg;
a2b1693b
TH
893
894 list_for_each_entry(blkg, &q->blkg_list, q_node)
895 cnt++;
896
897 spin_unlock_irq(q->queue_lock);
898
899 /* allocate policy_data for all existing blkgs */
900 while (cnt--) {
f95a04af 901 pd = kzalloc_node(pol->pd_size, GFP_KERNEL, q->node);
a2b1693b
TH
902 if (!pd) {
903 ret = -ENOMEM;
904 goto out_free;
905 }
906 list_add_tail(&pd->alloc_node, &pds);
907 }
908
909 /*
910 * Install the allocated pds. With @q bypassing, no new blkg
911 * should have been created while the queue lock was dropped.
912 */
913 spin_lock_irq(q->queue_lock);
914
915 list_for_each_entry(blkg, &q->blkg_list, q_node) {
916 if (WARN_ON(list_empty(&pds))) {
917 /* umm... this shouldn't happen, just abort */
918 ret = -ENOMEM;
919 goto out_unlock;
920 }
921 pd = list_first_entry(&pds, struct blkg_policy_data, alloc_node);
922 list_del_init(&pd->alloc_node);
923
924 /* grab blkcg lock too while installing @pd on @blkg */
925 spin_lock(&blkg->blkcg->lock);
926
927 blkg->pd[pol->plid] = pd;
928 pd->blkg = blkg;
b276a876 929 pd->plid = pol->plid;
f9fcc2d3 930 pol->pd_init_fn(blkg);
a2b1693b
TH
931
932 spin_unlock(&blkg->blkcg->lock);
933 }
934
935 __set_bit(pol->plid, q->blkcg_pols);
936 ret = 0;
937out_unlock:
938 spin_unlock_irq(q->queue_lock);
939out_free:
940 blk_queue_bypass_end(q);
941 list_for_each_entry_safe(pd, n, &pds, alloc_node)
942 kfree(pd);
943 return ret;
944}
945EXPORT_SYMBOL_GPL(blkcg_activate_policy);
946
947/**
948 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
949 * @q: request_queue of interest
950 * @pol: blkcg policy to deactivate
951 *
952 * Deactivate @pol on @q. Follows the same synchronization rules as
953 * blkcg_activate_policy().
954 */
955void blkcg_deactivate_policy(struct request_queue *q,
3c798398 956 const struct blkcg_policy *pol)
a2b1693b 957{
3c798398 958 struct blkcg_gq *blkg;
a2b1693b
TH
959
960 if (!blkcg_policy_enabled(q, pol))
961 return;
962
963 blk_queue_bypass_start(q);
964 spin_lock_irq(q->queue_lock);
965
966 __clear_bit(pol->plid, q->blkcg_pols);
967
6d18b008
TH
968 /* if no policy is left, no need for blkgs - shoot them down */
969 if (bitmap_empty(q->blkcg_pols, BLKCG_MAX_POLS))
970 blkg_destroy_all(q);
971
a2b1693b
TH
972 list_for_each_entry(blkg, &q->blkg_list, q_node) {
973 /* grab blkcg lock too while removing @pd from @blkg */
974 spin_lock(&blkg->blkcg->lock);
975
f427d909
TH
976 if (pol->pd_offline_fn)
977 pol->pd_offline_fn(blkg);
f9fcc2d3
TH
978 if (pol->pd_exit_fn)
979 pol->pd_exit_fn(blkg);
a2b1693b
TH
980
981 kfree(blkg->pd[pol->plid]);
982 blkg->pd[pol->plid] = NULL;
983
984 spin_unlock(&blkg->blkcg->lock);
985 }
986
987 spin_unlock_irq(q->queue_lock);
988 blk_queue_bypass_end(q);
989}
990EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
991
8bd435b3 992/**
3c798398
TH
993 * blkcg_policy_register - register a blkcg policy
994 * @pol: blkcg policy to register
8bd435b3 995 *
3c798398
TH
996 * Register @pol with blkcg core. Might sleep and @pol may be modified on
997 * successful registration. Returns 0 on success and -errno on failure.
8bd435b3 998 */
3c798398 999int blkcg_policy_register(struct blkcg_policy *pol)
3e252066 1000{
8bd435b3 1001 int i, ret;
e8989fae 1002
f95a04af
TH
1003 if (WARN_ON(pol->pd_size < sizeof(struct blkg_policy_data)))
1004 return -EINVAL;
1005
bc0d6501
TH
1006 mutex_lock(&blkcg_pol_mutex);
1007
8bd435b3
TH
1008 /* find an empty slot */
1009 ret = -ENOSPC;
1010 for (i = 0; i < BLKCG_MAX_POLS; i++)
3c798398 1011 if (!blkcg_policy[i])
8bd435b3
TH
1012 break;
1013 if (i >= BLKCG_MAX_POLS)
1014 goto out_unlock;
035d10b2 1015
8bd435b3 1016 /* register and update blkgs */
3c798398
TH
1017 pol->plid = i;
1018 blkcg_policy[i] = pol;
8bd435b3 1019
8bd435b3 1020 /* everything is in place, add intf files for the new policy */
3c798398
TH
1021 if (pol->cftypes)
1022 WARN_ON(cgroup_add_cftypes(&blkio_subsys, pol->cftypes));
8bd435b3
TH
1023 ret = 0;
1024out_unlock:
bc0d6501 1025 mutex_unlock(&blkcg_pol_mutex);
8bd435b3 1026 return ret;
3e252066 1027}
3c798398 1028EXPORT_SYMBOL_GPL(blkcg_policy_register);
3e252066 1029
8bd435b3 1030/**
3c798398
TH
1031 * blkcg_policy_unregister - unregister a blkcg policy
1032 * @pol: blkcg policy to unregister
8bd435b3 1033 *
3c798398 1034 * Undo blkcg_policy_register(@pol). Might sleep.
8bd435b3 1035 */
3c798398 1036void blkcg_policy_unregister(struct blkcg_policy *pol)
3e252066 1037{
bc0d6501
TH
1038 mutex_lock(&blkcg_pol_mutex);
1039
3c798398 1040 if (WARN_ON(blkcg_policy[pol->plid] != pol))
8bd435b3
TH
1041 goto out_unlock;
1042
1043 /* kill the intf files first */
3c798398
TH
1044 if (pol->cftypes)
1045 cgroup_rm_cftypes(&blkio_subsys, pol->cftypes);
44ea53de 1046
8bd435b3 1047 /* unregister and update blkgs */
3c798398 1048 blkcg_policy[pol->plid] = NULL;
8bd435b3 1049out_unlock:
bc0d6501 1050 mutex_unlock(&blkcg_pol_mutex);
3e252066 1051}
3c798398 1052EXPORT_SYMBOL_GPL(blkcg_policy_unregister);