blob: 3573199b298bc8fe7d5f1724917af8997d269d34 [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>
17
18struct blkio_cgroup {
19 struct cgroup_subsys_state css;
20 unsigned int weight;
21 spinlock_t lock;
22 struct hlist_head blkg_list;
23};
24
25struct blkio_group {
26 /* An rcu protected unique identifier for the group */
27 void *key;
28 struct hlist_node blkcg_node;
Vivek Goyalb1c35762009-12-03 12:59:47 -050029 unsigned short blkcg_id;
Vivek Goyal2868ef72009-12-03 12:59:48 -050030#ifdef CONFIG_DEBUG_BLK_CGROUP
31 /* Store cgroup path */
32 char path[128];
33#endif
Vivek Goyal31e4c282009-12-03 12:59:42 -050034};
35
36#define BLKIO_WEIGHT_MIN 100
37#define BLKIO_WEIGHT_MAX 1000
38#define BLKIO_WEIGHT_DEFAULT 500
39
Vivek Goyal2868ef72009-12-03 12:59:48 -050040#ifdef CONFIG_DEBUG_BLK_CGROUP
41static inline char *blkg_path(struct blkio_group *blkg)
42{
43 return blkg->path;
44}
45#else
46static inline char *blkg_path(struct blkio_group *blkg) { return NULL; }
47#endif
48
Vivek Goyal31e4c282009-12-03 12:59:42 -050049#ifdef CONFIG_BLK_CGROUP
50extern struct blkio_cgroup blkio_root_cgroup;
51extern struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup);
52extern void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
53 struct blkio_group *blkg, void *key);
54extern int blkiocg_del_blkio_group(struct blkio_group *blkg);
55extern struct blkio_group *blkiocg_lookup_group(struct blkio_cgroup *blkcg,
56 void *key);
57#else
58static inline struct blkio_cgroup *
59cgroup_to_blkio_cgroup(struct cgroup *cgroup) { return NULL; }
60
61static inline void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
62 struct blkio_group *blkg, void *key)
63{
64}
65
66static inline int
67blkiocg_del_blkio_group(struct blkio_group *blkg) { return 0; }
68
69static inline struct blkio_group *
70blkiocg_lookup_group(struct blkio_cgroup *blkcg, void *key) { return NULL; }
71#endif
72#endif /* _BLK_CGROUP_H */