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
43202c17
Commit
43202c17
authored
13 years ago
by
Danny Auble
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/slurm-2.3'
Conflicts: NEWS src/sview/common.c
parents
28baad9d
eb7f2d9c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+4
-0
4 additions, 0 deletions
NEWS
src/sview/common.c
+14
-0
14 additions, 0 deletions
src/sview/common.c
with
18 additions
and
0 deletions
NEWS
+
4
−
0
View file @
43202c17
...
@@ -10,6 +10,10 @@ documents those changes that are of interest to users and admins.
...
@@ -10,6 +10,10 @@ documents those changes that are of interest to users and admins.
(i.e. BP List -> MidplaneList).
(i.e. BP List -> MidplaneList).
-- BLUEGENE - read MPs and BPs from the bluegene.conf
-- BLUEGENE - read MPs and BPs from the bluegene.conf
* Changes in SLURM 2.3.1
========================
-- Fix for memory issue inside sview.
* Changes in SLURM 2.3.0
* Changes in SLURM 2.3.0
========================
========================
-- BLUEGENE - make sure we only set the jobinfo_select start_loc on a job
-- BLUEGENE - make sure we only set the jobinfo_select start_loc on a job
...
...
This diff is collapsed.
Click to expand it.
src/sview/common.c
+
14
−
0
View file @
43202c17
...
@@ -953,11 +953,25 @@ extern void set_page_opts(int page, display_data_t *display_data,
...
@@ -953,11 +953,25 @@ extern void set_page_opts(int page, display_data_t *display_data,
while
((
col_name
=
list_next
(
itr
)))
{
while
((
col_name
=
list_next
(
itr
)))
{
replus
(
col_name
);
replus
(
col_name
);
if
(
strstr
(
col_name
,
"list"
))
{
if
(
strstr
(
col_name
,
"list"
))
{
char
*
orig_ptr
=
col_name
;
xstrsubstitute
(
col_name
,
"bp "
,
"midplane"
);
xstrsubstitute
(
col_name
,
"bp "
,
"midplane"
);
if
(
cluster_flags
&
CLUSTER_FLAG_BG
)
if
(
cluster_flags
&
CLUSTER_FLAG_BG
)
xstrsubstitute
(
col_name
,
"node"
,
"midplane"
);
xstrsubstitute
(
col_name
,
"node"
,
"midplane"
);
else
else
xstrsubstitute
(
col_name
,
"midplane"
,
"node"
);
xstrsubstitute
(
col_name
,
"midplane"
,
"node"
);
/* Make sure we have the correct pointer here
since xstrsubstitute() could of changed it
on us.
*/
if
(
col_name
!=
orig_ptr
)
{
list_insert
(
itr
,
col_name
);
/* Don't use list_delete_item().
xstrsubstitute() has already
deleted it for us.
*/
list_remove
(
itr
);
}
}
}
while
(
display_data
++
)
{
while
(
display_data
++
)
{
if
(
display_data
->
id
==
-
1
)
if
(
display_data
->
id
==
-
1
)
...
...
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