From 6f101b566f35ae2d9c9529961d64b1ca9623989e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 15 Dec 2017 16:48:07 +0100 Subject: [PATCH] main: move initialize_join_controllers() invocation into load_configuration() This just sets up some variables the loaded configuration will then modify. Let's invoke it hence right before loading the configuration. This moves the initialization just a tiny bit later, but that shouldn't matter, since we never access it in-between. --- src/core/main.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/core/main.c b/src/core/main.c index 6734a15..c3d0c01 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) { -- 2.7.4