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