blob: cd50a2f8733e5daa6f4e127fa8a9fa1dea5ae668 [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 Goyal31e4c282009-12-03 12:59:42 -050030};
31
32#define BLKIO_WEIGHT_MIN 100
33#define BLKIO_WEIGHT_MAX 1000
34#define BLKIO_WEIGHT_DEFAULT 500
35
36#ifdef CONFIG_BLK_CGROUP
37extern struct blkio_cgroup blkio_root_cgroup;
38extern struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup);
39extern void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
40 struct blkio_group *blkg, void *key);
41extern int blkiocg_del_blkio_group(struct blkio_group *blkg);
42extern struct blkio_group *blkiocg_lookup_group(struct blkio_cgroup *blkcg,
43 void *key);
44#else
45static inline struct blkio_cgroup *
46cgroup_to_blkio_cgroup(struct cgroup *cgroup) { return NULL; }
47
48static inline void blkiocg_add_blkio_group(struct blkio_cgroup *blkcg,
49 struct blkio_group *blkg, void *key)
50{
51}
52
53static inline int
54blkiocg_del_blkio_group(struct blkio_group *blkg) { return 0; }
55
56static inline struct blkio_group *
57blkiocg_lookup_group(struct blkio_cgroup *blkcg, void *key) { return NULL; }
58#endif
59#endif /* _BLK_CGROUP_H */