diff options
Diffstat (limited to 'block/blk-cgroup.c')
-rw-r--r-- | block/blk-cgroup.c | 53 |
1 files changed, 41 insertions, 12 deletions
diff --git a/block/blk-cgroup.c b/block/blk-cgroup.c index c85d74cae200..4b686ad08eaa 100644 --- a/block/blk-cgroup.c +++ b/block/blk-cgroup.c | |||
@@ -23,6 +23,31 @@ static LIST_HEAD(blkio_list); | |||
23 | struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT }; | 23 | struct blkio_cgroup blkio_root_cgroup = { .weight = 2*BLKIO_WEIGHT_DEFAULT }; |
24 | EXPORT_SYMBOL_GPL(blkio_root_cgroup); | 24 | EXPORT_SYMBOL_GPL(blkio_root_cgroup); |
25 | 25 | ||
26 | static struct cgroup_subsys_state *blkiocg_create(struct cgroup_subsys *, | ||
27 | struct cgroup *); | ||
28 | static int blkiocg_can_attach(struct cgroup_subsys *, struct cgroup *, | ||
29 | struct task_struct *, bool); | ||
30 | static void blkiocg_attach(struct cgroup_subsys *, struct cgroup *, | ||
31 | struct cgroup *, struct task_struct *, bool); | ||
32 | static void blkiocg_destroy(struct cgroup_subsys *, struct cgroup *); | ||
33 | static int blkiocg_populate(struct cgroup_subsys *, struct cgroup *); | ||
34 | |||
35 | struct cgroup_subsys blkio_subsys = { | ||
36 | .name = "blkio", | ||
37 | .create = blkiocg_create, | ||
38 | .can_attach = blkiocg_can_attach, | ||
39 | .attach = blkiocg_attach, | ||
40 | .destroy = blkiocg_destroy, | ||
41 | .populate = blkiocg_populate, | ||
42 | #ifdef CONFIG_BLK_CGROUP | ||
43 | /* note: blkio_subsys_id is otherwise defined in blk-cgroup.h */ | ||
44 | .subsys_id = blkio_subsys_id, | ||
45 | #endif | ||
46 | .use_id = 1, | ||
47 | .module = THIS_MODULE, | ||
48 | }; | ||
49 | EXPORT_SYMBOL_GPL(blkio_subsys); | ||
50 | |||
26 | struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup) | 51 | struct blkio_cgroup *cgroup_to_blkio_cgroup(struct cgroup *cgroup) |
27 | { | 52 | { |
28 | return container_of(cgroup_subsys_state(cgroup, blkio_subsys_id), | 53 | return container_of(cgroup_subsys_state(cgroup, blkio_subsys_id), |
@@ -253,7 +278,8 @@ remove_entry: | |||
253 | done: | 278 | done: |
254 | free_css_id(&blkio_subsys, &blkcg->css); | 279 | free_css_id(&blkio_subsys, &blkcg->css); |
255 | rcu_read_unlock(); | 280 | rcu_read_unlock(); |
256 | kfree(blkcg); | 281 | if (blkcg != &blkio_root_cgroup) |
282 | kfree(blkcg); | ||
257 | } | 283 | } |
258 | 284 | ||
259 | static struct cgroup_subsys_state * | 285 | static struct cgroup_subsys_state * |
@@ -319,17 +345,6 @@ static void blkiocg_attach(struct cgroup_subsys *subsys, struct cgroup *cgroup, | |||
319 | task_unlock(tsk); | 345 | task_unlock(tsk); |
320 | } | 346 | } |
321 | 347 | ||
322 | struct cgroup_subsys blkio_subsys = { | ||
323 | .name = "blkio", | ||
324 | .create = blkiocg_create, | ||
325 | .can_attach = blkiocg_can_attach, | ||
326 | .attach = blkiocg_attach, | ||
327 | .destroy = blkiocg_destroy, | ||
328 | .populate = blkiocg_populate, | ||
329 | .subsys_id = blkio_subsys_id, | ||
330 | .use_id = 1, | ||
331 | }; | ||
332 | |||
333 | void blkio_policy_register(struct blkio_policy_type *blkiop) | 348 | void blkio_policy_register(struct blkio_policy_type *blkiop) |
334 | { | 349 | { |
335 | spin_lock(&blkio_list_lock); | 350 | spin_lock(&blkio_list_lock); |
@@ -345,3 +360,17 @@ void blkio_policy_unregister(struct blkio_policy_type *blkiop) | |||
345 | spin_unlock(&blkio_list_lock); | 360 | spin_unlock(&blkio_list_lock); |
346 | } | 361 | } |
347 | EXPORT_SYMBOL_GPL(blkio_policy_unregister); | 362 | EXPORT_SYMBOL_GPL(blkio_policy_unregister); |
363 | |||
364 | static int __init init_cgroup_blkio(void) | ||
365 | { | ||
366 | return cgroup_load_subsys(&blkio_subsys); | ||
367 | } | ||
368 | |||
369 | static void __exit exit_cgroup_blkio(void) | ||
370 | { | ||
371 | cgroup_unload_subsys(&blkio_subsys); | ||
372 | } | ||
373 | |||
374 | module_init(init_cgroup_blkio); | ||
375 | module_exit(exit_cgroup_blkio); | ||
376 | MODULE_LICENSE("GPL"); | ||