chiark / gitweb /
cgroup: fix error message
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 6 Jan 2015 00:03:23 +0000 (19:03 -0500)
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Tue, 6 Jan 2015 00:04:10 +0000 (19:04 -0500)
systemd[1]: Failed to set memory.limit_in_bytes on : Invalid argument

src/core/cgroup.c

index 3d5d8898b69bd323532277cb81d0d28103b739de..d6156c3924dbc8c281669d328e3bd2efc6ef1719 100644 (file)
@@ -295,6 +295,9 @@ void cgroup_context_apply(CGroupContext *c, CGroupControllerMask mask, const cha
         /* Some cgroup attributes are not support on the root cgroup,
          * hence silently ignore */
         is_root = isempty(path) || path_equal(path, "/");
+        if (is_root)
+                /* Make sure we don't try to display messages with an empty path. */
+                path = "/";
 
         /* We generally ignore errors caused by read-only mounted
          * cgroup trees (assuming we are running in a container then),