X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=eta.c;h=e1cced4643873a1e1388ac3c9b27bc0eeb904e26;hb=76cd9378b90dddf2cedc9a5d49f317aaad485b90;hp=8dbff985cac272795038a53d21ff14037fd6e825;hpb=5338f35ddd52203048e2f6262b7254dddc2d8d52;p=fio.git diff --git a/eta.c b/eta.c index 8dbff985..e1cced46 100644 --- a/eta.c +++ b/eta.c @@ -7,7 +7,7 @@ #include "fio.h" -static char run_str[MAX_JOBS + 1]; +static char run_str[REAL_MAX_JOBS + 1]; /* * Sets the status of the 'td' in the printed status map. @@ -110,6 +110,13 @@ static int thread_eta(struct thread_data *td) bytes_total = td->total_io_size; + if (td->o.fill_device && td->o.size == -1ULL) { + if (!td->fill_device_size || td->fill_device_size == -1ULL) + return 0; + + bytes_total = td->fill_device_size; + } + /* * if writing, bytes_total will be twice the size. If mixing, * assume a 50/50 split and thus bytes_total will be 50% larger. @@ -124,9 +131,6 @@ static int thread_eta(struct thread_data *td) if (td->o.zone_size && td->o.zone_skip) bytes_total /= (td->o.zone_skip / td->o.zone_size); - if (td->o.fill_device && td->o.size == -1ULL) - return 0; - if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) { double perc, perc_t; @@ -157,19 +161,21 @@ static int thread_eta(struct thread_data *td) * if given, otherwise assume it'll run at the specified rate. */ if (td->o.timeout) { - t_eta = td->o.timeout + td->o.start_delay; + t_eta = td->o.timeout + td->o.start_delay + + td->o.ramp_time; if (in_ramp_time(td)) { unsigned long ramp_left; - ramp_left = mtime_since_now(&td->start); + ramp_left = mtime_since_now(&td->epoch); ramp_left = (ramp_left + 999) / 1000; if (ramp_left <= t_eta) t_eta -= ramp_left; } } if (td->o.rate[0] || td->o.rate[1]) { - r_eta = (bytes_total / 1024) / (td->o.rate[0] + td->o.rate[1]); + r_eta = (bytes_total / 1024) / + (td->o.rate[0] + td->o.rate[1]); r_eta += td->o.start_delay; } @@ -264,7 +270,8 @@ void print_thread_status(void) t_rate += td->o.rate[0] + td->o.rate[1]; m_rate += td->o.ratemin[0] + td->o.ratemin[1]; t_iops += td->o.rate_iops[0] + td->o.rate_iops[1]; - m_iops += td->o.rate_iops_min[0] + td->o.rate_iops_min[1]; + m_iops += td->o.rate_iops_min[0] + + td->o.rate_iops_min[1]; files_open += td->nr_open_files; } else if (td->runstate == TD_RAMP) { nr_running++; @@ -322,7 +329,11 @@ void print_thread_status(void) } disp_time = mtime_since(&disp_prev_time, &now); - if (disp_time < 1000) + + /* + * Allow a little slack, the target is to print it every 1000 msecs + */ + if (disp_time < 900) return; calc_rate(disp_time, io_bytes, disp_io_bytes, rate); @@ -365,7 +376,7 @@ void print_thread_status(void) iops_str[1] = num2str(iops[1], 4, 1, 0); l = printf(": [%s] [%s] [%s/%s /s] [%s/%s iops] [eta %s]", - run_str, perc_str, rate_str[0], rate_str[1], + run_str, perc_str, rate_str[0], rate_str[1], iops_str[0], iops_str[1], eta_str); if (l >= 0 && l < linelen_last) printf("%*s", linelen_last - l, ""); @@ -380,7 +391,7 @@ void print_thread_status(void) fflush(stdout); } -void print_status_init(int thread_number) +void print_status_init(int thr_number) { - run_str[thread_number] = 'P'; + run_str[thr_number] = 'P'; }