Commit 4b52d7fa authored by Lu Jialin's avatar Lu Jialin Committed by sanglipeng
Browse files

cgroup:namespace: Remove unused cgroup_namespaces_init()

stable inclusion
from stable-v5.10.195
commit 629079f502fbe214af647fed917d5a1c0165d433
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I95JOC

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=629079f502fbe214af647fed917d5a1c0165d433



--------------------------------

[ Upstream commit 82b90b6c ]

cgroup_namspace_init() just return 0. Therefore, there is no need to
call it during start_kernel. Just remove it.

Fixes: a79a908f ("cgroup: introduce cgroup namespaces")
Signed-off-by: default avatarLu Jialin <lujialin4@huawei.com>
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
Signed-off-by: default avatarsanglipeng <sanglipeng1@jd.com>
parent 19b30a30
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -149,9 +149,3 @@ const struct proc_ns_operations cgroupns_operations = {
	.install	= cgroupns_install,
	.owner		= cgroupns_owner,
};

static __init int cgroup_namespaces_init(void)
{
	return 0;
}
subsys_initcall(cgroup_namespaces_init);