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