mmc: meson-gx: remove member parent_mux from struct meson_host
[linux-2.6/btrfs-unstable.git] / block / blk-cgroup.c
blobbbe7ee00bd3d70cf5a3a55b9c94eaf63af368729
1 /*
2 * Common Block IO controller cgroup interface
4 * Based on ideas and code from CFQ, CFS and BFQ:
5 * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk>
7 * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it>
8 * Paolo Valente <paolo.valente@unimore.it>
10 * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com>
11 * Nauman Rafique <nauman@google.com>
13 * For policy-specific per-blkcg data:
14 * Copyright (C) 2015 Paolo Valente <paolo.valente@unimore.it>
15 * Arianna Avanzini <avanzini.arianna@gmail.com>
17 #include <linux/ioprio.h>
18 #include <linux/kdev_t.h>
19 #include <linux/module.h>
20 #include <linux/sched/signal.h>
21 #include <linux/err.h>
22 #include <linux/blkdev.h>
23 #include <linux/backing-dev.h>
24 #include <linux/slab.h>
25 #include <linux/genhd.h>
26 #include <linux/delay.h>
27 #include <linux/atomic.h>
28 #include <linux/ctype.h>
29 #include <linux/blk-cgroup.h>
30 #include "blk.h"
32 #define MAX_KEY_LEN 100
35 * blkcg_pol_mutex protects blkcg_policy[] and policy [de]activation.
36 * blkcg_pol_register_mutex nests outside of it and synchronizes entire
37 * policy [un]register operations including cgroup file additions /
38 * removals. Putting cgroup file registration outside blkcg_pol_mutex
39 * allows grabbing it from cgroup callbacks.
41 static DEFINE_MUTEX(blkcg_pol_register_mutex);
42 static DEFINE_MUTEX(blkcg_pol_mutex);
44 struct blkcg blkcg_root;
45 EXPORT_SYMBOL_GPL(blkcg_root);
47 struct cgroup_subsys_state * const blkcg_root_css = &blkcg_root.css;
49 static struct blkcg_policy *blkcg_policy[BLKCG_MAX_POLS];
51 static LIST_HEAD(all_blkcgs); /* protected by blkcg_pol_mutex */
53 static bool blkcg_policy_enabled(struct request_queue *q,
54 const struct blkcg_policy *pol)
56 return pol && test_bit(pol->plid, q->blkcg_pols);
59 /**
60 * blkg_free - free a blkg
61 * @blkg: blkg to free
63 * Free @blkg which may be partially allocated.
65 static void blkg_free(struct blkcg_gq *blkg)
67 int i;
69 if (!blkg)
70 return;
72 for (i = 0; i < BLKCG_MAX_POLS; i++)
73 if (blkg->pd[i])
74 blkcg_policy[i]->pd_free_fn(blkg->pd[i]);
76 if (blkg->blkcg != &blkcg_root)
77 blk_exit_rl(&blkg->rl);
79 blkg_rwstat_exit(&blkg->stat_ios);
80 blkg_rwstat_exit(&blkg->stat_bytes);
81 kfree(blkg);
84 /**
85 * blkg_alloc - allocate a blkg
86 * @blkcg: block cgroup the new blkg is associated with
87 * @q: request_queue the new blkg is associated with
88 * @gfp_mask: allocation mask to use
90 * Allocate a new blkg assocating @blkcg and @q.
92 static struct blkcg_gq *blkg_alloc(struct blkcg *blkcg, struct request_queue *q,
93 gfp_t gfp_mask)
95 struct blkcg_gq *blkg;
96 int i;
98 /* alloc and init base part */
99 blkg = kzalloc_node(sizeof(*blkg), gfp_mask, q->node);
100 if (!blkg)
101 return NULL;
103 if (blkg_rwstat_init(&blkg->stat_bytes, gfp_mask) ||
104 blkg_rwstat_init(&blkg->stat_ios, gfp_mask))
105 goto err_free;
107 blkg->q = q;
108 INIT_LIST_HEAD(&blkg->q_node);
109 blkg->blkcg = blkcg;
110 atomic_set(&blkg->refcnt, 1);
112 /* root blkg uses @q->root_rl, init rl only for !root blkgs */
113 if (blkcg != &blkcg_root) {
114 if (blk_init_rl(&blkg->rl, q, gfp_mask))
115 goto err_free;
116 blkg->rl.blkg = blkg;
119 for (i = 0; i < BLKCG_MAX_POLS; i++) {
120 struct blkcg_policy *pol = blkcg_policy[i];
121 struct blkg_policy_data *pd;
123 if (!blkcg_policy_enabled(q, pol))
124 continue;
126 /* alloc per-policy data and attach it to blkg */
127 pd = pol->pd_alloc_fn(gfp_mask, q->node);
128 if (!pd)
129 goto err_free;
131 blkg->pd[i] = pd;
132 pd->blkg = blkg;
133 pd->plid = i;
136 return blkg;
138 err_free:
139 blkg_free(blkg);
140 return NULL;
143 struct blkcg_gq *blkg_lookup_slowpath(struct blkcg *blkcg,
144 struct request_queue *q, bool update_hint)
146 struct blkcg_gq *blkg;
149 * Hint didn't match. Look up from the radix tree. Note that the
150 * hint can only be updated under queue_lock as otherwise @blkg
151 * could have already been removed from blkg_tree. The caller is
152 * responsible for grabbing queue_lock if @update_hint.
154 blkg = radix_tree_lookup(&blkcg->blkg_tree, q->id);
155 if (blkg && blkg->q == q) {
156 if (update_hint) {
157 lockdep_assert_held(q->queue_lock);
158 rcu_assign_pointer(blkcg->blkg_hint, blkg);
160 return blkg;
163 return NULL;
165 EXPORT_SYMBOL_GPL(blkg_lookup_slowpath);
168 * If @new_blkg is %NULL, this function tries to allocate a new one as
169 * necessary using %GFP_NOWAIT. @new_blkg is always consumed on return.
171 static struct blkcg_gq *blkg_create(struct blkcg *blkcg,
172 struct request_queue *q,
173 struct blkcg_gq *new_blkg)
175 struct blkcg_gq *blkg;
176 struct bdi_writeback_congested *wb_congested;
177 int i, ret;
179 WARN_ON_ONCE(!rcu_read_lock_held());
180 lockdep_assert_held(q->queue_lock);
182 /* blkg holds a reference to blkcg */
183 if (!css_tryget_online(&blkcg->css)) {
184 ret = -ENODEV;
185 goto err_free_blkg;
188 wb_congested = wb_congested_get_create(q->backing_dev_info,
189 blkcg->css.id,
190 GFP_NOWAIT | __GFP_NOWARN);
191 if (!wb_congested) {
192 ret = -ENOMEM;
193 goto err_put_css;
196 /* allocate */
197 if (!new_blkg) {
198 new_blkg = blkg_alloc(blkcg, q, GFP_NOWAIT | __GFP_NOWARN);
199 if (unlikely(!new_blkg)) {
200 ret = -ENOMEM;
201 goto err_put_congested;
204 blkg = new_blkg;
205 blkg->wb_congested = wb_congested;
207 /* link parent */
208 if (blkcg_parent(blkcg)) {
209 blkg->parent = __blkg_lookup(blkcg_parent(blkcg), q, false);
210 if (WARN_ON_ONCE(!blkg->parent)) {
211 ret = -ENODEV;
212 goto err_put_congested;
214 blkg_get(blkg->parent);
217 /* invoke per-policy init */
218 for (i = 0; i < BLKCG_MAX_POLS; i++) {
219 struct blkcg_policy *pol = blkcg_policy[i];
221 if (blkg->pd[i] && pol->pd_init_fn)
222 pol->pd_init_fn(blkg->pd[i]);
225 /* insert */
226 spin_lock(&blkcg->lock);
227 ret = radix_tree_insert(&blkcg->blkg_tree, q->id, blkg);
228 if (likely(!ret)) {
229 hlist_add_head_rcu(&blkg->blkcg_node, &blkcg->blkg_list);
230 list_add(&blkg->q_node, &q->blkg_list);
232 for (i = 0; i < BLKCG_MAX_POLS; i++) {
233 struct blkcg_policy *pol = blkcg_policy[i];
235 if (blkg->pd[i] && pol->pd_online_fn)
236 pol->pd_online_fn(blkg->pd[i]);
239 blkg->online = true;
240 spin_unlock(&blkcg->lock);
242 if (!ret)
243 return blkg;
245 /* @blkg failed fully initialized, use the usual release path */
246 blkg_put(blkg);
247 return ERR_PTR(ret);
249 err_put_congested:
250 wb_congested_put(wb_congested);
251 err_put_css:
252 css_put(&blkcg->css);
253 err_free_blkg:
254 blkg_free(new_blkg);
255 return ERR_PTR(ret);
259 * blkg_lookup_create - lookup blkg, try to create one if not there
260 * @blkcg: blkcg of interest
261 * @q: request_queue of interest
263 * Lookup blkg for the @blkcg - @q pair. If it doesn't exist, try to
264 * create one. blkg creation is performed recursively from blkcg_root such
265 * that all non-root blkg's have access to the parent blkg. This function
266 * should be called under RCU read lock and @q->queue_lock.
268 * Returns pointer to the looked up or created blkg on success, ERR_PTR()
269 * value on error. If @q is dead, returns ERR_PTR(-EINVAL). If @q is not
270 * dead and bypassing, returns ERR_PTR(-EBUSY).
272 struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg,
273 struct request_queue *q)
275 struct blkcg_gq *blkg;
277 WARN_ON_ONCE(!rcu_read_lock_held());
278 lockdep_assert_held(q->queue_lock);
281 * This could be the first entry point of blkcg implementation and
282 * we shouldn't allow anything to go through for a bypassing queue.
284 if (unlikely(blk_queue_bypass(q)))
285 return ERR_PTR(blk_queue_dying(q) ? -ENODEV : -EBUSY);
287 blkg = __blkg_lookup(blkcg, q, true);
288 if (blkg)
289 return blkg;
292 * Create blkgs walking down from blkcg_root to @blkcg, so that all
293 * non-root blkgs have access to their parents.
295 while (true) {
296 struct blkcg *pos = blkcg;
297 struct blkcg *parent = blkcg_parent(blkcg);
299 while (parent && !__blkg_lookup(parent, q, false)) {
300 pos = parent;
301 parent = blkcg_parent(parent);
304 blkg = blkg_create(pos, q, NULL);
305 if (pos == blkcg || IS_ERR(blkg))
306 return blkg;
310 static void blkg_destroy(struct blkcg_gq *blkg)
312 struct blkcg *blkcg = blkg->blkcg;
313 struct blkcg_gq *parent = blkg->parent;
314 int i;
316 lockdep_assert_held(blkg->q->queue_lock);
317 lockdep_assert_held(&blkcg->lock);
319 /* Something wrong if we are trying to remove same group twice */
320 WARN_ON_ONCE(list_empty(&blkg->q_node));
321 WARN_ON_ONCE(hlist_unhashed(&blkg->blkcg_node));
323 for (i = 0; i < BLKCG_MAX_POLS; i++) {
324 struct blkcg_policy *pol = blkcg_policy[i];
326 if (blkg->pd[i] && pol->pd_offline_fn)
327 pol->pd_offline_fn(blkg->pd[i]);
330 if (parent) {
331 blkg_rwstat_add_aux(&parent->stat_bytes, &blkg->stat_bytes);
332 blkg_rwstat_add_aux(&parent->stat_ios, &blkg->stat_ios);
335 blkg->online = false;
337 radix_tree_delete(&blkcg->blkg_tree, blkg->q->id);
338 list_del_init(&blkg->q_node);
339 hlist_del_init_rcu(&blkg->blkcg_node);
342 * Both setting lookup hint to and clearing it from @blkg are done
343 * under queue_lock. If it's not pointing to @blkg now, it never
344 * will. Hint assignment itself can race safely.
346 if (rcu_access_pointer(blkcg->blkg_hint) == blkg)
347 rcu_assign_pointer(blkcg->blkg_hint, NULL);
350 * Put the reference taken at the time of creation so that when all
351 * queues are gone, group can be destroyed.
353 blkg_put(blkg);
357 * blkg_destroy_all - destroy all blkgs associated with a request_queue
358 * @q: request_queue of interest
360 * Destroy all blkgs associated with @q.
362 static void blkg_destroy_all(struct request_queue *q)
364 struct blkcg_gq *blkg, *n;
366 lockdep_assert_held(q->queue_lock);
368 list_for_each_entry_safe(blkg, n, &q->blkg_list, q_node) {
369 struct blkcg *blkcg = blkg->blkcg;
371 spin_lock(&blkcg->lock);
372 blkg_destroy(blkg);
373 spin_unlock(&blkcg->lock);
376 q->root_blkg = NULL;
377 q->root_rl.blkg = NULL;
381 * A group is RCU protected, but having an rcu lock does not mean that one
382 * can access all the fields of blkg and assume these are valid. For
383 * example, don't try to follow throtl_data and request queue links.
385 * Having a reference to blkg under an rcu allows accesses to only values
386 * local to groups like group stats and group rate limits.
388 void __blkg_release_rcu(struct rcu_head *rcu_head)
390 struct blkcg_gq *blkg = container_of(rcu_head, struct blkcg_gq, rcu_head);
392 /* release the blkcg and parent blkg refs this blkg has been holding */
393 css_put(&blkg->blkcg->css);
394 if (blkg->parent)
395 blkg_put(blkg->parent);
397 wb_congested_put(blkg->wb_congested);
399 blkg_free(blkg);
401 EXPORT_SYMBOL_GPL(__blkg_release_rcu);
404 * The next function used by blk_queue_for_each_rl(). It's a bit tricky
405 * because the root blkg uses @q->root_rl instead of its own rl.
407 struct request_list *__blk_queue_next_rl(struct request_list *rl,
408 struct request_queue *q)
410 struct list_head *ent;
411 struct blkcg_gq *blkg;
414 * Determine the current blkg list_head. The first entry is
415 * root_rl which is off @q->blkg_list and mapped to the head.
417 if (rl == &q->root_rl) {
418 ent = &q->blkg_list;
419 /* There are no more block groups, hence no request lists */
420 if (list_empty(ent))
421 return NULL;
422 } else {
423 blkg = container_of(rl, struct blkcg_gq, rl);
424 ent = &blkg->q_node;
427 /* walk to the next list_head, skip root blkcg */
428 ent = ent->next;
429 if (ent == &q->root_blkg->q_node)
430 ent = ent->next;
431 if (ent == &q->blkg_list)
432 return NULL;
434 blkg = container_of(ent, struct blkcg_gq, q_node);
435 return &blkg->rl;
438 static int blkcg_reset_stats(struct cgroup_subsys_state *css,
439 struct cftype *cftype, u64 val)
441 struct blkcg *blkcg = css_to_blkcg(css);
442 struct blkcg_gq *blkg;
443 int i;
445 mutex_lock(&blkcg_pol_mutex);
446 spin_lock_irq(&blkcg->lock);
449 * Note that stat reset is racy - it doesn't synchronize against
450 * stat updates. This is a debug feature which shouldn't exist
451 * anyway. If you get hit by a race, retry.
453 hlist_for_each_entry(blkg, &blkcg->blkg_list, blkcg_node) {
454 blkg_rwstat_reset(&blkg->stat_bytes);
455 blkg_rwstat_reset(&blkg->stat_ios);
457 for (i = 0; i < BLKCG_MAX_POLS; i++) {
458 struct blkcg_policy *pol = blkcg_policy[i];
460 if (blkg->pd[i] && pol->pd_reset_stats_fn)
461 pol->pd_reset_stats_fn(blkg->pd[i]);
465 spin_unlock_irq(&blkcg->lock);
466 mutex_unlock(&blkcg_pol_mutex);
467 return 0;
470 const char *blkg_dev_name(struct blkcg_gq *blkg)
472 /* some drivers (floppy) instantiate a queue w/o disk registered */
473 if (blkg->q->backing_dev_info->dev)
474 return dev_name(blkg->q->backing_dev_info->dev);
475 return NULL;
477 EXPORT_SYMBOL_GPL(blkg_dev_name);
480 * blkcg_print_blkgs - helper for printing per-blkg data
481 * @sf: seq_file to print to
482 * @blkcg: blkcg of interest
483 * @prfill: fill function to print out a blkg
484 * @pol: policy in question
485 * @data: data to be passed to @prfill
486 * @show_total: to print out sum of prfill return values or not
488 * This function invokes @prfill on each blkg of @blkcg if pd for the
489 * policy specified by @pol exists. @prfill is invoked with @sf, the
490 * policy data and @data and the matching queue lock held. If @show_total
491 * is %true, the sum of the return values from @prfill is printed with
492 * "Total" label at the end.
494 * This is to be used to construct print functions for
495 * cftype->read_seq_string method.
497 void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg,
498 u64 (*prfill)(struct seq_file *,
499 struct blkg_policy_data *, int),
500 const struct blkcg_policy *pol, int data,
501 bool show_total)
503 struct blkcg_gq *blkg;
504 u64 total = 0;
506 rcu_read_lock();
507 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
508 spin_lock_irq(blkg->q->queue_lock);
509 if (blkcg_policy_enabled(blkg->q, pol))
510 total += prfill(sf, blkg->pd[pol->plid], data);
511 spin_unlock_irq(blkg->q->queue_lock);
513 rcu_read_unlock();
515 if (show_total)
516 seq_printf(sf, "Total %llu\n", (unsigned long long)total);
518 EXPORT_SYMBOL_GPL(blkcg_print_blkgs);
521 * __blkg_prfill_u64 - prfill helper for a single u64 value
522 * @sf: seq_file to print to
523 * @pd: policy private data of interest
524 * @v: value to print
526 * Print @v to @sf for the device assocaited with @pd.
528 u64 __blkg_prfill_u64(struct seq_file *sf, struct blkg_policy_data *pd, u64 v)
530 const char *dname = blkg_dev_name(pd->blkg);
532 if (!dname)
533 return 0;
535 seq_printf(sf, "%s %llu\n", dname, (unsigned long long)v);
536 return v;
538 EXPORT_SYMBOL_GPL(__blkg_prfill_u64);
541 * __blkg_prfill_rwstat - prfill helper for a blkg_rwstat
542 * @sf: seq_file to print to
543 * @pd: policy private data of interest
544 * @rwstat: rwstat to print
546 * Print @rwstat to @sf for the device assocaited with @pd.
548 u64 __blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
549 const struct blkg_rwstat *rwstat)
551 static const char *rwstr[] = {
552 [BLKG_RWSTAT_READ] = "Read",
553 [BLKG_RWSTAT_WRITE] = "Write",
554 [BLKG_RWSTAT_SYNC] = "Sync",
555 [BLKG_RWSTAT_ASYNC] = "Async",
557 const char *dname = blkg_dev_name(pd->blkg);
558 u64 v;
559 int i;
561 if (!dname)
562 return 0;
564 for (i = 0; i < BLKG_RWSTAT_NR; i++)
565 seq_printf(sf, "%s %s %llu\n", dname, rwstr[i],
566 (unsigned long long)atomic64_read(&rwstat->aux_cnt[i]));
568 v = atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_READ]) +
569 atomic64_read(&rwstat->aux_cnt[BLKG_RWSTAT_WRITE]);
570 seq_printf(sf, "%s Total %llu\n", dname, (unsigned long long)v);
571 return v;
573 EXPORT_SYMBOL_GPL(__blkg_prfill_rwstat);
576 * blkg_prfill_stat - prfill callback for blkg_stat
577 * @sf: seq_file to print to
578 * @pd: policy private data of interest
579 * @off: offset to the blkg_stat in @pd
581 * prfill callback for printing a blkg_stat.
583 u64 blkg_prfill_stat(struct seq_file *sf, struct blkg_policy_data *pd, int off)
585 return __blkg_prfill_u64(sf, pd, blkg_stat_read((void *)pd + off));
587 EXPORT_SYMBOL_GPL(blkg_prfill_stat);
590 * blkg_prfill_rwstat - prfill callback for blkg_rwstat
591 * @sf: seq_file to print to
592 * @pd: policy private data of interest
593 * @off: offset to the blkg_rwstat in @pd
595 * prfill callback for printing a blkg_rwstat.
597 u64 blkg_prfill_rwstat(struct seq_file *sf, struct blkg_policy_data *pd,
598 int off)
600 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd + off);
602 return __blkg_prfill_rwstat(sf, pd, &rwstat);
604 EXPORT_SYMBOL_GPL(blkg_prfill_rwstat);
606 static u64 blkg_prfill_rwstat_field(struct seq_file *sf,
607 struct blkg_policy_data *pd, int off)
609 struct blkg_rwstat rwstat = blkg_rwstat_read((void *)pd->blkg + off);
611 return __blkg_prfill_rwstat(sf, pd, &rwstat);
615 * blkg_print_stat_bytes - seq_show callback for blkg->stat_bytes
616 * @sf: seq_file to print to
617 * @v: unused
619 * To be used as cftype->seq_show to print blkg->stat_bytes.
620 * cftype->private must be set to the blkcg_policy.
622 int blkg_print_stat_bytes(struct seq_file *sf, void *v)
624 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
625 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
626 offsetof(struct blkcg_gq, stat_bytes), true);
627 return 0;
629 EXPORT_SYMBOL_GPL(blkg_print_stat_bytes);
632 * blkg_print_stat_bytes - seq_show callback for blkg->stat_ios
633 * @sf: seq_file to print to
634 * @v: unused
636 * To be used as cftype->seq_show to print blkg->stat_ios. cftype->private
637 * must be set to the blkcg_policy.
639 int blkg_print_stat_ios(struct seq_file *sf, void *v)
641 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
642 blkg_prfill_rwstat_field, (void *)seq_cft(sf)->private,
643 offsetof(struct blkcg_gq, stat_ios), true);
644 return 0;
646 EXPORT_SYMBOL_GPL(blkg_print_stat_ios);
648 static u64 blkg_prfill_rwstat_field_recursive(struct seq_file *sf,
649 struct blkg_policy_data *pd,
650 int off)
652 struct blkg_rwstat rwstat = blkg_rwstat_recursive_sum(pd->blkg,
653 NULL, off);
654 return __blkg_prfill_rwstat(sf, pd, &rwstat);
658 * blkg_print_stat_bytes_recursive - recursive version of blkg_print_stat_bytes
659 * @sf: seq_file to print to
660 * @v: unused
662 int blkg_print_stat_bytes_recursive(struct seq_file *sf, void *v)
664 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
665 blkg_prfill_rwstat_field_recursive,
666 (void *)seq_cft(sf)->private,
667 offsetof(struct blkcg_gq, stat_bytes), true);
668 return 0;
670 EXPORT_SYMBOL_GPL(blkg_print_stat_bytes_recursive);
673 * blkg_print_stat_ios_recursive - recursive version of blkg_print_stat_ios
674 * @sf: seq_file to print to
675 * @v: unused
677 int blkg_print_stat_ios_recursive(struct seq_file *sf, void *v)
679 blkcg_print_blkgs(sf, css_to_blkcg(seq_css(sf)),
680 blkg_prfill_rwstat_field_recursive,
681 (void *)seq_cft(sf)->private,
682 offsetof(struct blkcg_gq, stat_ios), true);
683 return 0;
685 EXPORT_SYMBOL_GPL(blkg_print_stat_ios_recursive);
688 * blkg_stat_recursive_sum - collect hierarchical blkg_stat
689 * @blkg: blkg of interest
690 * @pol: blkcg_policy which contains the blkg_stat
691 * @off: offset to the blkg_stat in blkg_policy_data or @blkg
693 * Collect the blkg_stat specified by @blkg, @pol and @off and all its
694 * online descendants and their aux counts. The caller must be holding the
695 * queue lock for online tests.
697 * If @pol is NULL, blkg_stat is at @off bytes into @blkg; otherwise, it is
698 * at @off bytes into @blkg's blkg_policy_data of the policy.
700 u64 blkg_stat_recursive_sum(struct blkcg_gq *blkg,
701 struct blkcg_policy *pol, int off)
703 struct blkcg_gq *pos_blkg;
704 struct cgroup_subsys_state *pos_css;
705 u64 sum = 0;
707 lockdep_assert_held(blkg->q->queue_lock);
709 rcu_read_lock();
710 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
711 struct blkg_stat *stat;
713 if (!pos_blkg->online)
714 continue;
716 if (pol)
717 stat = (void *)blkg_to_pd(pos_blkg, pol) + off;
718 else
719 stat = (void *)blkg + off;
721 sum += blkg_stat_read(stat) + atomic64_read(&stat->aux_cnt);
723 rcu_read_unlock();
725 return sum;
727 EXPORT_SYMBOL_GPL(blkg_stat_recursive_sum);
730 * blkg_rwstat_recursive_sum - collect hierarchical blkg_rwstat
731 * @blkg: blkg of interest
732 * @pol: blkcg_policy which contains the blkg_rwstat
733 * @off: offset to the blkg_rwstat in blkg_policy_data or @blkg
735 * Collect the blkg_rwstat specified by @blkg, @pol and @off and all its
736 * online descendants and their aux counts. The caller must be holding the
737 * queue lock for online tests.
739 * If @pol is NULL, blkg_rwstat is at @off bytes into @blkg; otherwise, it
740 * is at @off bytes into @blkg's blkg_policy_data of the policy.
742 struct blkg_rwstat blkg_rwstat_recursive_sum(struct blkcg_gq *blkg,
743 struct blkcg_policy *pol, int off)
745 struct blkcg_gq *pos_blkg;
746 struct cgroup_subsys_state *pos_css;
747 struct blkg_rwstat sum = { };
748 int i;
750 lockdep_assert_held(blkg->q->queue_lock);
752 rcu_read_lock();
753 blkg_for_each_descendant_pre(pos_blkg, pos_css, blkg) {
754 struct blkg_rwstat *rwstat;
756 if (!pos_blkg->online)
757 continue;
759 if (pol)
760 rwstat = (void *)blkg_to_pd(pos_blkg, pol) + off;
761 else
762 rwstat = (void *)pos_blkg + off;
764 for (i = 0; i < BLKG_RWSTAT_NR; i++)
765 atomic64_add(atomic64_read(&rwstat->aux_cnt[i]) +
766 percpu_counter_sum_positive(&rwstat->cpu_cnt[i]),
767 &sum.aux_cnt[i]);
769 rcu_read_unlock();
771 return sum;
773 EXPORT_SYMBOL_GPL(blkg_rwstat_recursive_sum);
776 * blkg_conf_prep - parse and prepare for per-blkg config update
777 * @blkcg: target block cgroup
778 * @pol: target policy
779 * @input: input string
780 * @ctx: blkg_conf_ctx to be filled
782 * Parse per-blkg config update from @input and initialize @ctx with the
783 * result. @ctx->blkg points to the blkg to be updated and @ctx->body the
784 * part of @input following MAJ:MIN. This function returns with RCU read
785 * lock and queue lock held and must be paired with blkg_conf_finish().
787 int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol,
788 char *input, struct blkg_conf_ctx *ctx)
789 __acquires(rcu) __acquires(disk->queue->queue_lock)
791 struct gendisk *disk;
792 struct blkcg_gq *blkg;
793 struct module *owner;
794 unsigned int major, minor;
795 int key_len, part, ret;
796 char *body;
798 if (sscanf(input, "%u:%u%n", &major, &minor, &key_len) != 2)
799 return -EINVAL;
801 body = input + key_len;
802 if (!isspace(*body))
803 return -EINVAL;
804 body = skip_spaces(body);
806 disk = get_gendisk(MKDEV(major, minor), &part);
807 if (!disk)
808 return -ENODEV;
809 if (part) {
810 owner = disk->fops->owner;
811 put_disk(disk);
812 module_put(owner);
813 return -ENODEV;
816 rcu_read_lock();
817 spin_lock_irq(disk->queue->queue_lock);
819 if (blkcg_policy_enabled(disk->queue, pol))
820 blkg = blkg_lookup_create(blkcg, disk->queue);
821 else
822 blkg = ERR_PTR(-EOPNOTSUPP);
824 if (IS_ERR(blkg)) {
825 ret = PTR_ERR(blkg);
826 rcu_read_unlock();
827 spin_unlock_irq(disk->queue->queue_lock);
828 owner = disk->fops->owner;
829 put_disk(disk);
830 module_put(owner);
832 * If queue was bypassing, we should retry. Do so after a
833 * short msleep(). It isn't strictly necessary but queue
834 * can be bypassing for some time and it's always nice to
835 * avoid busy looping.
837 if (ret == -EBUSY) {
838 msleep(10);
839 ret = restart_syscall();
841 return ret;
844 ctx->disk = disk;
845 ctx->blkg = blkg;
846 ctx->body = body;
847 return 0;
849 EXPORT_SYMBOL_GPL(blkg_conf_prep);
852 * blkg_conf_finish - finish up per-blkg config update
853 * @ctx: blkg_conf_ctx intiailized by blkg_conf_prep()
855 * Finish up after per-blkg config update. This function must be paired
856 * with blkg_conf_prep().
858 void blkg_conf_finish(struct blkg_conf_ctx *ctx)
859 __releases(ctx->disk->queue->queue_lock) __releases(rcu)
861 struct module *owner;
863 spin_unlock_irq(ctx->disk->queue->queue_lock);
864 rcu_read_unlock();
865 owner = ctx->disk->fops->owner;
866 put_disk(ctx->disk);
867 module_put(owner);
869 EXPORT_SYMBOL_GPL(blkg_conf_finish);
871 static int blkcg_print_stat(struct seq_file *sf, void *v)
873 struct blkcg *blkcg = css_to_blkcg(seq_css(sf));
874 struct blkcg_gq *blkg;
876 rcu_read_lock();
878 hlist_for_each_entry_rcu(blkg, &blkcg->blkg_list, blkcg_node) {
879 const char *dname;
880 struct blkg_rwstat rwstat;
881 u64 rbytes, wbytes, rios, wios;
883 dname = blkg_dev_name(blkg);
884 if (!dname)
885 continue;
887 spin_lock_irq(blkg->q->queue_lock);
889 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
890 offsetof(struct blkcg_gq, stat_bytes));
891 rbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
892 wbytes = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
894 rwstat = blkg_rwstat_recursive_sum(blkg, NULL,
895 offsetof(struct blkcg_gq, stat_ios));
896 rios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_READ]);
897 wios = atomic64_read(&rwstat.aux_cnt[BLKG_RWSTAT_WRITE]);
899 spin_unlock_irq(blkg->q->queue_lock);
901 if (rbytes || wbytes || rios || wios)
902 seq_printf(sf, "%s rbytes=%llu wbytes=%llu rios=%llu wios=%llu\n",
903 dname, rbytes, wbytes, rios, wios);
906 rcu_read_unlock();
907 return 0;
910 static struct cftype blkcg_files[] = {
912 .name = "stat",
913 .flags = CFTYPE_NOT_ON_ROOT,
914 .seq_show = blkcg_print_stat,
916 { } /* terminate */
919 static struct cftype blkcg_legacy_files[] = {
921 .name = "reset_stats",
922 .write_u64 = blkcg_reset_stats,
924 { } /* terminate */
928 * blkcg_css_offline - cgroup css_offline callback
929 * @css: css of interest
931 * This function is called when @css is about to go away and responsible
932 * for shooting down all blkgs associated with @css. blkgs should be
933 * removed while holding both q and blkcg locks. As blkcg lock is nested
934 * inside q lock, this function performs reverse double lock dancing.
936 * This is the blkcg counterpart of ioc_release_fn().
938 static void blkcg_css_offline(struct cgroup_subsys_state *css)
940 struct blkcg *blkcg = css_to_blkcg(css);
942 spin_lock_irq(&blkcg->lock);
944 while (!hlist_empty(&blkcg->blkg_list)) {
945 struct blkcg_gq *blkg = hlist_entry(blkcg->blkg_list.first,
946 struct blkcg_gq, blkcg_node);
947 struct request_queue *q = blkg->q;
949 if (spin_trylock(q->queue_lock)) {
950 blkg_destroy(blkg);
951 spin_unlock(q->queue_lock);
952 } else {
953 spin_unlock_irq(&blkcg->lock);
954 cpu_relax();
955 spin_lock_irq(&blkcg->lock);
959 spin_unlock_irq(&blkcg->lock);
961 wb_blkcg_offline(blkcg);
964 static void blkcg_css_free(struct cgroup_subsys_state *css)
966 struct blkcg *blkcg = css_to_blkcg(css);
967 int i;
969 mutex_lock(&blkcg_pol_mutex);
971 list_del(&blkcg->all_blkcgs_node);
973 for (i = 0; i < BLKCG_MAX_POLS; i++)
974 if (blkcg->cpd[i])
975 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
977 mutex_unlock(&blkcg_pol_mutex);
979 kfree(blkcg);
982 static struct cgroup_subsys_state *
983 blkcg_css_alloc(struct cgroup_subsys_state *parent_css)
985 struct blkcg *blkcg;
986 struct cgroup_subsys_state *ret;
987 int i;
989 mutex_lock(&blkcg_pol_mutex);
991 if (!parent_css) {
992 blkcg = &blkcg_root;
993 } else {
994 blkcg = kzalloc(sizeof(*blkcg), GFP_KERNEL);
995 if (!blkcg) {
996 ret = ERR_PTR(-ENOMEM);
997 goto free_blkcg;
1001 for (i = 0; i < BLKCG_MAX_POLS ; i++) {
1002 struct blkcg_policy *pol = blkcg_policy[i];
1003 struct blkcg_policy_data *cpd;
1006 * If the policy hasn't been attached yet, wait for it
1007 * to be attached before doing anything else. Otherwise,
1008 * check if the policy requires any specific per-cgroup
1009 * data: if it does, allocate and initialize it.
1011 if (!pol || !pol->cpd_alloc_fn)
1012 continue;
1014 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
1015 if (!cpd) {
1016 ret = ERR_PTR(-ENOMEM);
1017 goto free_pd_blkcg;
1019 blkcg->cpd[i] = cpd;
1020 cpd->blkcg = blkcg;
1021 cpd->plid = i;
1022 if (pol->cpd_init_fn)
1023 pol->cpd_init_fn(cpd);
1026 spin_lock_init(&blkcg->lock);
1027 INIT_RADIX_TREE(&blkcg->blkg_tree, GFP_NOWAIT | __GFP_NOWARN);
1028 INIT_HLIST_HEAD(&blkcg->blkg_list);
1029 #ifdef CONFIG_CGROUP_WRITEBACK
1030 INIT_LIST_HEAD(&blkcg->cgwb_list);
1031 #endif
1032 list_add_tail(&blkcg->all_blkcgs_node, &all_blkcgs);
1034 mutex_unlock(&blkcg_pol_mutex);
1035 return &blkcg->css;
1037 free_pd_blkcg:
1038 for (i--; i >= 0; i--)
1039 if (blkcg->cpd[i])
1040 blkcg_policy[i]->cpd_free_fn(blkcg->cpd[i]);
1041 free_blkcg:
1042 kfree(blkcg);
1043 mutex_unlock(&blkcg_pol_mutex);
1044 return ret;
1048 * blkcg_init_queue - initialize blkcg part of request queue
1049 * @q: request_queue to initialize
1051 * Called from blk_alloc_queue_node(). Responsible for initializing blkcg
1052 * part of new request_queue @q.
1054 * RETURNS:
1055 * 0 on success, -errno on failure.
1057 int blkcg_init_queue(struct request_queue *q)
1059 struct blkcg_gq *new_blkg, *blkg;
1060 bool preloaded;
1061 int ret;
1063 new_blkg = blkg_alloc(&blkcg_root, q, GFP_KERNEL);
1064 if (!new_blkg)
1065 return -ENOMEM;
1067 preloaded = !radix_tree_preload(GFP_KERNEL);
1070 * Make sure the root blkg exists and count the existing blkgs. As
1071 * @q is bypassing at this point, blkg_lookup_create() can't be
1072 * used. Open code insertion.
1074 rcu_read_lock();
1075 spin_lock_irq(q->queue_lock);
1076 blkg = blkg_create(&blkcg_root, q, new_blkg);
1077 spin_unlock_irq(q->queue_lock);
1078 rcu_read_unlock();
1080 if (preloaded)
1081 radix_tree_preload_end();
1083 if (IS_ERR(blkg))
1084 return PTR_ERR(blkg);
1086 q->root_blkg = blkg;
1087 q->root_rl.blkg = blkg;
1089 ret = blk_throtl_init(q);
1090 if (ret) {
1091 spin_lock_irq(q->queue_lock);
1092 blkg_destroy_all(q);
1093 spin_unlock_irq(q->queue_lock);
1095 return ret;
1099 * blkcg_drain_queue - drain blkcg part of request_queue
1100 * @q: request_queue to drain
1102 * Called from blk_drain_queue(). Responsible for draining blkcg part.
1104 void blkcg_drain_queue(struct request_queue *q)
1106 lockdep_assert_held(q->queue_lock);
1109 * @q could be exiting and already have destroyed all blkgs as
1110 * indicated by NULL root_blkg. If so, don't confuse policies.
1112 if (!q->root_blkg)
1113 return;
1115 blk_throtl_drain(q);
1119 * blkcg_exit_queue - exit and release blkcg part of request_queue
1120 * @q: request_queue being released
1122 * Called from blk_release_queue(). Responsible for exiting blkcg part.
1124 void blkcg_exit_queue(struct request_queue *q)
1126 spin_lock_irq(q->queue_lock);
1127 blkg_destroy_all(q);
1128 spin_unlock_irq(q->queue_lock);
1130 blk_throtl_exit(q);
1134 * We cannot support shared io contexts, as we have no mean to support
1135 * two tasks with the same ioc in two different groups without major rework
1136 * of the main cic data structures. For now we allow a task to change
1137 * its cgroup only if it's the only owner of its ioc.
1139 static int blkcg_can_attach(struct cgroup_taskset *tset)
1141 struct task_struct *task;
1142 struct cgroup_subsys_state *dst_css;
1143 struct io_context *ioc;
1144 int ret = 0;
1146 /* task_lock() is needed to avoid races with exit_io_context() */
1147 cgroup_taskset_for_each(task, dst_css, tset) {
1148 task_lock(task);
1149 ioc = task->io_context;
1150 if (ioc && atomic_read(&ioc->nr_tasks) > 1)
1151 ret = -EINVAL;
1152 task_unlock(task);
1153 if (ret)
1154 break;
1156 return ret;
1159 static void blkcg_bind(struct cgroup_subsys_state *root_css)
1161 int i;
1163 mutex_lock(&blkcg_pol_mutex);
1165 for (i = 0; i < BLKCG_MAX_POLS; i++) {
1166 struct blkcg_policy *pol = blkcg_policy[i];
1167 struct blkcg *blkcg;
1169 if (!pol || !pol->cpd_bind_fn)
1170 continue;
1172 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node)
1173 if (blkcg->cpd[pol->plid])
1174 pol->cpd_bind_fn(blkcg->cpd[pol->plid]);
1176 mutex_unlock(&blkcg_pol_mutex);
1179 struct cgroup_subsys io_cgrp_subsys = {
1180 .css_alloc = blkcg_css_alloc,
1181 .css_offline = blkcg_css_offline,
1182 .css_free = blkcg_css_free,
1183 .can_attach = blkcg_can_attach,
1184 .bind = blkcg_bind,
1185 .dfl_cftypes = blkcg_files,
1186 .legacy_cftypes = blkcg_legacy_files,
1187 .legacy_name = "blkio",
1188 #ifdef CONFIG_MEMCG
1190 * This ensures that, if available, memcg is automatically enabled
1191 * together on the default hierarchy so that the owner cgroup can
1192 * be retrieved from writeback pages.
1194 .depends_on = 1 << memory_cgrp_id,
1195 #endif
1197 EXPORT_SYMBOL_GPL(io_cgrp_subsys);
1200 * blkcg_activate_policy - activate a blkcg policy on a request_queue
1201 * @q: request_queue of interest
1202 * @pol: blkcg policy to activate
1204 * Activate @pol on @q. Requires %GFP_KERNEL context. @q goes through
1205 * bypass mode to populate its blkgs with policy_data for @pol.
1207 * Activation happens with @q bypassed, so nobody would be accessing blkgs
1208 * from IO path. Update of each blkg is protected by both queue and blkcg
1209 * locks so that holding either lock and testing blkcg_policy_enabled() is
1210 * always enough for dereferencing policy data.
1212 * The caller is responsible for synchronizing [de]activations and policy
1213 * [un]registerations. Returns 0 on success, -errno on failure.
1215 int blkcg_activate_policy(struct request_queue *q,
1216 const struct blkcg_policy *pol)
1218 struct blkg_policy_data *pd_prealloc = NULL;
1219 struct blkcg_gq *blkg;
1220 int ret;
1222 if (blkcg_policy_enabled(q, pol))
1223 return 0;
1225 if (q->mq_ops)
1226 blk_mq_freeze_queue(q);
1227 else
1228 blk_queue_bypass_start(q);
1229 pd_prealloc:
1230 if (!pd_prealloc) {
1231 pd_prealloc = pol->pd_alloc_fn(GFP_KERNEL, q->node);
1232 if (!pd_prealloc) {
1233 ret = -ENOMEM;
1234 goto out_bypass_end;
1238 spin_lock_irq(q->queue_lock);
1240 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1241 struct blkg_policy_data *pd;
1243 if (blkg->pd[pol->plid])
1244 continue;
1246 pd = pol->pd_alloc_fn(GFP_NOWAIT | __GFP_NOWARN, q->node);
1247 if (!pd)
1248 swap(pd, pd_prealloc);
1249 if (!pd) {
1250 spin_unlock_irq(q->queue_lock);
1251 goto pd_prealloc;
1254 blkg->pd[pol->plid] = pd;
1255 pd->blkg = blkg;
1256 pd->plid = pol->plid;
1257 if (pol->pd_init_fn)
1258 pol->pd_init_fn(pd);
1261 __set_bit(pol->plid, q->blkcg_pols);
1262 ret = 0;
1264 spin_unlock_irq(q->queue_lock);
1265 out_bypass_end:
1266 if (q->mq_ops)
1267 blk_mq_unfreeze_queue(q);
1268 else
1269 blk_queue_bypass_end(q);
1270 if (pd_prealloc)
1271 pol->pd_free_fn(pd_prealloc);
1272 return ret;
1274 EXPORT_SYMBOL_GPL(blkcg_activate_policy);
1277 * blkcg_deactivate_policy - deactivate a blkcg policy on a request_queue
1278 * @q: request_queue of interest
1279 * @pol: blkcg policy to deactivate
1281 * Deactivate @pol on @q. Follows the same synchronization rules as
1282 * blkcg_activate_policy().
1284 void blkcg_deactivate_policy(struct request_queue *q,
1285 const struct blkcg_policy *pol)
1287 struct blkcg_gq *blkg;
1289 if (!blkcg_policy_enabled(q, pol))
1290 return;
1292 if (q->mq_ops)
1293 blk_mq_freeze_queue(q);
1294 else
1295 blk_queue_bypass_start(q);
1297 spin_lock_irq(q->queue_lock);
1299 __clear_bit(pol->plid, q->blkcg_pols);
1301 list_for_each_entry(blkg, &q->blkg_list, q_node) {
1302 /* grab blkcg lock too while removing @pd from @blkg */
1303 spin_lock(&blkg->blkcg->lock);
1305 if (blkg->pd[pol->plid]) {
1306 if (pol->pd_offline_fn)
1307 pol->pd_offline_fn(blkg->pd[pol->plid]);
1308 pol->pd_free_fn(blkg->pd[pol->plid]);
1309 blkg->pd[pol->plid] = NULL;
1312 spin_unlock(&blkg->blkcg->lock);
1315 spin_unlock_irq(q->queue_lock);
1317 if (q->mq_ops)
1318 blk_mq_unfreeze_queue(q);
1319 else
1320 blk_queue_bypass_end(q);
1322 EXPORT_SYMBOL_GPL(blkcg_deactivate_policy);
1325 * blkcg_policy_register - register a blkcg policy
1326 * @pol: blkcg policy to register
1328 * Register @pol with blkcg core. Might sleep and @pol may be modified on
1329 * successful registration. Returns 0 on success and -errno on failure.
1331 int blkcg_policy_register(struct blkcg_policy *pol)
1333 struct blkcg *blkcg;
1334 int i, ret;
1336 mutex_lock(&blkcg_pol_register_mutex);
1337 mutex_lock(&blkcg_pol_mutex);
1339 /* find an empty slot */
1340 ret = -ENOSPC;
1341 for (i = 0; i < BLKCG_MAX_POLS; i++)
1342 if (!blkcg_policy[i])
1343 break;
1344 if (i >= BLKCG_MAX_POLS)
1345 goto err_unlock;
1347 /* register @pol */
1348 pol->plid = i;
1349 blkcg_policy[pol->plid] = pol;
1351 /* allocate and install cpd's */
1352 if (pol->cpd_alloc_fn) {
1353 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1354 struct blkcg_policy_data *cpd;
1356 cpd = pol->cpd_alloc_fn(GFP_KERNEL);
1357 if (!cpd)
1358 goto err_free_cpds;
1360 blkcg->cpd[pol->plid] = cpd;
1361 cpd->blkcg = blkcg;
1362 cpd->plid = pol->plid;
1363 pol->cpd_init_fn(cpd);
1367 mutex_unlock(&blkcg_pol_mutex);
1369 /* everything is in place, add intf files for the new policy */
1370 if (pol->dfl_cftypes)
1371 WARN_ON(cgroup_add_dfl_cftypes(&io_cgrp_subsys,
1372 pol->dfl_cftypes));
1373 if (pol->legacy_cftypes)
1374 WARN_ON(cgroup_add_legacy_cftypes(&io_cgrp_subsys,
1375 pol->legacy_cftypes));
1376 mutex_unlock(&blkcg_pol_register_mutex);
1377 return 0;
1379 err_free_cpds:
1380 if (pol->cpd_alloc_fn) {
1381 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1382 if (blkcg->cpd[pol->plid]) {
1383 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1384 blkcg->cpd[pol->plid] = NULL;
1388 blkcg_policy[pol->plid] = NULL;
1389 err_unlock:
1390 mutex_unlock(&blkcg_pol_mutex);
1391 mutex_unlock(&blkcg_pol_register_mutex);
1392 return ret;
1394 EXPORT_SYMBOL_GPL(blkcg_policy_register);
1397 * blkcg_policy_unregister - unregister a blkcg policy
1398 * @pol: blkcg policy to unregister
1400 * Undo blkcg_policy_register(@pol). Might sleep.
1402 void blkcg_policy_unregister(struct blkcg_policy *pol)
1404 struct blkcg *blkcg;
1406 mutex_lock(&blkcg_pol_register_mutex);
1408 if (WARN_ON(blkcg_policy[pol->plid] != pol))
1409 goto out_unlock;
1411 /* kill the intf files first */
1412 if (pol->dfl_cftypes)
1413 cgroup_rm_cftypes(pol->dfl_cftypes);
1414 if (pol->legacy_cftypes)
1415 cgroup_rm_cftypes(pol->legacy_cftypes);
1417 /* remove cpds and unregister */
1418 mutex_lock(&blkcg_pol_mutex);
1420 if (pol->cpd_alloc_fn) {
1421 list_for_each_entry(blkcg, &all_blkcgs, all_blkcgs_node) {
1422 if (blkcg->cpd[pol->plid]) {
1423 pol->cpd_free_fn(blkcg->cpd[pol->plid]);
1424 blkcg->cpd[pol->plid] = NULL;
1428 blkcg_policy[pol->plid] = NULL;
1430 mutex_unlock(&blkcg_pol_mutex);
1431 out_unlock:
1432 mutex_unlock(&blkcg_pol_register_mutex);
1434 EXPORT_SYMBOL_GPL(blkcg_policy_unregister);