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
f0fe1d5e
Commit
f0fe1d5e
authored
11 years ago
by
Martin Perry
Committed by
Morris Jette
11 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Expand maximum hostlist ranges from 12k to 64k elements.
parent
8a08e491
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+1
-0
1 addition, 0 deletions
NEWS
src/common/hostlist.c
+1
-1
1 addition, 1 deletion
src/common/hostlist.c
with
2 additions
and
1 deletion
NEWS
+
1
−
0
View file @
f0fe1d5e
...
@@ -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
========================
========================
...
...
This diff is collapsed.
Click to expand it.
src/common/hostlist.c
+
1
−
1
View file @
f0fe1d5e
...
@@ -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)
/*
12
K Ranges */
#define MAX_RANGES (
64
*1024)
/*
64
K 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 */
...
...
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