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
df5c3a1f
Commit
df5c3a1f
authored
9 years ago
by
Morris Jette
Browse files
Options
Downloads
Patches
Plain Diff
Revert power_save patches
This reverts commits
7660da9e
5c386455
and
f6c5302b
parent
0b9a5d6a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+0
-2
0 additions, 2 deletions
NEWS
src/slurmctld/power_save.c
+1
-3
1 addition, 3 deletions
src/slurmctld/power_save.c
with
1 addition
and
5 deletions
NEWS
+
0
−
2
View file @
df5c3a1f
...
...
@@ -3,8 +3,6 @@ documents those changes that are of interest to users and administrators.
* Changes in Slurm 14.11.10
===========================
-- If a node is down do not set it in power suspend mode, as it could be
resumed and defeat the purpose of being shut down.
-- Fix truncation of job reason in squeue.
* Changes in Slurm 14.11.9
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/power_save.c
+
1
−
3
View file @
df5c3a1f
...
...
@@ -181,12 +181,10 @@ static void _do_power_work(time_t now)
if
(
run_suspend
&&
(
susp_state
==
0
)
&&
((
suspend_rate
==
0
)
||
(
suspend_cnt
<
suspend_rate
))
&&
(
IS_NODE_IDLE
(
node_ptr
))
&&
(
IS_NODE_IDLE
(
node_ptr
)
||
IS_NODE_DOWN
(
node_ptr
)
)
&&
(
node_ptr
->
sus_job_cnt
==
0
)
&&
(
!
IS_NODE_COMPLETING
(
node_ptr
))
&&
(
!
IS_NODE_POWER_UP
(
node_ptr
))
&&
(
!
IS_NODE_DRAINED
(
node_ptr
))
&&
(
!
IS_NODE_DRAINING
(
node_ptr
))
&&
(
node_ptr
->
last_idle
<
(
now
-
idle_time
))
&&
((
exc_node_bitmap
==
NULL
)
||
(
bit_test
(
exc_node_bitmap
,
i
)
==
0
)))
{
...
...
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