Skip to content
Snippets Groups Projects
Commit 691479ff authored by Moe Jette's avatar Moe Jette
Browse files

Fix bug which could prevent DOWN node from transitioning to DRAINED state

  (it was inappropriately going to DRAINING state).
parent 390dfd1b
No related branches found
No related tags found
No related merge requests found
...@@ -989,8 +989,6 @@ int update_node ( update_node_msg_t * update_node_msg ) ...@@ -989,8 +989,6 @@ int update_node ( update_node_msg_t * update_node_msg )
_make_node_down(node_ptr); _make_node_down(node_ptr);
kill_running_job_by_node_name (this_node_name, kill_running_job_by_node_name (this_node_name,
false); false);
bit_set (idle_node_bitmap, node_inx);
bit_clear (avail_node_bitmap, node_inx);
} }
else if (state_val == NODE_STATE_IDLE) { else if (state_val == NODE_STATE_IDLE) {
bit_set (avail_node_bitmap, node_inx); bit_set (avail_node_bitmap, node_inx);
...@@ -1570,7 +1568,7 @@ static void _make_node_down(struct node_record *node_ptr) ...@@ -1570,7 +1568,7 @@ static void _make_node_down(struct node_record *node_ptr)
no_resp_flag = node_ptr->node_state & NODE_STATE_NO_RESPOND; no_resp_flag = node_ptr->node_state & NODE_STATE_NO_RESPOND;
node_ptr->node_state = NODE_STATE_DOWN | no_resp_flag; node_ptr->node_state = NODE_STATE_DOWN | no_resp_flag;
bit_clear (avail_node_bitmap, inx); bit_clear (avail_node_bitmap, inx);
bit_clear (idle_node_bitmap, inx); bit_set (idle_node_bitmap, inx);
bit_set (share_node_bitmap, inx); bit_set (share_node_bitmap, inx);
} }
......
...@@ -112,7 +112,7 @@ static int _build_bitmaps(void) ...@@ -112,7 +112,7 @@ static int _build_bitmaps(void)
share_node_bitmap = (bitstr_t *) bit_alloc(node_record_count); share_node_bitmap = (bitstr_t *) bit_alloc(node_record_count);
if ((idle_node_bitmap == NULL) || if ((idle_node_bitmap == NULL) ||
(avail_node_bitmap == NULL) || (avail_node_bitmap == NULL) ||
(share_node_bitmap == NULL)) (share_node_bitmap == NULL))
fatal ("memory allocation failure"); fatal ("memory allocation failure");
/* Set all bits, all nodes initially available for sharing */ /* Set all bits, all nodes initially available for sharing */
bit_nset(share_node_bitmap, 0, (node_record_count-1)); bit_nset(share_node_bitmap, 0, (node_record_count-1));
......
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