Skip to content
Snippets Groups Projects
Commit 76b06e81 authored by Morris Jette's avatar Morris Jette
Browse files

Merge branch 'slurm-2.3' into slurm-2.4

parents 76963b4b 102258a2
No related branches found
No related tags found
No related merge requests found
...@@ -339,6 +339,10 @@ documents those changes that are of interest to users and admins. ...@@ -339,6 +339,10 @@ documents those changes that are of interest to users and admins.
-- Fix issue with assoc_mgr if a bad state file is given and the database -- Fix issue with assoc_mgr if a bad state file is given and the database
isn't up at the time the slurmctld starts, not running the isn't up at the time the slurmctld starts, not running the
priority/multifactor plugin, and then the database is started up later. priority/multifactor plugin, and then the database is started up later.
-- Gres: If a gres has a count of one and an associated file then when doing
a reconfiguration, the node's bitmap was not cleared resulting in an
underflow upon job termination or removal from scheduling matrix by the
backfill scheduler.
* Changes in SLURM 2.3.5 * Changes in SLURM 2.3.5
======================== ========================
......
...@@ -1854,7 +1854,7 @@ static void _node_state_dealloc(gres_state_t *gres_ptr) ...@@ -1854,7 +1854,7 @@ static void _node_state_dealloc(gres_state_t *gres_ptr)
gres_node_ptr->gres_cnt_alloc = 0; gres_node_ptr->gres_cnt_alloc = 0;
if (gres_node_ptr->gres_bit_alloc) { if (gres_node_ptr->gres_bit_alloc) {
int i = bit_size(gres_node_ptr->gres_bit_alloc) - 1; int i = bit_size(gres_node_ptr->gres_bit_alloc) - 1;
if (i > 0) if (i >= 0)
bit_nclear(gres_node_ptr->gres_bit_alloc, 0, i); bit_nclear(gres_node_ptr->gres_bit_alloc, 0, i);
} }
if (gres_node_ptr->topo_cnt && !gres_node_ptr->topo_gres_cnt_alloc) { if (gres_node_ptr->topo_cnt && !gres_node_ptr->topo_gres_cnt_alloc) {
......
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