blob: 600b046ced8c86e16ff90b1d2dd05ac59e637d5a [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 */
Jens Axboe3e47bd22012-02-29 13:45:02 +010096void 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) {
Jens Axboef3afa572012-09-17 13:34:16 +0200267 if (output_format != FIO_OUTPUT_NORMAL)
268 return 0;
269 if (temp_stall_ts || eta_print == FIO_ETA_NEVER)
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200270 return 0;
Aaron Carrolle592a062007-09-14 09:49:41 +0200271
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200272 if (!isatty(STDOUT_FILENO) && (eta_print != FIO_ETA_ALWAYS))
273 return 0;
274 }
Jens Axboe263e5292006-10-18 15:37:01 +0200275
Jens Axboe342f4be2012-09-14 08:59:20 +0200276 if (!ddir_rw_sum(rate_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100277 fill_start_time(&rate_prev_time);
Jens Axboe342f4be2012-09-14 08:59:20 +0200278 if (!ddir_rw_sum(disp_io_bytes))
Jens Axboe46fda8d2007-02-11 00:49:30 +0100279 fill_start_time(&disp_prev_time);
Jens Axboe6043c572006-11-03 11:37:47 +0100280
Jens Axboed3eeeab2008-04-06 12:19:05 +0200281 eta_secs = malloc(thread_number * sizeof(unsigned long));
282 memset(eta_secs, 0, thread_number * sizeof(unsigned long));
Jens Axboe263e5292006-10-18 15:37:01 +0200283
Jens Axboeb75a3942011-10-03 16:03:43 +0200284 je->elapsed_sec = (mtime_since_genesis() + 999) / 1000;
285
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200286 io_bytes[DDIR_READ] = io_bytes[DDIR_WRITE] = io_bytes[DDIR_TRIM] = 0;
287 io_iops[DDIR_READ] = io_iops[DDIR_WRITE] = io_iops[DDIR_TRIM] = 0;
Jens Axboebb3884d2007-01-17 17:23:11 +1100288 bw_avg_time = ULONG_MAX;
Jens Axboe34572e22006-10-20 09:33:18 +0200289 for_each_td(td, i) {
Jens Axboeb7f05eb2012-05-11 20:33:02 +0200290 if (is_power_of_2(td->o.kb_base))
291 je->is_pow2 = 1;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100292 if (td->o.bw_avg_time < bw_avg_time)
293 bw_avg_time = td->o.bw_avg_time;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100294 if (td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING
Jens Axboeb0f65862009-05-20 11:52:15 +0200295 || td->runstate == TD_FSYNCING
296 || td->runstate == TD_PRE_READING) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200297 je->nr_running++;
Jens Axboe242c38d2012-08-20 14:44:22 +0200298 if (td_read(td)) {
Jens Axboec2e9cc42012-08-21 15:34:13 +0200299 je->t_rate[0] += td->o.rate[DDIR_READ];
300 je->t_iops[0] += td->o.rate_iops[DDIR_READ];
301 je->m_rate[0] += td->o.ratemin[DDIR_READ];
302 je->m_iops[0] += td->o.rate_iops_min[DDIR_READ];
Jens Axboe242c38d2012-08-20 14:44:22 +0200303 }
304 if (td_write(td)) {
Jens Axboec2e9cc42012-08-21 15:34:13 +0200305 je->t_rate[1] += td->o.rate[DDIR_WRITE];
306 je->t_iops[1] += td->o.rate_iops[DDIR_WRITE];
307 je->m_rate[1] += td->o.ratemin[DDIR_WRITE];
308 je->m_iops[1] += td->o.rate_iops_min[DDIR_WRITE];
Jens Axboe242c38d2012-08-20 14:44:22 +0200309 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200310 if (td_trim(td)) {
Jens Axboed79db122012-09-24 08:51:24 +0200311 je->t_rate[2] += td->o.rate[DDIR_TRIM];
312 je->t_iops[2] += td->o.rate_iops[DDIR_TRIM];
313 je->m_rate[2] += td->o.ratemin[DDIR_TRIM];
314 je->m_iops[2] += td->o.rate_iops_min[DDIR_TRIM];
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200315 }
316
Jens Axboeb75a3942011-10-03 16:03:43 +0200317 je->files_open += td->nr_open_files;
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200318 } else if (td->runstate == TD_RAMP) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200319 je->nr_running++;
320 je->nr_ramp++;
Jens Axboe263e5292006-10-18 15:37:01 +0200321 } else if (td->runstate < TD_RUNNING)
Jens Axboeb75a3942011-10-03 16:03:43 +0200322 je->nr_pending++;
Jens Axboe263e5292006-10-18 15:37:01 +0200323
Jens Axboeb75a3942011-10-03 16:03:43 +0200324 if (je->elapsed_sec >= 3)
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200325 eta_secs[i] = thread_eta(td);
Jens Axboe263e5292006-10-18 15:37:01 +0200326 else
327 eta_secs[i] = INT_MAX;
328
329 check_str_update(td);
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200330
331 if (td->runstate > TD_RAMP) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200332 int ddir;
333 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++) {
334 io_bytes[ddir] += td->io_bytes[ddir];
335 io_iops[ddir] += td->io_blocks[ddir];
336 }
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200337 }
Jens Axboe263e5292006-10-18 15:37:01 +0200338 }
339
340 if (exitall_on_terminate)
Jens Axboeb75a3942011-10-03 16:03:43 +0200341 je->eta_sec = INT_MAX;
Jens Axboe263e5292006-10-18 15:37:01 +0200342 else
Jens Axboeb75a3942011-10-03 16:03:43 +0200343 je->eta_sec = 0;
Jens Axboe263e5292006-10-18 15:37:01 +0200344
Jens Axboe34572e22006-10-20 09:33:18 +0200345 for_each_td(td, i) {
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200346 if (exitall_on_terminate) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200347 if (eta_secs[i] < je->eta_sec)
348 je->eta_sec = eta_secs[i];
Shaozhi Shawn Ye9c5a3852008-09-10 09:09:37 +0200349 } else {
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 }
Jens Axboe263e5292006-10-18 15:37:01 +0200353 }
354
Jens Axboeeecf2722006-10-20 14:00:36 +0200355 free(eta_secs);
356
Jens Axboe46fda8d2007-02-11 00:49:30 +0100357 fio_gettime(&now, NULL);
358 rate_time = mtime_since(&rate_prev_time, &now);
359
Jens Axboeb29ee5b2008-09-11 10:17:26 +0200360 if (write_bw_log && rate_time > bw_avg_time && !in_ramp_time(td)) {
Jens Axboeb75a3942011-10-03 16:03:43 +0200361 calc_rate(rate_time, io_bytes, rate_io_bytes, je->rate);
Jens Axboe46fda8d2007-02-11 00:49:30 +0100362 memcpy(&rate_prev_time, &now, sizeof(now));
Jens Axboeb75a3942011-10-03 16:03:43 +0200363 add_agg_sample(je->rate[DDIR_READ], DDIR_READ, 0);
364 add_agg_sample(je->rate[DDIR_WRITE], DDIR_WRITE, 0);
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200365 add_agg_sample(je->rate[DDIR_TRIM], DDIR_TRIM, 0);
Jens Axboe6043c572006-11-03 11:37:47 +0100366 }
367
Jens Axboe46fda8d2007-02-11 00:49:30 +0100368 disp_time = mtime_since(&disp_prev_time, &now);
Jens Axboea5b01f12010-11-11 09:19:49 +0100369
370 /*
371 * Allow a little slack, the target is to print it every 1000 msecs
372 */
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200373 if (!force && disp_time < 900)
Jens Axboeb75a3942011-10-03 16:03:43 +0200374 return 0;
Jens Axboe46fda8d2007-02-11 00:49:30 +0100375
Jens Axboeb75a3942011-10-03 16:03:43 +0200376 calc_rate(disp_time, io_bytes, disp_io_bytes, je->rate);
377 calc_iops(disp_time, io_iops, disp_io_iops, je->iops);
Jens Axboeadb02ba2009-06-03 10:47:44 +0200378
Jens Axboe46fda8d2007-02-11 00:49:30 +0100379 memcpy(&disp_prev_time, &now, sizeof(now));
380
Jens Axboeaf9c9fb2011-10-09 21:54:10 +0200381 if (!force && !je->nr_running && !je->nr_pending)
Jens Axboeb75a3942011-10-03 16:03:43 +0200382 return 0;
383
Jens Axboe1d1f45a2011-10-03 19:44:41 +0200384 je->nr_threads = thread_number;
385 memcpy(je->run_str, run_str, thread_number * sizeof(char));
386
Jens Axboeb75a3942011-10-03 16:03:43 +0200387 return 1;
388}
389
Jens Axboecf451d12011-10-03 16:48:30 +0200390void display_thread_status(struct jobs_eta *je)
Jens Axboeb75a3942011-10-03 16:03:43 +0200391{
Jens Axboeb75a3942011-10-03 16:03:43 +0200392 static int linelen_last;
393 static int eta_good;
Jens Axboe79074e72012-04-18 20:39:48 +0200394 char output[REAL_MAX_JOBS + 512], *p = output;
Jens Axboeb75a3942011-10-03 16:03:43 +0200395 char eta_str[128];
396 double perc = 0.0;
Jens Axboeb75a3942011-10-03 16:03:43 +0200397
Jens Axboecf451d12011-10-03 16:48:30 +0200398 if (je->eta_sec != INT_MAX && je->elapsed_sec) {
399 perc = (double) je->elapsed_sec / (double) (je->elapsed_sec + je->eta_sec);
400 eta_to_str(eta_str, je->eta_sec);
Jens Axboeb75a3942011-10-03 16:03:43 +0200401 }
402
Jens Axboecf451d12011-10-03 16:48:30 +0200403 p += sprintf(p, "Jobs: %d (f=%d)", je->nr_running, je->files_open);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100404 if (je->m_rate[0] || je->m_rate[1] || je->t_rate[0] || je->t_rate[1]) {
Jens Axboe581e7142009-06-09 12:47:16 +0200405 char *tr, *mr;
406
Jens Axboec41a9d02012-05-11 20:38:59 +0200407 mr = num2str(je->m_rate[0] + je->m_rate[1], 4, 0, je->is_pow2);
408 tr = num2str(je->t_rate[0] + je->t_rate[1], 4, 0, je->is_pow2);
Jens Axboe37db14f2011-09-30 17:00:42 -0600409 p += sprintf(p, ", CR=%s/%s KB/s", tr, mr);
Jens Axboe581e7142009-06-09 12:47:16 +0200410 free(tr);
411 free(mr);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100412 } else if (je->m_iops[0] || je->m_iops[1] || je->t_iops[0] || je->t_iops[1]) {
413 p += sprintf(p, ", CR=%d/%d IOPS",
414 je->t_iops[0] + je->t_iops[1],
Jens Axboe88e4bea2012-08-21 15:34:36 +0200415 je->m_iops[0] + je->m_iops[1]);
Jens Axboe3e47bd22012-02-29 13:45:02 +0100416 }
Jens Axboecf451d12011-10-03 16:48:30 +0200417 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 Axboe3e47bd22012-02-29 13:45:02 +0100458 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}