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
2859f904
Commit
2859f904
authored
19 years ago
by
Danny Auble
Browse files
Options
Downloads
Patches
Plain Diff
fix to make sure jobacct works correctly if not set up
parent
826eb20c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/slurmctld/jobacct.c
+29
-4
29 additions, 4 deletions
src/slurmctld/jobacct.c
with
29 additions
and
4 deletions
src/slurmctld/jobacct.c
+
29
−
4
View file @
2859f904
...
...
@@ -36,6 +36,7 @@ static FILE * LOGFILE;
static
int
LOGFILE_FD
;
static
pthread_mutex_t
logfile_lock
=
PTHREAD_MUTEX_INITIALIZER
;
static
char
*
log_file
=
NULL
;
static
int
init
;
/* Format of the JOB_STEP record */
const
char
*
_jobstep_format
=
"%d "
...
...
@@ -117,14 +118,16 @@ int jobacct_init(char *job_acct_log)
prot
=
statbuf
.
st_mode
;
LOGFILE
=
fopen
(
log_file
,
"a"
);
if
(
LOGFILE
==
NULL
)
{
fatal
(
"open %s: %m"
,
log_file
);
rc
=
SLURM_ERROR
;
error
(
"open %s: %m"
,
log_file
);
init
=
0
;
return
SLURM_ERROR
;
}
else
chmod
(
log_file
,
prot
);
if
(
setvbuf
(
LOGFILE
,
NULL
,
_IOLBF
,
0
))
fatal
(
"setvbuf() failed"
);
error
(
"setvbuf() failed"
);
LOGFILE_FD
=
fileno
(
LOGFILE
);
slurm_mutex_unlock
(
&
logfile_lock
);
init
=
1
;
return
rc
;
}
...
...
@@ -138,6 +141,10 @@ int jobacct_job_start(struct job_record *job_ptr)
long
priority
;
int
track_steps
=
0
;
if
(
!
init
)
{
debug
(
"jobacct init was not called or it failed"
);
return
SLURM_ERROR
;
}
debug2
(
"jobacct_job_start() called"
);
for
(
i
=
0
;
i
<
job_ptr
->
num_cpu_groups
;
i
++
)
ncpus
+=
(
job_ptr
->
cpus_per_node
[
i
])
...
...
@@ -176,7 +183,11 @@ int jobacct_job_start(struct job_record *job_ptr)
int
jobacct_step_start
(
struct
step_record
*
step
)
{
char
buf
[
BUFFER_SIZE
];
if
(
!
init
)
{
debug
(
"jobacct init was not called or it failed"
);
return
SLURM_ERROR
;
}
snprintf
(
buf
,
BUFFER_SIZE
,
_jobstep_format
,
JOB_STEP
,
step
->
step_id
,
/* stepid */
...
...
@@ -220,6 +231,11 @@ int jobacct_step_complete(struct step_record *step)
int
elapsed
;
int
comp_status
;
if
(
!
init
)
{
debug
(
"jobacct init was not called or it failed"
);
return
SLURM_ERROR
;
}
now
=
time
(
NULL
);
if
((
elapsed
=
now
-
step
->
start_time
)
<
0
)
...
...
@@ -273,6 +289,11 @@ int jobacct_job_complete(struct job_record *job_ptr)
{
char
buf
[
BUFFER_SIZE
];
if
(
!
init
)
{
debug
(
"jobacct init was not called or it failed"
);
return
SLURM_ERROR
;
}
debug2
(
"jobacct_job_complete() called"
);
if
(
job_ptr
->
end_time
==
0
)
{
debug
(
"jobacct: job %u never started"
,
job_ptr
->
job_id
);
...
...
@@ -293,6 +314,10 @@ int jobacct_job_suspend(struct job_record *job_ptr)
static
time_t
now
=
0
;
static
time_t
temp
=
0
;
int
elapsed
;
if
(
!
init
)
{
debug
(
"jobacct init was not called or it failed"
);
return
SLURM_ERROR
;
}
/* tell what time has passed */
if
(
!
now
)
...
...
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