Skip to content
Snippets Groups Projects
Commit 76d28e07 authored by Tim Wickberg's avatar Tim Wickberg
Browse files

Merge branch 'slurm-16.05'

parents c0919263 d4236812
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ documents those changes that are of interest to users and administrators. ...@@ -47,6 +47,7 @@ documents those changes that are of interest to users and administrators.
-- Recalculate a job's memory allocation after node reboot if job requests all -- Recalculate a job's memory allocation after node reboot if job requests all
of a node's memory and FastSchedule=0 is configurated. Intel KNL memory size of a node's memory and FastSchedule=0 is configurated. Intel KNL memory size
can change on reboot with various MCDRAM modes. can change on reboot with various MCDRAM modes.
-- Fix small memory leak when printing HealthCheckNodeState.
* Changes in Slurm 16.05.0 * Changes in Slurm 16.05.0
========================== ==========================
......
...@@ -1999,7 +1999,7 @@ extern char *health_check_node_state_str(uint32_t node_state) ...@@ -1999,7 +1999,7 @@ extern char *health_check_node_state_str(uint32_t node_state)
if ((node_state & HEALTH_CHECK_NODE_ANY) == HEALTH_CHECK_NODE_ANY) { if ((node_state & HEALTH_CHECK_NODE_ANY) == HEALTH_CHECK_NODE_ANY) {
if (state_str[0]) if (state_str[0])
xstrcat(state_str, ","); xstrcat(state_str, ",");
state_str = xstrdup("ANY"); xstrcat(state_str, "ANY");
return state_str; return state_str;
} }
......
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