diff options
Diffstat (limited to 'include/linux/cgroup.h')
-rw-r--r-- | include/linux/cgroup.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index 402ce477c47e..2a59d3101e5d 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h | |||
@@ -38,6 +38,7 @@ extern void cgroup_exit(struct task_struct *p, int run_callbacks); | |||
38 | extern int cgroupstats_build(struct cgroupstats *stats, | 38 | extern int cgroupstats_build(struct cgroupstats *stats, |
39 | struct dentry *dentry); | 39 | struct dentry *dentry); |
40 | extern int cgroup_load_subsys(struct cgroup_subsys *ss); | 40 | extern int cgroup_load_subsys(struct cgroup_subsys *ss); |
41 | extern void cgroup_unload_subsys(struct cgroup_subsys *ss); | ||
41 | 42 | ||
42 | extern const struct file_operations proc_cgroup_operations; | 43 | extern const struct file_operations proc_cgroup_operations; |
43 | 44 | ||
@@ -271,7 +272,8 @@ struct css_set { | |||
271 | /* | 272 | /* |
272 | * Set of subsystem states, one for each subsystem. This array | 273 | * Set of subsystem states, one for each subsystem. This array |
273 | * is immutable after creation apart from the init_css_set | 274 | * is immutable after creation apart from the init_css_set |
274 | * during subsystem registration (at boot time). | 275 | * during subsystem registration (at boot time) and modular subsystem |
276 | * loading/unloading. | ||
275 | */ | 277 | */ |
276 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; | 278 | struct cgroup_subsys_state *subsys[CGROUP_SUBSYS_COUNT]; |
277 | 279 | ||