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
919dca43
Commit
919dca43
authored
12 years ago
by
Danny Auble
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/slurm-2.4'
parents
04cb3a63
8b0b5ae7
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
NEWS
+2
-0
2 additions, 0 deletions
NEWS
src/common/assoc_mgr.h
+6
-2
6 additions, 2 deletions
src/common/assoc_mgr.h
src/slurmctld/controller.c
+1
-0
1 addition, 0 deletions
src/slurmctld/controller.c
with
9 additions
and
2 deletions
NEWS
+
2
−
0
View file @
919dca43
...
@@ -116,6 +116,8 @@ documents those changes that are of interest to users and admins.
...
@@ -116,6 +116,8 @@ documents those changes that are of interest to users and admins.
-- BGQ - Fix job step timeout actually happen when done from within an
-- BGQ - Fix job step timeout actually happen when done from within an
allocation.
allocation.
-- Reset node MAINT state flag when a reservation's nodes or flags change.
-- Reset node MAINT state flag when a reservation's nodes or flags change.
-- Accounting - Fix issue where QOS usage was being zeroed out on a
slurmctld restart.
* Changes in SLURM 2.4.4
* Changes in SLURM 2.4.4
========================
========================
...
...
This diff is collapsed.
Click to expand it.
src/common/assoc_mgr.h
+
6
−
2
View file @
919dca43
...
@@ -352,11 +352,15 @@ extern void assoc_mgr_remove_assoc_usage(slurmdb_association_rec_t *assoc);
...
@@ -352,11 +352,15 @@ extern void assoc_mgr_remove_assoc_usage(slurmdb_association_rec_t *assoc);
extern
int
dump_assoc_mgr_state
(
char
*
state_save_location
);
extern
int
dump_assoc_mgr_state
(
char
*
state_save_location
);
/*
/*
* Read in the usage for association if the database
* Read in the past usage for associations.
* is up when starting.
*/
*/
extern
int
load_assoc_usage
(
char
*
state_save_location
);
extern
int
load_assoc_usage
(
char
*
state_save_location
);
/*
* Read in the past usage for qos.
*/
extern
int
load_qos_usage
(
char
*
state_save_location
);
/*
/*
* Read in the information of the association mgr if the database
* Read in the information of the association mgr if the database
* isn't up when starting.
* isn't up when starting.
...
...
This diff is collapsed.
Click to expand it.
src/slurmctld/controller.c
+
1
−
0
View file @
919dca43
...
@@ -390,6 +390,7 @@ int main(int argc, char *argv[])
...
@@ -390,6 +390,7 @@ int main(int argc, char *argv[])
way. If we get an error we can't do anything about it.
way. If we get an error we can't do anything about it.
*/
*/
load_assoc_usage
(
slurmctld_conf
.
state_save_location
);
load_assoc_usage
(
slurmctld_conf
.
state_save_location
);
load_qos_usage
(
slurmctld_conf
.
state_save_location
);
/* This thread is looking for when we get correct data from
/* This thread is looking for when we get correct data from
the database so we can update the assoc_ptr's in the jobs
the database so we can update the assoc_ptr's in the jobs
...
...
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