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