summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/main.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/main.c b/src/core/main.c
index 6734a15504..c3d0c01772 100644
--- a/src/core/main.c
+++ b/src/core/main.c
@@ -2056,6 +2056,12 @@ static int load_configuration(int argc, char **argv, const char **ret_error_mess
assert(ret_error_message);
+ r = initialize_join_controllers();
+ if (r < 0) {
+ *ret_error_message = "Failed to initialize cgroup controller joining table";
+ return r;
+ }
+
arg_default_tasks_max = system_tasks_max_scale(DEFAULT_TASKS_MAX_PERCENTAGE, 100U);
r = parse_config_file();
@@ -2352,12 +2358,6 @@ int main(int argc, char *argv[]) {
log_warning_errno(r, "Failed to redirect standard streams to /dev/null: %m");
}
- r = initialize_join_controllers();
- if (r < 0) {
- error_message = "Failed to initialize cgroup controllers";
- goto finish;
- }
-
/* Mount /proc, /sys and friends, so that /proc/cmdline and
* /proc/$PID/fd is available. */
if (getpid_cached() == 1) {