summaryrefslogtreecommitdiffstats
path: root/kernel/cgroup.c
diff options
context:
space:
mode:
authorXiubo Li2016-02-26 06:07:38 +0100
committerTejun Heo2016-02-27 12:33:37 +0100
commit63253ad814db726d43c04011c752d83b7aaca998 (patch)
tree1dc3d238138e2e4628e934467cf1242fab2ba481 /kernel/cgroup.c
parentcgroup: use ->subtree_control when testing no internal process rule (diff)
downloadkernel-qcow2-linux-63253ad814db726d43c04011c752d83b7aaca998.tar.gz
kernel-qcow2-linux-63253ad814db726d43c04011c752d83b7aaca998.tar.xz
kernel-qcow2-linux-63253ad814db726d43c04011c752d83b7aaca998.zip
cgroup: fix a mistake in warning message
There is a mistake about the print format name:id <--> %d:%s, which the name is 'char *' type and id is 'int' type. Change "name:id" to "id:name" instead to be consistent with "cgroup_subsys %d:%s". Signed-off-by: Xiubo Li <lixiubo@cmss.chinamobile.com> Acked-by: Zefan Li <lizefan@huawei.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/cgroup.c')
-rw-r--r--kernel/cgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c
index ac5451e7c458..fcfad82149b1 100644
--- a/kernel/cgroup.c
+++ b/kernel/cgroup.c
@@ -5235,7 +5235,7 @@ int __init cgroup_init_early(void)
for_each_subsys(ss, i) {
WARN(!ss->css_alloc || !ss->css_free || ss->name || ss->id,
- "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p name:id=%d:%s\n",
+ "invalid cgroup_subsys %d:%s css_alloc=%p css_free=%p id:name=%d:%s\n",
i, cgroup_subsys_name[i], ss->css_alloc, ss->css_free,
ss->id, ss->name);
WARN(strlen(cgroup_subsys_name[i]) > MAX_CGROUP_TYPE_NAMELEN,