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

-- 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
......@@ -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
=============================
......
......@@ -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
......
......@@ -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;
......
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