Skip to content
Snippets Groups Projects
Commit 1489c4d2 authored by Danny Auble's avatar Danny Auble
Browse files

fix to make sure the admin running the slurmd knows if the task/cgroup

plugin fails to load.
parent 5345d9d6
No related branches found
No related tags found
No related merge requests found
...@@ -106,7 +106,11 @@ extern int init (void) ...@@ -106,7 +106,11 @@ extern int init (void)
/* enable subsystems based on conf */ /* enable subsystems based on conf */
if (slurm_cgroup_conf.constrain_cores) { if (slurm_cgroup_conf.constrain_cores) {
use_cpuset = true; use_cpuset = true;
task_cgroup_cpuset_init(&slurm_cgroup_conf); if (task_cgroup_cpuset_init(&slurm_cgroup_conf) !=
SLURM_SUCCESS) {
free_slurm_cgroup_conf(&slurm_cgroup_conf);
return SLURM_ERROR;
}
debug("%s: now constraining jobs allocated cores", debug("%s: now constraining jobs allocated cores",
plugin_type); plugin_type);
} }
...@@ -114,7 +118,11 @@ extern int init (void) ...@@ -114,7 +118,11 @@ extern int init (void)
if (slurm_cgroup_conf.constrain_ram_space || if (slurm_cgroup_conf.constrain_ram_space ||
slurm_cgroup_conf.constrain_swap_space) { slurm_cgroup_conf.constrain_swap_space) {
use_memory = true; use_memory = true;
task_cgroup_memory_init(&slurm_cgroup_conf); if (task_cgroup_memory_init(&slurm_cgroup_conf) !=
SLURM_SUCCESS) {
free_slurm_cgroup_conf(&slurm_cgroup_conf);
return SLURM_ERROR;
}
debug("%s: now constraining jobs allocated memory", debug("%s: now constraining jobs allocated memory",
plugin_type); plugin_type);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment