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
76b06e81
Commit
76b06e81
authored
12 years ago
by
Morris Jette
Browse files
Options
Downloads
Plain Diff
Merge branch 'slurm-2.3' into slurm-2.4
parents
76963b4b
102258a2
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
NEWS
+4
-0
4 additions, 0 deletions
NEWS
src/common/gres.c
+1
-1
1 addition, 1 deletion
src/common/gres.c
with
5 additions
and
1 deletion
NEWS
+
4
−
0
View file @
76b06e81
...
@@ -339,6 +339,10 @@ documents those changes that are of interest to users and admins.
...
@@ -339,6 +339,10 @@ documents those changes that are of interest to users and admins.
-- Fix issue with assoc_mgr if a bad state file is given and the database
-- Fix issue with assoc_mgr if a bad state file is given and the database
isn't up at the time the slurmctld starts, not running the
isn't up at the time the slurmctld starts, not running the
priority/multifactor plugin, and then the database is started up later.
priority/multifactor plugin, and then the database is started up later.
-- Gres: If a gres has a count of one and an associated file then when doing
a reconfiguration, the node's bitmap was not cleared resulting in an
underflow upon job termination or removal from scheduling matrix by the
backfill scheduler.
* Changes in SLURM 2.3.5
* Changes in SLURM 2.3.5
========================
========================
...
...
This diff is collapsed.
Click to expand it.
src/common/gres.c
+
1
−
1
View file @
76b06e81
...
@@ -1854,7 +1854,7 @@ static void _node_state_dealloc(gres_state_t *gres_ptr)
...
@@ -1854,7 +1854,7 @@ static void _node_state_dealloc(gres_state_t *gres_ptr)
gres_node_ptr
->
gres_cnt_alloc
=
0
;
gres_node_ptr
->
gres_cnt_alloc
=
0
;
if
(
gres_node_ptr
->
gres_bit_alloc
)
{
if
(
gres_node_ptr
->
gres_bit_alloc
)
{
int
i
=
bit_size
(
gres_node_ptr
->
gres_bit_alloc
)
-
1
;
int
i
=
bit_size
(
gres_node_ptr
->
gres_bit_alloc
)
-
1
;
if
(
i
>
0
)
if
(
i
>
=
0
)
bit_nclear
(
gres_node_ptr
->
gres_bit_alloc
,
0
,
i
);
bit_nclear
(
gres_node_ptr
->
gres_bit_alloc
,
0
,
i
);
}
}
if
(
gres_node_ptr
->
topo_cnt
&&
!
gres_node_ptr
->
topo_gres_cnt_alloc
)
{
if
(
gres_node_ptr
->
topo_cnt
&&
!
gres_node_ptr
->
topo_gres_cnt_alloc
)
{
...
...
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