X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=eta.c;h=e80fa4845e8583d8e9e74e5ce74039320ef4de81;hb=33765372d5588c347e44d868d0bd6bc416a0fd05;hp=0833d3412450a6ddd788369cf2c064f41918ef34;hpb=ba936c4b474bd4c5d4b07127561d07644823bc65;p=fio.git diff --git a/eta.c b/eta.c index 0833d341..e80fa484 100644 --- a/eta.c +++ b/eta.c @@ -7,8 +7,6 @@ #include "fio.h" -void (*update_thread_status)(char *status_message) = NULL; - static char run_str[REAL_MAX_JOBS + 1]; /* @@ -20,7 +18,12 @@ static void check_str_update(struct thread_data *td) switch (td->runstate) { case TD_REAPED: - c = '_'; + if (td->error) + c = 'X'; + else if (td->sig) + c = 'K'; + else + c = '_'; break; case TD_EXITED: c = 'E'; @@ -85,7 +88,7 @@ static void check_str_update(struct thread_data *td) /* * Convert seconds to a printable string. */ -static void eta_to_str(char *str, unsigned long eta_sec) +void eta_to_str(char *str, unsigned long eta_sec) { unsigned int d, h, m, s; int disp_hour = 0; @@ -275,11 +278,14 @@ int calc_thread_status(struct jobs_eta *je, int force) || td->runstate == TD_FSYNCING || td->runstate == TD_PRE_READING) { je->nr_running++; - je->t_rate += td->o.rate[0] + td->o.rate[1]; - je->m_rate += td->o.ratemin[0] + td->o.ratemin[1]; - je->t_iops += td->o.rate_iops[0] + td->o.rate_iops[1]; - je->m_iops += td->o.rate_iops_min[0] + - td->o.rate_iops_min[1]; + je->t_rate[0] += td->o.rate[0]; + je->t_rate[1] += td->o.rate[1]; + je->m_rate[0] += td->o.ratemin[0]; + je->m_rate[1] += td->o.ratemin[1]; + je->t_iops[0] += td->o.rate_iops[0]; + je->t_iops[1] += td->o.rate_iops[1]; + je->m_iops[0] += td->o.rate_iops_min[0]; + je->m_iops[1] += td->o.rate_iops_min[1]; je->files_open += td->nr_open_files; } else if (td->runstate == TD_RAMP) { je->nr_running++; @@ -368,16 +374,19 @@ void display_thread_status(struct jobs_eta *je) } p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open); - if (je->m_rate || je->t_rate) { + if (je->m_rate[0] || je->m_rate[1] || je->t_rate[0] || je->t_rate[1]) { char *tr, *mr; - mr = num2str(je->m_rate, 4, 0, i2p); - tr = num2str(je->t_rate, 4, 0, i2p); + mr = num2str(je->m_rate[0] + je->m_rate[1], 4, 0, i2p); + tr = num2str(je->t_rate[0] + je->t_rate[1], 4, 0, i2p); p += sprintf(p, ", CR=%s/%s KB/s", tr, mr); free(tr); free(mr); - } else if (je->m_iops || je->t_iops) - p += sprintf(p, ", CR=%d/%d IOPS", je->t_iops, je->m_iops); + } else if (je->m_iops[0] || je->m_iops[1] || je->t_iops[0] || je->t_iops[1]) { + p += sprintf(p, ", CR=%d/%d IOPS", + je->t_iops[0] + je->t_iops[1], + je->m_iops[0] + je->t_iops[1]); + } if (je->eta_sec != INT_MAX && je->nr_running) { char perc_str[32]; char *iops_str[2]; @@ -413,12 +422,8 @@ void display_thread_status(struct jobs_eta *je) } p += sprintf(p, "\r"); - if (update_thread_status) { - update_thread_status(output); - } else { - printf("%s", output); - fflush(stdout); - } + printf("%s", output); + fflush(stdout); } void print_thread_status(void)