Fix client/server "all clients" reporting
[fio.git] / stat.c
CommitLineData
3c39a379
JA
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
5c4e1dbc 5#include <sys/stat.h>
3c39a379
JA
6#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
7c9b1bce 11#include "diskutil.h"
c7c6cb4c 12#include "lib/ieee754.h"
cc372b17 13#include "json.h"
44404c5a 14#include "lib/getrusage.h"
f2a2ce0e 15#include "idletime.h"
0f38bbef 16#include "lib/pow2.h"
a666cab8 17#include "lib/output_buffer.h"
a39fb9ea 18#include "helper_thread.h"
90d2d53f 19#include "smalloc.h"
3c39a379 20
d454a205
JA
21#define LOG_MSEC_SLACK 10
22
e5437a07 23struct fio_mutex *stat_mutex;
cef9175e 24
210dd0fc
JA
25void clear_rusage_stat(struct thread_data *td)
26{
27 struct thread_stat *ts = &td->ts;
28
29 fio_getrusage(&td->ru_start);
30 ts->usr_time = ts->sys_time = 0;
31 ts->ctx = 0;
32 ts->minf = ts->majf = 0;
33}
34
3c39a379
JA
35void update_rusage_stat(struct thread_data *td)
36{
756867bd 37 struct thread_stat *ts = &td->ts;
3c39a379 38
44404c5a 39 fio_getrusage(&td->ru_end);
8b6a404c 40 ts->usr_time += mtime_since_tv(&td->ru_start.ru_utime,
c8aaba19 41 &td->ru_end.ru_utime);
8b6a404c 42 ts->sys_time += mtime_since_tv(&td->ru_start.ru_stime,
c8aaba19
JA
43 &td->ru_end.ru_stime);
44 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
45 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
46 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
47 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
5ec10eaa 48
c8aaba19 49 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
3c39a379
JA
50}
51
83349190
YH
52/*
53 * Given a latency, return the index of the corresponding bucket in
54 * the structure tracking percentiles.
55 *
56 * (1) find the group (and error bits) that the value (latency)
57 * belongs to by looking at its MSB. (2) find the bucket number in the
58 * group by looking at the index bits.
59 *
60 */
d6bb626e 61static unsigned int plat_val_to_idx(unsigned long long val)
83349190
YH
62{
63 unsigned int msb, error_bits, base, offset, idx;
64
65 /* Find MSB starting from bit 0 */
66 if (val == 0)
67 msb = 0;
68 else
d6bb626e 69 msb = (sizeof(val)*8) - __builtin_clzll(val) - 1;
83349190 70
716050f2
JA
71 /*
72 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
73 * all bits of the sample as index
74 */
83349190
YH
75 if (msb <= FIO_IO_U_PLAT_BITS)
76 return val;
77
78 /* Compute the number of error bits to discard*/
79 error_bits = msb - FIO_IO_U_PLAT_BITS;
80
81 /* Compute the number of buckets before the group */
82 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
83
716050f2
JA
84 /*
85 * Discard the error bits and apply the mask to find the
3c3ed070 86 * index for the buckets in the group
716050f2 87 */
83349190
YH
88 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
89
90 /* Make sure the index does not exceed (array size - 1) */
3c3ed070 91 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1) ?
83349190
YH
92 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
93
94 return idx;
95}
96
97/*
98 * Convert the given index of the bucket array to the value
99 * represented by the bucket
100 */
129e4193 101static unsigned long long plat_idx_to_val(unsigned int idx)
83349190 102{
c8b44cfa
RL
103 unsigned int error_bits;
104 unsigned long long k, base;
83349190
YH
105
106 assert(idx < FIO_IO_U_PLAT_NR);
107
108 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
109 * all bits of the sample as index */
3c3ed070 110 if (idx < (FIO_IO_U_PLAT_VAL << 1))
83349190
YH
111 return idx;
112
113 /* Find the group and compute the minimum value of that group */
3c3ed070 114 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
c8b44cfa 115 base = ((unsigned long long) 1) << (error_bits + FIO_IO_U_PLAT_BITS);
83349190
YH
116
117 /* Find its bucket number of the group */
118 k = idx % FIO_IO_U_PLAT_VAL;
119
120 /* Return the mean of the range of the bucket */
121 return base + ((k + 0.5) * (1 << error_bits));
122}
123
124static int double_cmp(const void *a, const void *b)
125{
802ad4a8
JA
126 const fio_fp64_t fa = *(const fio_fp64_t *) a;
127 const fio_fp64_t fb = *(const fio_fp64_t *) b;
83349190
YH
128 int cmp = 0;
129
802ad4a8 130 if (fa.u.f > fb.u.f)
83349190 131 cmp = 1;
802ad4a8 132 else if (fa.u.f < fb.u.f)
83349190
YH
133 cmp = -1;
134
135 return cmp;
136}
137
d7bb1620 138unsigned int calc_clat_percentiles(unsigned int *io_u_plat, unsigned long long nr,
d6bb626e
VF
139 fio_fp64_t *plist, unsigned long long **output,
140 unsigned long long *maxv, unsigned long long *minv)
83349190 141{
447b94e1 142 unsigned long long sum = 0;
1db92cb6
JA
143 unsigned int len, i, j = 0;
144 unsigned int oval_len = 0;
d6bb626e 145 unsigned long long *ovals = NULL;
8985b491 146 bool is_last;
1db92cb6 147
d6bb626e 148 *minv = -1ULL;
1db92cb6 149 *maxv = 0;
83349190 150
802ad4a8
JA
151 len = 0;
152 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
153 len++;
716050f2 154
351de8de 155 if (!len)
1db92cb6 156 return 0;
351de8de 157
716050f2 158 /*
802ad4a8
JA
159 * Sort the percentile list. Note that it may already be sorted if
160 * we are using the default values, but since it's a short list this
161 * isn't a worry. Also note that this does not work for NaN values.
716050f2 162 */
802ad4a8 163 if (len > 1)
3c3ed070 164 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
83349190 165
4f6f8298
JA
166 /*
167 * Calculate bucket values, note down max and min values
168 */
8985b491 169 is_last = false;
07511a63 170 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
83349190 171 sum += io_u_plat[i];
802ad4a8
JA
172 while (sum >= (plist[j].u.f / 100.0 * nr)) {
173 assert(plist[j].u.f <= 100.0);
83349190 174
4f6f8298
JA
175 if (j == oval_len) {
176 oval_len += 100;
d6bb626e 177 ovals = realloc(ovals, oval_len * sizeof(*ovals));
4f6f8298
JA
178 }
179
180 ovals[j] = plat_idx_to_val(i);
1db92cb6
JA
181 if (ovals[j] < *minv)
182 *minv = ovals[j];
183 if (ovals[j] > *maxv)
184 *maxv = ovals[j];
07511a63 185
8985b491 186 is_last = (j == len - 1) != 0;
07511a63
JA
187 if (is_last)
188 break;
189
4f6f8298
JA
190 j++;
191 }
192 }
83349190 193
1db92cb6
JA
194 *output = ovals;
195 return len;
196}
197
198/*
199 * Find and display the p-th percentile of clat
200 */
d7bb1620 201static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long long nr,
a666cab8 202 fio_fp64_t *plist, unsigned int precision,
b599759b 203 bool is_clat, struct buf_output *out)
1db92cb6 204{
d6bb626e
VF
205 unsigned int divisor, len, i, j = 0;
206 unsigned long long minv, maxv;
207 unsigned long long *ovals;
8985b491 208 int per_line, scale_down, time_width;
b599759b 209 const char *pre = is_clat ? "clat" : " lat";
8985b491 210 bool is_last;
eef02441 211 char fmt[32];
1db92cb6
JA
212
213 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
214 if (!len)
215 goto out;
216
4f6f8298 217 /*
d6bb626e
VF
218 * We default to nsecs, but if the value range is such that we
219 * should scale down to usecs or msecs, do that.
4f6f8298 220 */
d6bb626e
VF
221 if (minv > 2000000 && maxv > 99999999ULL) {
222 scale_down = 2;
223 divisor = 1000000;
b599759b 224 log_buf(out, " %s percentiles (msec):\n |", pre);
d6bb626e
VF
225 } else if (minv > 2000 && maxv > 99999) {
226 scale_down = 1;
227 divisor = 1000;
b599759b 228 log_buf(out, " %s percentiles (usec):\n |", pre);
4f6f8298
JA
229 } else {
230 scale_down = 0;
d6bb626e 231 divisor = 1;
b599759b 232 log_buf(out, " %s percentiles (nsec):\n |", pre);
4f6f8298 233 }
83349190 234
619adf9c 235
d6bb626e 236 time_width = max(5, (int) (log10(maxv / divisor) + 1));
74558486
JA
237 snprintf(fmt, sizeof(fmt), " %%%u.%ufth=[%%%dllu]%%c", precision + 3,
238 precision, time_width);
239 /* fmt will be something like " %5.2fth=[%4llu]%c" */
d6bb626e 240 per_line = (80 - 7) / (precision + 10 + time_width);
81ab0b3a 241
d6bb626e 242 for (j = 0; j < len; j++) {
4f6f8298 243 /* for formatting */
eef02441 244 if (j != 0 && (j % per_line) == 0)
a666cab8 245 log_buf(out, " |");
83349190 246
4f6f8298 247 /* end of the list */
8985b491 248 is_last = (j == len - 1) != 0;
83349190 249
d6bb626e 250 for (i = 0; i < scale_down; i++)
4f6f8298
JA
251 ovals[j] = (ovals[j] + 999) / 1000;
252
d6bb626e 253 log_buf(out, fmt, plist[j].u.f, ovals[j], is_last ? '\n' : ',');
4f6f8298
JA
254
255 if (is_last)
256 break;
257
eef02441 258 if ((j % per_line) == per_line - 1) /* for formatting */
a666cab8 259 log_buf(out, "\n");
83349190 260 }
4f6f8298 261
1db92cb6 262out:
4f6f8298
JA
263 if (ovals)
264 free(ovals);
83349190
YH
265}
266
74558486
JA
267bool calc_lat(struct io_stat *is, unsigned long long *min,
268 unsigned long long *max, double *mean, double *dev)
3c39a379 269{
ee0ccb79 270 double n = (double) is->samples;
3c39a379 271
ee0ccb79 272 if (n == 0)
8aa89d70 273 return false;
3c39a379
JA
274
275 *min = is->min_val;
276 *max = is->max_val;
802ad4a8 277 *mean = is->mean.u.f;
e6d276f2 278
68704084 279 if (n > 1.0)
802ad4a8 280 *dev = sqrt(is->S.u.f / (n - 1.0));
ef9c5c40 281 else
4b43f54e 282 *dev = 0;
ef9c5c40 283
8aa89d70 284 return true;
3c39a379
JA
285}
286
a666cab8 287void show_group_stats(struct group_run_stats *rs, struct buf_output *out)
3c39a379 288{
d694a6a7
RE
289 char *io, *agg, *min, *max;
290 char *ioalt, *aggalt, *minalt, *maxalt;
42da5c8b 291 const char *str[] = { " READ", " WRITE" , " TRIM"};
dbe1125e
JA
292 int i;
293
a666cab8 294 log_buf(out, "\nRun status group %d (all jobs):\n", rs->groupid);
3c39a379 295
6eaf09d6 296 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
90fef2d1
JA
297 const int i2p = is_power_of_2(rs->kb_base);
298
dbe1125e
JA
299 if (!rs->max_run[i])
300 continue;
301
e883cb35
JF
302 io = num2str(rs->iobytes[i], rs->sig_figs, 1, i2p, N2S_BYTE);
303 ioalt = num2str(rs->iobytes[i], rs->sig_figs, 1, !i2p, N2S_BYTE);
304 agg = num2str(rs->agg[i], rs->sig_figs, 1, i2p, rs->unit_base);
305 aggalt = num2str(rs->agg[i], rs->sig_figs, 1, !i2p, rs->unit_base);
306 min = num2str(rs->min_bw[i], rs->sig_figs, 1, i2p, rs->unit_base);
307 minalt = num2str(rs->min_bw[i], rs->sig_figs, 1, !i2p, rs->unit_base);
308 max = num2str(rs->max_bw[i], rs->sig_figs, 1, i2p, rs->unit_base);
309 maxalt = num2str(rs->max_bw[i], rs->sig_figs, 1, !i2p, rs->unit_base);
d694a6a7 310 log_buf(out, "%s: bw=%s (%s), %s-%s (%s-%s), io=%s (%s), run=%llu-%llumsec\n",
42da5c8b 311 rs->unified_rw_rep ? " MIXED" : str[i],
d694a6a7 312 agg, aggalt, min, max, minalt, maxalt, io, ioalt,
4e0a8fa2
JA
313 (unsigned long long) rs->min_run[i],
314 (unsigned long long) rs->max_run[i]);
dbe1125e 315
d694a6a7
RE
316 free(io);
317 free(agg);
318 free(min);
319 free(max);
320 free(ioalt);
321 free(aggalt);
322 free(minalt);
323 free(maxalt);
dbe1125e 324 }
3c39a379
JA
325}
326
2e33101f 327void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist)
2270890c
JA
328{
329 int i;
330
331 /*
332 * Do depth distribution calculations
333 */
334 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
838bc709
JA
335 if (total) {
336 io_u_dist[i] = (double) map[i] / (double) total;
337 io_u_dist[i] *= 100.0;
338 if (io_u_dist[i] < 0.1 && map[i])
339 io_u_dist[i] = 0.1;
340 } else
341 io_u_dist[i] = 0.0;
2270890c
JA
342 }
343}
344
04a0feae
JA
345static void stat_calc_lat(struct thread_stat *ts, double *dst,
346 unsigned int *src, int nr)
2270890c 347{
d79db122 348 unsigned long total = ddir_rw_sum(ts->total_io_u);
2270890c
JA
349 int i;
350
351 /*
352 * Do latency distribution calculations
353 */
04a0feae 354 for (i = 0; i < nr; i++) {
838bc709
JA
355 if (total) {
356 dst[i] = (double) src[i] / (double) total;
357 dst[i] *= 100.0;
358 if (dst[i] < 0.01 && src[i])
359 dst[i] = 0.01;
360 } else
361 dst[i] = 0.0;
2270890c
JA
362 }
363}
364
247823cc
VF
365/*
366 * To keep the terse format unaltered, add all of the ns latency
367 * buckets to the first us latency bucket
368 */
369void stat_calc_lat_nu(struct thread_stat *ts, double *io_u_lat_u)
370{
371 unsigned long ntotal = 0, total = ddir_rw_sum(ts->total_io_u);
372 int i;
373
374 stat_calc_lat(ts, io_u_lat_u, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
375
376 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++)
377 ntotal += ts->io_u_lat_n[i];
378
379 io_u_lat_u[0] += 100.0 * (double) ntotal / (double) total;
380}
381
d6bb626e
VF
382void stat_calc_lat_n(struct thread_stat *ts, double *io_u_lat)
383{
384 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_n, FIO_IO_U_LAT_N_NR);
385}
386
e5bd1347 387void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
388{
389 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
390}
391
e5bd1347 392void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
04a0feae
JA
393{
394 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
395}
396
74558486
JA
397static void display_lat(const char *name, unsigned long long min,
398 unsigned long long max, double mean, double dev,
399 struct buf_output *out)
ea2accc5 400{
d6bb626e 401 const char *base = "(nsec)";
b29ad562 402 char *minp, *maxp;
ea2accc5 403
d6bb626e 404 if (nsec_to_msec(&min, &max, &mean, &dev))
b29ad562 405 base = "(msec)";
d6bb626e
VF
406 else if (nsec_to_usec(&min, &max, &mean, &dev))
407 base = "(usec)";
b29ad562 408
d694a6a7
RE
409 minp = num2str(min, 6, 1, 0, N2S_NONE);
410 maxp = num2str(max, 6, 1, 0, N2S_NONE);
b29ad562 411
a666cab8 412 log_buf(out, " %s %s: min=%s, max=%s, avg=%5.02f,"
b29ad562
JA
413 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
414
415 free(minp);
416 free(maxp);
ea2accc5
JA
417}
418
756867bd 419static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
a666cab8 420 int ddir, struct buf_output *out)
3c39a379 421{
27624651 422 const char *str[] = { " read", "write", " trim" };
d6bb626e
VF
423 unsigned long runt;
424 unsigned long long min, max, bw, iops;
3c39a379 425 double mean, dev;
d694a6a7 426 char *io_p, *bw_p, *bw_p_alt, *iops_p;
90fef2d1 427 int i2p;
3c39a379 428
ff58fced
JA
429 assert(ddir_rw(ddir));
430
756867bd 431 if (!ts->runtime[ddir])
3c39a379
JA
432 return;
433
90fef2d1 434 i2p = is_power_of_2(rs->kb_base);
8879fd15
JA
435 runt = ts->runtime[ddir];
436
437 bw = (1000 * ts->io_bytes[ddir]) / runt;
e883cb35
JF
438 io_p = num2str(ts->io_bytes[ddir], ts->sig_figs, 1, i2p, N2S_BYTE);
439 bw_p = num2str(bw, ts->sig_figs, 1, i2p, ts->unit_base);
440 bw_p_alt = num2str(bw, ts->sig_figs, 1, !i2p, ts->unit_base);
8879fd15 441
0aacc50c 442 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
e883cb35 443 iops_p = num2str(iops, ts->sig_figs, 1, 0, N2S_NONE);
dbe1125e 444
d694a6a7
RE
445 log_buf(out, " %s: IOPS=%s, BW=%s (%s)(%s/%llumsec)\n",
446 rs->unified_rw_rep ? "mixed" : str[ddir],
447 iops_p, bw_p, bw_p_alt, io_p,
448 (unsigned long long) ts->runtime[ddir]);
dbe1125e
JA
449
450 free(io_p);
451 free(bw_p);
d694a6a7 452 free(bw_p_alt);
b3605062 453 free(iops_p);
3c39a379 454
b29ad562 455 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 456 display_lat("slat", min, max, mean, dev, out);
b29ad562 457 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 458 display_lat("clat", min, max, mean, dev, out);
b29ad562 459 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
a666cab8 460 display_lat(" lat", min, max, mean, dev, out);
02af0988 461
b599759b 462 if (ts->clat_percentiles || ts->lat_percentiles) {
af1600c1
SW
463 uint64_t samples;
464
465 if (ts->clat_percentiles)
466 samples = ts->clat_stat[ddir].samples;
467 else
468 samples = ts->lat_stat[ddir].samples;
469
83349190 470 show_clat_percentiles(ts->io_u_plat[ddir],
af1600c1 471 samples,
435d195a 472 ts->percentile_list,
b599759b
JA
473 ts->percentile_precision,
474 ts->clat_percentiles, out);
83349190 475 }
079ad09b 476 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
142c7f2d 477 double p_of_agg = 100.0, fkb_base = (double)rs->kb_base;
d694a6a7
RE
478 const char *bw_str;
479
480 if ((rs->unit_base == 1) && i2p)
481 bw_str = "Kibit";
482 else if (rs->unit_base == 1)
483 bw_str = "kbit";
484 else if (i2p)
485 bw_str = "KiB";
486 else
487 bw_str = "kB";
d686990a 488
d1707474
SW
489 if (rs->agg[ddir]) {
490 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
491 if (p_of_agg > 100.0)
492 p_of_agg = 100.0;
493 }
494
d686990a
SN
495 if (rs->unit_base == 1) {
496 min *= 8.0;
497 max *= 8.0;
498 mean *= 8.0;
499 dev *= 8.0;
500 }
3c39a379 501
142c7f2d
SN
502 if (mean > fkb_base * fkb_base) {
503 min /= fkb_base;
504 max /= fkb_base;
505 mean /= fkb_base;
506 dev /= fkb_base;
d694a6a7 507 bw_str = (rs->unit_base == 1 ? "Mibit" : "MiB");
b7017e32
JA
508 }
509
54c05828 510 log_buf(out, " bw (%5s/s): min=%5llu, max=%5llu, per=%3.2f%%, "
29eb371b 511 "avg=%5.02f, stdev=%5.02f, samples=%" PRIu64 "\n",
54c05828
AH
512 bw_str, min, max, p_of_agg, mean, dev,
513 (&ts->bw_stat[ddir])->samples);
3c39a379 514 }
188b6016 515 if (calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev)) {
21ba6606 516 log_buf(out, " iops : min=%5llu, max=%5llu, "
29eb371b 517 "avg=%5.02f, stdev=%5.02f, samples=%" PRIu64 "\n",
54c05828 518 min, max, mean, dev, (&ts->iops_stat[ddir])->samples);
188b6016 519 }
3c39a379
JA
520}
521
8985b491
JA
522static bool show_lat(double *io_u_lat, int nr, const char **ranges,
523 const char *msg, struct buf_output *out)
04a0feae 524{
8985b491
JA
525 bool new_line = true, shown = false;
526 int i, line = 0;
04a0feae
JA
527
528 for (i = 0; i < nr; i++) {
529 if (io_u_lat[i] <= 0.0)
530 continue;
8985b491 531 shown = true;
04a0feae 532 if (new_line) {
4539ed73 533 if (line)
a666cab8 534 log_buf(out, "\n");
4a19fcaa 535 log_buf(out, " lat (%s) : ", msg);
8985b491 536 new_line = false;
04a0feae
JA
537 line = 0;
538 }
539 if (line)
a666cab8
JA
540 log_buf(out, ", ");
541 log_buf(out, "%s%3.2f%%", ranges[i], io_u_lat[i]);
04a0feae
JA
542 line++;
543 if (line == 5)
8985b491 544 new_line = true;
04a0feae 545 }
7e1773ba
JA
546
547 if (shown)
a666cab8 548 log_buf(out, "\n");
7e1773ba 549
8985b491 550 return true;
04a0feae
JA
551}
552
d6bb626e
VF
553static void show_lat_n(double *io_u_lat_n, struct buf_output *out)
554{
555 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
556 "250=", "500=", "750=", "1000=", };
557
558 show_lat(io_u_lat_n, FIO_IO_U_LAT_N_NR, ranges, "nsec", out);
559}
560
a666cab8 561static void show_lat_u(double *io_u_lat_u, struct buf_output *out)
04a0feae
JA
562{
563 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
564 "250=", "500=", "750=", "1000=", };
565
a666cab8 566 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec", out);
04a0feae
JA
567}
568
a666cab8 569static void show_lat_m(double *io_u_lat_m, struct buf_output *out)
04a0feae
JA
570{
571 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
572 "250=", "500=", "750=", "1000=", "2000=",
573 ">=2000=", };
574
a666cab8 575 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec", out);
04a0feae
JA
576}
577
a666cab8 578static void show_latencies(struct thread_stat *ts, struct buf_output *out)
04a0feae 579{
d6bb626e 580 double io_u_lat_n[FIO_IO_U_LAT_N_NR];
c551f65a
JA
581 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
582 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
583
d6bb626e 584 stat_calc_lat_n(ts, io_u_lat_n);
5a18988e
JA
585 stat_calc_lat_u(ts, io_u_lat_u);
586 stat_calc_lat_m(ts, io_u_lat_m);
587
d6bb626e 588 show_lat_n(io_u_lat_n, out);
a666cab8
JA
589 show_lat_u(io_u_lat_u, out);
590 show_lat_m(io_u_lat_m, out);
04a0feae
JA
591}
592
66347cfa
DE
593static int block_state_category(int block_state)
594{
595 switch (block_state) {
596 case BLOCK_STATE_UNINIT:
597 return 0;
598 case BLOCK_STATE_TRIMMED:
599 case BLOCK_STATE_WRITTEN:
600 return 1;
601 case BLOCK_STATE_WRITE_FAILURE:
602 case BLOCK_STATE_TRIM_FAILURE:
603 return 2;
604 default:
081c2dc3 605 /* Silence compile warning on some BSDs and have a return */
66347cfa 606 assert(0);
07ff5841 607 return -1;
66347cfa
DE
608 }
609}
610
611static int compare_block_infos(const void *bs1, const void *bs2)
612{
613 uint32_t block1 = *(uint32_t *)bs1;
614 uint32_t block2 = *(uint32_t *)bs2;
615 int state1 = BLOCK_INFO_STATE(block1);
616 int state2 = BLOCK_INFO_STATE(block2);
617 int bscat1 = block_state_category(state1);
618 int bscat2 = block_state_category(state2);
619 int cycles1 = BLOCK_INFO_TRIMS(block1);
620 int cycles2 = BLOCK_INFO_TRIMS(block2);
621
622 if (bscat1 < bscat2)
623 return -1;
624 if (bscat1 > bscat2)
625 return 1;
626
627 if (cycles1 < cycles2)
628 return -1;
629 if (cycles1 > cycles2)
630 return 1;
631
632 if (state1 < state2)
633 return -1;
634 if (state1 > state2)
635 return 1;
636
637 assert(block1 == block2);
638 return 0;
639}
640
641static int calc_block_percentiles(int nr_block_infos, uint32_t *block_infos,
642 fio_fp64_t *plist, unsigned int **percentiles,
643 unsigned int *types)
644{
645 int len = 0;
646 int i, nr_uninit;
647
648 qsort(block_infos, nr_block_infos, sizeof(uint32_t), compare_block_infos);
649
650 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
651 len++;
652
653 if (!len)
654 return 0;
655
656 /*
657 * Sort the percentile list. Note that it may already be sorted if
658 * we are using the default values, but since it's a short list this
659 * isn't a worry. Also note that this does not work for NaN values.
660 */
661 if (len > 1)
662 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
663
664 nr_uninit = 0;
665 /* Start only after the uninit entries end */
666 for (nr_uninit = 0;
667 nr_uninit < nr_block_infos
668 && BLOCK_INFO_STATE(block_infos[nr_uninit]) == BLOCK_STATE_UNINIT;
669 nr_uninit ++)
670 ;
671
672 if (nr_uninit == nr_block_infos)
673 return 0;
674
675 *percentiles = calloc(len, sizeof(**percentiles));
676
677 for (i = 0; i < len; i++) {
678 int idx = (plist[i].u.f * (nr_block_infos - nr_uninit) / 100)
679 + nr_uninit;
680 (*percentiles)[i] = BLOCK_INFO_TRIMS(block_infos[idx]);
681 }
682
683 memset(types, 0, sizeof(*types) * BLOCK_STATE_COUNT);
684 for (i = 0; i < nr_block_infos; i++)
685 types[BLOCK_INFO_STATE(block_infos[i])]++;
686
687 return len;
688}
689
690static const char *block_state_names[] = {
691 [BLOCK_STATE_UNINIT] = "unwritten",
692 [BLOCK_STATE_TRIMMED] = "trimmed",
693 [BLOCK_STATE_WRITTEN] = "written",
694 [BLOCK_STATE_TRIM_FAILURE] = "trim failure",
695 [BLOCK_STATE_WRITE_FAILURE] = "write failure",
696};
697
698static void show_block_infos(int nr_block_infos, uint32_t *block_infos,
a666cab8 699 fio_fp64_t *plist, struct buf_output *out)
66347cfa
DE
700{
701 int len, pos, i;
702 unsigned int *percentiles = NULL;
703 unsigned int block_state_counts[BLOCK_STATE_COUNT];
704
705 len = calc_block_percentiles(nr_block_infos, block_infos, plist,
706 &percentiles, block_state_counts);
707
a666cab8 708 log_buf(out, " block lifetime percentiles :\n |");
66347cfa
DE
709 pos = 0;
710 for (i = 0; i < len; i++) {
711 uint32_t block_info = percentiles[i];
712#define LINE_LENGTH 75
713 char str[LINE_LENGTH];
714 int strln = snprintf(str, LINE_LENGTH, " %3.2fth=%u%c",
715 plist[i].u.f, block_info,
716 i == len - 1 ? '\n' : ',');
717 assert(strln < LINE_LENGTH);
718 if (pos + strln > LINE_LENGTH) {
719 pos = 0;
a666cab8 720 log_buf(out, "\n |");
66347cfa 721 }
a666cab8 722 log_buf(out, "%s", str);
66347cfa
DE
723 pos += strln;
724#undef LINE_LENGTH
725 }
726 if (percentiles)
727 free(percentiles);
728
a666cab8 729 log_buf(out, " states :");
66347cfa 730 for (i = 0; i < BLOCK_STATE_COUNT; i++)
a666cab8 731 log_buf(out, " %s=%u%c",
66347cfa
DE
732 block_state_names[i], block_state_counts[i],
733 i == BLOCK_STATE_COUNT - 1 ? '\n' : ',');
734}
735
d685adfb
VF
736static void show_ss_normal(struct thread_stat *ts, struct buf_output *out)
737{
d694a6a7 738 char *p1, *p1alt, *p2;
d685adfb
VF
739 unsigned long long bw_mean, iops_mean;
740 const int i2p = is_power_of_2(ts->kb_base);
741
0c13c969 742 if (!ts->ss_dur)
d685adfb
VF
743 return;
744
bb49c8bd
VF
745 bw_mean = steadystate_bw_mean(ts);
746 iops_mean = steadystate_iops_mean(ts);
d685adfb 747
e883cb35
JF
748 p1 = num2str(bw_mean / ts->kb_base, ts->sig_figs, ts->kb_base, i2p, ts->unit_base);
749 p1alt = num2str(bw_mean / ts->kb_base, ts->sig_figs, ts->kb_base, !i2p, ts->unit_base);
750 p2 = num2str(iops_mean, ts->sig_figs, 1, 0, N2S_NONE);
d685adfb 751
d694a6a7 752 log_buf(out, " steadystate : attained=%s, bw=%s (%s), iops=%s, %s%s=%.3f%s\n",
c8caba48 753 ts->ss_state & FIO_SS_ATTAINED ? "yes" : "no",
d694a6a7 754 p1, p1alt, p2,
c8caba48
JA
755 ts->ss_state & FIO_SS_IOPS ? "iops" : "bw",
756 ts->ss_state & FIO_SS_SLOPE ? " slope": " mean dev",
bb49c8bd 757 ts->ss_criterion.u.f,
c8caba48 758 ts->ss_state & FIO_SS_PCT ? "%" : "");
d685adfb
VF
759
760 free(p1);
d694a6a7 761 free(p1alt);
d685adfb
VF
762 free(p2);
763}
764
10aa136b 765static void show_thread_status_normal(struct thread_stat *ts,
a666cab8
JA
766 struct group_run_stats *rs,
767 struct buf_output *out)
3c39a379
JA
768{
769 double usr_cpu, sys_cpu;
69008999 770 unsigned long runtime;
71619dc2 771 double io_u_dist[FIO_IO_U_MAP_NR];
57a64324 772 time_t time_p;
35326842 773 char time_buf[32];
3c39a379 774
9966af7b 775 if (!ddir_rw_sum(ts->io_bytes) && !ddir_rw_sum(ts->total_io_u))
3c39a379 776 return;
33477b4b
JS
777
778 memset(time_buf, 0, sizeof(time_buf));
3c39a379 779
57a64324 780 time(&time_p);
45054cbe 781 os_ctime_r((const time_t *) &time_p, time_buf, sizeof(time_buf));
57a64324 782
5ec10eaa 783 if (!ts->error) {
a666cab8 784 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d: pid=%d: %s",
5ec10eaa 785 ts->name, ts->groupid, ts->members,
57a64324 786 ts->error, (int) ts->pid, time_buf);
5ec10eaa 787 } else {
a666cab8 788 log_buf(out, "%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d: %s",
5ec10eaa 789 ts->name, ts->groupid, ts->members,
57a64324
JA
790 ts->error, ts->verror, (int) ts->pid,
791 time_buf);
5ec10eaa 792 }
3c39a379 793
259e47de 794 if (strlen(ts->description))
a666cab8 795 log_buf(out, " Description : [%s]\n", ts->description);
7bdce1bd 796
756867bd 797 if (ts->io_bytes[DDIR_READ])
a666cab8 798 show_ddir_status(rs, ts, DDIR_READ, out);
756867bd 799 if (ts->io_bytes[DDIR_WRITE])
a666cab8 800 show_ddir_status(rs, ts, DDIR_WRITE, out);
6eaf09d6 801 if (ts->io_bytes[DDIR_TRIM])
a666cab8 802 show_ddir_status(rs, ts, DDIR_TRIM, out);
3c39a379 803
a666cab8 804 show_latencies(ts, out);
7e1773ba 805
756867bd 806 runtime = ts->total_run_time;
69008999 807 if (runtime) {
1e97cce9 808 double runt = (double) runtime;
3c39a379 809
756867bd
JA
810 usr_cpu = (double) ts->usr_time * 100 / runt;
811 sys_cpu = (double) ts->sys_time * 100 / runt;
3c39a379
JA
812 } else {
813 usr_cpu = 0;
814 sys_cpu = 0;
815 }
816
a666cab8 817 log_buf(out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%llu,"
4e0a8fa2
JA
818 " majf=%llu, minf=%llu\n", usr_cpu, sys_cpu,
819 (unsigned long long) ts->ctx,
820 (unsigned long long) ts->majf,
821 (unsigned long long) ts->minf);
71619dc2 822
d79db122 823 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
a666cab8 824 log_buf(out, " IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
5ec10eaa
JA
825 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
826 io_u_dist[1], io_u_dist[2],
827 io_u_dist[3], io_u_dist[4],
828 io_u_dist[5], io_u_dist[6]);
838bc709
JA
829
830 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
a666cab8 831 log_buf(out, " submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
838bc709
JA
832 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
833 io_u_dist[1], io_u_dist[2],
834 io_u_dist[3], io_u_dist[4],
835 io_u_dist[5], io_u_dist[6]);
836 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
a666cab8 837 log_buf(out, " complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
838bc709
JA
838 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
839 io_u_dist[1], io_u_dist[2],
840 io_u_dist[3], io_u_dist[4],
841 io_u_dist[5], io_u_dist[6]);
d694a6a7
RE
842 log_buf(out, " issued rwt: total=%llu,%llu,%llu,"
843 " short=%llu,%llu,%llu,"
844 " dropped=%llu,%llu,%llu\n",
4e0a8fa2
JA
845 (unsigned long long) ts->total_io_u[0],
846 (unsigned long long) ts->total_io_u[1],
847 (unsigned long long) ts->total_io_u[2],
848 (unsigned long long) ts->short_io_u[0],
849 (unsigned long long) ts->short_io_u[1],
3bcb9d94
JA
850 (unsigned long long) ts->short_io_u[2],
851 (unsigned long long) ts->drop_io_u[0],
852 (unsigned long long) ts->drop_io_u[1],
853 (unsigned long long) ts->drop_io_u[2]);
f2bba182 854 if (ts->continue_on_error) {
a666cab8 855 log_buf(out, " errors : total=%llu, first_error=%d/<%s>\n",
4e0a8fa2 856 (unsigned long long)ts->total_err_count,
1ec99eea
JA
857 ts->first_error,
858 strerror(ts->first_error));
f2bba182 859 }
3e260a46 860 if (ts->latency_depth) {
a666cab8 861 log_buf(out, " latency : target=%llu, window=%llu, percentile=%.2f%%, depth=%u\n",
3e260a46
JA
862 (unsigned long long)ts->latency_target,
863 (unsigned long long)ts->latency_window,
864 ts->latency_percentile.u.f,
865 ts->latency_depth);
866 }
66347cfa
DE
867
868 if (ts->nr_block_infos)
869 show_block_infos(ts->nr_block_infos, ts->block_infos,
a666cab8 870 ts->percentile_list, out);
d685adfb 871
bb49c8bd 872 if (ts->ss_dur)
d685adfb 873 show_ss_normal(ts, out);
3c39a379
JA
874}
875
756867bd 876static void show_ddir_status_terse(struct thread_stat *ts,
a666cab8 877 struct group_run_stats *rs, int ddir,
a2c95580 878 int ver, struct buf_output *out)
c6ae0a5b 879{
d6bb626e
VF
880 unsigned long long min, max, minv, maxv, bw, iops;
881 unsigned long long *ovals = NULL;
c6ae0a5b 882 double mean, dev;
d6bb626e 883 unsigned int len;
a2c95580 884 int i, bw_stat;
c6ae0a5b 885
ff58fced
JA
886 assert(ddir_rw(ddir));
887
312b4af2
JA
888 iops = bw = 0;
889 if (ts->runtime[ddir]) {
890 uint64_t runt = ts->runtime[ddir];
891
420b104a 892 bw = ((1000 * ts->io_bytes[ddir]) / runt) / 1024; /* KiB/s */
312b4af2
JA
893 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
894 }
c6ae0a5b 895
a666cab8 896 log_buf(out, ";%llu;%llu;%llu;%llu",
4e0a8fa2
JA
897 (unsigned long long) ts->io_bytes[ddir] >> 10, bw, iops,
898 (unsigned long long) ts->runtime[ddir]);
c6ae0a5b 899
079ad09b 900 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
247823cc 901 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
c6ae0a5b 902 else
d6bb626e 903 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
c6ae0a5b 904
079ad09b 905 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
247823cc 906 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
c6ae0a5b 907 else
d6bb626e 908 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
c6ae0a5b 909
b599759b 910 if (ts->clat_percentiles || ts->lat_percentiles) {
1db92cb6
JA
911 len = calc_clat_percentiles(ts->io_u_plat[ddir],
912 ts->clat_stat[ddir].samples,
913 ts->percentile_list, &ovals, &maxv,
914 &minv);
915 } else
916 len = 0;
917
918 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
919 if (i >= len) {
a666cab8 920 log_buf(out, ";0%%=0");
1db92cb6
JA
921 continue;
922 }
247823cc 923 log_buf(out, ";%f%%=%llu", ts->percentile_list[i].u.f, ovals[i]/1000);
1db92cb6 924 }
2341a37a
K
925
926 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
247823cc 927 log_buf(out, ";%llu;%llu;%f;%f", min/1000, max/1000, mean/1000, dev/1000);
2341a37a 928 else
d6bb626e 929 log_buf(out, ";%llu;%llu;%f;%f", 0ULL, 0ULL, 0.0, 0.0);
2341a37a 930
1db92cb6
JA
931 if (ovals)
932 free(ovals);
933
a2c95580
AH
934 bw_stat = calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev);
935 if (bw_stat) {
19d3e967
JA
936 double p_of_agg = 100.0;
937
938 if (rs->agg[ddir]) {
d1707474 939 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
19d3e967
JA
940 if (p_of_agg > 100.0)
941 p_of_agg = 100.0;
942 }
c6ae0a5b 943
d6bb626e 944 log_buf(out, ";%llu;%llu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
c6ae0a5b 945 } else
d6bb626e 946 log_buf(out, ";%llu;%llu;%f%%;%f;%f", 0ULL, 0ULL, 0.0, 0.0, 0.0);
a2c95580
AH
947
948 if (ver == 5) {
949 if (bw_stat)
29eb371b 950 log_buf(out, ";%" PRIu64, (&ts->bw_stat[ddir])->samples);
a2c95580
AH
951 else
952 log_buf(out, ";%lu", 0UL);
953
954 if (calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev))
29eb371b 955 log_buf(out, ";%llu;%llu;%f;%f;%" PRIu64, min, max,
a2c95580
AH
956 mean, dev, (&ts->iops_stat[ddir])->samples);
957 else
958 log_buf(out, ";%llu;%llu;%f;%f;%lu", 0ULL, 0ULL, 0.0, 0.0, 0UL);
959 }
c6ae0a5b
JA
960}
961
cc372b17
SL
962static void add_ddir_status_json(struct thread_stat *ts,
963 struct group_run_stats *rs, int ddir, struct json_object *parent)
964{
d6bb626e 965 unsigned long long min, max, minv, maxv;
aedd021d 966 unsigned long long bw_bytes, bw;
d6bb626e 967 unsigned long long *ovals = NULL;
9f68fe3a 968 double mean, dev, iops;
d6bb626e 969 unsigned int len;
cc372b17
SL
970 int i;
971 const char *ddirname[] = {"read", "write", "trim"};
24cab44e 972 struct json_object *dir_object, *tmp_object, *percentile_object, *clat_bins_object = NULL;
cc372b17
SL
973 char buf[120];
974 double p_of_agg = 100.0;
975
976 assert(ddir_rw(ddir));
977
771e58be
JA
978 if (ts->unified_rw_rep && ddir != DDIR_READ)
979 return;
980
cc372b17 981 dir_object = json_create_object();
771e58be
JA
982 json_object_add_value_object(parent,
983 ts->unified_rw_rep ? "mixed" : ddirname[ddir], dir_object);
cc372b17 984
aedd021d 985 bw_bytes = 0;
9f68fe3a
BE
986 bw = 0;
987 iops = 0.0;
cc372b17
SL
988 if (ts->runtime[ddir]) {
989 uint64_t runt = ts->runtime[ddir];
990
aedd021d
SW
991 bw_bytes = ((1000 * ts->io_bytes[ddir]) / runt); /* Bytes/s */
992 bw = bw_bytes / 1024; /* KiB/s */
9f68fe3a 993 iops = (1000.0 * (uint64_t) ts->total_io_u[ddir]) / runt;
cc372b17
SL
994 }
995
c12d597a
JA
996 json_object_add_value_int(dir_object, "io_bytes", ts->io_bytes[ddir]);
997 json_object_add_value_int(dir_object, "io_kbytes", ts->io_bytes[ddir] >> 10);
aedd021d 998 json_object_add_value_int(dir_object, "bw_bytes", bw_bytes);
cc372b17 999 json_object_add_value_int(dir_object, "bw", bw);
9f68fe3a 1000 json_object_add_value_float(dir_object, "iops", iops);
cc372b17 1001 json_object_add_value_int(dir_object, "runtime", ts->runtime[ddir]);
9966af7b
JA
1002 json_object_add_value_int(dir_object, "total_ios", ts->total_io_u[ddir]);
1003 json_object_add_value_int(dir_object, "short_ios", ts->short_io_u[ddir]);
1004 json_object_add_value_int(dir_object, "drop_ios", ts->drop_io_u[ddir]);
cc372b17
SL
1005
1006 if (!calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
1007 min = max = 0;
1008 mean = dev = 0.0;
1009 }
1010 tmp_object = json_create_object();
d6bb626e 1011 json_object_add_value_object(dir_object, "slat_ns", tmp_object);
cc372b17
SL
1012 json_object_add_value_int(tmp_object, "min", min);
1013 json_object_add_value_int(tmp_object, "max", max);
1014 json_object_add_value_float(tmp_object, "mean", mean);
1015 json_object_add_value_float(tmp_object, "stddev", dev);
1016
1017 if (!calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
1018 min = max = 0;
1019 mean = dev = 0.0;
1020 }
1021 tmp_object = json_create_object();
d6bb626e 1022 json_object_add_value_object(dir_object, "clat_ns", tmp_object);
cc372b17
SL
1023 json_object_add_value_int(tmp_object, "min", min);
1024 json_object_add_value_int(tmp_object, "max", max);
1025 json_object_add_value_float(tmp_object, "mean", mean);
1026 json_object_add_value_float(tmp_object, "stddev", dev);
1027
b599759b 1028 if (ts->clat_percentiles || ts->lat_percentiles) {
cc372b17
SL
1029 len = calc_clat_percentiles(ts->io_u_plat[ddir],
1030 ts->clat_stat[ddir].samples,
1031 ts->percentile_list, &ovals, &maxv,
1032 &minv);
1033 } else
1034 len = 0;
1035
1036 percentile_object = json_create_object();
1037 json_object_add_value_object(tmp_object, "percentile", percentile_object);
1038 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
1039 if (i >= len) {
1040 json_object_add_value_int(percentile_object, "0.00", 0);
1041 continue;
1042 }
435d195a 1043 snprintf(buf, sizeof(buf), "%f", ts->percentile_list[i].u.f);
cc372b17
SL
1044 json_object_add_value_int(percentile_object, (const char *)buf, ovals[i]);
1045 }
1046
513e37ee
VF
1047 if (output_format & FIO_OUTPUT_JSON_PLUS) {
1048 clat_bins_object = json_create_object();
24cab44e
VF
1049 if (ts->clat_percentiles)
1050 json_object_add_value_object(tmp_object, "bins", clat_bins_object);
1051
513e37ee 1052 for(i = 0; i < FIO_IO_U_PLAT_NR; i++) {
129e4193
VF
1053 if (ts->io_u_plat[ddir][i]) {
1054 snprintf(buf, sizeof(buf), "%llu", plat_idx_to_val(i));
1055 json_object_add_value_int(clat_bins_object, (const char *)buf, ts->io_u_plat[ddir][i]);
1056 }
513e37ee 1057 }
513e37ee
VF
1058 }
1059
cc372b17
SL
1060 if (!calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
1061 min = max = 0;
1062 mean = dev = 0.0;
1063 }
1064 tmp_object = json_create_object();
d6bb626e 1065 json_object_add_value_object(dir_object, "lat_ns", tmp_object);
cc372b17
SL
1066 json_object_add_value_int(tmp_object, "min", min);
1067 json_object_add_value_int(tmp_object, "max", max);
1068 json_object_add_value_float(tmp_object, "mean", mean);
1069 json_object_add_value_float(tmp_object, "stddev", dev);
24cab44e
VF
1070 if (output_format & FIO_OUTPUT_JSON_PLUS && ts->lat_percentiles)
1071 json_object_add_value_object(tmp_object, "bins", clat_bins_object);
1072
cc372b17
SL
1073 if (ovals)
1074 free(ovals);
1075
b9e1b491 1076 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
cc372b17 1077 if (rs->agg[ddir]) {
d1707474 1078 p_of_agg = mean * 100 / (double) (rs->agg[ddir] / 1024);
cc372b17
SL
1079 if (p_of_agg > 100.0)
1080 p_of_agg = 100.0;
1081 }
1082 } else {
1083 min = max = 0;
1084 p_of_agg = mean = dev = 0.0;
1085 }
1086 json_object_add_value_int(dir_object, "bw_min", min);
1087 json_object_add_value_int(dir_object, "bw_max", max);
a806bf2e 1088 json_object_add_value_float(dir_object, "bw_agg", p_of_agg);
cc372b17
SL
1089 json_object_add_value_float(dir_object, "bw_mean", mean);
1090 json_object_add_value_float(dir_object, "bw_dev", dev);
54c05828
AH
1091 json_object_add_value_int(dir_object, "bw_samples",
1092 (&ts->bw_stat[ddir])->samples);
188b6016
AH
1093
1094 if (!calc_lat(&ts->iops_stat[ddir], &min, &max, &mean, &dev)) {
1095 min = max = 0;
1096 mean = dev = 0.0;
1097 }
1098 json_object_add_value_int(dir_object, "iops_min", min);
1099 json_object_add_value_int(dir_object, "iops_max", max);
1100 json_object_add_value_float(dir_object, "iops_mean", mean);
1101 json_object_add_value_float(dir_object, "iops_stddev", dev);
54c05828
AH
1102 json_object_add_value_int(dir_object, "iops_samples",
1103 (&ts->iops_stat[ddir])->samples);
cc372b17
SL
1104}
1105
bef2112b
AH
1106static void show_thread_status_terse_all(struct thread_stat *ts,
1107 struct group_run_stats *rs, int ver,
1108 struct buf_output *out)
4d658652
JA
1109{
1110 double io_u_dist[FIO_IO_U_MAP_NR];
1111 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1112 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1113 double usr_cpu, sys_cpu;
1114 int i;
1115
1116 /* General Info */
bef2112b
AH
1117 if (ver == 2)
1118 log_buf(out, "2;%s;%d;%d", ts->name, ts->groupid, ts->error);
1119 else
1120 log_buf(out, "%d;%s;%s;%d;%d", ver, fio_version_string,
1121 ts->name, ts->groupid, ts->error);
c6ae0a5b 1122
562c2d2f 1123 /* Log Read Status */
a2c95580 1124 show_ddir_status_terse(ts, rs, DDIR_READ, ver, out);
562c2d2f 1125 /* Log Write Status */
a2c95580 1126 show_ddir_status_terse(ts, rs, DDIR_WRITE, ver, out);
6eaf09d6 1127 /* Log Trim Status */
a2c95580
AH
1128 if (ver == 2 || ver == 4 || ver == 5)
1129 show_ddir_status_terse(ts, rs, DDIR_TRIM, ver, out);
c6ae0a5b 1130
562c2d2f 1131 /* CPU Usage */
756867bd
JA
1132 if (ts->total_run_time) {
1133 double runt = (double) ts->total_run_time;
c6ae0a5b 1134
756867bd
JA
1135 usr_cpu = (double) ts->usr_time * 100 / runt;
1136 sys_cpu = (double) ts->sys_time * 100 / runt;
c6ae0a5b
JA
1137 } else {
1138 usr_cpu = 0;
1139 sys_cpu = 0;
1140 }
1141
a666cab8 1142 log_buf(out, ";%f%%;%f%%;%llu;%llu;%llu", usr_cpu, sys_cpu,
4e0a8fa2
JA
1143 (unsigned long long) ts->ctx,
1144 (unsigned long long) ts->majf,
1145 (unsigned long long) ts->minf);
2270890c 1146
562c2d2f 1147 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 1148 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
247823cc 1149 stat_calc_lat_nu(ts, io_u_lat_u);
04a0feae 1150 stat_calc_lat_m(ts, io_u_lat_m);
2270890c 1151
562c2d2f 1152 /* Only show fixed 7 I/O depth levels*/
a666cab8 1153 log_buf(out, ";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
5ec10eaa
JA
1154 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
1155 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
2270890c 1156
562c2d2f 1157 /* Microsecond latency */
04a0feae 1158 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
a666cab8 1159 log_buf(out, ";%3.2f%%", io_u_lat_u[i]);
562c2d2f 1160 /* Millisecond latency */
04a0feae 1161 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
a666cab8 1162 log_buf(out, ";%3.2f%%", io_u_lat_m[i]);
f2f788dd
JA
1163
1164 /* disk util stats, if any */
bef2112b
AH
1165 if (ver >= 3)
1166 show_disk_util(1, NULL, out);
f2f788dd 1167
562c2d2f 1168 /* Additional output if continue_on_error set - default off*/
f2bba182 1169 if (ts->continue_on_error)
a666cab8 1170 log_buf(out, ";%llu;%d", (unsigned long long) ts->total_err_count, ts->first_error);
bef2112b
AH
1171 if (ver == 2)
1172 log_buf(out, "\n");
2270890c 1173
562c2d2f 1174 /* Additional output if description is set */
4b0f2258 1175 if (strlen(ts->description))
a666cab8 1176 log_buf(out, ";%s", ts->description);
946e4276 1177
a666cab8 1178 log_buf(out, "\n");
756867bd
JA
1179}
1180
a89ba4b1
JA
1181static void json_add_job_opts(struct json_object *root, const char *name,
1182 struct flist_head *opt_list, bool num_jobs)
66e19a38
JA
1183{
1184 struct json_object *dir_object;
1185 struct flist_head *entry;
1186 struct print_option *p;
1187
1188 if (flist_empty(opt_list))
1189 return;
1190
1191 dir_object = json_create_object();
1192 json_object_add_value_object(root, name, dir_object);
1193
1194 flist_for_each(entry, opt_list) {
1195 const char *pos = "";
1196
1197 p = flist_entry(entry, struct print_option, list);
876e1001
JA
1198 if (!num_jobs && !strcmp(p->name, "numjobs"))
1199 continue;
66e19a38
JA
1200 if (p->value)
1201 pos = p->value;
1202 json_object_add_value_string(dir_object, p->name, pos);
1203 }
1204}
1205
cc372b17 1206static struct json_object *show_thread_status_json(struct thread_stat *ts,
66e19a38
JA
1207 struct group_run_stats *rs,
1208 struct flist_head *opt_list)
cc372b17
SL
1209{
1210 struct json_object *root, *tmp;
b01af66b 1211 struct jobs_eta *je;
cc372b17 1212 double io_u_dist[FIO_IO_U_MAP_NR];
d6bb626e 1213 double io_u_lat_n[FIO_IO_U_LAT_N_NR];
cc372b17
SL
1214 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
1215 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
1216 double usr_cpu, sys_cpu;
1217 int i;
b01af66b
CJ
1218 size_t size;
1219
cc372b17
SL
1220 root = json_create_object();
1221 json_object_add_value_string(root, "jobname", ts->name);
1222 json_object_add_value_int(root, "groupid", ts->groupid);
1223 json_object_add_value_int(root, "error", ts->error);
1224
b01af66b 1225 /* ETA Info */
c5103619 1226 je = get_jobs_eta(true, &size);
2de615ad
JA
1227 if (je) {
1228 json_object_add_value_int(root, "eta", je->eta_sec);
1229 json_object_add_value_int(root, "elapsed", je->elapsed_sec);
1230 }
b01af66b 1231
66e19a38 1232 if (opt_list)
876e1001 1233 json_add_job_opts(root, "job options", opt_list, true);
66e19a38 1234
cc372b17
SL
1235 add_ddir_status_json(ts, rs, DDIR_READ, root);
1236 add_ddir_status_json(ts, rs, DDIR_WRITE, root);
f3afa57e 1237 add_ddir_status_json(ts, rs, DDIR_TRIM, root);
cc372b17
SL
1238
1239 /* CPU Usage */
1240 if (ts->total_run_time) {
1241 double runt = (double) ts->total_run_time;
1242
1243 usr_cpu = (double) ts->usr_time * 100 / runt;
1244 sys_cpu = (double) ts->sys_time * 100 / runt;
1245 } else {
1246 usr_cpu = 0;
1247 sys_cpu = 0;
1248 }
1249 json_object_add_value_float(root, "usr_cpu", usr_cpu);
1250 json_object_add_value_float(root, "sys_cpu", sys_cpu);
1251 json_object_add_value_int(root, "ctx", ts->ctx);
1252 json_object_add_value_int(root, "majf", ts->majf);
1253 json_object_add_value_int(root, "minf", ts->minf);
1254
1255
1256 /* Calc % distribution of IO depths, usecond, msecond latency */
d79db122 1257 stat_calc_dist(ts->io_u_map, ddir_rw_sum(ts->total_io_u), io_u_dist);
d6bb626e 1258 stat_calc_lat_n(ts, io_u_lat_n);
cc372b17
SL
1259 stat_calc_lat_u(ts, io_u_lat_u);
1260 stat_calc_lat_m(ts, io_u_lat_m);
1261
1262 tmp = json_create_object();
1263 json_object_add_value_object(root, "iodepth_level", tmp);
1264 /* Only show fixed 7 I/O depth levels*/
1265 for (i = 0; i < 7; i++) {
1266 char name[20];
1267 if (i < 6)
98ffb8f3 1268 snprintf(name, 20, "%d", 1 << i);
cc372b17 1269 else
98ffb8f3 1270 snprintf(name, 20, ">=%d", 1 << i);
cc372b17
SL
1271 json_object_add_value_float(tmp, (const char *)name, io_u_dist[i]);
1272 }
1273
d6bb626e 1274 /* Nanosecond latency */
cc372b17 1275 tmp = json_create_object();
d6bb626e
VF
1276 json_object_add_value_object(root, "latency_ns", tmp);
1277 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++) {
1278 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1279 "250", "500", "750", "1000", };
1280 json_object_add_value_float(tmp, ranges[i], io_u_lat_n[i]);
1281 }
cc372b17 1282 /* Microsecond latency */
d6bb626e
VF
1283 tmp = json_create_object();
1284 json_object_add_value_object(root, "latency_us", tmp);
cc372b17
SL
1285 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++) {
1286 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1287 "250", "500", "750", "1000", };
1288 json_object_add_value_float(tmp, ranges[i], io_u_lat_u[i]);
1289 }
1290 /* Millisecond latency */
1291 tmp = json_create_object();
1292 json_object_add_value_object(root, "latency_ms", tmp);
1293 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++) {
1294 const char *ranges[] = { "2", "4", "10", "20", "50", "100",
1295 "250", "500", "750", "1000", "2000",
1296 ">=2000", };
1297 json_object_add_value_float(tmp, ranges[i], io_u_lat_m[i]);
1298 }
1299
1300 /* Additional output if continue_on_error set - default off*/
1301 if (ts->continue_on_error) {
1302 json_object_add_value_int(root, "total_err", ts->total_err_count);
952b05e0 1303 json_object_add_value_int(root, "first_error", ts->first_error);
cc372b17
SL
1304 }
1305
3e260a46
JA
1306 if (ts->latency_depth) {
1307 json_object_add_value_int(root, "latency_depth", ts->latency_depth);
1308 json_object_add_value_int(root, "latency_target", ts->latency_target);
1309 json_object_add_value_float(root, "latency_percentile", ts->latency_percentile.u.f);
1310 json_object_add_value_int(root, "latency_window", ts->latency_window);
1311 }
1312
cc372b17
SL
1313 /* Additional output if description is set */
1314 if (strlen(ts->description))
1315 json_object_add_value_string(root, "desc", ts->description);
1316
66347cfa
DE
1317 if (ts->nr_block_infos) {
1318 /* Block error histogram and types */
1319 int len;
1320 unsigned int *percentiles = NULL;
1321 unsigned int block_state_counts[BLOCK_STATE_COUNT];
1322
1323 len = calc_block_percentiles(ts->nr_block_infos, ts->block_infos,
1324 ts->percentile_list,
1325 &percentiles, block_state_counts);
1326
1327 if (len) {
1328 struct json_object *block, *percentile_object, *states;
8a68c41c 1329 int state;
66347cfa
DE
1330 block = json_create_object();
1331 json_object_add_value_object(root, "block", block);
1332
1333 percentile_object = json_create_object();
1334 json_object_add_value_object(block, "percentiles",
1335 percentile_object);
1336 for (i = 0; i < len; i++) {
1337 char buf[20];
1338 snprintf(buf, sizeof(buf), "%f",
1339 ts->percentile_list[i].u.f);
1340 json_object_add_value_int(percentile_object,
1341 (const char *)buf,
1342 percentiles[i]);
1343 }
1344
1345 states = json_create_object();
1346 json_object_add_value_object(block, "states", states);
1347 for (state = 0; state < BLOCK_STATE_COUNT; state++) {
1348 json_object_add_value_int(states,
1349 block_state_names[state],
1350 block_state_counts[state]);
1351 }
1352 free(percentiles);
1353 }
1354 }
1355
bb49c8bd 1356 if (ts->ss_dur) {
ba8fb6f6
VF
1357 struct json_object *data;
1358 struct json_array *iops, *bw;
412c7d91 1359 int i, j, k;
6da94b07 1360 char ss_buf[64];
16e56d25 1361
6da94b07 1362 snprintf(ss_buf, sizeof(ss_buf), "%s%s:%f%s",
c8caba48
JA
1363 ts->ss_state & FIO_SS_IOPS ? "iops" : "bw",
1364 ts->ss_state & FIO_SS_SLOPE ? "_slope" : "",
bb49c8bd 1365 (float) ts->ss_limit.u.f,
c8caba48 1366 ts->ss_state & FIO_SS_PCT ? "%" : "");
16e56d25
VF
1367
1368 tmp = json_create_object();
1369 json_object_add_value_object(root, "steadystate", tmp);
6da94b07 1370 json_object_add_value_string(tmp, "ss", ss_buf);
bb49c8bd 1371 json_object_add_value_int(tmp, "duration", (int)ts->ss_dur);
c8caba48 1372 json_object_add_value_int(tmp, "attained", (ts->ss_state & FIO_SS_ATTAINED) > 0);
6da94b07 1373
bb49c8bd 1374 snprintf(ss_buf, sizeof(ss_buf), "%f%s", (float) ts->ss_criterion.u.f,
c8caba48 1375 ts->ss_state & FIO_SS_PCT ? "%" : "");
6da94b07 1376 json_object_add_value_string(tmp, "criterion", ss_buf);
bb49c8bd
VF
1377 json_object_add_value_float(tmp, "max_deviation", ts->ss_deviation.u.f);
1378 json_object_add_value_float(tmp, "slope", ts->ss_slope.u.f);
ba8fb6f6
VF
1379
1380 data = json_create_object();
1381 json_object_add_value_object(tmp, "data", data);
1382 bw = json_create_array();
1383 iops = json_create_array();
412c7d91
VF
1384
1385 /*
1386 ** if ss was attained or the buffer is not full,
1387 ** ss->head points to the first element in the list.
1388 ** otherwise it actually points to the second element
1389 ** in the list
1390 */
c8caba48 1391 if ((ts->ss_state & FIO_SS_ATTAINED) || !(ts->ss_state & FIO_SS_BUFFER_FULL))
bb49c8bd 1392 j = ts->ss_head;
412c7d91 1393 else
bb49c8bd
VF
1394 j = ts->ss_head == 0 ? ts->ss_dur - 1 : ts->ss_head - 1;
1395 for (i = 0; i < ts->ss_dur; i++) {
1396 k = (j + i) % ts->ss_dur;
1397 json_array_add_value_int(bw, ts->ss_bw_data[k]);
1398 json_array_add_value_int(iops, ts->ss_iops_data[k]);
16e56d25 1399 }
bb49c8bd
VF
1400 json_object_add_value_int(data, "bw_mean", steadystate_bw_mean(ts));
1401 json_object_add_value_int(data, "iops_mean", steadystate_iops_mean(ts));
6da94b07
VF
1402 json_object_add_value_array(data, "iops", iops);
1403 json_object_add_value_array(data, "bw", bw);
16e56d25
VF
1404 }
1405
cc372b17
SL
1406 return root;
1407}
1408
4d658652 1409static void show_thread_status_terse(struct thread_stat *ts,
a666cab8
JA
1410 struct group_run_stats *rs,
1411 struct buf_output *out)
4d658652 1412{
a2c95580 1413 if (terse_version >= 2 && terse_version <= 5)
bef2112b 1414 show_thread_status_terse_all(ts, rs, terse_version, out);
4d658652
JA
1415 else
1416 log_err("fio: bad terse version!? %d\n", terse_version);
1417}
1418
952b05e0 1419struct json_object *show_thread_status(struct thread_stat *ts,
a666cab8 1420 struct group_run_stats *rs,
0279b880 1421 struct flist_head *opt_list,
a666cab8 1422 struct buf_output *out)
952b05e0 1423{
129fb2d4
JA
1424 struct json_object *ret = NULL;
1425
1426 if (output_format & FIO_OUTPUT_TERSE)
a666cab8 1427 show_thread_status_terse(ts, rs, out);
129fb2d4 1428 if (output_format & FIO_OUTPUT_JSON)
0279b880 1429 ret = show_thread_status_json(ts, rs, opt_list);
129fb2d4 1430 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1431 show_thread_status_normal(ts, rs, out);
129fb2d4
JA
1432
1433 return ret;
952b05e0
CF
1434}
1435
fd595830 1436static void sum_stat(struct io_stat *dst, struct io_stat *src, bool first)
756867bd
JA
1437{
1438 double mean, S;
1439
e09231c2
ZL
1440 if (src->samples == 0)
1441 return;
1442
756867bd
JA
1443 dst->min_val = min(dst->min_val, src->min_val);
1444 dst->max_val = max(dst->max_val, src->max_val);
756867bd
JA
1445
1446 /*
cdcac5cf
YH
1447 * Compute new mean and S after the merge
1448 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
1449 * #Parallel_algorithm>
756867bd 1450 */
fd595830 1451 if (first) {
802ad4a8
JA
1452 mean = src->mean.u.f;
1453 S = src->S.u.f;
756867bd 1454 } else {
802ad4a8 1455 double delta = src->mean.u.f - dst->mean.u.f;
cdcac5cf 1456
802ad4a8
JA
1457 mean = ((src->mean.u.f * src->samples) +
1458 (dst->mean.u.f * dst->samples)) /
cdcac5cf
YH
1459 (dst->samples + src->samples);
1460
802ad4a8 1461 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
cdcac5cf
YH
1462 (dst->samples * src->samples) /
1463 (dst->samples + src->samples);
756867bd
JA
1464 }
1465
cdcac5cf 1466 dst->samples += src->samples;
802ad4a8
JA
1467 dst->mean.u.f = mean;
1468 dst->S.u.f = S;
756867bd
JA
1469}
1470
37f0c1ae
JA
1471void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
1472{
1473 int i;
1474
6eaf09d6 1475 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
37f0c1ae
JA
1476 if (dst->max_run[i] < src->max_run[i])
1477 dst->max_run[i] = src->max_run[i];
1478 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
1479 dst->min_run[i] = src->min_run[i];
1480 if (dst->max_bw[i] < src->max_bw[i])
1481 dst->max_bw[i] = src->max_bw[i];
1482 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
1483 dst->min_bw[i] = src->min_bw[i];
1484
af7f87cb 1485 dst->iobytes[i] += src->iobytes[i];
37f0c1ae
JA
1486 dst->agg[i] += src->agg[i];
1487 }
1488
dbae1bd6
JA
1489 if (!dst->kb_base)
1490 dst->kb_base = src->kb_base;
1491 if (!dst->unit_base)
1492 dst->unit_base = src->unit_base;
18aa1998
JF
1493 if (!dst->sig_figs)
1494 dst->sig_figs = src->sig_figs;
37f0c1ae
JA
1495}
1496
fd595830
JA
1497void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src,
1498 bool first)
5b9babb7
JA
1499{
1500 int l, k;
1501
6eaf09d6 1502 for (l = 0; l < DDIR_RWDIR_CNT; l++) {
771e58be 1503 if (!dst->unified_rw_rep) {
fd595830
JA
1504 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], first);
1505 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], first);
1506 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], first);
1507 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], first);
188b6016 1508 sum_stat(&dst->iops_stat[l], &src->iops_stat[l], first);
771e58be
JA
1509
1510 dst->io_bytes[l] += src->io_bytes[l];
1511
1512 if (dst->runtime[l] < src->runtime[l])
1513 dst->runtime[l] = src->runtime[l];
1514 } else {
fd595830
JA
1515 sum_stat(&dst->clat_stat[0], &src->clat_stat[l], first);
1516 sum_stat(&dst->slat_stat[0], &src->slat_stat[l], first);
1517 sum_stat(&dst->lat_stat[0], &src->lat_stat[l], first);
1518 sum_stat(&dst->bw_stat[0], &src->bw_stat[l], first);
188b6016 1519 sum_stat(&dst->iops_stat[0], &src->iops_stat[l], first);
771e58be
JA
1520
1521 dst->io_bytes[0] += src->io_bytes[l];
1522
1523 if (dst->runtime[0] < src->runtime[l])
1524 dst->runtime[0] = src->runtime[l];
fd595830
JA
1525
1526 /*
1527 * We're summing to the same destination, so override
1528 * 'first' after the first iteration of the loop
1529 */
1530 first = false;
771e58be 1531 }
5b9babb7
JA
1532 }
1533
1534 dst->usr_time += src->usr_time;
1535 dst->sys_time += src->sys_time;
1536 dst->ctx += src->ctx;
1537 dst->majf += src->majf;
1538 dst->minf += src->minf;
1539
1540 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1541 dst->io_u_map[k] += src->io_u_map[k];
1542 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1543 dst->io_u_submit[k] += src->io_u_submit[k];
1544 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
1545 dst->io_u_complete[k] += src->io_u_complete[k];
d6bb626e
VF
1546 for (k = 0; k < FIO_IO_U_LAT_N_NR; k++)
1547 dst->io_u_lat_n[k] += src->io_u_lat_n[k];
5b9babb7
JA
1548 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
1549 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
1550 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
1551 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
1552
6eaf09d6 1553 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
771e58be
JA
1554 if (!dst->unified_rw_rep) {
1555 dst->total_io_u[k] += src->total_io_u[k];
1556 dst->short_io_u[k] += src->short_io_u[k];
3bcb9d94 1557 dst->drop_io_u[k] += src->drop_io_u[k];
771e58be
JA
1558 } else {
1559 dst->total_io_u[0] += src->total_io_u[k];
1560 dst->short_io_u[0] += src->short_io_u[k];
3bcb9d94 1561 dst->drop_io_u[0] += src->drop_io_u[k];
771e58be 1562 }
5b9babb7
JA
1563 }
1564
6eaf09d6 1565 for (k = 0; k < DDIR_RWDIR_CNT; k++) {
5b9babb7 1566 int m;
771e58be
JA
1567
1568 for (m = 0; m < FIO_IO_U_PLAT_NR; m++) {
1569 if (!dst->unified_rw_rep)
1570 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
1571 else
1572 dst->io_u_plat[0][m] += src->io_u_plat[k][m];
1573 }
5b9babb7
JA
1574 }
1575
1576 dst->total_run_time += src->total_run_time;
1577 dst->total_submit += src->total_submit;
1578 dst->total_complete += src->total_complete;
1579}
1580
37f0c1ae
JA
1581void init_group_run_stat(struct group_run_stats *gs)
1582{
6eaf09d6 1583 int i;
37f0c1ae 1584 memset(gs, 0, sizeof(*gs));
6eaf09d6
SL
1585
1586 for (i = 0; i < DDIR_RWDIR_CNT; i++)
1587 gs->min_bw[i] = gs->min_run[i] = ~0UL;
37f0c1ae
JA
1588}
1589
1590void init_thread_stat(struct thread_stat *ts)
1591{
1592 int j;
1593
1594 memset(ts, 0, sizeof(*ts));
1595
6eaf09d6 1596 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
37f0c1ae
JA
1597 ts->lat_stat[j].min_val = -1UL;
1598 ts->clat_stat[j].min_val = -1UL;
1599 ts->slat_stat[j].min_val = -1UL;
1600 ts->bw_stat[j].min_val = -1UL;
188b6016 1601 ts->iops_stat[j].min_val = -1UL;
37f0c1ae
JA
1602 }
1603 ts->groupid = -1;
1604}
1605
83f7b64e 1606void __show_run_stats(void)
3c39a379
JA
1607{
1608 struct group_run_stats *runstats, *rs;
1609 struct thread_data *td;
756867bd 1610 struct thread_stat *threadstats, *ts;
4da24b69 1611 int i, j, k, nr_ts, last_ts, idx;
8985b491
JA
1612 bool kb_base_warned = false;
1613 bool unit_base_warned = false;
cc372b17
SL
1614 struct json_object *root = NULL;
1615 struct json_array *array = NULL;
a666cab8 1616 struct buf_output output[FIO_OUTPUT_NR];
66e19a38 1617 struct flist_head **opt_lists;
a666cab8 1618
3c39a379
JA
1619 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
1620
37f0c1ae
JA
1621 for (i = 0; i < groupid + 1; i++)
1622 init_group_run_stat(&runstats[i]);
3c39a379 1623
756867bd
JA
1624 /*
1625 * find out how many threads stats we need. if group reporting isn't
1626 * enabled, it's one-per-td.
1627 */
1628 nr_ts = 0;
1629 last_ts = -1;
1630 for_each_td(td, i) {
2dc1bbeb 1631 if (!td->o.group_reporting) {
756867bd
JA
1632 nr_ts++;
1633 continue;
1634 }
1635 if (last_ts == td->groupid)
1636 continue;
8243be59
JA
1637 if (!td->o.stats)
1638 continue;
756867bd
JA
1639
1640 last_ts = td->groupid;
1641 nr_ts++;
1642 }
1643
1644 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
66e19a38 1645 opt_lists = malloc(nr_ts * sizeof(struct flist_head *));
756867bd 1646
66e19a38 1647 for (i = 0; i < nr_ts; i++) {
37f0c1ae 1648 init_thread_stat(&threadstats[i]);
66e19a38
JA
1649 opt_lists[i] = NULL;
1650 }
756867bd
JA
1651
1652 j = 0;
1653 last_ts = -1;
197574e4 1654 idx = 0;
34572e28 1655 for_each_td(td, i) {
8243be59
JA
1656 if (!td->o.stats)
1657 continue;
2dc1bbeb
JA
1658 if (idx && (!td->o.group_reporting ||
1659 (td->o.group_reporting && last_ts != td->groupid))) {
7abd0e3a
JA
1660 idx = 0;
1661 j++;
1662 }
1663
1664 last_ts = td->groupid;
1665
756867bd
JA
1666 ts = &threadstats[j];
1667
83349190 1668 ts->clat_percentiles = td->o.clat_percentiles;
b599759b 1669 ts->lat_percentiles = td->o.lat_percentiles;
435d195a 1670 ts->percentile_precision = td->o.percentile_precision;
fd112d34 1671 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
66e19a38 1672 opt_lists[j] = &td->opt_list;
83349190 1673
197574e4 1674 idx++;
6586ee89 1675 ts->members++;
756867bd 1676
7abd0e3a 1677 if (ts->groupid == -1) {
2dc84ba7
JA
1678 /*
1679 * These are per-group shared already
1680 */
4e59d0f3 1681 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE - 1);
a64e88da
JA
1682 if (td->o.description)
1683 strncpy(ts->description, td->o.description,
4e59d0f3 1684 FIO_JOBDESC_SIZE - 1);
a64e88da 1685 else
4e59d0f3 1686 memset(ts->description, 0, FIO_JOBDESC_SIZE);
a64e88da 1687
2f122b13
JA
1688 /*
1689 * If multiple entries in this group, this is
1690 * the first member.
1691 */
1692 ts->thread_number = td->thread_number;
756867bd 1693 ts->groupid = td->groupid;
2dc84ba7
JA
1694
1695 /*
1696 * first pid in group, not very useful...
1697 */
756867bd 1698 ts->pid = td->pid;
90fef2d1
JA
1699
1700 ts->kb_base = td->o.kb_base;
ad705bcb 1701 ts->unit_base = td->o.unit_base;
e883cb35 1702 ts->sig_figs = td->o.sig_figs;
771e58be 1703 ts->unified_rw_rep = td->o.unified_rw_rep;
90fef2d1
JA
1704 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1705 log_info("fio: kb_base differs for jobs in group, using"
1706 " %u as the base\n", ts->kb_base);
8985b491 1707 kb_base_warned = true;
ad705bcb
SN
1708 } else if (ts->unit_base != td->o.unit_base && !unit_base_warned) {
1709 log_info("fio: unit_base differs for jobs in group, using"
1710 " %u as the base\n", ts->unit_base);
8985b491 1711 unit_base_warned = true;
2dc84ba7
JA
1712 }
1713
f2bba182
RR
1714 ts->continue_on_error = td->o.continue_on_error;
1715 ts->total_err_count += td->total_err_count;
1716 ts->first_error = td->first_error;
1717 if (!ts->error) {
1718 if (!td->error && td->o.continue_on_error &&
1719 td->first_error) {
1720 ts->error = td->first_error;
3660ceae
JA
1721 ts->verror[sizeof(ts->verror) - 1] = '\0';
1722 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182
RR
1723 } else if (td->error) {
1724 ts->error = td->error;
3660ceae
JA
1725 ts->verror[sizeof(ts->verror) - 1] = '\0';
1726 strncpy(ts->verror, td->verror, sizeof(ts->verror) - 1);
f2bba182 1727 }
756867bd
JA
1728 }
1729
3e260a46
JA
1730 ts->latency_depth = td->latency_qd;
1731 ts->latency_target = td->o.latency_target;
1732 ts->latency_percentile = td->o.latency_percentile;
1733 ts->latency_window = td->o.latency_window;
1734
0e4dd95c 1735 ts->nr_block_infos = td->ts.nr_block_infos;
4da24b69
JA
1736 for (k = 0; k < ts->nr_block_infos; k++)
1737 ts->block_infos[k] = td->ts.block_infos[k];
0e4dd95c 1738
fd595830 1739 sum_thread_stats(ts, &td->ts, idx == 1);
16e56d25 1740
bb49c8bd
VF
1741 if (td->o.ss_dur) {
1742 ts->ss_state = td->ss.state;
1743 ts->ss_dur = td->ss.dur;
1744 ts->ss_head = td->ss.head;
bb49c8bd
VF
1745 ts->ss_bw_data = td->ss.bw_data;
1746 ts->ss_iops_data = td->ss.iops_data;
1747 ts->ss_limit.u.f = td->ss.limit;
1748 ts->ss_slope.u.f = td->ss.slope;
1749 ts->ss_deviation.u.f = td->ss.deviation;
1750 ts->ss_criterion.u.f = td->ss.criterion;
1751 }
16e56d25 1752 else
bb49c8bd 1753 ts->ss_dur = ts->ss_state = 0;
756867bd
JA
1754 }
1755
1756 for (i = 0; i < nr_ts; i++) {
94370ac4 1757 unsigned long long bw;
3c39a379 1758
756867bd 1759 ts = &threadstats[i];
dedb88eb
JA
1760 if (ts->groupid == -1)
1761 continue;
756867bd 1762 rs = &runstats[ts->groupid];
90fef2d1 1763 rs->kb_base = ts->kb_base;
ad705bcb 1764 rs->unit_base = ts->unit_base;
e883cb35 1765 rs->sig_figs = ts->sig_figs;
771e58be 1766 rs->unified_rw_rep += ts->unified_rw_rep;
3c39a379 1767
6eaf09d6 1768 for (j = 0; j < DDIR_RWDIR_CNT; j++) {
94370ac4
JA
1769 if (!ts->runtime[j])
1770 continue;
1771 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1772 rs->min_run[j] = ts->runtime[j];
1773 if (ts->runtime[j] > rs->max_run[j])
1774 rs->max_run[j] = ts->runtime[j];
1775
1776 bw = 0;
af7f87cb
RE
1777 if (ts->runtime[j])
1778 bw = ts->io_bytes[j] * 1000 / ts->runtime[j];
94370ac4
JA
1779 if (bw < rs->min_bw[j])
1780 rs->min_bw[j] = bw;
1781 if (bw > rs->max_bw[j])
1782 rs->max_bw[j] = bw;
1783
af7f87cb 1784 rs->iobytes[j] += ts->io_bytes[j];
94370ac4 1785 }
3c39a379
JA
1786 }
1787
1788 for (i = 0; i < groupid + 1; i++) {
6eaf09d6
SL
1789 int ddir;
1790
3c39a379
JA
1791 rs = &runstats[i];
1792
6eaf09d6
SL
1793 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
1794 if (rs->max_run[ddir])
af7f87cb 1795 rs->agg[ddir] = (rs->iobytes[ddir] * 1000) /
6eaf09d6
SL
1796 rs->max_run[ddir];
1797 }
3c39a379
JA
1798 }
1799
a666cab8 1800 for (i = 0; i < FIO_OUTPUT_NR; i++)
e250c0a9 1801 buf_output_init(&output[i]);
a666cab8 1802
3c39a379
JA
1803 /*
1804 * don't overwrite last signal output
1805 */
129fb2d4 1806 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1807 log_buf(&output[__FIO_OUTPUT_NORMAL], "\n");
129fb2d4 1808 if (output_format & FIO_OUTPUT_JSON) {
66e19a38 1809 struct thread_data *global;
35326842 1810 char time_buf[32];
aa7d2ef0
RH
1811 struct timeval now;
1812 unsigned long long ms_since_epoch;
91e53870 1813
aa7d2ef0
RH
1814 gettimeofday(&now, NULL);
1815 ms_since_epoch = (unsigned long long)(now.tv_sec) * 1000 +
1816 (unsigned long long)(now.tv_usec) / 1000;
1817
1818 os_ctime_r((const time_t *) &now.tv_sec, time_buf,
91e53870 1819 sizeof(time_buf));
1d272416
JA
1820 if (time_buf[strlen(time_buf) - 1] == '\n')
1821 time_buf[strlen(time_buf) - 1] = '\0';
91e53870 1822
cc372b17
SL
1823 root = json_create_object();
1824 json_object_add_value_string(root, "fio version", fio_version_string);
aa7d2ef0
RH
1825 json_object_add_value_int(root, "timestamp", now.tv_sec);
1826 json_object_add_value_int(root, "timestamp_ms", ms_since_epoch);
91e53870 1827 json_object_add_value_string(root, "time", time_buf);
66e19a38 1828 global = get_global_options();
876e1001 1829 json_add_job_opts(root, "global options", &global->opt_list, false);
cc372b17
SL
1830 array = json_create_array();
1831 json_object_add_value_array(root, "jobs", array);
1832 }
3c39a379 1833
0279b880
JA
1834 if (is_backend)
1835 fio_server_send_job_options(&get_global_options()->opt_list, -1U);
1836
756867bd
JA
1837 for (i = 0; i < nr_ts; i++) {
1838 ts = &threadstats[i];
1839 rs = &runstats[ts->groupid];
3c39a379 1840
0279b880
JA
1841 if (is_backend) {
1842 fio_server_send_job_options(opt_lists[i], i);
a64e88da 1843 fio_server_send_ts(ts, rs);
0279b880 1844 } else {
129fb2d4 1845 if (output_format & FIO_OUTPUT_TERSE)
a666cab8 1846 show_thread_status_terse(ts, rs, &output[__FIO_OUTPUT_TERSE]);
129fb2d4 1847 if (output_format & FIO_OUTPUT_JSON) {
66e19a38 1848 struct json_object *tmp = show_thread_status_json(ts, rs, opt_lists[i]);
129fb2d4
JA
1849 json_array_add_value_object(array, tmp);
1850 }
1851 if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1852 show_thread_status_normal(ts, rs, &output[__FIO_OUTPUT_NORMAL]);
129fb2d4 1853 }
3c39a379 1854 }
ab34ddd1 1855 if (!is_backend && (output_format & FIO_OUTPUT_JSON)) {
cc372b17 1856 /* disk util stats, if any */
a666cab8 1857 show_disk_util(1, root, &output[__FIO_OUTPUT_JSON]);
cc372b17 1858
a666cab8 1859 show_idle_prof_stats(FIO_OUTPUT_JSON, root, &output[__FIO_OUTPUT_JSON]);
f2a2ce0e 1860
a666cab8
JA
1861 json_print_object(root, &output[__FIO_OUTPUT_JSON]);
1862 log_buf(&output[__FIO_OUTPUT_JSON], "\n");
cc372b17
SL
1863 json_free_object(root);
1864 }
3c39a379 1865
72c27ff8
JA
1866 for (i = 0; i < groupid + 1; i++) {
1867 rs = &runstats[i];
3c39a379 1868
72c27ff8 1869 rs->groupid = i;
d09a64a0 1870 if (is_backend)
72c27ff8 1871 fio_server_send_gs(rs);
129fb2d4 1872 else if (output_format & FIO_OUTPUT_NORMAL)
a666cab8 1873 show_group_stats(rs, &output[__FIO_OUTPUT_NORMAL]);
c6ae0a5b 1874 }
eecf272f 1875
72c27ff8
JA
1876 if (is_backend)
1877 fio_server_send_du();
129fb2d4 1878 else if (output_format & FIO_OUTPUT_NORMAL) {
a666cab8
JA
1879 show_disk_util(0, NULL, &output[__FIO_OUTPUT_NORMAL]);
1880 show_idle_prof_stats(FIO_OUTPUT_NORMAL, NULL, &output[__FIO_OUTPUT_NORMAL]);
60904003 1881 }
f2a2ce0e 1882
3d57c0e9 1883 for (i = 0; i < FIO_OUTPUT_NR; i++) {
3dc3aa41 1884 struct buf_output *out = &output[i];
8dd0eca3 1885
3dc3aa41 1886 log_info_buf(out->buf, out->buflen);
3dc3aa41 1887 buf_output_free(out);
3d57c0e9 1888 }
2b8c71b0 1889
fdd5f15f 1890 log_info_flush();
eecf272f 1891 free(runstats);
756867bd 1892 free(threadstats);
66e19a38 1893 free(opt_lists);
3c39a379
JA
1894}
1895
cef9175e
JA
1896void show_run_stats(void)
1897{
1898 fio_mutex_down(stat_mutex);
1899 __show_run_stats();
1900 fio_mutex_up(stat_mutex);
1901}
1902
5ddc6707 1903void __show_running_run_stats(void)
b852e7cf
JA
1904{
1905 struct thread_data *td;
1906 unsigned long long *rt;
8b6a404c 1907 struct timespec ts;
b852e7cf
JA
1908 int i;
1909
90811930
JA
1910 fio_mutex_down(stat_mutex);
1911
b852e7cf 1912 rt = malloc(thread_number * sizeof(unsigned long long));
8b6a404c 1913 fio_gettime(&ts, NULL);
b852e7cf
JA
1914
1915 for_each_td(td, i) {
c97f1ad6 1916 td->update_rusage = 1;
6eaf09d6
SL
1917 td->ts.io_bytes[DDIR_READ] = td->io_bytes[DDIR_READ];
1918 td->ts.io_bytes[DDIR_WRITE] = td->io_bytes[DDIR_WRITE];
1919 td->ts.io_bytes[DDIR_TRIM] = td->io_bytes[DDIR_TRIM];
8b6a404c 1920 td->ts.total_run_time = mtime_since(&td->epoch, &ts);
6c041a88 1921
8b6a404c 1922 rt[i] = mtime_since(&td->start, &ts);
6c041a88 1923 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
1924 td->ts.runtime[DDIR_READ] += rt[i];
1925 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
1926 td->ts.runtime[DDIR_WRITE] += rt[i];
1927 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
1928 td->ts.runtime[DDIR_TRIM] += rt[i];
b852e7cf
JA
1929 }
1930
c97f1ad6 1931 for_each_td(td, i) {
fda2cfac
JA
1932 if (td->runstate >= TD_EXITED)
1933 continue;
c97f1ad6
JA
1934 if (td->rusage_sem) {
1935 td->update_rusage = 1;
1936 fio_mutex_down(td->rusage_sem);
1937 }
1938 td->update_rusage = 0;
1939 }
1940
cef9175e 1941 __show_run_stats();
b852e7cf
JA
1942
1943 for_each_td(td, i) {
6c041a88 1944 if (td_read(td) && td->ts.io_bytes[DDIR_READ])
b852e7cf 1945 td->ts.runtime[DDIR_READ] -= rt[i];
6c041a88 1946 if (td_write(td) && td->ts.io_bytes[DDIR_WRITE])
b852e7cf 1947 td->ts.runtime[DDIR_WRITE] -= rt[i];
6c041a88 1948 if (td_trim(td) && td->ts.io_bytes[DDIR_TRIM])
6eaf09d6 1949 td->ts.runtime[DDIR_TRIM] -= rt[i];
b852e7cf
JA
1950 }
1951
1952 free(rt);
cef9175e 1953 fio_mutex_up(stat_mutex);
b852e7cf
JA
1954}
1955
8985b491 1956static bool status_interval_init;
8b6a404c 1957static struct timespec status_time;
8985b491 1958static bool status_file_disabled;
06464907 1959
dac45f23 1960#define FIO_STATUS_FILE "fio-dump-status"
06464907
JA
1961
1962static int check_status_file(void)
1963{
1964 struct stat sb;
a0bafb7d
BC
1965 const char *temp_dir;
1966 char fio_status_file_path[PATH_MAX];
06464907 1967
77d99675
JA
1968 if (status_file_disabled)
1969 return 0;
1970
a0bafb7d 1971 temp_dir = getenv("TMPDIR");
48b16e27 1972 if (temp_dir == NULL) {
a0bafb7d 1973 temp_dir = getenv("TEMP");
48b16e27
JA
1974 if (temp_dir && strlen(temp_dir) >= PATH_MAX)
1975 temp_dir = NULL;
1976 }
a0bafb7d
BC
1977 if (temp_dir == NULL)
1978 temp_dir = "/tmp";
1979
1980 snprintf(fio_status_file_path, sizeof(fio_status_file_path), "%s/%s", temp_dir, FIO_STATUS_FILE);
1981
1982 if (stat(fio_status_file_path, &sb))
06464907
JA
1983 return 0;
1984
77d99675
JA
1985 if (unlink(fio_status_file_path) < 0) {
1986 log_err("fio: failed to unlink %s: %s\n", fio_status_file_path,
1987 strerror(errno));
1988 log_err("fio: disabling status file updates\n");
8985b491 1989 status_file_disabled = true;
77d99675
JA
1990 }
1991
06464907
JA
1992 return 1;
1993}
1994
1995void check_for_running_stats(void)
1996{
1997 if (status_interval) {
1998 if (!status_interval_init) {
1999 fio_gettime(&status_time, NULL);
8985b491 2000 status_interval_init = true;
06464907
JA
2001 } else if (mtime_since_now(&status_time) >= status_interval) {
2002 show_running_run_stats();
2003 fio_gettime(&status_time, NULL);
2004 return;
2005 }
2006 }
2007 if (check_status_file()) {
2008 show_running_run_stats();
2009 return;
2010 }
2011}
2012
d6bb626e 2013static inline void add_stat_sample(struct io_stat *is, unsigned long long data)
3c39a379 2014{
68704084 2015 double val = data;
6660cc67 2016 double delta;
68704084
JA
2017
2018 if (data > is->max_val)
2019 is->max_val = data;
2020 if (data < is->min_val)
2021 is->min_val = data;
2022
802ad4a8 2023 delta = val - is->mean.u.f;
ef11d737 2024 if (delta) {
802ad4a8
JA
2025 is->mean.u.f += delta / (is->samples + 1.0);
2026 is->S.u.f += delta * (val - is->mean.u.f);
ef11d737 2027 }
3c39a379 2028
3c39a379
JA
2029 is->samples++;
2030}
2031
7e419452
JA
2032/*
2033 * Return a struct io_logs, which is added to the tail of the log
2034 * list for 'iolog'.
2035 */
2036static struct io_logs *get_new_log(struct io_log *iolog)
2037{
2038 size_t new_size, new_samples;
2039 struct io_logs *cur_log;
2040
2041 /*
2042 * Cap the size at MAX_LOG_ENTRIES, so we don't keep doubling
2043 * forever
2044 */
2045 if (!iolog->cur_log_max)
2046 new_samples = DEF_LOG_ENTRIES;
2047 else {
2048 new_samples = iolog->cur_log_max * 2;
2049 if (new_samples > MAX_LOG_ENTRIES)
2050 new_samples = MAX_LOG_ENTRIES;
2051 }
2052
7e419452 2053 new_size = new_samples * log_entry_sz(iolog);
7e419452 2054
90d2d53f 2055 cur_log = smalloc(sizeof(*cur_log));
7e419452
JA
2056 if (cur_log) {
2057 INIT_FLIST_HEAD(&cur_log->list);
2058 cur_log->log = malloc(new_size);
2059 if (cur_log->log) {
2060 cur_log->nr_samples = 0;
2061 cur_log->max_samples = new_samples;
2062 flist_add_tail(&cur_log->list, &iolog->io_logs);
2063 iolog->cur_log_max = new_samples;
2064 return cur_log;
2065 }
90d2d53f 2066 sfree(cur_log);
7e419452
JA
2067 }
2068
2069 return NULL;
2070}
2071
1fed2080
JA
2072/*
2073 * Add and return a new log chunk, or return current log if big enough
2074 */
2075static struct io_logs *regrow_log(struct io_log *iolog)
7e419452
JA
2076{
2077 struct io_logs *cur_log;
1fed2080 2078 int i;
7e419452 2079
1fed2080 2080 if (!iolog || iolog->disabled)
2ab71dc4 2081 goto disable;
7e419452 2082
1fed2080 2083 cur_log = iolog_cur_log(iolog);
a9afa45a
JA
2084 if (!cur_log) {
2085 cur_log = get_new_log(iolog);
2086 if (!cur_log)
2087 return NULL;
2088 }
2089
7e419452
JA
2090 if (cur_log->nr_samples < cur_log->max_samples)
2091 return cur_log;
2092
2093 /*
2094 * No room for a new sample. If we're compressing on the fly, flush
2095 * out the current chunk
2096 */
2097 if (iolog->log_gz) {
2098 if (iolog_cur_flush(iolog, cur_log)) {
2099 log_err("fio: failed flushing iolog! Will stop logging.\n");
2100 return NULL;
2101 }
2102 }
2103
2104 /*
2105 * Get a new log array, and add to our list
2106 */
2107 cur_log = get_new_log(iolog);
1fed2080
JA
2108 if (!cur_log) {
2109 log_err("fio: failed extending iolog! Will stop logging.\n");
2110 return NULL;
2111 }
2112
2113 if (!iolog->pending || !iolog->pending->nr_samples)
80a24ba9 2114 return cur_log;
7e419452 2115
1fed2080
JA
2116 /*
2117 * Flush pending items to new log
2118 */
2119 for (i = 0; i < iolog->pending->nr_samples; i++) {
2120 struct io_sample *src, *dst;
2121
2122 src = get_sample(iolog, iolog->pending, i);
2123 dst = get_sample(iolog, cur_log, i);
2124 memcpy(dst, src, log_entry_sz(iolog));
2125 }
0b2eef49 2126 cur_log->nr_samples = iolog->pending->nr_samples;
1fed2080
JA
2127
2128 iolog->pending->nr_samples = 0;
2129 return cur_log;
2ab71dc4
JA
2130disable:
2131 if (iolog)
2132 iolog->disabled = true;
2133 return NULL;
1fed2080
JA
2134}
2135
2136void regrow_logs(struct thread_data *td)
2137{
2ab71dc4
JA
2138 regrow_log(td->slat_log);
2139 regrow_log(td->clat_log);
1e613c9c 2140 regrow_log(td->clat_hist_log);
2ab71dc4
JA
2141 regrow_log(td->lat_log);
2142 regrow_log(td->bw_log);
2143 regrow_log(td->iops_log);
1fed2080
JA
2144 td->flags &= ~TD_F_REGROW_LOGS;
2145}
2146
2147static struct io_logs *get_cur_log(struct io_log *iolog)
2148{
2149 struct io_logs *cur_log;
2150
2151 cur_log = iolog_cur_log(iolog);
2152 if (!cur_log) {
2153 cur_log = get_new_log(iolog);
2154 if (!cur_log)
2155 return NULL;
2156 }
2157
2158 if (cur_log->nr_samples < cur_log->max_samples)
2159 return cur_log;
2160
2161 /*
1eb467fb
JA
2162 * Out of space. If we're in IO offload mode, or we're not doing
2163 * per unit logging (hence logging happens outside of the IO thread
2164 * as well), add a new log chunk inline. If we're doing inline
2165 * submissions, flag 'td' as needing a log regrow and we'll take
2166 * care of it on the submission side.
1fed2080 2167 */
1eb467fb
JA
2168 if (iolog->td->o.io_submit_mode == IO_MODE_OFFLOAD ||
2169 !per_unit_log(iolog))
1fed2080
JA
2170 return regrow_log(iolog);
2171
2172 iolog->td->flags |= TD_F_REGROW_LOGS;
2173 assert(iolog->pending->nr_samples < iolog->pending->max_samples);
2174 return iolog->pending;
7e419452
JA
2175}
2176
af2fde19 2177static void __add_log_sample(struct io_log *iolog, union io_sample_data data,
306ddc97 2178 enum fio_ddir ddir, unsigned int bs,
ae588852 2179 unsigned long t, uint64_t offset)
3c39a379 2180{
7e419452 2181 struct io_logs *cur_log;
306ddc97 2182
3c568239
JA
2183 if (iolog->disabled)
2184 return;
7e419452 2185 if (flist_empty(&iolog->io_logs))
8355119b 2186 iolog->avg_last[ddir] = t;
b8bc8cba 2187
7e419452
JA
2188 cur_log = get_cur_log(iolog);
2189 if (cur_log) {
2190 struct io_sample *s;
3c39a379 2191
7e419452 2192 s = get_sample(iolog, cur_log, cur_log->nr_samples);
3c39a379 2193
af2fde19 2194 s->data = data;
a9179eeb 2195 s->time = t + (iolog->td ? iolog->td->unix_epoch : 0);
7e419452
JA
2196 io_sample_set_ddir(iolog, s, ddir);
2197 s->bs = bs;
ae588852 2198
7e419452
JA
2199 if (iolog->log_offset) {
2200 struct io_sample_offset *so = (void *) s;
ae588852 2201
7e419452
JA
2202 so->offset = offset;
2203 }
ae588852 2204
7e419452
JA
2205 cur_log->nr_samples++;
2206 return;
ae588852
JA
2207 }
2208
7e419452 2209 iolog->disabled = true;
3c39a379
JA
2210}
2211
7fb28d36
JA
2212static inline void reset_io_stat(struct io_stat *ios)
2213{
2214 ios->max_val = ios->min_val = ios->samples = 0;
2215 ios->mean.u.f = ios->S.u.f = 0;
2216}
2217
6bb58215
JA
2218void reset_io_stats(struct thread_data *td)
2219{
2220 struct thread_stat *ts = &td->ts;
2221 int i, j;
2222
2223 for (i = 0; i < DDIR_RWDIR_CNT; i++) {
2224 reset_io_stat(&ts->clat_stat[i]);
2225 reset_io_stat(&ts->slat_stat[i]);
2226 reset_io_stat(&ts->lat_stat[i]);
2227 reset_io_stat(&ts->bw_stat[i]);
2228 reset_io_stat(&ts->iops_stat[i]);
2229
2230 ts->io_bytes[i] = 0;
2231 ts->runtime[i] = 0;
71cb78c1
VF
2232 ts->total_io_u[i] = 0;
2233 ts->short_io_u[i] = 0;
2234 ts->drop_io_u[i] = 0;
6bb58215
JA
2235
2236 for (j = 0; j < FIO_IO_U_PLAT_NR; j++)
2237 ts->io_u_plat[i][j] = 0;
2238 }
2239
2240 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
2241 ts->io_u_map[i] = 0;
2242 ts->io_u_submit[i] = 0;
2243 ts->io_u_complete[i] = 0;
71cb78c1
VF
2244 }
2245
d6bb626e
VF
2246 for (i = 0; i < FIO_IO_U_LAT_N_NR; i++)
2247 ts->io_u_lat_n[i] = 0;
71cb78c1 2248 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
6bb58215 2249 ts->io_u_lat_u[i] = 0;
71cb78c1 2250 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
6bb58215 2251 ts->io_u_lat_m[i] = 0;
6bb58215 2252
71cb78c1
VF
2253 ts->total_submit = 0;
2254 ts->total_complete = 0;
6bb58215
JA
2255}
2256
d96d3bb3 2257static void __add_stat_to_log(struct io_log *iolog, enum fio_ddir ddir,
e6989e10 2258 unsigned long elapsed, bool log_max)
99007068
PO
2259{
2260 /*
2261 * Note an entry in the log. Use the mean from the logged samples,
2262 * making sure to properly round up. Only write a log entry if we
2263 * had actual samples done.
2264 */
d96d3bb3 2265 if (iolog->avg_window[ddir].samples) {
af2fde19 2266 union io_sample_data data;
99007068 2267
e6989e10 2268 if (log_max)
af2fde19 2269 data.val = iolog->avg_window[ddir].max_val;
e6989e10 2270 else
af2fde19 2271 data.val = iolog->avg_window[ddir].mean.u.f + 0.50;
e6989e10 2272
af2fde19 2273 __add_log_sample(iolog, data, ddir, 0, elapsed, 0);
99007068 2274 }
99007068 2275
d96d3bb3
JA
2276 reset_io_stat(&iolog->avg_window[ddir]);
2277}
99007068 2278
e6989e10
JA
2279static void _add_stat_to_log(struct io_log *iolog, unsigned long elapsed,
2280 bool log_max)
d96d3bb3
JA
2281{
2282 int ddir;
99007068 2283
d96d3bb3 2284 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
e6989e10 2285 __add_stat_to_log(iolog, ddir, elapsed, log_max);
99007068
PO
2286}
2287
d454a205 2288static long add_log_sample(struct thread_data *td, struct io_log *iolog,
af2fde19 2289 union io_sample_data data, enum fio_ddir ddir,
ae588852 2290 unsigned int bs, uint64_t offset)
bb3884d8 2291{
7fb28d36 2292 unsigned long elapsed, this_window;
b8bc8cba 2293
ff58fced 2294 if (!ddir_rw(ddir))
d454a205 2295 return 0;
ff58fced 2296
b8bc8cba
JA
2297 elapsed = mtime_since_now(&td->epoch);
2298
2299 /*
2300 * If no time averaging, just add the log sample.
2301 */
2302 if (!iolog->avg_msec) {
af2fde19 2303 __add_log_sample(iolog, data, ddir, bs, elapsed, offset);
d454a205 2304 return 0;
b8bc8cba
JA
2305 }
2306
2307 /*
2308 * Add the sample. If the time period has passed, then
2309 * add that entry to the log and clear.
2310 */
af2fde19 2311 add_stat_sample(&iolog->avg_window[ddir], data.val);
b8bc8cba 2312
7fb28d36
JA
2313 /*
2314 * If period hasn't passed, adding the above sample is all we
2315 * need to do.
2316 */
8355119b
SW
2317 this_window = elapsed - iolog->avg_last[ddir];
2318 if (elapsed < iolog->avg_last[ddir])
2319 return iolog->avg_last[ddir] - elapsed;
f5a568cf 2320 else if (this_window < iolog->avg_msec) {
d454a205
JA
2321 int diff = iolog->avg_msec - this_window;
2322
b392f36d 2323 if (inline_log(iolog) || diff > LOG_MSEC_SLACK)
d454a205
JA
2324 return diff;
2325 }
b8bc8cba 2326
8355119b 2327 __add_stat_to_log(iolog, ddir, elapsed, td->o.log_max != 0);
b8bc8cba 2328
8355119b 2329 iolog->avg_last[ddir] = elapsed - (this_window - iolog->avg_msec);
d454a205 2330 return iolog->avg_msec;
99007068 2331}
6eaf09d6 2332
a47591e4 2333void finalize_logs(struct thread_data *td, bool unit_logs)
99007068
PO
2334{
2335 unsigned long elapsed;
6eaf09d6 2336
99007068 2337 elapsed = mtime_since_now(&td->epoch);
b8bc8cba 2338
a47591e4 2339 if (td->clat_log && unit_logs)
e6989e10 2340 _add_stat_to_log(td->clat_log, elapsed, td->o.log_max != 0);
a47591e4 2341 if (td->slat_log && unit_logs)
e6989e10 2342 _add_stat_to_log(td->slat_log, elapsed, td->o.log_max != 0);
a47591e4 2343 if (td->lat_log && unit_logs)
e6989e10 2344 _add_stat_to_log(td->lat_log, elapsed, td->o.log_max != 0);
a47591e4 2345 if (td->bw_log && (unit_logs == per_unit_log(td->bw_log)))
e6989e10 2346 _add_stat_to_log(td->bw_log, elapsed, td->o.log_max != 0);
a47591e4 2347 if (td->iops_log && (unit_logs == per_unit_log(td->iops_log)))
e6989e10 2348 _add_stat_to_log(td->iops_log, elapsed, td->o.log_max != 0);
bb3884d8
JA
2349}
2350
af2fde19 2351void add_agg_sample(union io_sample_data data, enum fio_ddir ddir, unsigned int bs)
bb3884d8 2352{
ff58fced 2353 struct io_log *iolog;
bb3884d8 2354
ff58fced
JA
2355 if (!ddir_rw(ddir))
2356 return;
2357
2358 iolog = agg_io_log[ddir];
af2fde19 2359 __add_log_sample(iolog, data, ddir, bs, mtime_since_genesis(), 0);
bb3884d8
JA
2360}
2361
83349190 2362static void add_clat_percentile_sample(struct thread_stat *ts,
d6bb626e 2363 unsigned long long nsec, enum fio_ddir ddir)
83349190 2364{
d6bb626e 2365 unsigned int idx = plat_val_to_idx(nsec);
83349190
YH
2366 assert(idx < FIO_IO_U_PLAT_NR);
2367
2368 ts->io_u_plat[ddir][idx]++;
2369}
2370
1e97cce9 2371void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
d6bb626e 2372 unsigned long long nsec, unsigned int bs, uint64_t offset)
3c39a379 2373{
1e613c9c 2374 unsigned long elapsed, this_window;
756867bd 2375 struct thread_stat *ts = &td->ts;
1e613c9c 2376 struct io_log *iolog = td->clat_hist_log;
079ad09b 2377
75dc383e
JA
2378 td_io_u_lock(td);
2379
d6bb626e 2380 add_stat_sample(&ts->clat_stat[ddir], nsec);
3c39a379 2381
7b9f733a 2382 if (td->clat_log)
d6bb626e 2383 add_log_sample(td, td->clat_log, sample_val(nsec), ddir, bs,
af2fde19 2384 offset);
83349190
YH
2385
2386 if (ts->clat_percentiles)
d6bb626e 2387 add_clat_percentile_sample(ts, nsec, ddir);
75dc383e 2388
1e613c9c 2389 if (iolog && iolog->hist_msec) {
93168285
JA
2390 struct io_hist *hw = &iolog->hist_window[ddir];
2391
2392 hw->samples++;
1e613c9c 2393 elapsed = mtime_since_now(&td->epoch);
93168285 2394 if (!hw->hist_last)
1e613c9c
KC
2395 hw->hist_last = elapsed;
2396 this_window = elapsed - hw->hist_last;
2397
2398 if (this_window >= iolog->hist_msec) {
93168285 2399 unsigned int *io_u_plat;
65a4d15c 2400 struct io_u_plat_entry *dst;
93168285 2401
1e613c9c 2402 /*
93168285
JA
2403 * Make a byte-for-byte copy of the latency histogram
2404 * stored in td->ts.io_u_plat[ddir], recording it in a
2405 * log sample. Note that the matching call to free() is
2406 * located in iolog.c after printing this sample to the
2407 * log file.
1e613c9c 2408 */
93168285 2409 io_u_plat = (unsigned int *) td->ts.io_u_plat[ddir];
65a4d15c
KC
2410 dst = malloc(sizeof(struct io_u_plat_entry));
2411 memcpy(&(dst->io_u_plat), io_u_plat,
93168285 2412 FIO_IO_U_PLAT_NR * sizeof(unsigned int));
d730bc58 2413 flist_add(&dst->list, &hw->list);
af2fde19 2414 __add_log_sample(iolog, sample_plat(dst), ddir, bs,
93168285 2415 elapsed, offset);
1e613c9c
KC
2416
2417 /*
93168285
JA
2418 * Update the last time we recorded as being now, minus
2419 * any drift in time we encountered before actually
2420 * making the record.
1e613c9c
KC
2421 */
2422 hw->hist_last = elapsed - (this_window - iolog->hist_msec);
2423 hw->samples = 0;
2424 }
2425 }
2426
75dc383e 2427 td_io_u_unlock(td);
3c39a379
JA
2428}
2429
1e97cce9 2430void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
ae588852 2431 unsigned long usec, unsigned int bs, uint64_t offset)
3c39a379 2432{
756867bd 2433 struct thread_stat *ts = &td->ts;
079ad09b 2434
ff58fced
JA
2435 if (!ddir_rw(ddir))
2436 return;
2437
75dc383e
JA
2438 td_io_u_lock(td);
2439
d85f5118 2440 add_stat_sample(&ts->slat_stat[ddir], usec);
3c39a379 2441
7b9f733a 2442 if (td->slat_log)
af2fde19 2443 add_log_sample(td, td->slat_log, sample_val(usec), ddir, bs, offset);
75dc383e
JA
2444
2445 td_io_u_unlock(td);
3c39a379
JA
2446}
2447
02af0988 2448void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
d6bb626e 2449 unsigned long long nsec, unsigned int bs, uint64_t offset)
02af0988
JA
2450{
2451 struct thread_stat *ts = &td->ts;
2452
ff58fced
JA
2453 if (!ddir_rw(ddir))
2454 return;
2455
75dc383e
JA
2456 td_io_u_lock(td);
2457
d6bb626e 2458 add_stat_sample(&ts->lat_stat[ddir], nsec);
02af0988 2459
7b9f733a 2460 if (td->lat_log)
d6bb626e 2461 add_log_sample(td, td->lat_log, sample_val(nsec), ddir, bs,
af2fde19 2462 offset);
75dc383e 2463
b599759b
JA
2464 if (ts->lat_percentiles)
2465 add_clat_percentile_sample(ts, nsec, ddir);
2466
75dc383e 2467 td_io_u_unlock(td);
02af0988
JA
2468}
2469
a47591e4 2470void add_bw_sample(struct thread_data *td, struct io_u *io_u,
d6bb626e 2471 unsigned int bytes, unsigned long long spent)
a47591e4
JA
2472{
2473 struct thread_stat *ts = &td->ts;
2474 unsigned long rate;
2475
2476 if (spent)
d6bb626e 2477 rate = (unsigned long) (bytes * 1000000ULL / spent);
a47591e4
JA
2478 else
2479 rate = 0;
2480
2481 td_io_u_lock(td);
2482
2483 add_stat_sample(&ts->bw_stat[io_u->ddir], rate);
2484
2485 if (td->bw_log)
af2fde19
SW
2486 add_log_sample(td, td->bw_log, sample_val(rate), io_u->ddir,
2487 bytes, io_u->offset);
a47591e4
JA
2488
2489 td->stat_io_bytes[io_u->ddir] = td->this_io_bytes[io_u->ddir];
2490 td_io_u_unlock(td);
2491}
2492
8b6a404c
VF
2493static int __add_samples(struct thread_data *td, struct timespec *parent_tv,
2494 struct timespec *t, unsigned int avg_time,
4843277a
JA
2495 uint64_t *this_io_bytes, uint64_t *stat_io_bytes,
2496 struct io_stat *stat, struct io_log *log,
2497 bool is_kb)
3c39a379 2498{
ff58fced 2499 unsigned long spent, rate;
a47591e4 2500 enum fio_ddir ddir;
d454a205
JA
2501 unsigned int next, next_log;
2502
4843277a 2503 next_log = avg_time;
ff58fced 2504
4843277a
JA
2505 spent = mtime_since(parent_tv, t);
2506 if (spent < avg_time && avg_time - spent >= LOG_MSEC_SLACK)
2507 return avg_time - spent;
9602d8df 2508
a9da8ab2
JA
2509 td_io_u_lock(td);
2510
9602d8df 2511 /*
5daa4ebe
JC
2512 * Compute both read and write rates for the interval.
2513 */
c1f50f76 2514 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++) {
5daa4ebe
JC
2515 uint64_t delta;
2516
4843277a 2517 delta = this_io_bytes[ddir] - stat_io_bytes[ddir];
5daa4ebe
JC
2518 if (!delta)
2519 continue; /* No entries for interval */
3c39a379 2520
4843277a
JA
2521 if (spent) {
2522 if (is_kb)
2523 rate = delta * 1000 / spent / 1024; /* KiB/s */
2524 else
2525 rate = (delta * 1000) / spent;
2526 } else
0956264f
JA
2527 rate = 0;
2528
4843277a 2529 add_stat_sample(&stat[ddir], rate);
3c39a379 2530
37181709 2531 if (log) {
66b98c9f
JA
2532 unsigned int bs = 0;
2533
2534 if (td->o.min_bs[ddir] == td->o.max_bs[ddir])
2535 bs = td->o.min_bs[ddir];
2536
4843277a 2537 next = add_log_sample(td, log, sample_val(rate), ddir, bs, 0);
d454a205 2538 next_log = min(next_log, next);
66b98c9f 2539 }
5daa4ebe 2540
4843277a 2541 stat_io_bytes[ddir] = this_io_bytes[ddir];
5daa4ebe 2542 }
3c39a379 2543
8b6a404c 2544 timespec_add_msec(parent_tv, avg_time);
a47591e4
JA
2545
2546 td_io_u_unlock(td);
2547
4843277a
JA
2548 if (spent <= avg_time)
2549 next = avg_time;
306fea38 2550 else
4843277a 2551 next = avg_time - (1 + spent - avg_time);
a47591e4 2552
d454a205 2553 return min(next, next_log);
a47591e4
JA
2554}
2555
8b6a404c 2556static int add_bw_samples(struct thread_data *td, struct timespec *t)
4843277a
JA
2557{
2558 return __add_samples(td, &td->bw_sample_time, t, td->o.bw_avg_time,
2559 td->this_io_bytes, td->stat_io_bytes,
2560 td->ts.bw_stat, td->bw_log, true);
2561}
2562
a47591e4
JA
2563void add_iops_sample(struct thread_data *td, struct io_u *io_u,
2564 unsigned int bytes)
2565{
2566 struct thread_stat *ts = &td->ts;
2567
2568 td_io_u_lock(td);
2569
2570 add_stat_sample(&ts->iops_stat[io_u->ddir], 1);
2571
2572 if (td->iops_log)
af2fde19
SW
2573 add_log_sample(td, td->iops_log, sample_val(1), io_u->ddir,
2574 bytes, io_u->offset);
a47591e4
JA
2575
2576 td->stat_io_blocks[io_u->ddir] = td->this_io_blocks[io_u->ddir];
a9da8ab2 2577 td_io_u_unlock(td);
3c39a379 2578}
c8eeb9df 2579
8b6a404c 2580static int add_iops_samples(struct thread_data *td, struct timespec *t)
c8eeb9df 2581{
4843277a
JA
2582 return __add_samples(td, &td->iops_sample_time, t, td->o.iops_avg_time,
2583 td->this_io_blocks, td->stat_io_blocks,
2584 td->ts.iops_stat, td->iops_log, false);
a47591e4
JA
2585}
2586
2587/*
2588 * Returns msecs to next event
2589 */
2590int calc_log_samples(void)
2591{
2592 struct thread_data *td;
2593 unsigned int next = ~0U, tmp;
8b6a404c 2594 struct timespec now;
a47591e4
JA
2595 int i;
2596
2597 fio_gettime(&now, NULL);
2598
2599 for_each_td(td, i) {
8243be59
JA
2600 if (!td->o.stats)
2601 continue;
6a89b401 2602 if (in_ramp_time(td) ||
a47591e4
JA
2603 !(td->runstate == TD_RUNNING || td->runstate == TD_VERIFYING)) {
2604 next = min(td->o.iops_avg_time, td->o.bw_avg_time);
2605 continue;
2606 }
37181709
AH
2607 if (!td->bw_log ||
2608 (td->bw_log && !per_unit_log(td->bw_log))) {
a47591e4
JA
2609 tmp = add_bw_samples(td, &now);
2610 if (tmp < next)
2611 next = tmp;
2612 }
37181709
AH
2613 if (!td->iops_log ||
2614 (td->iops_log && !per_unit_log(td->iops_log))) {
a47591e4
JA
2615 tmp = add_iops_samples(td, &now);
2616 if (tmp < next)
2617 next = tmp;
2618 }
2619 }
2620
2621 return next == ~0U ? 0 : next;
c8eeb9df 2622}
cef9175e
JA
2623
2624void stat_init(void)
2625{
2626 stat_mutex = fio_mutex_init(FIO_MUTEX_UNLOCKED);
2627}
2628
2629void stat_exit(void)
2630{
2631 /*
2632 * When we have the mutex, we know out-of-band access to it
2633 * have ended.
2634 */
2635 fio_mutex_down(stat_mutex);
2636 fio_mutex_remove(stat_mutex);
2637}
b2ee7647 2638
b2ee7647
JA
2639/*
2640 * Called from signal handler. Wake up status thread.
2641 */
2642void show_running_run_stats(void)
2643{
a47591e4 2644 helper_do_stat();
b2ee7647 2645}
66347cfa
DE
2646
2647uint32_t *io_u_block_info(struct thread_data *td, struct io_u *io_u)
2648{
2649 /* Ignore io_u's which span multiple blocks--they will just get
2650 * inaccurate counts. */
2651 int idx = (io_u->offset - io_u->file->file_offset)
2652 / td->o.bs[DDIR_TRIM];
2653 uint32_t *info = &td->ts.block_infos[idx];
2654 assert(idx < td->ts.nr_block_infos);
2655 return info;
2656}