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

Remove some vestigial node states

Preserve (allocated) state of nodes when config file is re-read (reconfig API)
parent 96bc841f
No related branches found
No related tags found
No related merge requests found
...@@ -1093,9 +1093,15 @@ reset_job_bitmaps () ...@@ -1093,9 +1093,15 @@ reset_job_bitmaps ()
fatal ("dump_all_job: job integrity is bad"); fatal ("dump_all_job: job integrity is bad");
if (job_record_point->node_bitmap) if (job_record_point->node_bitmap)
bit_free(job_record_point->node_bitmap); bit_free(job_record_point->node_bitmap);
if (job_record_point->nodes) if (job_record_point->nodes) {
node_name2bitmap (job_record_point->nodes, node_name2bitmap (job_record_point->nodes,
&job_record_point->node_bitmap); &job_record_point->node_bitmap);
if ( (job_record_point->job_state == JOB_STAGE_IN) ||
(job_record_point->job_state == JOB_RUNNING) ||
(job_record_point->job_state == JOB_STAGE_OUT) )
allocate_nodes ( job_record_point->node_bitmap ) ;
}
if (job_record_point->details == NULL) if (job_record_point->details == NULL)
continue; continue;
......
...@@ -20,8 +20,9 @@ ...@@ -20,8 +20,9 @@
#include <syslog.h> #include <syslog.h>
#include <unistd.h> #include <unistd.h>
#include "slurmctld.h" #include <src/common/list.h>
#include "list.h" #include <src/common/macros.h>
#include <src/slurmctld/slurmctld.h>
#define BUF_SIZE 1024 #define BUF_SIZE 1024
......
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