diff options
author | Tejun Heo <tj@kernel.org> | 2014-02-08 10:36:58 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2014-02-08 10:36:58 -0500 |
commit | 073219e995b4a3f8cf1ce8228b7ef440b6994ac0 (patch) | |
tree | d140fc2e94bd8fd09270286b7267fb087a79f288 /mm/hugetlb_cgroup.c | |
parent | 3ed80a62bf959d34ebd4d553b026fbe7e6fbcc54 (diff) |
cgroup: clean up cgroup_subsys names and initialization
cgroup_subsys is a bit messier than it needs to be.
* The name of a subsys can be different from its internal identifier
defined in cgroup_subsys.h. Most subsystems use the matching name
but three - cpu, memory and perf_event - use different ones.
* cgroup_subsys_id enums are postfixed with _subsys_id and each
cgroup_subsys is postfixed with _subsys. cgroup.h is widely
included throughout various subsystems, it doesn't and shouldn't
have claim on such generic names which don't have any qualifier
indicating that they belong to cgroup.
* cgroup_subsys->subsys_id should always equal the matching
cgroup_subsys_id enum; however, we require each controller to
initialize it and then BUG if they don't match, which is a bit
silly.
This patch cleans up cgroup_subsys names and initialization by doing
the followings.
* cgroup_subsys_id enums are now postfixed with _cgrp_id, and each
cgroup_subsys with _cgrp_subsys.
* With the above, renaming subsys identifiers to match the userland
visible names doesn't cause any naming conflicts. All non-matching
identifiers are renamed to match the official names.
cpu_cgroup -> cpu
mem_cgroup -> memory
perf -> perf_event
* controllers no longer need to initialize ->subsys_id and ->name.
They're generated in cgroup core and set automatically during boot.
* Redundant cgroup_subsys declarations removed.
* While updating BUG_ON()s in cgroup_init_early(), convert them to
WARN()s. BUGging that early during boot is stupid - the kernel
can't print anything, even through serial console and the trap
handler doesn't even link stack frame properly for back-tracing.
This patch doesn't introduce any behavior changes.
v2: Rebased on top of fe1217c4f3f7 ("net: net_cls: move cgroupfs
classid handling into core").
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Neil Horman <nhorman@tuxdriver.com>
Acked-by: "David S. Miller" <davem@davemloft.net>
Acked-by: "Rafael J. Wysocki" <rjw@rjwysocki.net>
Acked-by: Michal Hocko <mhocko@suse.cz>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Acked-by: Aristeu Rozanski <aris@redhat.com>
Acked-by: Ingo Molnar <mingo@redhat.com>
Acked-by: Li Zefan <lizefan@huawei.com>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Balbir Singh <bsingharora@gmail.com>
Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>
Cc: Serge E. Hallyn <serue@us.ibm.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Thomas Graf <tgraf@suug.ch>
Diffstat (limited to 'mm/hugetlb_cgroup.c')
-rw-r--r-- | mm/hugetlb_cgroup.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/mm/hugetlb_cgroup.c b/mm/hugetlb_cgroup.c index cb00829bb466..b135853e68f3 100644 --- a/mm/hugetlb_cgroup.c +++ b/mm/hugetlb_cgroup.c | |||
@@ -30,7 +30,6 @@ struct hugetlb_cgroup { | |||
30 | #define MEMFILE_IDX(val) (((val) >> 16) & 0xffff) | 30 | #define MEMFILE_IDX(val) (((val) >> 16) & 0xffff) |
31 | #define MEMFILE_ATTR(val) ((val) & 0xffff) | 31 | #define MEMFILE_ATTR(val) ((val) & 0xffff) |
32 | 32 | ||
33 | struct cgroup_subsys hugetlb_subsys __read_mostly; | ||
34 | static struct hugetlb_cgroup *root_h_cgroup __read_mostly; | 33 | static struct hugetlb_cgroup *root_h_cgroup __read_mostly; |
35 | 34 | ||
36 | static inline | 35 | static inline |
@@ -42,7 +41,7 @@ struct hugetlb_cgroup *hugetlb_cgroup_from_css(struct cgroup_subsys_state *s) | |||
42 | static inline | 41 | static inline |
43 | struct hugetlb_cgroup *hugetlb_cgroup_from_task(struct task_struct *task) | 42 | struct hugetlb_cgroup *hugetlb_cgroup_from_task(struct task_struct *task) |
44 | { | 43 | { |
45 | return hugetlb_cgroup_from_css(task_css(task, hugetlb_subsys_id)); | 44 | return hugetlb_cgroup_from_css(task_css(task, hugetlb_cgrp_id)); |
46 | } | 45 | } |
47 | 46 | ||
48 | static inline bool hugetlb_cgroup_is_root(struct hugetlb_cgroup *h_cg) | 47 | static inline bool hugetlb_cgroup_is_root(struct hugetlb_cgroup *h_cg) |
@@ -358,7 +357,7 @@ static void __init __hugetlb_cgroup_file_init(int idx) | |||
358 | cft = &h->cgroup_files[4]; | 357 | cft = &h->cgroup_files[4]; |
359 | memset(cft, 0, sizeof(*cft)); | 358 | memset(cft, 0, sizeof(*cft)); |
360 | 359 | ||
361 | WARN_ON(cgroup_add_cftypes(&hugetlb_subsys, h->cgroup_files)); | 360 | WARN_ON(cgroup_add_cftypes(&hugetlb_cgrp_subsys, h->cgroup_files)); |
362 | 361 | ||
363 | return; | 362 | return; |
364 | } | 363 | } |
@@ -402,10 +401,8 @@ void hugetlb_cgroup_migrate(struct page *oldhpage, struct page *newhpage) | |||
402 | return; | 401 | return; |
403 | } | 402 | } |
404 | 403 | ||
405 | struct cgroup_subsys hugetlb_subsys = { | 404 | struct cgroup_subsys hugetlb_cgrp_subsys = { |
406 | .name = "hugetlb", | ||
407 | .css_alloc = hugetlb_cgroup_css_alloc, | 405 | .css_alloc = hugetlb_cgroup_css_alloc, |
408 | .css_offline = hugetlb_cgroup_css_offline, | 406 | .css_offline = hugetlb_cgroup_css_offline, |
409 | .css_free = hugetlb_cgroup_css_free, | 407 | .css_free = hugetlb_cgroup_css_free, |
410 | .subsys_id = hugetlb_subsys_id, | ||
411 | }; | 408 | }; |