提交 0ced83dc 编写于 作者: D Daniel P. Berrange

Escaping leading '.' in cgroup names

Escaping a leading '.' with '_' in the cgroup names
Signed-off-by: NDaniel P. Berrange <berrange@redhat.com>
上级 ea74c076
...@@ -1106,7 +1106,8 @@ static int virCgroupPartitionNeedsEscaping(const char *path) ...@@ -1106,7 +1106,8 @@ static int virCgroupPartitionNeedsEscaping(const char *path)
if (STRPREFIX(path, "cgroup.")) if (STRPREFIX(path, "cgroup."))
return 1; return 1;
if (path[0] == '_') if (path[0] == '_' ||
path[0] == '.')
return 1; return 1;
if (!(fp = fopen("/proc/cgroups", "r"))) if (!(fp = fopen("/proc/cgroups", "r")))
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册