diff options
author | Li Zefan <lizf@cn.fujitsu.com> | 2008-04-29 10:00:07 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-29 17:06:09 +0200 |
commit | 06a119204d3e1e67d393e996ed987b0df7998381 (patch) | |
tree | 0cf3798102d13252d33c9907888a9608a0af6f96 /kernel/cgroup.c | |
parent | CGroups _s64 files: use read_s64/write_s64 in CFS cgroup for rt_runtime file (diff) | |
download | linux-06a119204d3e1e67d393e996ed987b0df7998381.tar.xz linux-06a119204d3e1e67d393e996ed987b0df7998381.zip |
cgroup: annotate cgroup_init_subsys with __init
It is called by cgroup_init() and cgroup_init_early() only, which are
annotated with __init.
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Cc: Paul Menage <menage@google.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to '')
-rw-r--r-- | kernel/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index bd6122ccc0ba..97ab04c3fcf5 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c @@ -2444,7 +2444,7 @@ static int cgroup_rmdir(struct inode *unused_dir, struct dentry *dentry) return 0; } -static void cgroup_init_subsys(struct cgroup_subsys *ss) +static void __init cgroup_init_subsys(struct cgroup_subsys *ss) { struct cgroup_subsys_state *css; struct list_head *l; |