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
3f24aba9
Commit
3f24aba9
authored
13 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
BLUEGENE - added extra_info parameter to the internal select_nodeinfo_t
structure.
parent
4bf61b94
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
slurm/slurm.h.in
+2
-0
2 additions, 0 deletions
slurm/slurm.h.in
src/plugins/select/bluegene/bg_node_info.c
+47
-3
47 additions, 3 deletions
src/plugins/select/bluegene/bg_node_info.c
src/plugins/select/bluegene/bg_node_info.h
+3
-0
3 additions, 0 deletions
src/plugins/select/bluegene/bg_node_info.h
with
52 additions
and
3 deletions
slurm/slurm.h.in
+
2
−
0
View file @
3f24aba9
...
...
@@ -360,6 +360,8 @@ enum select_nodedata_type {
SELECT_NODEDATA_STR, /* data-> char * needs to be
* freed with xfree */
SELECT_NODEDATA_PTR, /* data-> select_nodeinfo_t *nodeinfo */
SELECT_NODEDATA_EXTRA_INFO, /* data-> char * needs to be
* freed with xfree */
};
enum select_print_mode {
...
...
This diff is collapsed.
Click to expand it.
src/plugins/select/bluegene/bg_node_info.c
+
47
−
3
View file @
3f24aba9
...
...
@@ -133,7 +133,25 @@ extern int select_nodeinfo_pack(select_nodeinfo_t *nodeinfo, Buf buffer,
node_subgrp_t
*
subgrp
=
NULL
;
uint16_t
count
=
0
;
if
(
protocol_version
>=
SLURM_2_1_PROTOCOL_VERSION
)
{
if
(
protocol_version
>=
SLURM_2_4_PROTOCOL_VERSION
)
{
pack16
(
nodeinfo
->
bitmap_size
,
buffer
);
packstr
(
nodeinfo
->
extra_info
,
buffer
);
if
(
nodeinfo
->
subgrp_list
)
count
=
list_count
(
nodeinfo
->
subgrp_list
);
pack16
(
count
,
buffer
);
if
(
count
>
0
)
{
itr
=
list_iterator_create
(
nodeinfo
->
subgrp_list
);
while
((
subgrp
=
list_next
(
itr
)))
{
_pack_node_subgrp
(
subgrp
,
buffer
,
protocol_version
);
}
list_iterator_destroy
(
itr
);
}
}
else
if
(
protocol_version
>=
SLURM_2_1_PROTOCOL_VERSION
)
{
pack16
(
nodeinfo
->
bitmap_size
,
buffer
);
if
(
nodeinfo
->
subgrp_list
)
...
...
@@ -150,6 +168,7 @@ extern int select_nodeinfo_pack(select_nodeinfo_t *nodeinfo, Buf buffer,
list_iterator_destroy
(
itr
);
}
}
return
SLURM_SUCCESS
;
}
...
...
@@ -159,8 +178,29 @@ extern int select_nodeinfo_unpack(select_nodeinfo_t **nodeinfo, Buf buffer,
uint16_t
size
=
0
;
select_nodeinfo_t
*
nodeinfo_ptr
=
NULL
;
uint32_t
j
=
0
;
uint32_t
uint32_tmp
;
if
(
protocol_version
>=
SLURM_2_1_PROTOCOL_VERSION
)
{
if
(
protocol_version
>=
SLURM_2_4_PROTOCOL_VERSION
)
{
safe_unpack16
(
&
size
,
buffer
);
nodeinfo_ptr
=
select_nodeinfo_alloc
((
uint32_t
)
size
);
*
nodeinfo
=
nodeinfo_ptr
;
safe_unpackstr_xmalloc
(
&
nodeinfo_ptr
->
extra_info
,
&
uint32_tmp
,
buffer
);
safe_unpack16
(
&
size
,
buffer
);
nodeinfo_ptr
->
subgrp_list
=
list_create
(
_free_node_subgrp
);
for
(
j
=
0
;
j
<
size
;
j
++
)
{
node_subgrp_t
*
subgrp
=
NULL
;
if
(
_unpack_node_subgrp
(
&
subgrp
,
buffer
,
nodeinfo_ptr
->
bitmap_size
,
protocol_version
)
!=
SLURM_SUCCESS
)
goto
unpack_error
;
list_append
(
nodeinfo_ptr
->
subgrp_list
,
subgrp
);
}
}
else
if
(
protocol_version
>=
SLURM_2_1_PROTOCOL_VERSION
)
{
safe_unpack16
(
&
size
,
buffer
);
nodeinfo_ptr
=
select_nodeinfo_alloc
((
uint32_t
)
size
);
...
...
@@ -168,7 +208,7 @@ extern int select_nodeinfo_unpack(select_nodeinfo_t **nodeinfo, Buf buffer,
safe_unpack16
(
&
size
,
buffer
);
nodeinfo_ptr
->
subgrp_list
=
list_create
(
_free_node_subgrp
);
for
(
j
=
0
;
j
<
size
;
j
++
)
{
for
(
j
=
0
;
j
<
size
;
j
++
)
{
node_subgrp_t
*
subgrp
=
NULL
;
if
(
_unpack_node_subgrp
(
&
subgrp
,
buffer
,
nodeinfo_ptr
->
bitmap_size
,
...
...
@@ -219,6 +259,7 @@ extern int select_nodeinfo_free(select_nodeinfo_t *nodeinfo)
return
EINVAL
;
}
nodeinfo
->
magic
=
0
;
xfree
(
nodeinfo
->
extra_info
);
if
(
nodeinfo
->
subgrp_list
)
list_destroy
(
nodeinfo
->
subgrp_list
);
xfree
(
nodeinfo
);
...
...
@@ -411,6 +452,9 @@ extern int select_nodeinfo_get(select_nodeinfo_t *nodeinfo,
}
list_iterator_destroy
(
itr
);
break
;
case
SELECT_NODEDATA_EXTRA_INFO
:
*
tmp_char
=
xstrdup
(
nodeinfo
->
extra_info
);
break
;
default:
error
(
"Unsupported option %d for get_nodeinfo."
,
dinfo
);
rc
=
SLURM_ERROR
;
...
...
This diff is collapsed.
Click to expand it.
src/plugins/select/bluegene/bg_node_info.h
+
3
−
0
View file @
3f24aba9
...
...
@@ -55,6 +55,9 @@ typedef struct {
struct
select_nodeinfo
{
ba_mp_t
*
ba_mp
;
uint16_t
bitmap_size
;
char
*
extra_info
;
/* Currently used to tell if a cable
is in an error state.
*/
uint16_t
magic
;
/* magic number */
List
subgrp_list
;
};
...
...
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