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