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
907f80b4
Commit
907f80b4
authored
22 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Renamed parse_node_name to parse_node_names. Changed xmalloc/xfree and
error to malloc/free and printf.
parent
8c6d10b2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/common/nodelist.c
+17
-14
17 additions, 14 deletions
src/common/nodelist.c
src/common/nodelist.h
+2
-2
2 additions, 2 deletions
src/common/nodelist.h
src/scontrol/scontrol.c
+1
-1
1 addition, 1 deletion
src/scontrol/scontrol.c
with
20 additions
and
17 deletions
src/common/nodelist.c
+
17
−
14
View file @
907f80b4
...
...
@@ -20,9 +20,6 @@
#include
<string.h>
#include
<syslog.h>
#include
"xmalloc.h"
#include
"log.h"
/*
* bitfmt2int - convert a string describing bitmap (e.g. "0-30,45,50-60")
* into an array of integer (start/end) pairs terminated by -1
...
...
@@ -73,7 +70,7 @@ bitfmt2int (char *bit_str_ptr)
}
/*
* parse_node_name - parse the node name for regular expressions and return a
* parse_node_name
s
- parse the node name for regular expressions and return a
* sprintf format generate multiple node names as needed.
* input: node_name - node name to parse
* output: format - sprintf format for generating names
...
...
@@ -85,14 +82,14 @@ bitfmt2int (char *bit_str_ptr)
* is no longer needed
*/
int
parse_node_name
(
char
*
node_name
,
char
**
format
,
int
*
start_inx
,
int
*
end_inx
,
parse_node_name
s
(
char
*
node_name
,
char
**
format
,
int
*
start_inx
,
int
*
end_inx
,
int
*
count_inx
)
{
int
base
,
format_pos
,
precision
,
i
;
char
type
[
1
];
i
=
strlen
(
node_name
);
format
[
0
]
=
(
char
*
)
x
malloc
(
i
+
1
);
format
[
0
]
=
(
char
*
)
malloc
(
i
+
1
);
*
start_inx
=
0
;
*
end_inx
=
0
;
...
...
@@ -113,9 +110,11 @@ parse_node_name (char *node_name, char **format, int *start_inx, int *end_inx,
if
(
node_name
[
++
i
]
==
(
char
)
NULL
)
break
;
if
(
base
!=
0
)
{
error
(
"parse_node_name: invalid '[' in node name %s
\n
"
,
node_name
);
xfree
(
format
[
0
]);
#if DEBUG_SYSTEM > 1
printf
(
"parse_node_name: invalid '[' in node name %s
\n
"
,
node_name
);
#endif
free
(
format
[
0
]);
return
EINVAL
;
}
if
(
node_name
[
i
]
==
'o'
)
{
...
...
@@ -140,9 +139,11 @@ parse_node_name (char *node_name, char **format, int *start_inx, int *end_inx,
i
++
;
break
;
}
error
(
"parse_node_name: invalid '%c' in node name %s
\n
"
,
node_name
[
i
],
node_name
);
xfree
(
format
[
0
]);
#if DEBUG_SYSTEM > 1
printf
(
"parse_node_name: invalid '%c' in node name %s
\n
"
,
node_name
[
i
],
node_name
);
#endif
free
(
format
[
0
]);
return
EINVAL
;
}
while
(
1
)
{
...
...
@@ -157,9 +158,11 @@ parse_node_name (char *node_name, char **format, int *start_inx, int *end_inx,
i
++
;
break
;
}
error
(
"parse_node_name: invalid '%c' in node name %s
\n
"
,
#if DEBUG_SYSTEM > 1
printf
(
"parse_node_name: invalid '%c' in node name %s
\n
"
,
node_name
[
i
],
node_name
);
xfree
(
format
[
0
]);
#endif
free
(
format
[
0
]);
return
EINVAL
;
}
*
count_inx
=
(
*
end_inx
-
*
start_inx
)
+
1
;
...
...
This diff is collapsed.
Click to expand it.
src/common/nodelist.h
+
2
−
2
View file @
907f80b4
...
...
@@ -8,7 +8,7 @@
#ifndef _NODELIST_H
#define _NODELIST_H
int
*
bitfmt2int
(
char
*
bit_str_ptr
);
int
parse_node_name
(
char
*
name
,
char
**
fmt
,
int
*
start
,
int
*
end
,
int
*
count
);
extern
int
*
bitfmt2int
(
char
*
bit_str_ptr
);
extern
int
parse_node_name
s
(
char
*
name
,
char
**
fmt
,
int
*
start
,
int
*
end
,
int
*
count
);
#endif
/* !_NODELIST_H */
This diff is collapsed.
Click to expand it.
src/scontrol/scontrol.c
+
1
−
1
View file @
907f80b4
...
...
@@ -451,7 +451,7 @@ print_node_list (char *node_list)
str_ptr2
=
(
char
*
)
strtok_r
(
my_node_list
,
","
,
&
str_ptr1
);
while
(
str_ptr2
)
{
/* break apart by comma separators */
error_code
=
parse_node_name
(
str_ptr2
,
&
format
,
parse_node_name
s
(
str_ptr2
,
&
format
,
&
start_inx
,
&
end_inx
,
&
count_inx
);
if
(
error_code
)
{
...
...
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