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 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 40 | struct blkcg { |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 41 | struct cgroup_subsys_state css; |
| 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 */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 46 | uint64_t id; |
Tejun Heo | 3381cb8 | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 47 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 48 | /* TODO: per-policy storage in blkcg */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 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 */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 65 | struct blkcg_gq *blkg; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 66 | |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 67 | /* used during policy activation */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 68 | struct list_head alloc_node; |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 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 */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 71 | char pdata[] __aligned(__alignof__(unsigned long long)); |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 72 | }; |
| 73 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 74 | /* association between a blk cgroup and a request queue */ |
| 75 | struct blkcg_gq { |
Tejun Heo | c875f4d | 2012-03-05 13:15:22 -0800 | [diff] [blame] | 76 | /* Pointer to the associated request_queue */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 77 | struct request_queue *q; |
| 78 | struct list_head q_node; |
| 79 | struct hlist_node blkcg_node; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 80 | struct blkcg *blkcg; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 81 | /* reference count */ |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 82 | int refcnt; |
Vivek Goyal | 2208419 | 2009-12-03 12:59:49 -0500 | [diff] [blame] | 83 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 84 | struct blkg_policy_data *pd[BLKCG_MAX_POLS]; |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 85 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 86 | struct rcu_head rcu_head; |
Vivek Goyal | 31e4c28 | 2009-12-03 12:59:42 -0500 | [diff] [blame] | 87 | }; |
| 88 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 89 | typedef void (blkcg_pol_init_pd_fn)(struct blkcg_gq *blkg); |
| 90 | typedef void (blkcg_pol_exit_pd_fn)(struct blkcg_gq *blkg); |
| 91 | typedef void (blkcg_pol_reset_pd_stats_fn)(struct blkcg_gq *blkg); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 92 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 93 | struct blkcg_policy_ops { |
| 94 | blkcg_pol_init_pd_fn *pd_init_fn; |
| 95 | blkcg_pol_exit_pd_fn *pd_exit_fn; |
| 96 | blkcg_pol_reset_pd_stats_fn *pd_reset_stats_fn; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 97 | }; |
| 98 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 99 | struct blkcg_policy { |
| 100 | struct blkcg_policy_ops ops; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 101 | int plid; |
| 102 | /* policy specific private data size */ |
| 103 | size_t pdata_size; |
| 104 | /* cgroup files for the policy */ |
| 105 | struct cftype *cftypes; |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 106 | }; |
| 107 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 108 | extern struct blkcg blkcg_root; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 109 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 110 | struct blkcg *cgroup_to_blkcg(struct cgroup *cgroup); |
| 111 | struct blkcg *bio_blkcg(struct bio *bio); |
| 112 | struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, struct request_queue *q); |
| 113 | struct blkcg_gq *blkg_lookup_create(struct blkcg *blkcg, |
| 114 | struct request_queue *q); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 115 | int blkcg_init_queue(struct request_queue *q); |
| 116 | void blkcg_drain_queue(struct request_queue *q); |
| 117 | void blkcg_exit_queue(struct request_queue *q); |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 118 | |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 119 | /* Blkio controller policy registration */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 120 | int blkcg_policy_register(struct blkcg_policy *pol); |
| 121 | void blkcg_policy_unregister(struct blkcg_policy *pol); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 122 | int blkcg_activate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 123 | const struct blkcg_policy *pol); |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 124 | void blkcg_deactivate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 125 | const struct blkcg_policy *pol); |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 126 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 127 | void blkcg_print_blkgs(struct seq_file *sf, struct blkcg *blkcg, |
Tejun Heo | d366e7e | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 128 | u64 (*prfill)(struct seq_file *, void *, int), |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 129 | const struct blkcg_policy *pol, int data, |
Tejun Heo | ec39934 | 2012-04-13 13:11:27 -0700 | [diff] [blame] | 130 | bool show_total); |
Tejun Heo | d366e7e | 2012-04-01 14:38:44 -0700 | [diff] [blame] | 131 | u64 __blkg_prfill_u64(struct seq_file *sf, void *pdata, u64 v); |
| 132 | u64 __blkg_prfill_rwstat(struct seq_file *sf, void *pdata, |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 133 | const struct blkg_rwstat *rwstat); |
Tejun Heo | 5bc4afb1 | 2012-04-01 14:38:45 -0700 | [diff] [blame] | 134 | u64 blkg_prfill_stat(struct seq_file *sf, void *pdata, int off); |
| 135 | u64 blkg_prfill_rwstat(struct seq_file *sf, void *pdata, int off); |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 136 | |
| 137 | struct blkg_conf_ctx { |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 138 | struct gendisk *disk; |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 139 | struct blkcg_gq *blkg; |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 140 | u64 v; |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 141 | }; |
| 142 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 143 | int blkg_conf_prep(struct blkcg *blkcg, const struct blkcg_policy *pol, |
| 144 | const char *input, struct blkg_conf_ctx *ctx); |
Tejun Heo | 829fdb5 | 2012-04-01 14:38:43 -0700 | [diff] [blame] | 145 | void blkg_conf_finish(struct blkg_conf_ctx *ctx); |
| 146 | |
| 147 | |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 148 | /** |
| 149 | * blkg_to_pdata - get policy private data |
| 150 | * @blkg: blkg of interest |
| 151 | * @pol: policy of interest |
| 152 | * |
| 153 | * Return pointer to private data associated with the @blkg-@pol pair. |
| 154 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 155 | static inline void *blkg_to_pdata(struct blkcg_gq *blkg, |
| 156 | struct blkcg_policy *pol) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 157 | { |
Tejun Heo | 549d3aa | 2012-03-05 13:15:16 -0800 | [diff] [blame] | 158 | return blkg ? blkg->pd[pol->plid]->pdata : NULL; |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | /** |
| 162 | * pdata_to_blkg - get blkg associated with policy private data |
| 163 | * @pdata: policy private data of interest |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 164 | * |
Tejun Heo | aaec55a | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 165 | * @pdata is policy private data. Determine the blkg it's associated with. |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 166 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 167 | static inline struct blkcg_gq *pdata_to_blkg(void *pdata) |
Tejun Heo | 0381411 | 2012-03-05 13:15:14 -0800 | [diff] [blame] | 168 | { |
| 169 | if (pdata) { |
| 170 | struct blkg_policy_data *pd = |
| 171 | container_of(pdata, struct blkg_policy_data, pdata); |
| 172 | return pd->blkg; |
| 173 | } |
| 174 | return NULL; |
| 175 | } |
| 176 | |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 177 | /** |
| 178 | * blkg_path - format cgroup path of blkg |
| 179 | * @blkg: blkg of interest |
| 180 | * @buf: target buffer |
| 181 | * @buflen: target buffer length |
| 182 | * |
| 183 | * Format the path of the cgroup of @blkg into @buf. |
| 184 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 185 | static inline int blkg_path(struct blkcg_gq *blkg, char *buf, int buflen) |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 186 | { |
Tejun Heo | 54e7ed1 | 2012-04-16 13:57:23 -0700 | [diff] [blame] | 187 | int ret; |
| 188 | |
| 189 | rcu_read_lock(); |
| 190 | ret = cgroup_path(blkg->blkcg->css.cgroup, buf, buflen); |
| 191 | rcu_read_unlock(); |
| 192 | if (ret) |
| 193 | strncpy(buf, "<unavailable>", buflen); |
| 194 | return ret; |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 197 | /** |
| 198 | * blkg_get - get a blkg reference |
| 199 | * @blkg: blkg to get |
| 200 | * |
| 201 | * The caller should be holding queue_lock and an existing reference. |
| 202 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 203 | static inline void blkg_get(struct blkcg_gq *blkg) |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 204 | { |
| 205 | lockdep_assert_held(blkg->q->queue_lock); |
| 206 | WARN_ON_ONCE(!blkg->refcnt); |
| 207 | blkg->refcnt++; |
| 208 | } |
| 209 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 210 | void __blkg_release(struct blkcg_gq *blkg); |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 211 | |
| 212 | /** |
| 213 | * blkg_put - put a blkg reference |
| 214 | * @blkg: blkg to put |
| 215 | * |
| 216 | * The caller should be holding queue_lock. |
| 217 | */ |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 218 | static inline void blkg_put(struct blkcg_gq *blkg) |
Tejun Heo | 1adaf3d | 2012-03-05 13:15:15 -0800 | [diff] [blame] | 219 | { |
| 220 | lockdep_assert_held(blkg->q->queue_lock); |
| 221 | WARN_ON_ONCE(blkg->refcnt <= 0); |
| 222 | if (!--blkg->refcnt) |
| 223 | __blkg_release(blkg); |
| 224 | } |
| 225 | |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 226 | /** |
| 227 | * blkg_stat_add - add a value to a blkg_stat |
| 228 | * @stat: target blkg_stat |
| 229 | * @val: value to add |
| 230 | * |
| 231 | * Add @val to @stat. The caller is responsible for synchronizing calls to |
| 232 | * this function. |
| 233 | */ |
| 234 | static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val) |
| 235 | { |
| 236 | u64_stats_update_begin(&stat->syncp); |
| 237 | stat->cnt += val; |
| 238 | u64_stats_update_end(&stat->syncp); |
| 239 | } |
| 240 | |
| 241 | /** |
| 242 | * blkg_stat_read - read the current value of a blkg_stat |
| 243 | * @stat: blkg_stat to read |
| 244 | * |
| 245 | * Read the current value of @stat. This function can be called without |
| 246 | * synchroniztion and takes care of u64 atomicity. |
| 247 | */ |
| 248 | static inline uint64_t blkg_stat_read(struct blkg_stat *stat) |
| 249 | { |
| 250 | unsigned int start; |
| 251 | uint64_t v; |
| 252 | |
| 253 | do { |
| 254 | start = u64_stats_fetch_begin(&stat->syncp); |
| 255 | v = stat->cnt; |
| 256 | } while (u64_stats_fetch_retry(&stat->syncp, start)); |
| 257 | |
| 258 | return v; |
| 259 | } |
| 260 | |
| 261 | /** |
| 262 | * blkg_stat_reset - reset a blkg_stat |
| 263 | * @stat: blkg_stat to reset |
| 264 | */ |
| 265 | static inline void blkg_stat_reset(struct blkg_stat *stat) |
| 266 | { |
| 267 | stat->cnt = 0; |
| 268 | } |
| 269 | |
| 270 | /** |
| 271 | * blkg_rwstat_add - add a value to a blkg_rwstat |
| 272 | * @rwstat: target blkg_rwstat |
| 273 | * @rw: mask of REQ_{WRITE|SYNC} |
| 274 | * @val: value to add |
| 275 | * |
| 276 | * Add @val to @rwstat. The counters are chosen according to @rw. The |
| 277 | * caller is responsible for synchronizing calls to this function. |
| 278 | */ |
| 279 | static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat, |
| 280 | int rw, uint64_t val) |
| 281 | { |
| 282 | u64_stats_update_begin(&rwstat->syncp); |
| 283 | |
| 284 | if (rw & REQ_WRITE) |
| 285 | rwstat->cnt[BLKG_RWSTAT_WRITE] += val; |
| 286 | else |
| 287 | rwstat->cnt[BLKG_RWSTAT_READ] += val; |
| 288 | if (rw & REQ_SYNC) |
| 289 | rwstat->cnt[BLKG_RWSTAT_SYNC] += val; |
| 290 | else |
| 291 | rwstat->cnt[BLKG_RWSTAT_ASYNC] += val; |
| 292 | |
| 293 | u64_stats_update_end(&rwstat->syncp); |
| 294 | } |
| 295 | |
| 296 | /** |
| 297 | * blkg_rwstat_read - read the current values of a blkg_rwstat |
| 298 | * @rwstat: blkg_rwstat to read |
| 299 | * |
| 300 | * Read the current snapshot of @rwstat and return it as the return value. |
| 301 | * This function can be called without synchronization and takes care of |
| 302 | * u64 atomicity. |
| 303 | */ |
Tejun Heo | c94bed89 | 2012-04-16 13:57:22 -0700 | [diff] [blame] | 304 | static inline struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat) |
Tejun Heo | edcb072 | 2012-04-01 14:38:42 -0700 | [diff] [blame] | 305 | { |
| 306 | unsigned int start; |
| 307 | struct blkg_rwstat tmp; |
| 308 | |
| 309 | do { |
| 310 | start = u64_stats_fetch_begin(&rwstat->syncp); |
| 311 | tmp = *rwstat; |
| 312 | } while (u64_stats_fetch_retry(&rwstat->syncp, start)); |
| 313 | |
| 314 | return tmp; |
| 315 | } |
| 316 | |
| 317 | /** |
| 318 | * blkg_rwstat_sum - read the total count of a blkg_rwstat |
| 319 | * @rwstat: blkg_rwstat to read |
| 320 | * |
| 321 | * Return the total count of @rwstat regardless of the IO direction. This |
| 322 | * function can be called without synchronization and takes care of u64 |
| 323 | * atomicity. |
| 324 | */ |
| 325 | static inline uint64_t blkg_rwstat_sum(struct blkg_rwstat *rwstat) |
| 326 | { |
| 327 | struct blkg_rwstat tmp = blkg_rwstat_read(rwstat); |
| 328 | |
| 329 | return tmp.cnt[BLKG_RWSTAT_READ] + tmp.cnt[BLKG_RWSTAT_WRITE]; |
| 330 | } |
| 331 | |
| 332 | /** |
| 333 | * blkg_rwstat_reset - reset a blkg_rwstat |
| 334 | * @rwstat: blkg_rwstat to reset |
| 335 | */ |
| 336 | static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat) |
| 337 | { |
| 338 | memset(rwstat->cnt, 0, sizeof(rwstat->cnt)); |
| 339 | } |
| 340 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 341 | #else /* CONFIG_BLK_CGROUP */ |
| 342 | |
| 343 | struct cgroup; |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 344 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 345 | struct blkcg_gq { |
Jens Axboe | 2f5ea47 | 2009-12-03 21:06:43 +0100 | [diff] [blame] | 346 | }; |
| 347 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 348 | struct blkcg_policy { |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 349 | }; |
| 350 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 351 | static inline struct blkcg *cgroup_to_blkcg(struct cgroup *cgroup) { return NULL; } |
| 352 | static inline struct blkcg *bio_blkcg(struct bio *bio) { return NULL; } |
| 353 | static inline struct blkcg_gq *blkg_lookup(struct blkcg *blkcg, void *key) { return NULL; } |
Tejun Heo | 5efd611 | 2012-03-05 13:15:12 -0800 | [diff] [blame] | 354 | static inline int blkcg_init_queue(struct request_queue *q) { return 0; } |
| 355 | static inline void blkcg_drain_queue(struct request_queue *q) { } |
| 356 | static inline void blkcg_exit_queue(struct request_queue *q) { } |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 357 | static inline int blkcg_policy_register(struct blkcg_policy *pol) { return 0; } |
| 358 | static inline void blkcg_policy_unregister(struct blkcg_policy *pol) { } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 359 | static inline int blkcg_activate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 360 | const struct blkcg_policy *pol) { return 0; } |
Tejun Heo | a2b1693 | 2012-04-13 13:11:33 -0700 | [diff] [blame] | 361 | static inline void blkcg_deactivate_policy(struct request_queue *q, |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 362 | const struct blkcg_policy *pol) { } |
Vivek Goyal | 3e25206 | 2009-12-04 10:36:42 -0500 | [diff] [blame] | 363 | |
Tejun Heo | 3c79839 | 2012-04-16 13:57:25 -0700 | [diff] [blame^] | 364 | static inline void *blkg_to_pdata(struct blkcg_gq *blkg, |
| 365 | struct blkcg_policy *pol) { return NULL; } |
| 366 | static inline struct blkcg_gq *pdata_to_blkg(void *pdata, |
| 367 | struct blkcg_policy *pol) { return NULL; } |
| 368 | static inline char *blkg_path(struct blkcg_gq *blkg) { return NULL; } |
| 369 | static inline void blkg_get(struct blkcg_gq *blkg) { } |
| 370 | static inline void blkg_put(struct blkcg_gq *blkg) { } |
Vivek Goyal | afc24d4 | 2010-04-26 19:27:56 +0200 | [diff] [blame] | 371 | |
Tejun Heo | 36558c8 | 2012-04-16 13:57:24 -0700 | [diff] [blame] | 372 | #endif /* CONFIG_BLK_CGROUP */ |
| 373 | #endif /* _BLK_CGROUP_H */ |