Skip to content
Snippets Groups Projects
Commit f0fe1d5e authored by Martin Perry's avatar Martin Perry Committed by Morris Jette
Browse files

Expand maximum hostlist ranges from 12k to 64k elements.

parent 8a08e491
No related branches found
No related tags found
No related merge requests found
...@@ -120,6 +120,7 @@ documents those changes that are of interest to users and admins. ...@@ -120,6 +120,7 @@ documents those changes that are of interest to users and admins.
-- Minor document update to include note about PrivateData=Usage for the -- Minor document update to include note about PrivateData=Usage for the
slurm.conf when using the DBD. slurm.conf when using the DBD.
-- Expand information reported with DebugFlags=backfill. -- Expand information reported with DebugFlags=backfill.
-- Expand maximum hostlist ranges from 12k to 64k elements.
* Changes in Slurm 2.6.3 * Changes in Slurm 2.6.3
======================== ========================
......
...@@ -193,7 +193,7 @@ extern void * lsd_nomem_error(char *file, int line, char *mesg); ...@@ -193,7 +193,7 @@ extern void * lsd_nomem_error(char *file, int line, char *mesg);
#define MAX_RANGE (64*1024) /* 64K Hosts */ #define MAX_RANGE (64*1024) /* 64K Hosts */
/* max number of ranges that will be processed between brackets */ /* max number of ranges that will be processed between brackets */
#define MAX_RANGES (12*1024) /* 12K Ranges */ #define MAX_RANGES (64*1024) /* 64K Ranges */
/* size of internal hostname buffer (+ some slop), hostnames will probably /* size of internal hostname buffer (+ some slop), hostnames will probably
* be truncated if longer than MAXHOSTNAMELEN */ * be truncated if longer than MAXHOSTNAMELEN */
......
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