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