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
db53b462
Commit
db53b462
authored
14 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Remove logic to support a vestigial select_g_get_info_from_plugin()
option of SELECT_BITMAP
parent
b997f450
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
src/plugins/select/cons_res/select_cons_res.c
+0
-59
0 additions, 59 deletions
src/plugins/select/cons_res/select_cons_res.c
src/slurmctld/slurmctld.h
+5
-5
5 additions, 5 deletions
src/slurmctld/slurmctld.h
with
5 additions
and
64 deletions
src/plugins/select/cons_res/select_cons_res.c
+
0
−
59
View file @
db53b462
...
...
@@ -1567,54 +1567,6 @@ static bool _is_node_avail(struct part_res_record *p_ptr, uint32_t node_i)
}
/* Worker function for select_p_get_info_from_plugin() */
static
int
_synchronize_bitmaps
(
struct
job_record
*
job_ptr
,
bitstr_t
**
partially_idle_bitmap
)
{
int
size
,
i
;
struct
part_res_record
*
p_ptr
;
size
=
bit_size
(
avail_node_bitmap
);
bitstr_t
*
bitmap
=
bit_alloc
(
size
);
if
(
bitmap
==
NULL
)
return
SLURM_ERROR
;
debug3
(
"cons_res: synch_bm: avail %d of %d set, idle %d of %d set"
,
bit_set_count
(
avail_node_bitmap
),
size
,
bit_set_count
(
idle_node_bitmap
),
size
);
if
(
!
job_ptr
)
fatal
(
"cons_res: error: don't know what job I'm sync'ing"
);
for
(
p_ptr
=
select_part_record
;
p_ptr
;
p_ptr
=
p_ptr
->
next
)
{
if
(
p_ptr
->
part_ptr
==
job_ptr
->
part_ptr
)
break
;
}
for
(
i
=
0
;
i
<
select_node_cnt
;
i
++
)
{
if
(
!
bit_test
(
avail_node_bitmap
,
i
))
continue
;
if
(
bit_test
(
idle_node_bitmap
,
i
))
{
bit_set
(
bitmap
,
i
);
continue
;
}
if
(
!
p_ptr
||
_is_node_avail
(
p_ptr
,
i
))
bit_set
(
bitmap
,
i
);
}
if
(
p_ptr
)
{
debug3
(
"cons_res: found %d partially idle nodes in part %s"
,
bit_set_count
(
bitmap
),
p_ptr
->
part_ptr
->
name
);
}
else
{
debug3
(
"cons_res: found %d partially idle nodes"
,
bit_set_count
(
bitmap
));
}
*
partially_idle_bitmap
=
bitmap
;
return
SLURM_SUCCESS
;
}
/*
* init() is called when the plugin is loaded, before any other functions
* are called. Put global initialization here.
...
...
@@ -2198,17 +2150,6 @@ extern int select_p_get_info_from_plugin(enum select_plugindata_info info,
List
*
tmp_list
=
(
List
*
)
data
;
switch
(
info
)
{
case
SELECT_BITMAP
:
rc
=
_synchronize_bitmaps
(
job_ptr
,
&
tmp_bitmap
);
if
(
rc
!=
SLURM_SUCCESS
)
{
FREE_NULL_BITMAP
(
tmp_bitmap
);
return
rc
;
}
*
bitmap
=
tmp_bitmap
;
/* Ownership transfer,
* Remember to free bitmap
* using FREE_NULL_BITMAP(bitmap);*/
tmp_bitmap
=
0
;
break
;
case
SELECT_CR_PLUGIN
:
*
tmp_32
=
1
;
break
;
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/slurmctld.h
+
5
−
5
View file @
db53b462
...
...
@@ -624,14 +624,14 @@ extern List job_list; /* list of job_record entries */
*/
enum
select_plugindata_info
{
SELECT_CR_PLUGIN
,
/* data-> uint32 1 if CR plugin */
SELECT_BITMAP
,
/*
data-> partially_idle_bitmap (CR support)
*/
SELECT_BITMAP
,
/*
Unused since version 2.0
*/
SELECT_ALLOC_CPUS
,
/* data-> uint16 alloc cpus (CR support) */
SELECT_ALLOC_LPS
,
/* data-> uint32 alloc lps (CR support) */
SELECT_AVAIL_MEMORY
,
/* data-> uint32 avail mem (CR support) */
SELECT_STATIC_PART
,
/* data-> uint16, 1 if static partitioning
* BlueGene support */
SELECT_CONFIG_INFO
/* data-> List get .conf info from select
* plugin */
SELECT_STATIC_PART
,
/* data-> uint16, 1 if static partitioning
* BlueGene support */
SELECT_CONFIG_INFO
/* data-> List get .conf info from select
* plugin */
}
;
/*****************************************************************************\
...
...
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