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