summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--TODO2
-rw-r--r--src/mount-setup.c8
2 files changed, 8 insertions, 2 deletions
diff --git a/TODO b/TODO
index b083529baf..12e292efb8 100644
--- a/TODO
+++ b/TODO
@@ -28,7 +28,7 @@
* set_put(), hashmap_put() return values check. i.e. == 0 doesn't free()!
-* chkconfig/systemd-install glue
+* chkconfig/systemd enable glue
* io priority during initialization
diff --git a/src/mount-setup.c b/src/mount-setup.c
index 14ac18125f..7eb806e7fd 100644
--- a/src/mount-setup.c
+++ b/src/mount-setup.c
@@ -138,8 +138,9 @@ static int mount_cgroup_controllers(void) {
for (;;) {
MountPoint p;
char *controller, *where;
+ int enabled = false;
- if (fscanf(f, "%ms %*i %*i %*i", &controller) != 1) {
+ if (fscanf(f, "%ms %*i %*i %i", &controller, &enabled) != 1) {
if (feof(f))
break;
@@ -149,6 +150,11 @@ static int mount_cgroup_controllers(void) {
goto finish;
}
+ if (!enabled) {
+ free(controller);
+ continue;
+ }
+
if (asprintf(&where, "/sys/fs/cgroup/%s", controller) < 0) {
free(controller);
r = -ENOMEM;