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
6e1842fa
Commit
6e1842fa
authored
14 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
-- Prevent changing a node's Reason or State on a Cray system.
02_salloc-no-node-update.diff
parent
832898b7
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
NEWS
+2
-0
2 additions, 0 deletions
NEWS
doc/man/man1/scontrol.1
+2
-1
2 additions, 1 deletion
doc/man/man1/scontrol.1
src/scontrol/update_node.c
+4
-3
4 additions, 3 deletions
src/scontrol/update_node.c
with
8 additions
and
4 deletions
NEWS
+
2
−
0
View file @
6e1842fa
...
...
@@ -21,6 +21,8 @@ documents those changes that are of interest to users and admins.
-- Cray BASIL API: basic support added to the select/cray plugin.
01_Cray-BASIL-basic-support.diff plus
01_changes-from-first-revision-of-patch-01.diff
-- Prevent changing a node's Reason or State on a Cray system.
02_salloc-no-node-update.diff
* Changes in SLURM 2.3.0.pre1
=============================
...
...
This diff is collapsed.
Click to expand it.
doc/man/man1/scontrol.1
+
2
−
1
View file @
6e1842fa
...
...
@@ -751,6 +751,7 @@ changing its underlying state.
While all of the above states are valid, some of them are not valid new
node states given their prior state.
Generally only "DRAIN", "FAIL" and "RESUME" should be used.
(This control is not supported on ALPS\-based Cray systems.)
.TP
\fIWeight\fP=<weight>
...
...
@@ -774,7 +775,7 @@ Identify the front end node to be updated. This specification is required.
\fIReason\fP=<reason>
Identify the reason the node is in a "DOWN" or "DRAIN" state.
Use quotes to enclose a reason having more than one word.
(Not supported on ALPS\-based Cray systems.)
.TP
\fIState\fP=<state>
Identify the state to be assigned to the front end node. Possible values are
...
...
This diff is collapsed.
Click to expand it.
src/scontrol/update_node.c
+
4
−
3
View file @
6e1842fa
...
...
@@ -115,7 +115,8 @@ scontrol_update_node (int argc, char *argv[])
}
node_msg
.
weight
=
num
;
update_cnt
++
;
}
else
if
(
strncasecmp
(
tag
,
"Reason"
,
MAX
(
tag_len
,
1
))
==
0
)
{
}
else
if
(
strncasecmp
(
tag
,
"Reason"
,
MAX
(
tag_len
,
1
))
==
0
&&
!
(
cluster_flags
&
CLUSTER_FLAG_CRAYXT
))
{
int
len
=
strlen
(
val
);
reason_str
=
xmalloc
(
len
+
1
);
if
(
*
val
==
'"'
)
...
...
@@ -134,8 +135,8 @@ scontrol_update_node (int argc, char *argv[])
node_msg
.
reason_uid
=
getuid
();
}
update_cnt
++
;
}
else
if
(
strncasecmp
(
tag
,
"State"
,
MAX
(
tag_len
,
1
))
==
0
)
{
}
else
if
(
strncasecmp
(
tag
,
"State"
,
MAX
(
tag_len
,
1
))
==
0
&&
!
(
cluster_flags
&
CLUSTER_FLAG_CRAYXT
)
)
{
if
(
strncasecmp
(
val
,
"NoResp"
,
MAX
(
val_len
,
3
))
==
0
)
{
node_msg
.
node_state
=
NODE_STATE_NO_RESPOND
;
...
...
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