Skip to content
Snippets Groups Projects
Commit 0f0710ff authored by Brian Christiansen's avatar Brian Christiansen Committed by Danny Auble
Browse files

Prevent abort when using node features on non-knl

Bug 5544
parent 6dc2b44d
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ documents those changes that are of interest to users and administrators.
-- Fix sacctmgr setting GrpJobs limit when setting GrpJobsAccrue limit.
-- Change the defaults to MemLimitEnforce=no and NoOverMemoryKill
(See RELEASE_NOTES).
-- Prevent abort when using Cray node features plugin on non-knl.
 
* Changes in Slurm 18.08.0
==========================
......
......@@ -1587,7 +1587,7 @@ static void _update_all_node_features(
*/
for (i = 0, node_ptr = node_record_table_ptr; i < node_record_count;
i++, node_ptr++) {
if (bit_test(knl_node_bitmap, i)) {
if (knl_node_bitmap && bit_test(knl_node_bitmap, i)) {
if (validate_mode)
_validate_node_features(node_ptr);
continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment