All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] cgroup-v1: add disabled controller check in cgroup1_parse_param()
@ 2020-12-18  6:17 ` Chen Zhou
  0 siblings, 0 replies; 18+ messages in thread
From: Chen Zhou @ 2020-12-18  6:17 UTC (permalink / raw)
  To: tj, lizefan, hannes; +Cc: cgroups, linux-kernel, chenzhou10

When mounting a cgroup hierarchy with disabled controller in cgroup v1,
all available controllers will be attached.

Add disabled controller check in cgroup1_parse_param() and return directly
if the specified controller is disabled.

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
---
Changes in v2:
- Fix line over 80 characters warning.
---
 kernel/cgroup/cgroup-v1.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/kernel/cgroup/cgroup-v1.c b/kernel/cgroup/cgroup-v1.c
index 191c329e482a..5190c42fea8b 100644
--- a/kernel/cgroup/cgroup-v1.c
+++ b/kernel/cgroup/cgroup-v1.c
@@ -915,6 +915,9 @@ int cgroup1_parse_param(struct fs_context *fc, struct fs_parameter *param)
 		for_each_subsys(ss, i) {
 			if (strcmp(param->key, ss->legacy_name))
 				continue;
+			if (!cgroup_ssid_enabled(i) || cgroup1_ssid_disabled(i))
+				return invalfc(fc, "Disabled controller '%s'",
+					       param->key);
 			ctx->subsys_mask |= (1 << i);
 			return 0;
 		}
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2021-01-15 11:10 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-18  6:17 [PATCH v2] cgroup-v1: add disabled controller check in cgroup1_parse_param() Chen Zhou
2020-12-18  6:17 ` Chen Zhou
2020-12-18  7:02 ` Zefan Li
2020-12-18  7:02   ` Zefan Li
2021-01-14 13:12 ` Michal Koutný
2021-01-14 14:08   ` chenzhou
2021-01-14 14:08     ` chenzhou
2021-01-14 16:54     ` Michal Koutný
2021-01-14 16:54       ` Michal Koutný
2021-01-15  1:55       ` chenzhou
2021-01-15  1:55         ` chenzhou
2021-01-15  3:17         ` Tejun Heo
2021-01-15  5:58           ` chenzhou
2021-01-15  5:58             ` chenzhou
2021-01-15 10:08         ` Michal Koutný
2021-01-15 10:08           ` Michal Koutný
2021-01-15 11:09           ` chenzhou
2021-01-15 11:09             ` chenzhou

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.