blob: 1f67301a902124e6b922ca980bc5796928525eb3 [file] [log] [blame]
Jens Axboe263e5292006-10-18 15:37:01 +02001/*
2 * Status and ETA code
3 */
4#include <unistd.h>
5#include <fcntl.h>
6#include <string.h>
7
8#include "fio.h"
Jens Axboe263e5292006-10-18 15:37:01 +02009
Jens Axboefca70352011-07-06 20:12:54 +020010static char run_str[REAL_MAX_JOBS + 1];
Jens Axboe263e5292006-10-18 15:37:01 +020011
12/*
13 * Sets the status of the 'td' in the printed status map.
14 */
15static void check_str_update(struct thread_data *td)
16{
17 char c = run_str[td->thread_number - 1];
18
19 switch (td->runstate) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +010020 case TD_REAPED:
Jens Axboe4f7e57a2012-03-30 21:21:20 +020021 if (td->error)
22 c = 'X';
Jens Axboea5e371a2012-04-02 09:47:09 -070023 else if (td->sig)
24 c = 'K';
Jens Axboe4f7e57a2012-03-30 21:21:20 +020025 else
26 c = '_';
Jens Axboe5ec10ea2008-03-06 15:42:00 +010027 break;
28 case TD_EXITED:
29 c = 'E';
30 break;
Jens Axboeb29ee5b2008-09-11 10:17:26 +020031 case TD_RAMP:
32 c = '/';
33 break;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010034 case TD_RUNNING:
35 if (td_rw(td)) {
Jens Axboee3b3f812011-09-01 09:58:11 -060036 if (td_random(td)) {
37 if (td->o.rwmix[DDIR_READ] == 100)
38 c = 'r';
39 else if (td->o.rwmix[DDIR_WRITE] == 100)
40 c = 'w';
41 else
42 c = 'm';
43 } else {
44 if (td->o.rwmix[DDIR_READ] == 100)
45 c = 'R';
46 else if (td->o.rwmix[DDIR_WRITE] == 100)
47 c = 'W';
48 else
49 c = 'M';
50 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +010051 } else if (td_read(td)) {
52 if (td_random(td))
53 c = 'r';
54 else
55 c = 'R';
Shaohua Li6eaf09d2012-09-14 08:49:43 +020056 } else if (td_write(td)) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +010057 if (td_random(td))
58 c = 'w';
59 else
60 c = 'W';
Shaohua Li6eaf09d2012-09-14 08:49:43 +020061 } else {
62 if (td_random(td))
63 c = 'd';
64 else
65 c = 'D';
Jens Axboe5ec10ea2008-03-06 15:42:00 +010066 }
67 break;
Jens Axboeb0f65862009-05-20 11:52:15 +020068 case TD_PRE_READING:
69 c = 'p';
70 break;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010071 case TD_VERIFYING:
72 c = 'V';
73 break;
74 case TD_FSYNCING:
75 c = 'F';
76 break;
77 case TD_CREATED:
78 c = 'C';
79 break;
80 case TD_INITIALIZED:
Jens Axboe9c6f6312012-11-07 09:15:45 +010081 case TD_SETTING_UP:
Jens Axboe5ec10ea2008-03-06 15:42:00 +010082 c = 'I';
83 break;
84 case TD_NOT_CREATED:
85 c = 'P';
86 break;
87 default:
88 log_err("state %d\n", td->runstate);
Jens Axboe263e5292006-10-18 15:37:01 +020089 }
90
91 run_str[td->thread_number - 1] = c;
92}
93
94/*
95 * Convert seconds to a printable string.
96 */
Gurudas Pai9c02f6e2008-06-13 08:40:11 +020097static void eta_to_str(char *str, unsigned long eta_sec)
Jens Axboe263e5292006-10-18 15:37:01 +020098{
99 unsigned int d, h, m, s;
Jens Axboe165faf12007-02-07 11:30:37 +0100100 int disp_hour = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200101
Jens Axboe263e5292006-10-18 15:37:01 +0200102 s = eta_sec % 60;
103 eta_sec /= 60;
104 m = eta_sec % 60;
105 eta_sec /= 60;
106 h = eta_sec % 24;
107 eta_sec /= 24;
108 d = eta_sec;
109
Jens Axboe165faf12007-02-07 11:30:37 +0100110 if (d) {
111 disp_hour = 1;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100112 str += sprintf(str, "%02ud:", d);
Jens Axboe263e5292006-10-18 15:37:01 +0200113 }
Jens Axboe165faf12007-02-07 11:30:37 +0100114
115 if (h || disp_hour)
Jens Axboe1e97cce2006-12-05 11:44:16 +0100116 str += sprintf(str, "%02uh:", h);
Jens Axboe263e5292006-10-18 15:37:01 +0200117
Jens Axboe1e97cce2006-12-05 11:44:16 +0100118 str += sprintf(str, "%02um:", m);
119 str += sprintf(str, "%02us", s);
Jens Axboe263e5292006-10-18 15:37:01 +0200120}
121
122/*
123 * Best effort calculation of the estimated pending runtime of a job.
124 */
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200125static int thread_eta(struct thread_data *td)
Jens Axboe263e5292006-10-18 15:37:01 +0200126{
127 unsigned long long bytes_total, bytes_done;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100128 unsigned long eta_sec = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200129 unsigned long elapsed;
130
131 elapsed = (mtime_since_now(&td->epoch) + 999) / 1000;
Jens Axboe263e5292006-10-18 15:37:01 +0200132
133 bytes_total = td->total_io_size;
134
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200135 if (td->o.fill_device && td->o.size == -1ULL) {
136 if (!td->fill_device_size || td->fill_device_size == -1ULL)
137 return 0;
138
139 bytes_total = td->fill_device_size;
140 }
141
Jens Axboe74939e32006-10-19 20:37:12 +0200142 /*
143 * if writing, bytes_total will be twice the size. If mixing,
144 * assume a 50/50 split and thus bytes_total will be 50% larger.
145 */
Jens Axboe0dd83772007-09-04 12:38:28 +0200146 if (td->o.do_verify && td->o.verify && td_write(td)) {
Jens Axboe74939e32006-10-19 20:37:12 +0200147 if (td_rw(td))
148 bytes_total = bytes_total * 3 / 2;
149 else
150 bytes_total <<= 1;
151 }
152
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100153 if (td->o.zone_size && td->o.zone_skip)
154 bytes_total /= (td->o.zone_skip / td->o.zone_size);
Jens Axboe263e5292006-10-18 15:37:01 +0200155
156 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) {
Jens Axboecf4464c2007-04-17 20:14:42 +0200157 double perc, perc_t;
Jens Axboe263e5292006-10-18 15:37:01 +0200158
Jens Axboe342f4be2012-09-14 08:59:20 +0200159 bytes_done = ddir_rw_sum(td->io_bytes);
Jens Axboe263e5292006-10-18 15:37:01 +0200160 perc = (double) bytes_done / (double) bytes_total;
161 if (perc > 1.0)
162 perc = 1.0;
163
Jens Axboecf4464c2007-04-17 20:14:42 +0200164 if (td->o.time_based) {
165 perc_t = (double) elapsed / (double) td->o.timeout;
166 if (perc_t < perc)
167 perc = perc_t;
168 }
169
Jens Axboe1e97cce2006-12-05 11:44:16 +0100170 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200171
Jens Axboed3eeeab2008-04-06 12:19:05 +0200172 if (td->o.timeout &&
173 eta_sec > (td->o.timeout + done_secs - elapsed))
174 eta_sec = td->o.timeout + done_secs - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200175 } else if (td->runstate == TD_NOT_CREATED || td->runstate == TD_CREATED
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200176 || td->runstate == TD_INITIALIZED
Jens Axboeb0f65862009-05-20 11:52:15 +0200177 || td->runstate == TD_RAMP
178 || td->runstate == TD_PRE_READING) {
Jens Axboe263e5292006-10-18 15:37:01 +0200179 int t_eta = 0, r_eta = 0;
Jens Axboe342f4be2012-09-14 08:59:20 +0200180 unsigned long long rate_bytes;
Jens Axboe263e5292006-10-18 15:37:01 +0200181
182 /*
183 * We can only guess - assume it'll run the full timeout
184 * if given, otherwise assume it'll run at the specified rate.
185 */
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200186 if (td->o.timeout) {
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100187 t_eta = td->o.timeout + td->o.start_delay +
188 td->o.ramp_time;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200189
190 if (in_ramp_time(td)) {
191 unsigned long ramp_left;
192
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100193 ramp_left = mtime_since_now(&td->epoch);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200194 ramp_left = (ramp_left + 999) / 1000;
195 if (ramp_left <= t_eta)
196 t_eta -= ramp_left;
197 }
198 }
Jens Axboe342f4be2012-09-14 08:59:20 +0200199 rate_bytes = ddir_rw_sum(td->o.rate);
200 if (rate_bytes) {
201 r_eta = (bytes_total / 1024) / rate_bytes;
Jens Axboed3eeeab2008-04-06 12:19:05 +0200202 r_eta += td->o.start_delay;
Jens Axboe263e5292006-10-18 15:37:01 +0200203 }
204
205 if (r_eta && t_eta)
206 eta_sec = min(r_eta, t_eta);
207 else if (r_eta)
208 eta_sec = r_eta;
209 else if (t_eta)
210 eta_sec = t_eta;
211 else
212 eta_sec = 0;
213 } else {
214 /*
215 * thread is already done or waiting for fsync
216 */
217 eta_sec = 0;
218 }
219
220 return eta_sec;
221}
222
Jens Axboe46fda8d2007-02-11 00:49:30 +0100223static void calc_rate(unsigned long mtime, unsigned long long *io_bytes,
224 unsigned long long *prev_io_bytes, unsigned int *rate)
225{
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200226 int i;
227
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200228 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200229 unsigned long long diff;
230
231 diff = io_bytes[i] - prev_io_bytes[i];
232 rate[i] = ((1000 * diff) / mtime) / 1024;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200233
234 prev_io_bytes[i] = io_bytes[i];
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200235 }
Jens Axboe46fda8d2007-02-11 00:49:30 +0100236}
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100237
Jens Axboeadb02ba2009-06-03 10:47:44 +0200238static void calc_iops(unsigned long mtime, unsigned long long *io_iops,
239 unsigned long long *prev_io_iops, unsigned int *iops)
240{
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200241 int i;
242
243 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
244 iops[i] = ((io_iops[i] - prev_io_iops[i]) * 1000) / mtime;
245 prev_io_iops[i] = io_iops[i];
246 }
Jens Axboeadb02ba2009-06-03 10:47:44 +0200247}
248
Jens Axboe263e5292006-10-18 15:37:01 +0200249/*
250 * Print status of the jobs we know about. This includes rate estimates,
251 * ETA, thread state, etc.
252 */
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200253int calc_thread_status(struct jobs_eta *je, int force)
Jens Axboe263e5292006-10-18 15:37:01 +0200254{
Jens Axboe34572e22006-10-20 09:33:18 +0200255 struct thread_data *td;
Jens Axboeb75a3942011-10-03 16:03:43 +0200256 int i;
257 unsigned long rate_time, disp_time, bw_avg_time, *eta_secs;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200258 unsigned long long io_bytes[DDIR_RWDIR_CNT];
259 unsigned long long io_iops[DDIR_RWDIR_CNT];
Jens Axboe46fda8d2007-02-11 00:49:30 +0100260 struct timeval now;
261
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200262 static unsigned long long rate_io_bytes[DDIR_RWDIR_CNT];
263 static unsigned long long disp_io_bytes[DDIR_RWDIR_CNT];
264 static unsigned long long disp_io_iops[DDIR_RWDIR_CNT];
Jens Axboe46fda8d2007-02-11 00:49:30 +0100265 static struct timeval rate_prev_time, disp_prev_time;
Jens Axboe6043c572006-11-03 11:37:47 +0100266
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200267 if (!force) {
Jens Axboef3afa572012-09-17 13:34:16 +0200268 if (output_format != FIO_OUTPUT_NORMAL)
269 return 0;
270 if (temp_stall_ts || eta_print == FIO_ETA_NEVER)
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200271 return 0;
Aaron Carrolle592a062007-09-14 09:49:41 +0200272
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200273 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
274 return 0;
275 }
Jens Axboe263e5292006-10-18 15:37:01 +0200276
Jens Axboe342f4be2012-09-14 08:59:20 +0200277 if (!ddir_rw_sum(rate_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100278 fill_start_time(&rate_prev_time);
Jens Axboe342f4be2012-09-14 08:59:20 +0200279 if (!ddir_rw_sum(disp_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100280 fill_start_time(&disp_prev_time);
Jens Axboe6043c572006-11-03 11:37:47 +0100281
Jens Axboed3eeeab2008-04-06 12:19:05 +0200282 eta_secs = malloc(thread_number * sizeof(unsigned long));
283 memset(eta_secs, 0, thread_number * sizeof(unsigned long));
Jens Axboe263e5292006-10-18 15:37:01 +0200284
Jens Axboeb75a3942011-10-03 16:03:43 +0200285 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
286
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200287 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0;
288 io_iops[DDIR_READ] = io_iops[DDIR_WRITE] = io_iops[DDIR_TRIM] = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100289 bw_avg_time = ULONG_MAX;
Jens Axboe34572e22006-10-20 09:33:18 +0200290 for_each_td(td, i) {
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200291 if (is_power_of_2(td->o.kb_base))
292 je->is_pow2 = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100293 if (td->o.bw_avg_time < bw_avg_time)
294 bw_avg_time = td->o.bw_avg_time;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100295 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
Jens Axboeb0f65862009-05-20 11:52:15 +0200296 || td->runstate == TD_FSYNCING
297 || td->runstate == TD_PRE_READING) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200298 je->nr_running++;
Jens Axboe242c38d2012-08-20 14:44:22 +0200299 if (td_read(td)) {
300 je->t_rate += td->o.rate[DDIR_READ];
301 je->t_iops += td->o.rate_iops[DDIR_READ];
302 je->m_rate += td->o.ratemin[DDIR_READ];
303 je->m_iops += td->o.rate_iops_min[DDIR_READ];
304 }
305 if (td_write(td)) {
306 je->t_rate += td->o.rate[DDIR_WRITE];
307 je->t_iops += td->o.rate_iops[DDIR_WRITE];
308 je->m_rate += td->o.ratemin[DDIR_WRITE];
309 je->m_iops += td->o.rate_iops_min[DDIR_WRITE];
310 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200311 if (td_trim(td)) {
312 je->t_rate += td->o.rate[DDIR_TRIM];
313 je->t_iops += td->o.rate_iops[DDIR_TRIM];
314 je->m_rate += td->o.ratemin[DDIR_TRIM];
315 je->m_iops += td->o.rate_iops_min[DDIR_TRIM];
316 }
317
Jens Axboeb75a3942011-10-03 16:03:43 +0200318 je->files_open += td->nr_open_files;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200319 } else if (td->runstate == TD_RAMP) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200320 je->nr_running++;
321 je->nr_ramp++;
Jens Axboe9c6f6312012-11-07 09:15:45 +0100322 } else if (td->runstate == TD_SETTING_UP)
323 je->nr_running++;
324 else if (td->runstate < TD_RUNNING)
Jens Axboeb75a3942011-10-03 16:03:43 +0200325 je->nr_pending++;
Jens Axboe263e5292006-10-18 15:37:01 +0200326
Jens Axboeb75a3942011-10-03 16:03:43 +0200327 if (je->elapsed_sec >= 3)
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200328 eta_secs[i] = thread_eta(td);
Jens Axboe263e5292006-10-18 15:37:01 +0200329 else
330 eta_secs[i] = INT_MAX;
331
332 check_str_update(td);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200333
334 if (td->runstate > TD_RAMP) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200335 int ddir;
336 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
337 io_bytes[ddir] += td->io_bytes[ddir];
338 io_iops[ddir] += td->io_blocks[ddir];
339 }
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200340 }
Jens Axboe263e5292006-10-18 15:37:01 +0200341 }
342
343 if (exitall_on_terminate)
Jens Axboeb75a3942011-10-03 16:03:43 +0200344 je->eta_sec = INT_MAX;
Jens Axboe263e5292006-10-18 15:37:01 +0200345 else
Jens Axboeb75a3942011-10-03 16:03:43 +0200346 je->eta_sec = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200347
Jens Axboe34572e22006-10-20 09:33:18 +0200348 for_each_td(td, i) {
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200349 if (exitall_on_terminate) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200350 if (eta_secs[i] < je->eta_sec)
351 je->eta_sec = eta_secs[i];
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200352 } else {
Jens Axboeb75a3942011-10-03 16:03:43 +0200353 if (eta_secs[i] > je->eta_sec)
354 je->eta_sec = eta_secs[i];
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200355 }
Jens Axboe263e5292006-10-18 15:37:01 +0200356 }
357
Jens Axboeeecf2722006-10-20 14:00:36 +0200358 free(eta_secs);
359
Jens Axboe46fda8d2007-02-11 00:49:30 +0100360 fio_gettime(&now, NULL);
361 rate_time = mtime_since(&rate_prev_time, &now);
362
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200363 if (write_bw_log && rate_time > bw_avg_time && !in_ramp_time(td)) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200364 calc_rate(rate_time, io_bytes, rate_io_bytes, je->rate);
Jens Axboe46fda8d2007-02-11 00:49:30 +0100365 memcpy(&rate_prev_time, &now, sizeof(now));
Jens Axboeb75a3942011-10-03 16:03:43 +0200366 add_agg_sample(je->rate[DDIR_READ], DDIR_READ, 0);
367 add_agg_sample(je->rate[DDIR_WRITE], DDIR_WRITE, 0);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200368 add_agg_sample(je->rate[DDIR_TRIM], DDIR_TRIM, 0);
Jens Axboe6043c572006-11-03 11:37:47 +0100369 }
370
Jens Axboe46fda8d2007-02-11 00:49:30 +0100371 disp_time = mtime_since(&disp_prev_time, &now);
Jens Axboea5b01f12010-11-11 09:19:49 +0100372
373 /*
374 * Allow a little slack, the target is to print it every 1000 msecs
375 */
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200376 if (!force && disp_time < 900)
Jens Axboeb75a3942011-10-03 16:03:43 +0200377 return 0;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100378
Jens Axboeb75a3942011-10-03 16:03:43 +0200379 calc_rate(disp_time, io_bytes, disp_io_bytes, je->rate);
380 calc_iops(disp_time, io_iops, disp_io_iops, je->iops);
Jens Axboeadb02ba2009-06-03 10:47:44 +0200381
Jens Axboe46fda8d2007-02-11 00:49:30 +0100382 memcpy(&disp_prev_time, &now, sizeof(now));
383
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200384 if (!force && !je->nr_running && !je->nr_pending)
Jens Axboeb75a3942011-10-03 16:03:43 +0200385 return 0;
386
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200387 je->nr_threads = thread_number;
388 memcpy(je->run_str, run_str, thread_number * sizeof(char));
389
Jens Axboeb75a3942011-10-03 16:03:43 +0200390 return 1;
391}
392
Jens Axboecf451d12011-10-03 16:48:30 +0200393void display_thread_status(struct jobs_eta *je)
Jens Axboeb75a3942011-10-03 16:03:43 +0200394{
Jens Axboeb75a3942011-10-03 16:03:43 +0200395 static int linelen_last;
396 static int eta_good;
Jens Axboe79074e72012-04-18 20:39:48 +0200397 char output[REAL_MAX_JOBS + 512], *p = output;
Jens Axboeb75a3942011-10-03 16:03:43 +0200398 char eta_str[128];
399 double perc = 0.0;
Jens Axboeb75a3942011-10-03 16:03:43 +0200400
Jens Axboecf451d12011-10-03 16:48:30 +0200401 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
402 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
403 eta_to_str(eta_str, je->eta_sec);
Jens Axboeb75a3942011-10-03 16:03:43 +0200404 }
405
Jens Axboecf451d12011-10-03 16:48:30 +0200406 p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open);
407 if (je->m_rate || je->t_rate) {
Jens Axboe581e7142009-06-09 12:47:16 +0200408 char *tr, *mr;
409
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200410 mr = num2str(je->m_rate, 4, 0, je->is_pow2);
411 tr = num2str(je->t_rate, 4, 0, je->is_pow2);
Jens Axboe37db14f2011-09-30 17:00:42 -0600412 p += sprintf(p, ", CR=%s/%s KB/s", tr, mr);
Jens Axboe581e7142009-06-09 12:47:16 +0200413 free(tr);
414 free(mr);
Jens Axboecf451d12011-10-03 16:48:30 +0200415 } else if (je->m_iops || je->t_iops)
416 p += sprintf(p, ", CR=%d/%d IOPS", je->t_iops, je->m_iops);
417 if (je->eta_sec != INT_MAX && je->nr_running) {
Jens Axboe0721d112008-06-05 09:03:05 +0200418 char perc_str[32];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200419 char *iops_str[DDIR_RWDIR_CNT];
420 char *rate_str[DDIR_RWDIR_CNT];
Jens Axboe79074e72012-04-18 20:39:48 +0200421 size_t left;
Jens Axboeadb02ba2009-06-03 10:47:44 +0200422 int l;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200423 int ddir;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100424
Jens Axboecf451d12011-10-03 16:48:30 +0200425 if ((!je->eta_sec && !eta_good) || je->nr_ramp == je->nr_running)
Jens Axboecac58fd2008-06-06 01:17:03 +0200426 strcpy(perc_str, "-.-% done");
427 else {
428 eta_good = 1;
429 perc *= 100.0;
Jens Axboe0721d112008-06-05 09:03:05 +0200430 sprintf(perc_str, "%3.1f%% done", perc);
Jens Axboecac58fd2008-06-06 01:17:03 +0200431 }
Jens Axboe0721d112008-06-05 09:03:05 +0200432
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200433 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
434 rate_str[ddir] = num2str(je->rate[ddir], 5,
435 1024, je->is_pow2);
436 iops_str[ddir] = num2str(je->iops[ddir], 4, 1, 0);
437 }
Jens Axboeadb02ba2009-06-03 10:47:44 +0200438
Jens Axboe79074e72012-04-18 20:39:48 +0200439 left = sizeof(output) - (p - output) - 1;
440
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200441 l = snprintf(p, left, ": [%s] [%s] [%s/%s/%s /s] [%s/%s/%s iops] [eta %s]",
442 je->run_str, perc_str, rate_str[DDIR_READ],
443 rate_str[DDIR_WRITE], rate_str[DDIR_TRIM],
444 iops_str[DDIR_READ], iops_str[DDIR_WRITE],
445 iops_str[DDIR_TRIM], eta_str);
Jens Axboe37db14f2011-09-30 17:00:42 -0600446 p += l;
Jens Axboeadb02ba2009-06-03 10:47:44 +0200447 if (l >= 0 && l < linelen_last)
Jens Axboe37db14f2011-09-30 17:00:42 -0600448 p += sprintf(p, "%*s", linelen_last - l, "");
Jens Axboeadb02ba2009-06-03 10:47:44 +0200449 linelen_last = l;
Jens Axboed1bd7212009-06-03 10:53:45 +0200450
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200451 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
452 free(rate_str[ddir]);
453 free(iops_str[ddir]);
454 }
Jens Axboe263e5292006-10-18 15:37:01 +0200455 }
Jens Axboe37db14f2011-09-30 17:00:42 -0600456 p += sprintf(p, "\r");
457
Jens Axboecf451d12011-10-03 16:48:30 +0200458 printf("%s", output);
459 fflush(stdout);
Jens Axboe263e5292006-10-18 15:37:01 +0200460}
461
Jens Axboecf451d12011-10-03 16:48:30 +0200462void print_thread_status(void)
463{
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200464 struct jobs_eta *je;
Jens Axboeb814fb22011-10-12 09:20:34 +0200465 size_t size;
Jens Axboecf451d12011-10-03 16:48:30 +0200466
Jens Axboeb814fb22011-10-12 09:20:34 +0200467 if (!thread_number)
468 return;
Jens Axboecf451d12011-10-03 16:48:30 +0200469
Jens Axboeb814fb22011-10-12 09:20:34 +0200470 size = sizeof(*je) + thread_number * sizeof(char) + 1;
471 je = malloc(size);
472 memset(je, 0, size);
Jens Axboecf451d12011-10-03 16:48:30 +0200473
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200474 if (calc_thread_status(je, 0))
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200475 display_thread_status(je);
476
477 free(je);
Jens Axboecf451d12011-10-03 16:48:30 +0200478}
Jens Axboeb75a3942011-10-03 16:03:43 +0200479
Jens Axboe2b13e712011-01-19 14:04:16 -0700480void print_status_init(int thr_number)
Jens Axboe263e5292006-10-18 15:37:01 +0200481{
Jens Axboe2b13e712011-01-19 14:04:16 -0700482 run_str[thr_number] = 'P';
Jens Axboe263e5292006-10-18 15:37:01 +0200483}