X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;ds=sidebyside;f=src%2Fshared%2Fcgroup-label.c;h=a0b486e51ef8dab8fb83ff09e3eba016a8bc8960;hb=a32360f1a5a85c12f00e9dfb7353280067cccb5b;hp=995e4c57cd4fa3f745b0dafa6e6d155c039e6222;hpb=a53824ea7466bee2c5e6ac9a11b58b79adceb98b;p=elogind.git diff --git a/src/shared/cgroup-label.c b/src/shared/cgroup-label.c index 995e4c57c..a0b486e51 100644 --- a/src/shared/cgroup-label.c +++ b/src/shared/cgroup-label.c @@ -36,14 +36,14 @@ #include "util.h" #include "mkdir.h" -int cg_create(const char *controller, const char *path) { +int cg_create(const char *controller, const char *path, const char *suffix) { _cleanup_free_ char *fs = NULL; int r; assert(controller); assert(path); - r = cg_get_path_and_check(controller, path, NULL, &fs); + r = cg_get_path_and_check(controller, path, suffix, &fs); if (r < 0) return r; @@ -69,7 +69,7 @@ int cg_create_and_attach(const char *controller, const char *path, pid_t pid) { assert(path); assert(pid >= 0); - r = cg_create(controller, path); + r = cg_create(controller, path, NULL); if (r < 0) return r;