Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
691479ff
Commit
691479ff
authored
21 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
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
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/slurmctld/node_mgr.c
+1
-3
1 addition, 3 deletions
src/slurmctld/node_mgr.c
src/slurmctld/read_config.c
+1
-1
1 addition, 1 deletion
src/slurmctld/read_config.c
with
2 additions
and
4 deletions
src/slurmctld/node_mgr.c
+
1
−
3
View file @
691479ff
...
@@ -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
);
}
}
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/read_config.c
+
1
−
1
View file @
691479ff
...
@@ -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
));
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment