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
eae182ad
Commit
eae182ad
authored
10 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
Clearer checking for return from route_g_init
parent
e0c26e67
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/common/slurm_route.c
+4
-4
4 additions, 4 deletions
src/common/slurm_route.c
with
4 additions
and
4 deletions
src/common/slurm_route.c
+
4
−
4
View file @
eae182ad
...
@@ -348,7 +348,7 @@ extern int route_g_split_hostlist(hostlist_t hl,
...
@@ -348,7 +348,7 @@ extern int route_g_split_hostlist(hostlist_t hl,
char
*
buf
;
char
*
buf
;
nnodes
=
nnodex
=
0
;
nnodes
=
nnodex
=
0
;
if
(
route_g_init
(
NULL
)
<
0
)
if
(
route_g_init
(
NULL
)
!=
SLURM_SUCCESS
)
return
SLURM_ERROR
;
return
SLURM_ERROR
;
if
(
debug_flags
&
DEBUG_FLAG_ROUTE
)
{
if
(
debug_flags
&
DEBUG_FLAG_ROUTE
)
{
...
@@ -387,7 +387,7 @@ extern int route_g_split_hostlist(hostlist_t hl,
...
@@ -387,7 +387,7 @@ extern int route_g_split_hostlist(hostlist_t hl,
*/
*/
extern
int
route_g_reconfigure
(
void
)
extern
int
route_g_reconfigure
(
void
)
{
{
if
(
route_g_init
(
NULL
)
<
0
)
if
(
route_g_init
(
NULL
)
!=
SLURM_SUCCESS
)
return
SLURM_ERROR
;
return
SLURM_ERROR
;
debug_flags
=
slurm_get_debug_flags
();
debug_flags
=
slurm_get_debug_flags
();
tree_width
=
slurm_get_tree_width
();
tree_width
=
slurm_get_tree_width
();
...
@@ -407,7 +407,7 @@ extern int route_g_reconfigure(void)
...
@@ -407,7 +407,7 @@ extern int route_g_reconfigure(void)
*/
*/
extern
slurm_addr_t
*
route_g_next_collector
(
bool
*
is_collector
)
extern
slurm_addr_t
*
route_g_next_collector
(
bool
*
is_collector
)
{
{
if
(
route_g_init
(
NULL
)
<
0
)
if
(
route_g_init
(
NULL
)
!=
SLURM_SUCCESS
)
return
NULL
;
return
NULL
;
return
(
*
(
ops
.
next_collector
))(
is_collector
);
return
(
*
(
ops
.
next_collector
))(
is_collector
);
...
@@ -423,7 +423,7 @@ extern slurm_addr_t* route_g_next_collector ( bool *is_collector )
...
@@ -423,7 +423,7 @@ extern slurm_addr_t* route_g_next_collector ( bool *is_collector )
*/
*/
extern
slurm_addr_t
*
route_g_next_collector_backup
(
void
)
extern
slurm_addr_t
*
route_g_next_collector_backup
(
void
)
{
{
if
(
route_g_init
(
NULL
)
<
0
)
if
(
route_g_init
(
NULL
)
!=
SLURM_SUCCESS
)
return
NULL
;
return
NULL
;
return
(
*
(
ops
.
next_collector_backup
))();
return
(
*
(
ops
.
next_collector_backup
))();
...
...
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