diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-08-23 00:37:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-08-23 00:37:35 +0200 |
commit | 0c85a4f3efa2883c414ed8ff59aea263b85b7687 (patch) | |
tree | a033245a65239971a0b034f14a1a1bfd39bc2c92 /src/nspawn.c | |
parent | c5f0532ff10abcf6808ff503fb10ca9f4df81efd (diff) |
cgroup: optionally mount a specific cgroup controllers together, and add cpu+cpuacct to the default
Diffstat (limited to 'src/nspawn.c')
-rw-r--r-- | src/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn.c b/src/nspawn.c index 19d95b214f..8c3cf6bfaa 100644 --- a/src/nspawn.c +++ b/src/nspawn.c @@ -167,7 +167,7 @@ static int mount_all(const char *dest) { break; } - if ((t = path_is_mount_point(where)) < 0) { + if ((t = path_is_mount_point(where, false)) < 0) { log_error("Failed to detect whether %s is a mount point: %s", where, strerror(-t)); free(where); |