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
c5b0f8f4
Commit
c5b0f8f4
authored
11 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
Fix missing list_sort issue
parent
3f67a89d
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/plugins/select/bluegene/bg_record_functions.c
+5
-2
5 additions, 2 deletions
src/plugins/select/bluegene/bg_record_functions.c
with
5 additions
and
2 deletions
src/plugins/select/bluegene/bg_record_functions.c
+
5
−
2
View file @
c5b0f8f4
...
...
@@ -49,7 +49,7 @@
static
int
_set_block_nodes_accounting
(
bg_record_t
*
bg_record
,
char
*
reason
);
static
void
_addto_mp_list
(
bg_record_t
*
bg_record
,
uint16_t
*
start
,
uint16_t
*
end
);
static
int
_ba_mp_cmpf_inc
(
ba_mp_t
*
node_a
,
ba_mp_t
*
node_b
);
static
int
_ba_mp_cmpf_inc
(
void
*
r1
,
void
*
r2
);
static
void
_set_block_avail
(
bg_record_t
*
bg_record
);
extern
void
print_bg_record
(
bg_record_t
*
bg_record
)
...
...
@@ -1890,8 +1890,11 @@ static int _coord_cmpf_inc(uint16_t *coord_a, uint16_t *coord_b, int dim)
}
static
int
_ba_mp_cmpf_inc
(
ba_mp_t
*
mp_a
,
ba_mp_t
*
mp_b
)
static
int
_ba_mp_cmpf_inc
(
void
*
r1
,
void
*
r2
)
{
ba_mp_t
*
mp_a
=
*
(
ba_mp_t
**
)
r1
;
ba_mp_t
*
mp_b
=
*
(
ba_mp_t
**
)
r2
;
int
rc
=
_coord_cmpf_inc
(
mp_a
->
coord
,
mp_b
->
coord
,
0
);
if
(
!
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