Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 1 | #ifndef _BLK_CGROUP_H |
| 2 | #define _BLK_CGROUP_H |
| 3 | /* |
| 4 | * Common Block IO controller cgroup interface |
| 5 | * |
| 6 | * Based on ideas and code from CFQ, CFS and BFQ: |
| 7 | * Copyright (C) 2003 Jens Axboe <axboe@kernel.dk> |
| 8 | * |
| 9 | * Copyright (C) 2008 Fabio Checconi <fabio@gandalf.sssup.it> |
| 10 | * Paolo Valente <paolo.valente@unimore.it> |
| 11 | * |
| 12 | * Copyright (C) 2009 Vivek Goyal <vgoyal@redhat.com> |
| 13 | * Nauman Rafique <nauman@google.com> |
| 14 | */ |
| 15 | |
| 16 | #include <linux/cgroup.h> |
Vivek Goyal | 575969a | 2011-05-19 15:38:29 -0400 | [diff] [blame] | 17 | #include <linux/u64_stats_sync.h> |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 18 | #include <linux/seq_file.h> |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 19 | |
Vivek Goyal | 9355aed | 2010-10-01 21:16:41 +0200 | [diff] [blame] | 20 | /* Max limits for throttle policy */ |
| 21 | #define THROTL_IOPS_MAX UINT_MAX |
| 22 | |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 23 | /* CFQ specific, out here for blkcg->cfq_weight */ |
| 24 | #define CFQ_WEIGHT_MIN 10 |
| 25 | #define CFQ_WEIGHT_MAX 1000 |
| 26 | #define CFQ_WEIGHT_DEFAULT 500 |
| 27 | |
Tejun Heo | f48ec1d | 2012-04-13 13:11:25 -0700 | [diff] [blame] | 28 | #ifdef CONFIG_BLK_CGROUP |
| 29 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 30 | enum blkg_rwstat_type { |
| 31 | BLKG_RWSTAT_READ, |
| 32 | BLKG_RWSTAT_WRITE, |
| 33 | BLKG_RWSTAT_SYNC, |
| 34 | BLKG_RWSTAT_ASYNC, |
| 35 | |
| 36 | BLKG_RWSTAT_NR, |
| 37 | BLKG_RWSTAT_TOTAL = BLKG_RWSTAT_NR, |
Divyesh Shah | 303a3ac | 2010-04-01 15:01:24 -0700 | [diff] [blame] | 38 | }; |
| 39 | |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 40 | struct blkio_cgroup { |
| 41 | struct cgroup_subsys_state css; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 42 | spinlock_t lock; |
| 43 | struct hlist_head blkg_list; |
Tejun Heo | 9a9e8a2 | 2012-03-19 15:10:56 -0700 | [diff] [blame] | 44 | |
| 45 | /* for policies to test whether associated blkcg has changed */ |
| 46 | uint64_t id; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 47 | |
| 48 | /* TODO: per-policy storage in blkio_cgroup */ |
| 49 | unsigned int cfq_weight; /* belongs to cfq */ |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 50 | }; |
| 51 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 52 | struct blkg_stat { |
| 53 | struct u64_stats_sync syncp; |
| 54 | uint64_t cnt; |
| 55 | }; |
| 56 | |
| 57 | struct blkg_rwstat { |
| 58 | struct u64_stats_sync syncp; |
| 59 | uint64_t cnt[BLKG_RWSTAT_NR]; |
| 60 | }; |
| 61 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 62 | /* per-blkg per-policy data */ |
| 63 | struct blkg_policy_data { |
| 64 | /* the blkg this per-policy data belongs to */ |
| 65 | struct blkio_group *blkg; |
| 66 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 67 | /* used during policy activation */ |
| 68 | struct list_head alloc_node; |
| 69 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 70 | /* pol->pdata_size bytes of private data used by policy impl */ |
| 71 | char pdata[] __aligned(__alignof__(unsigned long long)); |
| 72 | }; |
| 73 | |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 74 | struct blkio_group { |
Tejun Heo | c875f4d | 2012-03-05 13:15:22 -0800 | [diff] [blame] | 75 | /* Pointer to the associated request_queue */ |
| 76 | struct request_queue *q; |
Tejun Heo | e8989fa | 2012-03-05 13:15:20 -0800 | [diff] [blame] | 77 | struct list_head q_node; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 78 | struct hlist_node blkcg_node; |
Tejun Heo | 7ee9c56 | 2012-03-05 13:15:11 -0800 | [diff] [blame] | 79 | struct blkio_cgroup *blkcg; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 80 | /* reference count */ |
| 81 | int refcnt; |
Vivek Goyal | 2208419 | 2009-12-03 12:59:49 -0500 | [diff] [blame] | 82 | |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 83 | struct blkg_policy_data *pd[BLKCG_MAX_POLS]; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 84 | |
| 85 | struct rcu_head rcu_head; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 86 | }; |
| 87 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 88 | typedef void (blkio_init_group_fn)(struct blkio_group *blkg); |
Tejun Heo | 9ade5ea | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 89 | typedef void (blkio_exit_group_fn)(struct blkio_group *blkg); |
| 90 | typedef void (blkio_reset_group_stats_fn)(struct blkio_group *blkg); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 91 | |
| 92 | struct blkio_policy_ops { |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 93 | blkio_init_group_fn *blkio_init_group_fn; |
Tejun Heo | 9ade5ea | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 94 | blkio_exit_group_fn *blkio_exit_group_fn; |
| 95 | blkio_reset_group_stats_fn *blkio_reset_group_stats_fn; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 96 | }; |
| 97 | |
| 98 | struct blkio_policy_type { |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 99 | struct blkio_policy_ops ops; |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 100 | int plid; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 101 | size_t pdata_size; /* policy specific private data size */ |
Tejun Heo | 44ea53d | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 102 | struct cftype *cftypes; /* cgroup files for the policy */ |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 103 | }; |
| 104 | |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 105 | extern int blkcg_init_queue(struct request_queue *q); |
| 106 | extern void blkcg_drain_queue(struct request_queue *q); |
| 107 | extern void blkcg_exit_queue(struct request_queue *q); |
| 108 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 109 | /* Blkio controller policy registration */ |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 110 | extern int blkio_policy_register(struct blkio_policy_type *); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 111 | extern void blkio_policy_unregister(struct blkio_policy_type *); |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 112 | extern int blkcg_activate_policy(struct request_queue *q, |
| 113 | const struct blkio_policy_type *pol); |
| 114 | extern void blkcg_deactivate_policy(struct request_queue *q, |
| 115 | const struct blkio_policy_type *pol); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 116 | |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 117 | void blkcg_print_blkgs(struct seq_file *sf, struct blkio_cgroup *blkcg, |
Tejun Heo | d366e7e | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 118 | u64 (*prfill)(struct seq_file *, void *, int), |
Tejun Heo | ec39934 | 2012-04-13 13:11:27 -0700 | [diff] [blame] | 119 | const struct blkio_policy_type *pol, int data, |
| 120 | bool show_total); |
Tejun Heo | d366e7e | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 121 | u64 __blkg_prfill_u64(struct seq_file *sf, void *pdata, u64 v); |
| 122 | u64 __blkg_prfill_rwstat(struct seq_file *sf, void *pdata, |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 123 | const struct blkg_rwstat *rwstat); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 124 | u64 blkg_prfill_stat(struct seq_file *sf, void *pdata, int off); |
| 125 | u64 blkg_prfill_rwstat(struct seq_file *sf, void *pdata, int off); |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 126 | |
| 127 | struct blkg_conf_ctx { |
| 128 | struct gendisk *disk; |
| 129 | struct blkio_group *blkg; |
| 130 | u64 v; |
| 131 | }; |
| 132 | |
Tejun Heo | da8b066 | 2012-04-13 13:11:29 -0700 | [diff] [blame] | 133 | int blkg_conf_prep(struct blkio_cgroup *blkcg, |
| 134 | const struct blkio_policy_type *pol, const char *input, |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 135 | struct blkg_conf_ctx *ctx); |
| 136 | void blkg_conf_finish(struct blkg_conf_ctx *ctx); |
| 137 | |
| 138 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 139 | /** |
| 140 | * blkg_to_pdata - get policy private data |
| 141 | * @blkg: blkg of interest |
| 142 | * @pol: policy of interest |
| 143 | * |
| 144 | * Return pointer to private data associated with the @blkg-@pol pair. |
| 145 | */ |
| 146 | static inline void *blkg_to_pdata(struct blkio_group *blkg, |
| 147 | struct blkio_policy_type *pol) |
| 148 | { |
Tejun Heo | 549d3aa | 2012-03-05 13:15:16 -0800 | [diff] [blame] | 149 | return blkg ? blkg->pd[pol->plid]->pdata : NULL; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 150 | } |
| 151 | |
| 152 | /** |
| 153 | * pdata_to_blkg - get blkg associated with policy private data |
| 154 | * @pdata: policy private data of interest |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 155 | * |
Tejun Heo | aaec55a | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 156 | * @pdata is policy private data. Determine the blkg it's associated with. |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 157 | */ |
Tejun Heo | aaec55a | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 158 | static inline struct blkio_group *pdata_to_blkg(void *pdata) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 159 | { |
| 160 | if (pdata) { |
| 161 | struct blkg_policy_data *pd = |
| 162 | container_of(pdata, struct blkg_policy_data, pdata); |
| 163 | return pd->blkg; |
| 164 | } |
| 165 | return NULL; |
| 166 | } |
| 167 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame^] | 168 | /** |
| 169 | * blkg_path - format cgroup path of blkg |
| 170 | * @blkg: blkg of interest |
| 171 | * @buf: target buffer |
| 172 | * @buflen: target buffer length |
| 173 | * |
| 174 | * Format the path of the cgroup of @blkg into @buf. |
| 175 | */ |
| 176 | static inline int blkg_path(struct blkio_group *blkg, char *buf, int buflen) |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 177 | { |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame^] | 178 | int ret; |
| 179 | |
| 180 | rcu_read_lock(); |
| 181 | ret = cgroup_path(blkg->blkcg->css.cgroup, buf, buflen); |
| 182 | rcu_read_unlock(); |
| 183 | if (ret) |
| 184 | strncpy(buf, "<unavailable>", buflen); |
| 185 | return ret; |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 186 | } |
| 187 | |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 188 | /** |
| 189 | * blkg_get - get a blkg reference |
| 190 | * @blkg: blkg to get |
| 191 | * |
| 192 | * The caller should be holding queue_lock and an existing reference. |
| 193 | */ |
| 194 | static inline void blkg_get(struct blkio_group *blkg) |
| 195 | { |
| 196 | lockdep_assert_held(blkg->q->queue_lock); |
| 197 | WARN_ON_ONCE(!blkg->refcnt); |
| 198 | blkg->refcnt++; |
| 199 | } |
| 200 | |
| 201 | void __blkg_release(struct blkio_group *blkg); |
| 202 | |
| 203 | /** |
| 204 | * blkg_put - put a blkg reference |
| 205 | * @blkg: blkg to put |
| 206 | * |
| 207 | * The caller should be holding queue_lock. |
| 208 | */ |
| 209 | static inline void blkg_put(struct blkio_group *blkg) |
| 210 | { |
| 211 | lockdep_assert_held(blkg->q->queue_lock); |
| 212 | WARN_ON_ONCE(blkg->refcnt <= 0); |
| 213 | if (!--blkg->refcnt) |
| 214 | __blkg_release(blkg); |
| 215 | } |
| 216 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 217 | /** |
| 218 | * blkg_stat_add - add a value to a blkg_stat |
| 219 | * @stat: target blkg_stat |
| 220 | * @val: value to add |
| 221 | * |
| 222 | * Add @val to @stat. The caller is responsible for synchronizing calls to |
| 223 | * this function. |
| 224 | */ |
| 225 | static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val) |
| 226 | { |
| 227 | u64_stats_update_begin(&stat->syncp); |
| 228 | stat->cnt += val; |
| 229 | u64_stats_update_end(&stat->syncp); |
| 230 | } |
| 231 | |
| 232 | /** |
| 233 | * blkg_stat_read - read the current value of a blkg_stat |
| 234 | * @stat: blkg_stat to read |
| 235 | * |
| 236 | * Read the current value of @stat. This function can be called without |
| 237 | * synchroniztion and takes care of u64 atomicity. |
| 238 | */ |
| 239 | static inline uint64_t blkg_stat_read(struct blkg_stat *stat) |
| 240 | { |
| 241 | unsigned int start; |
| 242 | uint64_t v; |
| 243 | |
| 244 | do { |
| 245 | start = u64_stats_fetch_begin(&stat->syncp); |
| 246 | v = stat->cnt; |
| 247 | } while (u64_stats_fetch_retry(&stat->syncp, start)); |
| 248 | |
| 249 | return v; |
| 250 | } |
| 251 | |
| 252 | /** |
| 253 | * blkg_stat_reset - reset a blkg_stat |
| 254 | * @stat: blkg_stat to reset |
| 255 | */ |
| 256 | static inline void blkg_stat_reset(struct blkg_stat *stat) |
| 257 | { |
| 258 | stat->cnt = 0; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * blkg_rwstat_add - add a value to a blkg_rwstat |
| 263 | * @rwstat: target blkg_rwstat |
| 264 | * @rw: mask of REQ_{WRITE|SYNC} |
| 265 | * @val: value to add |
| 266 | * |
| 267 | * Add @val to @rwstat. The counters are chosen according to @rw. The |
| 268 | * caller is responsible for synchronizing calls to this function. |
| 269 | */ |
| 270 | static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat, |
| 271 | int rw, uint64_t val) |
| 272 | { |
| 273 | u64_stats_update_begin(&rwstat->syncp); |
| 274 | |
| 275 | if (rw & REQ_WRITE) |
| 276 | rwstat->cnt[BLKG_RWSTAT_WRITE] += val; |
| 277 | else |
| 278 | rwstat->cnt[BLKG_RWSTAT_READ] += val; |
| 279 | if (rw & REQ_SYNC) |
| 280 | rwstat->cnt[BLKG_RWSTAT_SYNC] += val; |
| 281 | else |
| 282 | rwstat->cnt[BLKG_RWSTAT_ASYNC] += val; |
| 283 | |
| 284 | u64_stats_update_end(&rwstat->syncp); |
| 285 | } |
| 286 | |
| 287 | /** |
| 288 | * blkg_rwstat_read - read the current values of a blkg_rwstat |
| 289 | * @rwstat: blkg_rwstat to read |
| 290 | * |
| 291 | * Read the current snapshot of @rwstat and return it as the return value. |
| 292 | * This function can be called without synchronization and takes care of |
| 293 | * u64 atomicity. |
| 294 | */ |
Tejun Heo | c94bed89 | 2012-04-16 13:57:22 -0700 | [diff] [blame] | 295 | static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat) |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 296 | { |
| 297 | unsigned int start; |
| 298 | struct blkg_rwstat tmp; |
| 299 | |
| 300 | do { |
| 301 | start = u64_stats_fetch_begin(&rwstat->syncp); |
| 302 | tmp = *rwstat; |
| 303 | } while (u64_stats_fetch_retry(&rwstat->syncp, start)); |
| 304 | |
| 305 | return tmp; |
| 306 | } |
| 307 | |
| 308 | /** |
| 309 | * blkg_rwstat_sum - read the total count of a blkg_rwstat |
| 310 | * @rwstat: blkg_rwstat to read |
| 311 | * |
| 312 | * Return the total count of @rwstat regardless of the IO direction. This |
| 313 | * function can be called without synchronization and takes care of u64 |
| 314 | * atomicity. |
| 315 | */ |
| 316 | static inline uint64_t blkg_rwstat_sum(struct blkg_rwstat *rwstat) |
| 317 | { |
| 318 | struct blkg_rwstat tmp = blkg_rwstat_read(rwstat); |
| 319 | |
| 320 | return tmp.cnt[BLKG_RWSTAT_READ] + tmp.cnt[BLKG_RWSTAT_WRITE]; |
| 321 | } |
| 322 | |
| 323 | /** |
| 324 | * blkg_rwstat_reset - reset a blkg_rwstat |
| 325 | * @rwstat: blkg_rwstat to reset |
| 326 | */ |
| 327 | static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat) |
| 328 | { |
| 329 | memset(rwstat->cnt, 0, sizeof(rwstat->cnt)); |
| 330 | } |
| 331 | |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 332 | #else |
| 333 | |
| 334 | struct blkio_group { |
| 335 | }; |
| 336 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 337 | struct blkio_policy_type { |
| 338 | }; |
| 339 | |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 340 | static inline int blkcg_init_queue(struct request_queue *q) { return 0; } |
| 341 | static inline void blkcg_drain_queue(struct request_queue *q) { } |
| 342 | static inline void blkcg_exit_queue(struct request_queue *q) { } |
Tejun Heo | 8bd435b | 2012-04-13 13:11:28 -0700 | [diff] [blame] | 343 | static inline int blkio_policy_register(struct blkio_policy_type *blkiop) { return 0; } |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 344 | static inline void blkio_policy_unregister(struct blkio_policy_type *blkiop) { } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 345 | static inline int blkcg_activate_policy(struct request_queue *q, |
| 346 | const struct blkio_policy_type *pol) { return 0; } |
| 347 | static inline void blkcg_deactivate_policy(struct request_queue *q, |
| 348 | const struct blkio_policy_type *pol) { } |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 349 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 350 | static inline void *blkg_to_pdata(struct blkio_group *blkg, |
| 351 | struct blkio_policy_type *pol) { return NULL; } |
| 352 | static inline struct blkio_group *pdata_to_blkg(void *pdata, |
| 353 | struct blkio_policy_type *pol) { return NULL; } |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 354 | static inline char *blkg_path(struct blkio_group *blkg) { return NULL; } |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 355 | static inline void blkg_get(struct blkio_group *blkg) { } |
| 356 | static inline void blkg_put(struct blkio_group *blkg) { } |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 357 | |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 358 | #endif |
| 359 | |
Tejun Heo | 32e380a | 2012-03-05 13:14:54 -0800 | [diff] [blame] | 360 | #ifdef CONFIG_BLK_CGROUP |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 361 | extern struct blkio_cgroup blkio_root_cgroup; |
| 362 | extern struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup); |
Tejun Heo | 4f85cb9 | 2012-03-05 13:15:28 -0800 | [diff] [blame] | 363 | extern struct blkio_cgroup *bio_blkio_cgroup(struct bio *bio); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 364 | extern struct blkio_group *blkg_lookup(struct blkio_cgroup *blkcg, |
Tejun Heo | e8989fa | 2012-03-05 13:15:20 -0800 | [diff] [blame] | 365 | struct request_queue *q); |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 366 | struct blkio_group *blkg_lookup_create(struct blkio_cgroup *blkcg, |
Tejun Heo | 3c96cb3 | 2012-04-13 13:11:34 -0700 | [diff] [blame] | 367 | struct request_queue *q); |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 368 | #else |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 369 | struct cgroup; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 370 | static inline struct blkio_cgroup * |
| 371 | cgroup_to_blkio_cgroup(struct cgroup *cgroup) { return NULL; } |
Vivek Goyal | 70087dc | 2011-05-16 15:24:08 +0200 | [diff] [blame] | 372 | static inline struct blkio_cgroup * |
Tejun Heo | 4f85cb9 | 2012-03-05 13:15:28 -0800 | [diff] [blame] | 373 | bio_blkio_cgroup(struct bio *bio) { return NULL; } |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 374 | |
Tejun Heo | cd1604f | 2012-03-05 13:15:06 -0800 | [diff] [blame] | 375 | static inline struct blkio_group *blkg_lookup(struct blkio_cgroup *blkcg, |
| 376 | void *key) { return NULL; } |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 377 | #endif |
| 378 | #endif /* _BLK_CGROUP_H */ |