blob: c930895bfac9e05c2c16446c783d85307d98b353 [file] [log] [blame]
Vivek Goyal31e4c282009-12-03 12:59:42 -05001#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 Goyal575969a2011-05-19 15:38:29 -040017#include <linux/u64_stats_sync.h>
Tejun Heo829fdb52012-04-01 14:38:43 -070018#include <linux/seq_file.h>
Vivek Goyal31e4c282009-12-03 12:59:42 -050019
Vivek Goyal062a6442010-09-15 17:06:33 -040020enum blkio_policy_id {
21 BLKIO_POLICY_PROP = 0, /* Proportional Bandwidth division */
Vivek Goyal4c9eefa2010-09-15 17:06:34 -040022 BLKIO_POLICY_THROTL, /* Throttling */
Tejun Heo035d10b2012-03-05 13:15:04 -080023
24 BLKIO_NR_POLICIES,
Vivek Goyal062a6442010-09-15 17:06:33 -040025};
26
Vivek Goyal9355aed2010-10-01 21:16:41 +020027/* Max limits for throttle policy */
28#define THROTL_IOPS_MAX UINT_MAX
29
Tejun Heo32e380a2012-03-05 13:14:54 -080030#ifdef CONFIG_BLK_CGROUP
Jens Axboe2f5ea472009-12-03 21:06:43 +010031
Tejun Heo3381cb82012-04-01 14:38:44 -070032/* 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 Heod3d32e692012-04-01 14:38:42 -070037/* 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 Heo2aa4a152012-04-01 14:38:42 -070041
Tejun Heoedcb0722012-04-01 14:38:42 -070042enum 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 Shah303a3ac2010-04-01 15:01:24 -070050};
51
Vivek Goyal31e4c282009-12-03 12:59:42 -050052struct blkio_cgroup {
53 struct cgroup_subsys_state css;
Vivek Goyal31e4c282009-12-03 12:59:42 -050054 spinlock_t lock;
55 struct hlist_head blkg_list;
Tejun Heo9a9e8a22012-03-19 15:10:56 -070056
57 /* for policies to test whether associated blkcg has changed */
58 uint64_t id;
Tejun Heo3381cb82012-04-01 14:38:44 -070059
60 /* TODO: per-policy storage in blkio_cgroup */
61 unsigned int cfq_weight; /* belongs to cfq */
Vivek Goyal31e4c282009-12-03 12:59:42 -050062};
63
Tejun Heoedcb0722012-04-01 14:38:42 -070064struct blkg_stat {
65 struct u64_stats_sync syncp;
66 uint64_t cnt;
67};
68
69struct blkg_rwstat {
70 struct u64_stats_sync syncp;
71 uint64_t cnt[BLKG_RWSTAT_NR];
72};
73
Tejun Heo03814112012-03-05 13:15:14 -080074/* per-blkg per-policy data */
75struct blkg_policy_data {
76 /* the blkg this per-policy data belongs to */
77 struct blkio_group *blkg;
78
79 /* pol->pdata_size bytes of private data used by policy impl */
80 char pdata[] __aligned(__alignof__(unsigned long long));
81};
82
Vivek Goyal31e4c282009-12-03 12:59:42 -050083struct blkio_group {
Tejun Heoc875f4d2012-03-05 13:15:22 -080084 /* Pointer to the associated request_queue */
85 struct request_queue *q;
Tejun Heoe8989fa2012-03-05 13:15:20 -080086 struct list_head q_node;
Vivek Goyal31e4c282009-12-03 12:59:42 -050087 struct hlist_node blkcg_node;
Tejun Heo7ee9c562012-03-05 13:15:11 -080088 struct blkio_cgroup *blkcg;
Vivek Goyal2868ef72009-12-03 12:59:48 -050089 /* Store cgroup path */
90 char path[128];
Tejun Heo1adaf3d2012-03-05 13:15:15 -080091 /* reference count */
92 int refcnt;
Vivek Goyal22084192009-12-03 12:59:49 -050093
Tejun Heo549d3aa2012-03-05 13:15:16 -080094 struct blkg_policy_data *pd[BLKIO_NR_POLICIES];
Tejun Heo1adaf3d2012-03-05 13:15:15 -080095
96 struct rcu_head rcu_head;
Vivek Goyal31e4c282009-12-03 12:59:42 -050097};
98
Tejun Heo03814112012-03-05 13:15:14 -080099typedef void (blkio_init_group_fn)(struct blkio_group *blkg);
Tejun Heo9ade5ea2012-04-01 14:38:44 -0700100typedef void (blkio_exit_group_fn)(struct blkio_group *blkg);
101typedef void (blkio_reset_group_stats_fn)(struct blkio_group *blkg);
Vivek Goyal3e252062009-12-04 10:36:42 -0500102
103struct blkio_policy_ops {
Tejun Heo03814112012-03-05 13:15:14 -0800104 blkio_init_group_fn *blkio_init_group_fn;
Tejun Heo9ade5ea2012-04-01 14:38:44 -0700105 blkio_exit_group_fn *blkio_exit_group_fn;
106 blkio_reset_group_stats_fn *blkio_reset_group_stats_fn;
Vivek Goyal3e252062009-12-04 10:36:42 -0500107};
108
109struct blkio_policy_type {
110 struct list_head list;
111 struct blkio_policy_ops ops;
Vivek Goyal062a6442010-09-15 17:06:33 -0400112 enum blkio_policy_id plid;
Tejun Heo03814112012-03-05 13:15:14 -0800113 size_t pdata_size; /* policy specific private data size */
Tejun Heo44ea53d2012-04-01 14:38:43 -0700114 struct cftype *cftypes; /* cgroup files for the policy */
Vivek Goyal3e252062009-12-04 10:36:42 -0500115};
116
Tejun Heo5efd6112012-03-05 13:15:12 -0800117extern int blkcg_init_queue(struct request_queue *q);
118extern void blkcg_drain_queue(struct request_queue *q);
119extern void blkcg_exit_queue(struct request_queue *q);
120
Vivek Goyal3e252062009-12-04 10:36:42 -0500121/* Blkio controller policy registration */
122extern void blkio_policy_register(struct blkio_policy_type *);
123extern void blkio_policy_unregister(struct blkio_policy_type *);
Tejun Heoe8989fa2012-03-05 13:15:20 -0800124extern void blkg_destroy_all(struct request_queue *q, bool destroy_root);
125extern void update_root_blkg_pd(struct request_queue *q,
126 enum blkio_policy_id plid);
Vivek Goyal3e252062009-12-04 10:36:42 -0500127
Tejun Heo829fdb52012-04-01 14:38:43 -0700128void blkcg_print_blkgs(struct seq_file *sf, struct blkio_cgroup *blkcg,
Tejun Heod366e7e2012-04-01 14:38:44 -0700129 u64 (*prfill)(struct seq_file *, void *, int),
Tejun Heo829fdb52012-04-01 14:38:43 -0700130 int pol, int data, bool show_total);
Tejun Heod366e7e2012-04-01 14:38:44 -0700131u64 __blkg_prfill_u64(struct seq_file *sf, void *pdata, u64 v);
132u64 __blkg_prfill_rwstat(struct seq_file *sf, void *pdata,
Tejun Heo829fdb52012-04-01 14:38:43 -0700133 const struct blkg_rwstat *rwstat);
134int blkcg_print_stat(struct cgroup *cgrp, struct cftype *cft,
135 struct seq_file *sf);
136int blkcg_print_rwstat(struct cgroup *cgrp, struct cftype *cft,
137 struct seq_file *sf);
Tejun Heo829fdb52012-04-01 14:38:43 -0700138
139struct blkg_conf_ctx {
140 struct gendisk *disk;
141 struct blkio_group *blkg;
142 u64 v;
143};
144
145int blkg_conf_prep(struct blkio_cgroup *blkcg, const char *input,
146 struct blkg_conf_ctx *ctx);
147void blkg_conf_finish(struct blkg_conf_ctx *ctx);
148
149
Tejun Heo03814112012-03-05 13:15:14 -0800150/**
151 * blkg_to_pdata - get policy private data
152 * @blkg: blkg of interest
153 * @pol: policy of interest
154 *
155 * Return pointer to private data associated with the @blkg-@pol pair.
156 */
157static inline void *blkg_to_pdata(struct blkio_group *blkg,
158 struct blkio_policy_type *pol)
159{
Tejun Heo549d3aa2012-03-05 13:15:16 -0800160 return blkg ? blkg->pd[pol->plid]->pdata : NULL;
Tejun Heo03814112012-03-05 13:15:14 -0800161}
162
163/**
164 * pdata_to_blkg - get blkg associated with policy private data
165 * @pdata: policy private data of interest
Tejun Heo03814112012-03-05 13:15:14 -0800166 *
Tejun Heoaaec55a2012-04-01 14:38:42 -0700167 * @pdata is policy private data. Determine the blkg it's associated with.
Tejun Heo03814112012-03-05 13:15:14 -0800168 */
Tejun Heoaaec55a2012-04-01 14:38:42 -0700169static inline struct blkio_group *pdata_to_blkg(void *pdata)
Tejun Heo03814112012-03-05 13:15:14 -0800170{
171 if (pdata) {
172 struct blkg_policy_data *pd =
173 container_of(pdata, struct blkg_policy_data, pdata);
174 return pd->blkg;
175 }
176 return NULL;
177}
178
Vivek Goyalafc24d42010-04-26 19:27:56 +0200179static inline char *blkg_path(struct blkio_group *blkg)
180{
181 return blkg->path;
182}
183
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800184/**
185 * blkg_get - get a blkg reference
186 * @blkg: blkg to get
187 *
188 * The caller should be holding queue_lock and an existing reference.
189 */
190static inline void blkg_get(struct blkio_group *blkg)
191{
192 lockdep_assert_held(blkg->q->queue_lock);
193 WARN_ON_ONCE(!blkg->refcnt);
194 blkg->refcnt++;
195}
196
197void __blkg_release(struct blkio_group *blkg);
198
199/**
200 * blkg_put - put a blkg reference
201 * @blkg: blkg to put
202 *
203 * The caller should be holding queue_lock.
204 */
205static inline void blkg_put(struct blkio_group *blkg)
206{
207 lockdep_assert_held(blkg->q->queue_lock);
208 WARN_ON_ONCE(blkg->refcnt <= 0);
209 if (!--blkg->refcnt)
210 __blkg_release(blkg);
211}
212
Tejun Heoedcb0722012-04-01 14:38:42 -0700213/**
214 * blkg_stat_add - add a value to a blkg_stat
215 * @stat: target blkg_stat
216 * @val: value to add
217 *
218 * Add @val to @stat. The caller is responsible for synchronizing calls to
219 * this function.
220 */
221static inline void blkg_stat_add(struct blkg_stat *stat, uint64_t val)
222{
223 u64_stats_update_begin(&stat->syncp);
224 stat->cnt += val;
225 u64_stats_update_end(&stat->syncp);
226}
227
228/**
229 * blkg_stat_read - read the current value of a blkg_stat
230 * @stat: blkg_stat to read
231 *
232 * Read the current value of @stat. This function can be called without
233 * synchroniztion and takes care of u64 atomicity.
234 */
235static inline uint64_t blkg_stat_read(struct blkg_stat *stat)
236{
237 unsigned int start;
238 uint64_t v;
239
240 do {
241 start = u64_stats_fetch_begin(&stat->syncp);
242 v = stat->cnt;
243 } while (u64_stats_fetch_retry(&stat->syncp, start));
244
245 return v;
246}
247
248/**
249 * blkg_stat_reset - reset a blkg_stat
250 * @stat: blkg_stat to reset
251 */
252static inline void blkg_stat_reset(struct blkg_stat *stat)
253{
254 stat->cnt = 0;
255}
256
257/**
258 * blkg_rwstat_add - add a value to a blkg_rwstat
259 * @rwstat: target blkg_rwstat
260 * @rw: mask of REQ_{WRITE|SYNC}
261 * @val: value to add
262 *
263 * Add @val to @rwstat. The counters are chosen according to @rw. The
264 * caller is responsible for synchronizing calls to this function.
265 */
266static inline void blkg_rwstat_add(struct blkg_rwstat *rwstat,
267 int rw, uint64_t val)
268{
269 u64_stats_update_begin(&rwstat->syncp);
270
271 if (rw & REQ_WRITE)
272 rwstat->cnt[BLKG_RWSTAT_WRITE] += val;
273 else
274 rwstat->cnt[BLKG_RWSTAT_READ] += val;
275 if (rw & REQ_SYNC)
276 rwstat->cnt[BLKG_RWSTAT_SYNC] += val;
277 else
278 rwstat->cnt[BLKG_RWSTAT_ASYNC] += val;
279
280 u64_stats_update_end(&rwstat->syncp);
281}
282
283/**
284 * blkg_rwstat_read - read the current values of a blkg_rwstat
285 * @rwstat: blkg_rwstat to read
286 *
287 * Read the current snapshot of @rwstat and return it as the return value.
288 * This function can be called without synchronization and takes care of
289 * u64 atomicity.
290 */
291static struct blkg_rwstat blkg_rwstat_read(struct blkg_rwstat *rwstat)
292{
293 unsigned int start;
294 struct blkg_rwstat tmp;
295
296 do {
297 start = u64_stats_fetch_begin(&rwstat->syncp);
298 tmp = *rwstat;
299 } while (u64_stats_fetch_retry(&rwstat->syncp, start));
300
301 return tmp;
302}
303
304/**
305 * blkg_rwstat_sum - read the total count of a blkg_rwstat
306 * @rwstat: blkg_rwstat to read
307 *
308 * Return the total count of @rwstat regardless of the IO direction. This
309 * function can be called without synchronization and takes care of u64
310 * atomicity.
311 */
312static inline uint64_t blkg_rwstat_sum(struct blkg_rwstat *rwstat)
313{
314 struct blkg_rwstat tmp = blkg_rwstat_read(rwstat);
315
316 return tmp.cnt[BLKG_RWSTAT_READ] + tmp.cnt[BLKG_RWSTAT_WRITE];
317}
318
319/**
320 * blkg_rwstat_reset - reset a blkg_rwstat
321 * @rwstat: blkg_rwstat to reset
322 */
323static inline void blkg_rwstat_reset(struct blkg_rwstat *rwstat)
324{
325 memset(rwstat->cnt, 0, sizeof(rwstat->cnt));
326}
327
Jens Axboe2f5ea472009-12-03 21:06:43 +0100328#else
329
330struct blkio_group {
331};
332
Vivek Goyal3e252062009-12-04 10:36:42 -0500333struct blkio_policy_type {
334};
335
Tejun Heo5efd6112012-03-05 13:15:12 -0800336static inline int blkcg_init_queue(struct request_queue *q) { return 0; }
337static inline void blkcg_drain_queue(struct request_queue *q) { }
338static inline void blkcg_exit_queue(struct request_queue *q) { }
Vivek Goyal3e252062009-12-04 10:36:42 -0500339static inline void blkio_policy_register(struct blkio_policy_type *blkiop) { }
340static inline void blkio_policy_unregister(struct blkio_policy_type *blkiop) { }
Tejun Heo03aa264a2012-03-05 13:15:19 -0800341static inline void blkg_destroy_all(struct request_queue *q,
Tejun Heo03aa264a2012-03-05 13:15:19 -0800342 bool destory_root) { }
Tejun Heoe8989fa2012-03-05 13:15:20 -0800343static inline void update_root_blkg_pd(struct request_queue *q,
344 enum blkio_policy_id plid) { }
Vivek Goyal3e252062009-12-04 10:36:42 -0500345
Tejun Heo03814112012-03-05 13:15:14 -0800346static inline void *blkg_to_pdata(struct blkio_group *blkg,
347 struct blkio_policy_type *pol) { return NULL; }
348static inline struct blkio_group *pdata_to_blkg(void *pdata,
349 struct blkio_policy_type *pol) { return NULL; }
Vivek Goyalafc24d42010-04-26 19:27:56 +0200350static inline char *blkg_path(struct blkio_group *blkg) { return NULL; }
Tejun Heo1adaf3d2012-03-05 13:15:15 -0800351static inline void blkg_get(struct blkio_group *blkg) { }
352static inline void blkg_put(struct blkio_group *blkg) { }
Vivek Goyalafc24d42010-04-26 19:27:56 +0200353
Jens Axboe2f5ea472009-12-03 21:06:43 +0100354#endif
355
Tejun Heo32e380a2012-03-05 13:14:54 -0800356#ifdef CONFIG_BLK_CGROUP
Vivek Goyal31e4c282009-12-03 12:59:42 -0500357extern struct blkio_cgroup blkio_root_cgroup;
358extern struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup);
Tejun Heo4f85cb92012-03-05 13:15:28 -0800359extern struct blkio_cgroup *bio_blkio_cgroup(struct bio *bio);
Tejun Heocd1604f2012-03-05 13:15:06 -0800360extern struct blkio_group *blkg_lookup(struct blkio_cgroup *blkcg,
Tejun Heoe8989fa2012-03-05 13:15:20 -0800361 struct request_queue *q);
Tejun Heocd1604f2012-03-05 13:15:06 -0800362struct blkio_group *blkg_lookup_create(struct blkio_cgroup *blkcg,
363 struct request_queue *q,
Tejun Heocd1604f2012-03-05 13:15:06 -0800364 bool for_root);
Vivek Goyal31e4c282009-12-03 12:59:42 -0500365#else
Jens Axboe2f5ea472009-12-03 21:06:43 +0100366struct cgroup;
Vivek Goyal31e4c282009-12-03 12:59:42 -0500367static inline struct blkio_cgroup *
368cgroup_to_blkio_cgroup(struct cgroup *cgroup) { return NULL; }
Vivek Goyal70087dc2011-05-16 15:24:08 +0200369static inline struct blkio_cgroup *
Tejun Heo4f85cb92012-03-05 13:15:28 -0800370bio_blkio_cgroup(struct bio *bio) { return NULL; }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500371
Tejun Heocd1604f2012-03-05 13:15:06 -0800372static inline struct blkio_group *blkg_lookup(struct blkio_cgroup *blkcg,
373 void *key) { return NULL; }
Vivek Goyal31e4c282009-12-03 12:59:42 -0500374#endif
375#endif /* _BLK_CGROUP_H */