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
bc8ca60e
Commit
bc8ca60e
authored
18 years ago
by
Moe Jette
Browse files
Options
Downloads
Patches
Plain Diff
Remove vestigial function _comp_msg, add operation time report to slurm_ckpt_comp function.
parent
f1598791
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/plugins/checkpoint/aix/checkpoint_aix.c
+6
-14
6 additions, 14 deletions
src/plugins/checkpoint/aix/checkpoint_aix.c
with
6 additions
and
14 deletions
src/plugins/checkpoint/aix/checkpoint_aix.c
+
6
−
14
View file @
bc8ca60e
...
@@ -64,8 +64,6 @@ struct check_job_info {
...
@@ -64,8 +64,6 @@ struct check_job_info {
char
*
error_msg
;
char
*
error_msg
;
};
};
static
void
_comp_msg
(
struct
step_record
*
step_ptr
,
struct
check_job_info
*
check_ptr
);
static
void
_send_sig
(
uint32_t
job_id
,
uint32_t
step_id
,
uint16_t
signal
,
static
void
_send_sig
(
uint32_t
job_id
,
uint32_t
step_id
,
uint16_t
signal
,
char
*
node_name
,
slurm_addr
node_addr
);
char
*
node_name
,
slurm_addr
node_addr
);
static
int
_step_sig
(
struct
step_record
*
step_ptr
,
uint16_t
wait
,
static
int
_step_sig
(
struct
step_record
*
step_ptr
,
uint16_t
wait
,
...
@@ -261,9 +259,12 @@ extern int slurm_ckpt_comp ( struct step_record * step_ptr, time_t event_time,
...
@@ -261,9 +259,12 @@ extern int slurm_ckpt_comp ( struct step_record * step_ptr, time_t event_time,
/* We need an error-free reply from each compute node,
/* We need an error-free reply from each compute node,
* plus POE itself to note completion */
* plus POE itself to note completion */
if
(
check_ptr
->
reply_cnt
++
==
check_ptr
->
node_cnt
)
{
if
(
check_ptr
->
reply_cnt
++
==
check_ptr
->
node_cnt
)
{
info
(
"Checkpoint complete for job %u.%u"
,
time_t
now
=
time
(
NULL
);
step_ptr
->
job_ptr
->
job_id
,
step_ptr
->
step_id
);
long
delay
=
(
long
)
difftime
(
now
,
check_ptr
->
time_stamp
);
check_ptr
->
time_stamp
=
time
(
NULL
);
info
(
"Checkpoint complete for job %u.%u in %ld seconds"
,
step_ptr
->
job_ptr
->
job_id
,
step_ptr
->
step_id
,
delay
);
check_ptr
->
time_stamp
=
now
;
_ckpt_dequeue_timeout
(
step_ptr
->
job_ptr
->
job_id
,
_ckpt_dequeue_timeout
(
step_ptr
->
job_ptr
->
job_id
,
step_ptr
->
step_id
,
event_time
);
step_ptr
->
step_id
,
event_time
);
}
}
...
@@ -394,15 +395,6 @@ static int _step_sig(struct step_record * step_ptr, uint16_t wait,
...
@@ -394,15 +395,6 @@ static int _step_sig(struct step_record * step_ptr, uint16_t wait,
return
SLURM_SUCCESS
;
return
SLURM_SUCCESS
;
}
}
static
void
_comp_msg
(
struct
step_record
*
step_ptr
,
struct
check_job_info
*
check_ptr
)
{
long
delay
=
(
long
)
difftime
(
time
(
NULL
),
check_ptr
->
time_stamp
);
info
(
"checkpoint done for job %u.%u, secs %ld errno %d"
,
step_ptr
->
job_ptr
->
job_id
,
step_ptr
->
step_id
,
delay
,
check_ptr
->
error_code
);
}
/* Checkpoint processing pthread
/* Checkpoint processing pthread
* Never returns, but is cancelled on plugin termiantion */
* Never returns, but is cancelled on plugin termiantion */
static
void
*
_ckpt_agent_thr
(
void
*
arg
)
static
void
*
_ckpt_agent_thr
(
void
*
arg
)
...
...
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