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