blob: 1caee4996d399209c507f88b57801f3f35e96c64 [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:
81 c = 'I';
82 break;
83 case TD_NOT_CREATED:
84 c = 'P';
85 break;
86 default:
87 log_err("state %d\n", td->runstate);
Jens Axboe263e5292006-10-18 15:37:01 +020088 }
89
90 run_str[td->thread_number - 1] = c;
91}
92
93/*
94 * Convert seconds to a printable string.
95 */
Gurudas Pai9c02f6e2008-06-13 08:40:11 +020096static void eta_to_str(char *str, unsigned long eta_sec)
Jens Axboe263e5292006-10-18 15:37:01 +020097{
98 unsigned int d, h, m, s;
Jens Axboe165faf12007-02-07 11:30:37 +010099 int disp_hour = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200100
Jens Axboe263e5292006-10-18 15:37:01 +0200101 s = eta_sec % 60;
102 eta_sec /= 60;
103 m = eta_sec % 60;
104 eta_sec /= 60;
105 h = eta_sec % 24;
106 eta_sec /= 24;
107 d = eta_sec;
108
Jens Axboe165faf12007-02-07 11:30:37 +0100109 if (d) {
110 disp_hour = 1;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100111 str += sprintf(str, "%02ud:", d);
Jens Axboe263e5292006-10-18 15:37:01 +0200112 }
Jens Axboe165faf12007-02-07 11:30:37 +0100113
114 if (h || disp_hour)
Jens Axboe1e97cce2006-12-05 11:44:16 +0100115 str += sprintf(str, "%02uh:", h);
Jens Axboe263e5292006-10-18 15:37:01 +0200116
Jens Axboe1e97cce2006-12-05 11:44:16 +0100117 str += sprintf(str, "%02um:", m);
118 str += sprintf(str, "%02us", s);
Jens Axboe263e5292006-10-18 15:37:01 +0200119}
120
121/*
122 * Best effort calculation of the estimated pending runtime of a job.
123 */
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200124static int thread_eta(struct thread_data *td)
Jens Axboe263e5292006-10-18 15:37:01 +0200125{
126 unsigned long long bytes_total, bytes_done;
Jens Axboe1e97cce2006-12-05 11:44:16 +0100127 unsigned long eta_sec = 0;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200128 unsigned long elapsed;
129
130 elapsed = (mtime_since_now(&td->epoch) + 999) / 1000;
Jens Axboe263e5292006-10-18 15:37:01 +0200131
132 bytes_total = td->total_io_size;
133
Jens Axboe2e3bd4c2010-05-17 12:29:57 +0200134 if (td->o.fill_device && td->o.size == -1ULL) {
135 if (!td->fill_device_size || td->fill_device_size == -1ULL)
136 return 0;
137
138 bytes_total = td->fill_device_size;
139 }
140
Jens Axboe74939e32006-10-19 20:37:12 +0200141 /*
142 * if writing, bytes_total will be twice the size. If mixing,
143 * assume a 50/50 split and thus bytes_total will be 50% larger.
144 */
Jens Axboe0dd83772007-09-04 12:38:28 +0200145 if (td->o.do_verify && td->o.verify && td_write(td)) {
Jens Axboe74939e32006-10-19 20:37:12 +0200146 if (td_rw(td))
147 bytes_total = bytes_total * 3 / 2;
148 else
149 bytes_total <<= 1;
150 }
151
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100152 if (td->o.zone_size && td->o.zone_skip)
153 bytes_total /= (td->o.zone_skip / td->o.zone_size);
Jens Axboe263e5292006-10-18 15:37:01 +0200154
155 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING) {
Jens Axboecf4464c2007-04-17 20:14:42 +0200156 double perc, perc_t;
Jens Axboe263e5292006-10-18 15:37:01 +0200157
Jens Axboe342f4be2012-09-14 08:59:20 +0200158 bytes_done = ddir_rw_sum(td->io_bytes);
Jens Axboe263e5292006-10-18 15:37:01 +0200159 perc = (double) bytes_done / (double) bytes_total;
160 if (perc > 1.0)
161 perc = 1.0;
162
Jens Axboecf4464c2007-04-17 20:14:42 +0200163 if (td->o.time_based) {
164 perc_t = (double) elapsed / (double) td->o.timeout;
165 if (perc_t < perc)
166 perc = perc_t;
167 }
168
Jens Axboe1e97cce2006-12-05 11:44:16 +0100169 eta_sec = (unsigned long) (elapsed * (1.0 / perc)) - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200170
Jens Axboed3eeeab2008-04-06 12:19:05 +0200171 if (td->o.timeout &&
172 eta_sec > (td->o.timeout + done_secs - elapsed))
173 eta_sec = td->o.timeout + done_secs - elapsed;
Jens Axboe263e5292006-10-18 15:37:01 +0200174 } else if (td->runstate == TD_NOT_CREATED || td->runstate == TD_CREATED
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200175 || td->runstate == TD_INITIALIZED
Jens Axboeb0f65862009-05-20 11:52:15 +0200176 || td->runstate == TD_RAMP
177 || td->runstate == TD_PRE_READING) {
Jens Axboe263e5292006-10-18 15:37:01 +0200178 int t_eta = 0, r_eta = 0;
Jens Axboe342f4be2012-09-14 08:59:20 +0200179 unsigned long long rate_bytes;
Jens Axboe263e5292006-10-18 15:37:01 +0200180
181 /*
182 * We can only guess - assume it'll run the full timeout
183 * if given, otherwise assume it'll run at the specified rate.
184 */
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200185 if (td->o.timeout) {
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100186 t_eta = td->o.timeout + td->o.start_delay +
187 td->o.ramp_time;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200188
189 if (in_ramp_time(td)) {
190 unsigned long ramp_left;
191
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100192 ramp_left = mtime_since_now(&td->epoch);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200193 ramp_left = (ramp_left + 999) / 1000;
194 if (ramp_left <= t_eta)
195 t_eta -= ramp_left;
196 }
197 }
Jens Axboe342f4be2012-09-14 08:59:20 +0200198 rate_bytes = ddir_rw_sum(td->o.rate);
199 if (rate_bytes) {
200 r_eta = (bytes_total / 1024) / rate_bytes;
Jens Axboed3eeeab2008-04-06 12:19:05 +0200201 r_eta += td->o.start_delay;
Jens Axboe263e5292006-10-18 15:37:01 +0200202 }
203
204 if (r_eta && t_eta)
205 eta_sec = min(r_eta, t_eta);
206 else if (r_eta)
207 eta_sec = r_eta;
208 else if (t_eta)
209 eta_sec = t_eta;
210 else
211 eta_sec = 0;
212 } else {
213 /*
214 * thread is already done or waiting for fsync
215 */
216 eta_sec = 0;
217 }
218
219 return eta_sec;
220}
221
Jens Axboe46fda8d2007-02-11 00:49:30 +0100222static void calc_rate(unsigned long mtime, unsigned long long *io_bytes,
223 unsigned long long *prev_io_bytes, unsigned int *rate)
224{
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200225 int i;
226
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200227 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200228 unsigned long long diff;
229
230 diff = io_bytes[i] - prev_io_bytes[i];
231 rate[i] = ((1000 * diff) / mtime) / 1024;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200232
233 prev_io_bytes[i] = io_bytes[i];
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200234 }
Jens Axboe46fda8d2007-02-11 00:49:30 +0100235}
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100236
Jens Axboeadb02ba2009-06-03 10:47:44 +0200237static void calc_iops(unsigned long mtime, unsigned long long *io_iops,
238 unsigned long long *prev_io_iops, unsigned int *iops)
239{
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200240 int i;
241
242 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
243 iops[i] = ((io_iops[i] - prev_io_iops[i]) * 1000) / mtime;
244 prev_io_iops[i] = io_iops[i];
245 }
Jens Axboeadb02ba2009-06-03 10:47:44 +0200246}
247
Jens Axboe263e5292006-10-18 15:37:01 +0200248/*
249 * Print status of the jobs we know about. This includes rate estimates,
250 * ETA, thread state, etc.
251 */
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200252int calc_thread_status(struct jobs_eta *je, int force)
Jens Axboe263e5292006-10-18 15:37:01 +0200253{
Jens Axboe34572e22006-10-20 09:33:18 +0200254 struct thread_data *td;
Jens Axboeb75a3942011-10-03 16:03:43 +0200255 int i;
256 unsigned long rate_time, disp_time, bw_avg_time, *eta_secs;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200257 unsigned long long io_bytes[DDIR_RWDIR_CNT];
258 unsigned long long io_iops[DDIR_RWDIR_CNT];
Jens Axboe46fda8d2007-02-11 00:49:30 +0100259 struct timeval now;
260
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200261 static unsigned long long rate_io_bytes[DDIR_RWDIR_CNT];
262 static unsigned long long disp_io_bytes[DDIR_RWDIR_CNT];
263 static unsigned long long disp_io_iops[DDIR_RWDIR_CNT];
Jens Axboe46fda8d2007-02-11 00:49:30 +0100264 static struct timeval rate_prev_time, disp_prev_time;
Jens Axboe6043c572006-11-03 11:37:47 +0100265
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200266 if (!force) {
267 if (temp_stall_ts || terse_output || eta_print == FIO_ETA_NEVER)
268 return 0;
Aaron Carrolle592a062007-09-14 09:49:41 +0200269
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200270 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
271 return 0;
272 }
Jens Axboe263e5292006-10-18 15:37:01 +0200273
Jens Axboe342f4be2012-09-14 08:59:20 +0200274 if (!ddir_rw_sum(rate_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100275 fill_start_time(&rate_prev_time);
Jens Axboe342f4be2012-09-14 08:59:20 +0200276 if (!ddir_rw_sum(disp_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100277 fill_start_time(&disp_prev_time);
Jens Axboe6043c572006-11-03 11:37:47 +0100278
Jens Axboed3eeeab2008-04-06 12:19:05 +0200279 eta_secs = malloc(thread_number * sizeof(unsigned long));
280 memset(eta_secs, 0, thread_number * sizeof(unsigned long));
Jens Axboe263e5292006-10-18 15:37:01 +0200281
Jens Axboeb75a3942011-10-03 16:03:43 +0200282 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
283
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200284 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0;
285 io_iops[DDIR_READ] = io_iops[DDIR_WRITE] = io_iops[DDIR_TRIM] = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100286 bw_avg_time = ULONG_MAX;
Jens Axboe34572e22006-10-20 09:33:18 +0200287 for_each_td(td, i) {
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200288 if (is_power_of_2(td->o.kb_base))
289 je->is_pow2 = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100290 if (td->o.bw_avg_time < bw_avg_time)
291 bw_avg_time = td->o.bw_avg_time;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100292 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
Jens Axboeb0f65862009-05-20 11:52:15 +0200293 || td->runstate == TD_FSYNCING
294 || td->runstate == TD_PRE_READING) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200295 je->nr_running++;
Jens Axboe242c38d2012-08-20 14:44:22 +0200296 if (td_read(td)) {
297 je->t_rate += td->o.rate[DDIR_READ];
298 je->t_iops += td->o.rate_iops[DDIR_READ];
299 je->m_rate += td->o.ratemin[DDIR_READ];
300 je->m_iops += td->o.rate_iops_min[DDIR_READ];
301 }
302 if (td_write(td)) {
303 je->t_rate += td->o.rate[DDIR_WRITE];
304 je->t_iops += td->o.rate_iops[DDIR_WRITE];
305 je->m_rate += td->o.ratemin[DDIR_WRITE];
306 je->m_iops += td->o.rate_iops_min[DDIR_WRITE];
307 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200308 if (td_trim(td)) {
309 je->t_rate += td->o.rate[DDIR_TRIM];
310 je->t_iops += td->o.rate_iops[DDIR_TRIM];
311 je->m_rate += td->o.ratemin[DDIR_TRIM];
312 je->m_iops += td->o.rate_iops_min[DDIR_TRIM];
313 }
314
Jens Axboeb75a3942011-10-03 16:03:43 +0200315 je->files_open += td->nr_open_files;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200316 } else if (td->runstate == TD_RAMP) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200317 je->nr_running++;
318 je->nr_ramp++;
Jens Axboe263e5292006-10-18 15:37:01 +0200319 } else if (td->runstate < TD_RUNNING)
Jens Axboeb75a3942011-10-03 16:03:43 +0200320 je->nr_pending++;
Jens Axboe263e5292006-10-18 15:37:01 +0200321
Jens Axboeb75a3942011-10-03 16:03:43 +0200322 if (je->elapsed_sec >= 3)
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200323 eta_secs[i] = thread_eta(td);
Jens Axboe263e5292006-10-18 15:37:01 +0200324 else
325 eta_secs[i] = INT_MAX;
326
327 check_str_update(td);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200328
329 if (td->runstate > TD_RAMP) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200330 int ddir;
331 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
332 io_bytes[ddir] += td->io_bytes[ddir];
333 io_iops[ddir] += td->io_blocks[ddir];
334 }
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200335 }
Jens Axboe263e5292006-10-18 15:37:01 +0200336 }
337
338 if (exitall_on_terminate)
Jens Axboeb75a3942011-10-03 16:03:43 +0200339 je->eta_sec = INT_MAX;
Jens Axboe263e5292006-10-18 15:37:01 +0200340 else
Jens Axboeb75a3942011-10-03 16:03:43 +0200341 je->eta_sec = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200342
Jens Axboe34572e22006-10-20 09:33:18 +0200343 for_each_td(td, i) {
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200344 if (exitall_on_terminate) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200345 if (eta_secs[i] < je->eta_sec)
346 je->eta_sec = eta_secs[i];
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200347 } else {
Jens Axboeb75a3942011-10-03 16:03:43 +0200348 if (eta_secs[i] > je->eta_sec)
349 je->eta_sec = eta_secs[i];
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200350 }
Jens Axboe263e5292006-10-18 15:37:01 +0200351 }
352
Jens Axboeeecf2722006-10-20 14:00:36 +0200353 free(eta_secs);
354
Jens Axboe46fda8d2007-02-11 00:49:30 +0100355 fio_gettime(&now, NULL);
356 rate_time = mtime_since(&rate_prev_time, &now);
357
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200358 if (write_bw_log && rate_time > bw_avg_time && !in_ramp_time(td)) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200359 calc_rate(rate_time, io_bytes, rate_io_bytes, je->rate);
Jens Axboe46fda8d2007-02-11 00:49:30 +0100360 memcpy(&rate_prev_time, &now, sizeof(now));
Jens Axboeb75a3942011-10-03 16:03:43 +0200361 add_agg_sample(je->rate[DDIR_READ], DDIR_READ, 0);
362 add_agg_sample(je->rate[DDIR_WRITE], DDIR_WRITE, 0);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200363 add_agg_sample(je->rate[DDIR_TRIM], DDIR_TRIM, 0);
Jens Axboe6043c572006-11-03 11:37:47 +0100364 }
365
Jens Axboe46fda8d2007-02-11 00:49:30 +0100366 disp_time = mtime_since(&disp_prev_time, &now);
Jens Axboea5b01f12010-11-11 09:19:49 +0100367
368 /*
369 * Allow a little slack, the target is to print it every 1000 msecs
370 */
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200371 if (!force && disp_time < 900)
Jens Axboeb75a3942011-10-03 16:03:43 +0200372 return 0;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100373
Jens Axboeb75a3942011-10-03 16:03:43 +0200374 calc_rate(disp_time, io_bytes, disp_io_bytes, je->rate);
375 calc_iops(disp_time, io_iops, disp_io_iops, je->iops);
Jens Axboeadb02ba2009-06-03 10:47:44 +0200376
Jens Axboe46fda8d2007-02-11 00:49:30 +0100377 memcpy(&disp_prev_time, &now, sizeof(now));
378
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200379 if (!force && !je->nr_running && !je->nr_pending)
Jens Axboeb75a3942011-10-03 16:03:43 +0200380 return 0;
381
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200382 je->nr_threads = thread_number;
383 memcpy(je->run_str, run_str, thread_number * sizeof(char));
384
Jens Axboeb75a3942011-10-03 16:03:43 +0200385 return 1;
386}
387
Jens Axboecf451d12011-10-03 16:48:30 +0200388void display_thread_status(struct jobs_eta *je)
Jens Axboeb75a3942011-10-03 16:03:43 +0200389{
Jens Axboeb75a3942011-10-03 16:03:43 +0200390 static int linelen_last;
391 static int eta_good;
Jens Axboe79074e72012-04-18 20:39:48 +0200392 char output[REAL_MAX_JOBS + 512], *p = output;
Jens Axboeb75a3942011-10-03 16:03:43 +0200393 char eta_str[128];
394 double perc = 0.0;
Jens Axboeb75a3942011-10-03 16:03:43 +0200395
Jens Axboecf451d12011-10-03 16:48:30 +0200396 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
397 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
398 eta_to_str(eta_str, je->eta_sec);
Jens Axboeb75a3942011-10-03 16:03:43 +0200399 }
400
Jens Axboecf451d12011-10-03 16:48:30 +0200401 p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open);
402 if (je->m_rate || je->t_rate) {
Jens Axboe581e7142009-06-09 12:47:16 +0200403 char *tr, *mr;
404
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200405 mr = num2str(je->m_rate, 4, 0, je->is_pow2);
406 tr = num2str(je->t_rate, 4, 0, je->is_pow2);
Jens Axboe37db14f2011-09-30 17:00:42 -0600407 p += sprintf(p, ", CR=%s/%s KB/s", tr, mr);
Jens Axboe581e7142009-06-09 12:47:16 +0200408 free(tr);
409 free(mr);
Jens Axboecf451d12011-10-03 16:48:30 +0200410 } else if (je->m_iops || je->t_iops)
411 p += sprintf(p, ", CR=%d/%d IOPS", je->t_iops, je->m_iops);
412 if (je->eta_sec != INT_MAX && je->nr_running) {
Jens Axboe0721d112008-06-05 09:03:05 +0200413 char perc_str[32];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200414 char *iops_str[DDIR_RWDIR_CNT];
415 char *rate_str[DDIR_RWDIR_CNT];
Jens Axboe79074e72012-04-18 20:39:48 +0200416 size_t left;
Jens Axboeadb02ba2009-06-03 10:47:44 +0200417 int l;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200418 int ddir;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100419
Jens Axboecf451d12011-10-03 16:48:30 +0200420 if ((!je->eta_sec && !eta_good) || je->nr_ramp == je->nr_running)
Jens Axboecac58fd2008-06-06 01:17:03 +0200421 strcpy(perc_str, "-.-% done");
422 else {
423 eta_good = 1;
424 perc *= 100.0;
Jens Axboe0721d112008-06-05 09:03:05 +0200425 sprintf(perc_str, "%3.1f%% done", perc);
Jens Axboecac58fd2008-06-06 01:17:03 +0200426 }
Jens Axboe0721d112008-06-05 09:03:05 +0200427
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200428 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
429 rate_str[ddir] = num2str(je->rate[ddir], 5,
430 1024, je->is_pow2);
431 iops_str[ddir] = num2str(je->iops[ddir], 4, 1, 0);
432 }
Jens Axboeadb02ba2009-06-03 10:47:44 +0200433
Jens Axboe79074e72012-04-18 20:39:48 +0200434 left = sizeof(output) - (p - output) - 1;
435
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200436 l = snprintf(p, left, ": [%s] [%s] [%s/%s/%s /s] [%s/%s/%s iops] [eta %s]",
437 je->run_str, perc_str, rate_str[DDIR_READ],
438 rate_str[DDIR_WRITE], rate_str[DDIR_TRIM],
439 iops_str[DDIR_READ], iops_str[DDIR_WRITE],
440 iops_str[DDIR_TRIM], eta_str);
Jens Axboe37db14f2011-09-30 17:00:42 -0600441 p += l;
Jens Axboeadb02ba2009-06-03 10:47:44 +0200442 if (l >= 0 && l < linelen_last)
Jens Axboe37db14f2011-09-30 17:00:42 -0600443 p += sprintf(p, "%*s", linelen_last - l, "");
Jens Axboeadb02ba2009-06-03 10:47:44 +0200444 linelen_last = l;
Jens Axboed1bd7212009-06-03 10:53:45 +0200445
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200446 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
447 free(rate_str[ddir]);
448 free(iops_str[ddir]);
449 }
Jens Axboe263e5292006-10-18 15:37:01 +0200450 }
Jens Axboe37db14f2011-09-30 17:00:42 -0600451 p += sprintf(p, "\r");
452
Jens Axboecf451d12011-10-03 16:48:30 +0200453 printf("%s", output);
454 fflush(stdout);
Jens Axboe263e5292006-10-18 15:37:01 +0200455}
456
Jens Axboecf451d12011-10-03 16:48:30 +0200457void print_thread_status(void)
458{
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200459 struct jobs_eta *je;
Jens Axboeb814fb22011-10-12 09:20:34 +0200460 size_t size;
Jens Axboecf451d12011-10-03 16:48:30 +0200461
Jens Axboeb814fb22011-10-12 09:20:34 +0200462 if (!thread_number)
463 return;
Jens Axboecf451d12011-10-03 16:48:30 +0200464
Jens Axboeb814fb22011-10-12 09:20:34 +0200465 size = sizeof(*je) + thread_number * sizeof(char) + 1;
466 je = malloc(size);
467 memset(je, 0, size);
Jens Axboecf451d12011-10-03 16:48:30 +0200468
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200469 if (calc_thread_status(je, 0))
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200470 display_thread_status(je);
471
472 free(je);
Jens Axboecf451d12011-10-03 16:48:30 +0200473}
Jens Axboeb75a3942011-10-03 16:03:43 +0200474
Jens Axboe2b13e712011-01-19 14:04:16 -0700475void print_status_init(int thr_number)
Jens Axboe263e5292006-10-18 15:37:01 +0200476{
Jens Axboe2b13e712011-01-19 14:04:16 -0700477 run_str[thr_number] = 'P';
Jens Axboe263e5292006-10-18 15:37:01 +0200478}