eta: adjust truncation case
[fio.git] / eta.c
CommitLineData
263e529f
JA
1/*
2 * Status and ETA code
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
7
8#include "fio.h"
0f38bbef 9#include "lib/pow2.h"
263e529f 10
3e2e48a7 11static char __run_str[REAL_MAX_JOBS + 1];
11155857 12static char run_str[__THREAD_RUNSTR_SZ(REAL_MAX_JOBS)];
3e2e48a7 13
8a1db9a1 14static void update_condensed_str(char *rstr, char *run_str_condensed)
3e2e48a7 15{
8a1db9a1
JA
16 if (*rstr) {
17 while (*rstr) {
595d9e77
AG
18 int nr = 1;
19
8a1db9a1
JA
20 *run_str_condensed++ = *rstr++;
21 while (*(rstr - 1) == *rstr) {
22 rstr++;
595d9e77
AG
23 nr++;
24 }
25 run_str_condensed += sprintf(run_str_condensed, "(%u),", nr);
3e2e48a7 26 }
595d9e77 27 run_str_condensed--;
3e2e48a7 28 }
595d9e77 29 *run_str_condensed = '\0';
6c784104 30}
263e529f
JA
31
32/*
33 * Sets the status of the 'td' in the printed status map.
34 */
35static void check_str_update(struct thread_data *td)
36{
3e2e48a7 37 char c = __run_str[td->thread_number - 1];
263e529f
JA
38
39 switch (td->runstate) {
5ec10eaa 40 case TD_REAPED:
4f7e57a4
JA
41 if (td->error)
42 c = 'X';
a5e371a6
JA
43 else if (td->sig)
44 c = 'K';
4f7e57a4
JA
45 else
46 c = '_';
5ec10eaa
JA
47 break;
48 case TD_EXITED:
49 c = 'E';
50 break;
b29ee5b3
JA
51 case TD_RAMP:
52 c = '/';
53 break;
5ec10eaa
JA
54 case TD_RUNNING:
55 if (td_rw(td)) {
e3b3f81e
JA
56 if (td_random(td)) {
57 if (td->o.rwmix[DDIR_READ] == 100)
58 c = 'r';
59 else if (td->o.rwmix[DDIR_WRITE] == 100)
60 c = 'w';
61 else
62 c = 'm';
63 } else {
64 if (td->o.rwmix[DDIR_READ] == 100)
65 c = 'R';
66 else if (td->o.rwmix[DDIR_WRITE] == 100)
67 c = 'W';
68 else
69 c = 'M';
70 }
5ec10eaa
JA
71 } else if (td_read(td)) {
72 if (td_random(td))
73 c = 'r';
74 else
75 c = 'R';
6eaf09d6 76 } else if (td_write(td)) {
5ec10eaa
JA
77 if (td_random(td))
78 c = 'w';
79 else
80 c = 'W';
6eaf09d6
SL
81 } else {
82 if (td_random(td))
83 c = 'd';
84 else
85 c = 'D';
5ec10eaa
JA
86 }
87 break;
b0f65863
JA
88 case TD_PRE_READING:
89 c = 'p';
90 break;
5ec10eaa
JA
91 case TD_VERIFYING:
92 c = 'V';
93 break;
94 case TD_FSYNCING:
95 c = 'F';
96 break;
3d434057
JA
97 case TD_FINISHING:
98 c = 'f';
99 break;
5ec10eaa
JA
100 case TD_CREATED:
101 c = 'C';
102 break;
103 case TD_INITIALIZED:
9c6f6316 104 case TD_SETTING_UP:
5ec10eaa
JA
105 c = 'I';
106 break;
107 case TD_NOT_CREATED:
108 c = 'P';
109 break;
110 default:
111 log_err("state %d\n", td->runstate);
263e529f
JA
112 }
113
3e2e48a7
JA
114 __run_str[td->thread_number - 1] = c;
115 update_condensed_str(__run_str, run_str);
263e529f
JA
116}
117
118/*
119 * Convert seconds to a printable string.
120 */
3e47bd25 121void eta_to_str(char *str, unsigned long eta_sec)
263e529f
JA
122{
123 unsigned int d, h, m, s;
165faf16 124 int disp_hour = 0;
263e529f 125
263775ad
LG
126 if (eta_sec == -1) {
127 sprintf(str, "--");
128 return;
129 }
130
263e529f
JA
131 s = eta_sec % 60;
132 eta_sec /= 60;
133 m = eta_sec % 60;
134 eta_sec /= 60;
135 h = eta_sec % 24;
136 eta_sec /= 24;
137 d = eta_sec;
138
165faf16
JA
139 if (d) {
140 disp_hour = 1;
1e97cce9 141 str += sprintf(str, "%02ud:", d);
263e529f 142 }
165faf16
JA
143
144 if (h || disp_hour)
1e97cce9 145 str += sprintf(str, "%02uh:", h);
263e529f 146
1e97cce9
JA
147 str += sprintf(str, "%02um:", m);
148 str += sprintf(str, "%02us", s);
263e529f
JA
149}
150
151/*
152 * Best effort calculation of the estimated pending runtime of a job.
153 */
263775ad 154static unsigned long thread_eta(struct thread_data *td)
263e529f
JA
155{
156 unsigned long long bytes_total, bytes_done;
1e97cce9 157 unsigned long eta_sec = 0;
b29ee5b3 158 unsigned long elapsed;
0de5b26f 159 uint64_t timeout;
b29ee5b3
JA
160
161 elapsed = (mtime_since_now(&td->epoch) + 999) / 1000;
0de5b26f 162 timeout = td->o.timeout / 1000000UL;
263e529f
JA
163
164 bytes_total = td->total_io_size;
165
263775ad
LG
166 if (td->flags & TD_F_NO_PROGRESS)
167 return -1;
168
2e3bd4c2
JA
169 if (td->o.fill_device && td->o.size == -1ULL) {
170 if (!td->fill_device_size || td->fill_device_size == -1ULL)
171 return 0;
172
173 bytes_total = td->fill_device_size;
174 }
175
0d73a2f9
JA
176 if (td->o.zone_size && td->o.zone_skip && bytes_total) {
177 unsigned int nr_zones;
178 uint64_t zone_bytes;
179
180 zone_bytes = bytes_total + td->o.zone_size + td->o.zone_skip;
181 nr_zones = (zone_bytes - 1) / (td->o.zone_size + td->o.zone_skip);
182 bytes_total -= nr_zones * td->o.zone_skip;
183 }
184
74939e38 185 /*
165eb050
JA
186 * if writing and verifying afterwards, bytes_total will be twice the
187 * size. In a mixed workload, verify phase will be the size of the
188 * first stage writes.
74939e38 189 */
0dd8377f 190 if (td->o.do_verify && td->o.verify && td_write(td)) {
165eb050
JA
191 if (td_rw(td)) {
192 unsigned int perc = 50;
193
194 if (td->o.rwmix[DDIR_WRITE])
195 perc = td->o.rwmix[DDIR_WRITE];
196
197 bytes_total += (bytes_total * perc) / 100;
198 } else
74939e38
JA
199 bytes_total <<= 1;
200 }
201
263e529f 202 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) {
cf4464ca 203 double perc, perc_t;
263e529f 204
342f4be4 205 bytes_done = ddir_rw_sum(td->io_bytes);
476882d7
JA
206
207 if (bytes_total) {
208 perc = (double) bytes_done / (double) bytes_total;
209 if (perc > 1.0)
210 perc = 1.0;
211 } else
212 perc = 0.0;
263e529f 213
cf4464ca 214 if (td->o.time_based) {
476882d7
JA
215 if (timeout) {
216 perc_t = (double) elapsed / (double) timeout;
ada6fcee 217 if (perc_t < perc)
476882d7
JA
218 perc = perc_t;
219 } else {
220 /*
221 * Will never hit, we can't have time_based
222 * without a timeout set.
223 */
224 perc = 0.0;
225 }
cf4464ca
JA
226 }
227
ae5eaf07
SW
228 if (perc == 0.0) {
229 eta_sec = timeout;
230 } else {
231 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
232 }
263e529f 233
d3eeeabc 234 if (td->o.timeout &&
0de5b26f
JA
235 eta_sec > (timeout + done_secs - elapsed))
236 eta_sec = timeout + done_secs - elapsed;
263e529f 237 } else if (td->runstate == TD_NOT_CREATED || td->runstate == TD_CREATED
b29ee5b3 238 || td->runstate == TD_INITIALIZED
714e85f3 239 || td->runstate == TD_SETTING_UP
b0f65863
JA
240 || td->runstate == TD_RAMP
241 || td->runstate == TD_PRE_READING) {
90eff1c9 242 int64_t t_eta = 0, r_eta = 0;
342f4be4 243 unsigned long long rate_bytes;
263e529f
JA
244
245 /*
246 * We can only guess - assume it'll run the full timeout
247 * if given, otherwise assume it'll run at the specified rate.
248 */
b29ee5b3 249 if (td->o.timeout) {
8a1db9a1 250 uint64_t __timeout = td->o.timeout;
0de5b26f
JA
251 uint64_t start_delay = td->o.start_delay;
252 uint64_t ramp_time = td->o.ramp_time;
253
ae5eaf07
SW
254 t_eta = __timeout + start_delay;
255 if (!td->ramp_time_over) {
256 t_eta += ramp_time;
257 }
0de5b26f 258 t_eta /= 1000000ULL;
b29ee5b3 259
3379b94e 260 if ((td->runstate == TD_RAMP) && in_ramp_time(td)) {
b29ee5b3
JA
261 unsigned long ramp_left;
262
cda99fa0 263 ramp_left = mtime_since_now(&td->epoch);
b29ee5b3
JA
264 ramp_left = (ramp_left + 999) / 1000;
265 if (ramp_left <= t_eta)
266 t_eta -= ramp_left;
267 }
268 }
819a4a96
SW
269 rate_bytes = 0;
270 if (td_read(td))
271 rate_bytes = td->o.rate[DDIR_READ];
272 if (td_write(td))
273 rate_bytes += td->o.rate[DDIR_WRITE];
274 if (td_trim(td))
275 rate_bytes += td->o.rate[DDIR_TRIM];
276
342f4be4 277 if (rate_bytes) {
819a4a96 278 r_eta = bytes_total / rate_bytes;
0de5b26f 279 r_eta += (td->o.start_delay / 1000000ULL);
263e529f
JA
280 }
281
282 if (r_eta && t_eta)
283 eta_sec = min(r_eta, t_eta);
284 else if (r_eta)
285 eta_sec = r_eta;
286 else if (t_eta)
287 eta_sec = t_eta;
288 else
289 eta_sec = 0;
290 } else {
291 /*
292 * thread is already done or waiting for fsync
293 */
294 eta_sec = 0;
295 }
296
297 return eta_sec;
298}
299
771e58be
JA
300static void calc_rate(int unified_rw_rep, unsigned long mtime,
301 unsigned long long *io_bytes,
90eff1c9 302 unsigned long long *prev_io_bytes, uint64_t *rate)
46fda8d0 303{
b7f05eb0
JA
304 int i;
305
6eaf09d6 306 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
1e271b21 307 unsigned long long diff, this_rate;
b7f05eb0
JA
308
309 diff = io_bytes[i] - prev_io_bytes[i];
1e271b21 310 if (mtime)
420b104a 311 this_rate = ((1000 * diff) / mtime) / 1024; /* KiB/s */
1e271b21
JA
312 else
313 this_rate = 0;
314
771e58be
JA
315 if (unified_rw_rep) {
316 rate[i] = 0;
1e271b21 317 rate[0] += this_rate;
771e58be 318 } else
1e271b21 319 rate[i] = this_rate;
6eaf09d6
SL
320
321 prev_io_bytes[i] = io_bytes[i];
b7f05eb0 322 }
46fda8d0 323}
5ec10eaa 324
771e58be
JA
325static void calc_iops(int unified_rw_rep, unsigned long mtime,
326 unsigned long long *io_iops,
adb02ba8
JA
327 unsigned long long *prev_io_iops, unsigned int *iops)
328{
6eaf09d6
SL
329 int i;
330
331 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
95c2f38e 332 unsigned long long diff, this_iops;
771e58be
JA
333
334 diff = io_iops[i] - prev_io_iops[i];
95c2f38e
JA
335 if (mtime)
336 this_iops = (diff * 1000) / mtime;
337 else
338 this_iops = 0;
339
771e58be
JA
340 if (unified_rw_rep) {
341 iops[i] = 0;
95c2f38e 342 iops[0] += this_iops;
771e58be 343 } else
95c2f38e 344 iops[i] = this_iops;
771e58be 345
6eaf09d6
SL
346 prev_io_iops[i] = io_iops[i];
347 }
adb02ba8
JA
348}
349
db37d890
JA
350/*
351 * Allow a little slack - if we're within 95% of the time, allow ETA.
352 */
353bool eta_time_within_slack(unsigned int time)
354{
355 return time > ((eta_interval_msec * 95) / 100);
356}
357
263e529f
JA
358/*
359 * Print status of the jobs we know about. This includes rate estimates,
360 * ETA, thread state, etc.
361 */
8aa89d70 362bool calc_thread_status(struct jobs_eta *je, int force)
263e529f 363{
34572e28 364 struct thread_data *td;
771e58be 365 int i, unified_rw_rep;
90eff1c9 366 uint64_t rate_time, disp_time, bw_avg_time, *eta_secs;
6eaf09d6
SL
367 unsigned long long io_bytes[DDIR_RWDIR_CNT];
368 unsigned long long io_iops[DDIR_RWDIR_CNT];
8b6a404c 369 struct timespec now;
46fda8d0 370
6eaf09d6
SL
371 static unsigned long long rate_io_bytes[DDIR_RWDIR_CNT];
372 static unsigned long long disp_io_bytes[DDIR_RWDIR_CNT];
373 static unsigned long long disp_io_iops[DDIR_RWDIR_CNT];
8b6a404c 374 static struct timespec rate_prev_time, disp_prev_time;
6043c579 375
af9c9fb3 376 if (!force) {
129fb2d4 377 if (!(output_format & FIO_OUTPUT_NORMAL) &&
fc47559b 378 f_out == stdout)
8aa89d70 379 return false;
f3afa57e 380 if (temp_stall_ts || eta_print == FIO_ETA_NEVER)
8aa89d70 381 return false;
e592a06b 382
af9c9fb3 383 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
8aa89d70 384 return false;
af9c9fb3 385 }
263e529f 386
342f4be4 387 if (!ddir_rw_sum(rate_io_bytes))
46fda8d0 388 fill_start_time(&rate_prev_time);
342f4be4 389 if (!ddir_rw_sum(disp_io_bytes))
46fda8d0 390 fill_start_time(&disp_prev_time);
6043c579 391
90eff1c9
SW
392 eta_secs = malloc(thread_number * sizeof(uint64_t));
393 memset(eta_secs, 0, thread_number * sizeof(uint64_t));
263e529f 394
b75a394f
JA
395 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
396
6eaf09d6
SL
397 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0;
398 io_iops[DDIR_READ] = io_iops[DDIR_WRITE] = io_iops[DDIR_TRIM] = 0;
bb3884d8 399 bw_avg_time = ULONG_MAX;
771e58be 400 unified_rw_rep = 0;
34572e28 401 for_each_td(td, i) {
771e58be 402 unified_rw_rep += td->o.unified_rw_rep;
b7f05eb0
JA
403 if (is_power_of_2(td->o.kb_base))
404 je->is_pow2 = 1;
ad705bcb 405 je->unit_base = td->o.unit_base;
2dc1bbeb
JA
406 if (td->o.bw_avg_time < bw_avg_time)
407 bw_avg_time = td->o.bw_avg_time;
46fda8d0 408 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
b0f65863 409 || td->runstate == TD_FSYNCING
3d434057
JA
410 || td->runstate == TD_PRE_READING
411 || td->runstate == TD_FINISHING) {
b75a394f 412 je->nr_running++;
242c38db 413 if (td_read(td)) {
c2e9cc4d
JA
414 je->t_rate[0] += td->o.rate[DDIR_READ];
415 je->t_iops[0] += td->o.rate_iops[DDIR_READ];
416 je->m_rate[0] += td->o.ratemin[DDIR_READ];
417 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ];
242c38db
JA
418 }
419 if (td_write(td)) {
c2e9cc4d
JA
420 je->t_rate[1] += td->o.rate[DDIR_WRITE];
421 je->t_iops[1] += td->o.rate_iops[DDIR_WRITE];
422 je->m_rate[1] += td->o.ratemin[DDIR_WRITE];
423 je->m_iops[1] += td->o.rate_iops_min[DDIR_WRITE];
242c38db 424 }
6eaf09d6 425 if (td_trim(td)) {
d79db122
JA
426 je->t_rate[2] += td->o.rate[DDIR_TRIM];
427 je->t_iops[2] += td->o.rate_iops[DDIR_TRIM];
428 je->m_rate[2] += td->o.ratemin[DDIR_TRIM];
429 je->m_iops[2] += td->o.rate_iops_min[DDIR_TRIM];
6eaf09d6
SL
430 }
431
b75a394f 432 je->files_open += td->nr_open_files;
b29ee5b3 433 } else if (td->runstate == TD_RAMP) {
b75a394f
JA
434 je->nr_running++;
435 je->nr_ramp++;
aef66dec 436 } else if (td->runstate == TD_SETTING_UP)
714e85f3 437 je->nr_setting_up++;
aef66dec 438 else if (td->runstate < TD_RUNNING)
b75a394f 439 je->nr_pending++;
263e529f 440
b75a394f 441 if (je->elapsed_sec >= 3)
b29ee5b3 442 eta_secs[i] = thread_eta(td);
263e529f
JA
443 else
444 eta_secs[i] = INT_MAX;
445
446 check_str_update(td);
b29ee5b3 447
714e85f3 448 if (td->runstate > TD_SETTING_UP) {
6eaf09d6 449 int ddir;
771e58be 450
c1f50f76 451 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
771e58be
JA
452 if (unified_rw_rep) {
453 io_bytes[0] += td->io_bytes[ddir];
454 io_iops[0] += td->io_blocks[ddir];
455 } else {
456 io_bytes[ddir] += td->io_bytes[ddir];
457 io_iops[ddir] += td->io_blocks[ddir];
458 }
6eaf09d6 459 }
b29ee5b3 460 }
263e529f
JA
461 }
462
3379b94e 463 if (exitall_on_terminate) {
b75a394f 464 je->eta_sec = INT_MAX;
3379b94e 465 for_each_td(td, i) {
b75a394f
JA
466 if (eta_secs[i] < je->eta_sec)
467 je->eta_sec = eta_secs[i];
9c5a3854 468 }
3379b94e
JR
469 } else {
470 unsigned long eta_stone = 0;
471
472 je->eta_sec = 0;
473 for_each_td(td, i) {
474 if ((td->runstate == TD_NOT_CREATED) && td->o.stonewall)
475 eta_stone += eta_secs[i];
476 else {
477 if (eta_secs[i] > je->eta_sec)
478 je->eta_sec = eta_secs[i];
479 }
480 }
481 je->eta_sec += eta_stone;
263e529f
JA
482 }
483
eecf272f
JA
484 free(eta_secs);
485
46fda8d0
JA
486 fio_gettime(&now, NULL);
487 rate_time = mtime_since(&rate_prev_time, &now);
488
b29ee5b3 489 if (write_bw_log && rate_time > bw_avg_time && !in_ramp_time(td)) {
771e58be
JA
490 calc_rate(unified_rw_rep, rate_time, io_bytes, rate_io_bytes,
491 je->rate);
46fda8d0 492 memcpy(&rate_prev_time, &now, sizeof(now));
af2fde19
SW
493 add_agg_sample(sample_val(je->rate[DDIR_READ]), DDIR_READ, 0);
494 add_agg_sample(sample_val(je->rate[DDIR_WRITE]), DDIR_WRITE, 0);
495 add_agg_sample(sample_val(je->rate[DDIR_TRIM]), DDIR_TRIM, 0);
6043c579
JA
496 }
497
46fda8d0 498 disp_time = mtime_since(&disp_prev_time, &now);
a5b01f1b 499
db37d890 500 if (!force && !eta_time_within_slack(disp_time))
8aa89d70 501 return false;
46fda8d0 502
771e58be
JA
503 calc_rate(unified_rw_rep, disp_time, io_bytes, disp_io_bytes, je->rate);
504 calc_iops(unified_rw_rep, disp_time, io_iops, disp_io_iops, je->iops);
adb02ba8 505
46fda8d0
JA
506 memcpy(&disp_prev_time, &now, sizeof(now));
507
af9c9fb3 508 if (!force && !je->nr_running && !je->nr_pending)
8aa89d70 509 return false;
b75a394f 510
1d1f45ae 511 je->nr_threads = thread_number;
6c784104
JA
512 update_condensed_str(__run_str, run_str);
513 memcpy(je->run_str, run_str, strlen(run_str));
8aa89d70 514 return true;
b75a394f
JA
515}
516
cf451d1e 517void display_thread_status(struct jobs_eta *je)
b75a394f 518{
8b6a404c 519 static struct timespec disp_eta_new_line;
e382e661 520 static int eta_new_line_init, eta_new_line_pending;
b75a394f
JA
521 static int linelen_last;
522 static int eta_good;
79074e7c 523 char output[REAL_MAX_JOBS + 512], *p = output;
b75a394f
JA
524 char eta_str[128];
525 double perc = 0.0;
b75a394f 526
cf451d1e
JA
527 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
528 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
529 eta_to_str(eta_str, je->eta_sec);
b75a394f
JA
530 }
531
e382e661
JA
532 if (eta_new_line_pending) {
533 eta_new_line_pending = 0;
534 p += sprintf(p, "\n");
535 }
536
cf451d1e 537 p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open);
d694a6a7
RE
538
539 /* rate limits, if any */
540 if (je->m_rate[0] || je->m_rate[1] || je->m_rate[2] ||
541 je->t_rate[0] || je->t_rate[1] || je->t_rate[2]) {
581e7141
JA
542 char *tr, *mr;
543
d694a6a7 544 mr = num2str(je->m_rate[0] + je->m_rate[1] + je->m_rate[2],
e883cb35 545 je->sig_figs, 0, je->is_pow2, N2S_BYTEPERSEC);
d694a6a7 546 tr = num2str(je->t_rate[0] + je->t_rate[1] + je->t_rate[2],
e883cb35 547 je->sig_figs, 0, je->is_pow2, N2S_BYTEPERSEC);
d694a6a7
RE
548
549 p += sprintf(p, ", %s-%s", mr, tr);
581e7141
JA
550 free(tr);
551 free(mr);
d694a6a7
RE
552 } else if (je->m_iops[0] || je->m_iops[1] || je->m_iops[2] ||
553 je->t_iops[0] || je->t_iops[1] || je->t_iops[2]) {
554 p += sprintf(p, ", %d-%d IOPS",
555 je->m_iops[0] + je->m_iops[1] + je->m_iops[2],
556 je->t_iops[0] + je->t_iops[1] + je->t_iops[2]);
3e47bd25 557 }
d694a6a7
RE
558
559 /* current run string, % done, bandwidth, iops, eta */
cf451d1e 560 if (je->eta_sec != INT_MAX && je->nr_running) {
0721d11e 561 char perc_str[32];
6eaf09d6
SL
562 char *iops_str[DDIR_RWDIR_CNT];
563 char *rate_str[DDIR_RWDIR_CNT];
79074e7c 564 size_t left;
adb02ba8 565 int l;
6eaf09d6 566 int ddir;
5ec10eaa 567
263775ad
LG
568 if ((!je->eta_sec && !eta_good) || je->nr_ramp == je->nr_running ||
569 je->eta_sec == -1)
d694a6a7 570 strcpy(perc_str, "-.-%");
cac58fd5 571 else {
714e85f3
JA
572 double mult = 100.0;
573
574 if (je->nr_setting_up && je->nr_running)
575 mult *= (1.0 - (double) je->nr_setting_up / (double) je->nr_running);
576
cac58fd5 577 eta_good = 1;
714e85f3 578 perc *= mult;
d694a6a7 579 sprintf(perc_str, "%3.1f%%", perc);
cac58fd5 580 }
0721d11e 581
c1f50f76 582 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
d694a6a7 583 rate_str[ddir] = num2str(je->rate[ddir], 4,
ad705bcb 584 1024, je->is_pow2, je->unit_base);
d694a6a7 585 iops_str[ddir] = num2str(je->iops[ddir], 4, 1, 0, N2S_NONE);
6eaf09d6 586 }
adb02ba8 587
38aef42d 588 left = sizeof(output) - (p - output) - 1;
79074e7c 589
d694a6a7
RE
590 if (je->rate[DDIR_TRIM] || je->iops[DDIR_TRIM])
591 l = snprintf(p, left,
592 ": [%s][%s][r=%s,w=%s,t=%s][r=%s,w=%s,t=%s IOPS][eta %s]",
6eaf09d6
SL
593 je->run_str, perc_str, rate_str[DDIR_READ],
594 rate_str[DDIR_WRITE], rate_str[DDIR_TRIM],
595 iops_str[DDIR_READ], iops_str[DDIR_WRITE],
596 iops_str[DDIR_TRIM], eta_str);
d694a6a7
RE
597 else
598 l = snprintf(p, left,
599 ": [%s][%s][r=%s,w=%s][r=%s,w=%s IOPS][eta %s]",
600 je->run_str, perc_str,
601 rate_str[DDIR_READ], rate_str[DDIR_WRITE],
602 iops_str[DDIR_READ], iops_str[DDIR_WRITE],
603 eta_str);
38aef42d
SW
604 /* If truncation occurred adjust l so p is on the null */
605 if (l >= left)
606 l = left - 1;
37db14fe 607 p += l;
adb02ba8 608 if (l >= 0 && l < linelen_last)
37db14fe 609 p += sprintf(p, "%*s", linelen_last - l, "");
adb02ba8 610 linelen_last = l;
d1bd7213 611
c1f50f76 612 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
6eaf09d6
SL
613 free(rate_str[ddir]);
614 free(iops_str[ddir]);
615 }
263e529f 616 }
37db14fe
JA
617 p += sprintf(p, "\r");
618
3e47bd25 619 printf("%s", output);
e382e661
JA
620
621 if (!eta_new_line_init) {
622 fio_gettime(&disp_eta_new_line, NULL);
623 eta_new_line_init = 1;
88038bc7 624 } else if (eta_new_line && mtime_since_now(&disp_eta_new_line) > eta_new_line) {
e382e661
JA
625 fio_gettime(&disp_eta_new_line, NULL);
626 eta_new_line_pending = 1;
627 }
628
3e47bd25 629 fflush(stdout);
263e529f
JA
630}
631
c5103619 632struct jobs_eta *get_jobs_eta(bool force, size_t *size)
cf451d1e 633{
1d1f45ae
JA
634 struct jobs_eta *je;
635
b814fb26 636 if (!thread_number)
723297c9 637 return NULL;
cf451d1e 638
e98e0eb5 639 *size = sizeof(*je) + THREAD_RUNSTR_SZ + 8;
723297c9 640 je = malloc(*size);
70034d87
RE
641 if (!je)
642 return NULL;
723297c9
JA
643 memset(je, 0, *size);
644
256bc54c 645 if (!calc_thread_status(je, force)) {
723297c9
JA
646 free(je);
647 return NULL;
648 }
649
05bff935 650 *size = sizeof(*je) + strlen((char *) je->run_str) + 1;
723297c9
JA
651 return je;
652}
653
654void print_thread_status(void)
655{
656 struct jobs_eta *je;
657 size_t size;
cf451d1e 658
c5103619 659 je = get_jobs_eta(false, &size);
723297c9 660 if (je)
1d1f45ae 661 display_thread_status(je);
cf451d1e 662
1d1f45ae 663 free(je);
cf451d1e 664}
b75a394f 665
2b13e716 666void print_status_init(int thr_number)
263e529f 667{
3e2e48a7
JA
668 __run_str[thr_number] = 'P';
669 update_condensed_str(__run_str, run_str);
263e529f 670}