From: Pavel Hrdina Date: Tue, 10 Sep 2019 07:09:46 +0000 (+0200) Subject: cgroup-util: fix obsolete comment about supported controllers X-Git-Tag: v244-rc1~264^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F13481%2Fhead;p=thirdparty%2Fsystemd.git cgroup-util: fix obsolete comment about supported controllers The list might grow so make the comment more generic to not worry about it if some controller is implemented. --- diff --git a/src/basic/cgroup-util.c b/src/basic/cgroup-util.c index 80ec2642617..2a359a60637 100644 --- a/src/basic/cgroup-util.c +++ b/src/basic/cgroup-util.c @@ -2435,8 +2435,7 @@ int cg_mask_supported(CGroupMask *ret) { if (r < 0) return r; - /* Currently, we support the cpu, memory, io and pids controller in the unified hierarchy, mask - * everything else off. */ + /* Mask controllers that are not supported in unified hierarchy. */ mask &= CGROUP_MASK_V2; } else {