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
c9874eb2
Commit
c9874eb2
authored
18 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
svn merge -r10092:10107
https://eris.llnl.gov/svn/slurm/branches/slurm-1.1
parent
a2642452
No related branches found
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/slurm_protocol_socket_implementation.c
+8
-2
8 additions, 2 deletions
src/common/slurm_protocol_socket_implementation.c
with
9 additions
and
2 deletions
NEWS
+
1
−
0
View file @
c9874eb2
...
@@ -105,6 +105,7 @@ documents those changes that are of interest to users and admins.
...
@@ -105,6 +105,7 @@ documents those changes that are of interest to users and admins.
=========================
=========================
- BLUEGENE - make sure the order of blocks read in from the bluegene.conf
- BLUEGENE - make sure the order of blocks read in from the bluegene.conf
are created in that order (static mode).
are created in that order (static mode).
- Fix logic in connect(), slurmctld fail-over was broken in v1.1.18.
* Changes in SLURM 1.1.18
* Changes in SLURM 1.1.18
=========================
=========================
...
...
This diff is collapsed.
Click to expand it.
src/common/slurm_protocol_socket_implementation.c
+
8
−
2
View file @
c9874eb2
...
@@ -588,8 +588,14 @@ extern int _slurm_connect (int __fd, struct sockaddr const * __addr,
...
@@ -588,8 +588,14 @@ extern int _slurm_connect (int __fd, struct sockaddr const * __addr,
poll_rc
=
poll
(
&
ufds
,
1
,
5000
);
poll_rc
=
poll
(
&
ufds
,
1
,
5000
);
if
(
poll_rc
==
0
)
if
(
poll_rc
==
0
)
errno
=
ETIMEDOUT
;
errno
=
ETIMEDOUT
;
else
if
(
poll_rc
==
1
)
else
if
(
poll_rc
==
1
)
{
rc
=
0
;
/* poll successfully completed */
if
(
ufds
.
revents
&
POLLERR
)
debug2
(
"connect failure"
);
else
rc
=
0
;
}
else
error
(
"poll: %m"
);
}
}
fcntl
(
__fd
,
F_SETFL
,
flags
);
fcntl
(
__fd
,
F_SETFL
,
flags
);
return
rc
;
return
rc
;
...
...
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