Skip to content
Snippets Groups Projects
Commit bc8ca60e authored by Moe Jette's avatar Moe Jette
Browse files

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
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment