Random IO fixes
[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"
3c39a379 11
dbe1125e 12/*
34403fb1 13 * Cheesy number->string conversion, complete with carry rounding error.
dbe1125e 14 */
b3605062 15static char *num2str(unsigned long num, int maxlen, int base, int pow2)
dbe1125e 16{
b3605062
JA
17 char postfix[] = { ' ', 'K', 'M', 'G', 'P', 'E' };
18 unsigned int thousand;
dbe1125e
JA
19 char *buf;
20 int i;
21
b3605062
JA
22 if (pow2)
23 thousand = 1024;
24 else
25 thousand = 1000;
26
dbe1125e
JA
27 buf = malloc(128);
28
29 for (i = 0; base > 1; i++)
30 base /= thousand;
31
32 do {
33 int len, carry = 0;
34
35 len = sprintf(buf, "%'lu", num);
36 if (len <= maxlen) {
b3605062
JA
37 if (i >= 1) {
38 buf[len] = postfix[i];
39 buf[len + 1] = '\0';
40 }
dbe1125e
JA
41 return buf;
42 }
43
44 if ((num % thousand) >= (thousand / 2))
45 carry = 1;
46
47 num /= thousand;
48 num += carry;
49 i++;
f3502ba2 50 } while (i <= 5);
dbe1125e
JA
51
52 return buf;
53}
54
3c39a379
JA
55void update_rusage_stat(struct thread_data *td)
56{
756867bd 57 struct thread_stat *ts = &td->ts;
3c39a379 58
079ad09b
JA
59 getrusage(RUSAGE_SELF, &ts->ru_end);
60
61 ts->usr_time += mtime_since(&ts->ru_start.ru_utime, &ts->ru_end.ru_utime);
62 ts->sys_time += mtime_since(&ts->ru_start.ru_stime, &ts->ru_end.ru_stime);
63 ts->ctx += ts->ru_end.ru_nvcsw + ts->ru_end.ru_nivcsw - (ts->ru_start.ru_nvcsw + ts->ru_start.ru_nivcsw);
e7823a94
JA
64 ts->minf += ts->ru_end.ru_minflt - ts->ru_start.ru_minflt;
65 ts->majf += ts->ru_end.ru_majflt - ts->ru_start.ru_majflt;
3c39a379 66
079ad09b 67 memcpy(&ts->ru_start, &ts->ru_end, sizeof(ts->ru_end));
3c39a379
JA
68}
69
70static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
71 double *mean, double *dev)
72{
68704084 73 double n = is->samples;
3c39a379
JA
74
75 if (is->samples == 0)
76 return 0;
77
78 *min = is->min_val;
79 *max = is->max_val;
80
81 n = (double) is->samples;
68704084 82 *mean = is->mean;
e6d276f2 83
68704084
JA
84 if (n > 1.0)
85 *dev = sqrt(is->S / (n - 1.0));
ef9c5c40 86 else
4b43f54e 87 *dev = 0;
ef9c5c40 88
3c39a379
JA
89 return 1;
90}
91
92static void show_group_stats(struct group_run_stats *rs, int id)
93{
dbe1125e
JA
94 char *p1, *p2, *p3, *p4;
95 const char *ddir_str[] = { " READ", " WRITE" };
96 int i;
97
6d86144d 98 log_info("\nRun status group %d (all jobs):\n", id);
3c39a379 99
dbe1125e
JA
100 for (i = 0; i <= DDIR_WRITE; i++) {
101 if (!rs->max_run[i])
102 continue;
103
b3605062
JA
104 p1 = num2str(rs->io_kb[i], 6, 1000, 1);
105 p2 = num2str(rs->agg[i], 6, 1000, 1);
106 p3 = num2str(rs->min_bw[i], 6, 1000, 1);
107 p4 = num2str(rs->max_bw[i], 6, 1000, 1);
dbe1125e 108
6d86144d 109 log_info("%s: io=%siB, aggrb=%siB/s, minb=%siB/s, maxb=%siB/s, mint=%llumsec, maxt=%llumsec\n", ddir_str[i], p1, p2, p3, p4, rs->min_run[i], rs->max_run[i]);
dbe1125e
JA
110
111 free(p1);
112 free(p2);
113 free(p3);
114 free(p4);
115 }
3c39a379
JA
116}
117
b3605062
JA
118#define ts_total_io_u(ts) \
119 ((ts)->total_io_u[0] + (ts)->total_io_u[1])
120
2270890c
JA
121static void stat_calc_dist(struct thread_stat *ts, double *io_u_dist)
122{
123 int i;
124
125 /*
126 * Do depth distribution calculations
127 */
128 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
b3605062 129 io_u_dist[i] = (double) ts->io_u_map[i] / (double) ts_total_io_u(ts);
2270890c 130 io_u_dist[i] *= 100.0;
d0f62ba3
JA
131 if (io_u_dist[i] < 0.1 && ts->io_u_map[i])
132 io_u_dist[i] = 0.1;
2270890c
JA
133 }
134}
135
04a0feae
JA
136static void stat_calc_lat(struct thread_stat *ts, double *dst,
137 unsigned int *src, int nr)
2270890c
JA
138{
139 int i;
140
141 /*
142 * Do latency distribution calculations
143 */
04a0feae
JA
144 for (i = 0; i < nr; i++) {
145 dst[i] = (double) src[i] / (double) ts_total_io_u(ts);
146 dst[i] *= 100.0;
147 if (dst[i] < 0.01 && src[i])
148 dst[i] = 0.01;
2270890c
JA
149 }
150}
151
04a0feae
JA
152static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
153{
154 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
155}
156
157static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
158{
159 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
160}
161
ea2accc5
JA
162static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
163 double *dev)
164{
165 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
166 *min /= 1000;
167 *max /= 1000;
168 *mean /= 1000.0;
169 *dev /= 1000.0;
170 return 0;
171 }
172
173 return 1;
174}
175
756867bd 176static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
3c39a379
JA
177 int ddir)
178{
3c9b60c1 179 const char *ddir_str[] = { "read ", "write" };
3c39a379 180 unsigned long min, max;
b3605062 181 unsigned long long bw, iops;
3c39a379 182 double mean, dev;
b3605062 183 char *io_p, *bw_p, *iops_p;
3c39a379 184
756867bd 185 if (!ts->runtime[ddir])
3c39a379
JA
186 return;
187
756867bd 188 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
b3605062
JA
189 iops = (1000 * ts->total_io_u[ddir]) / ts->runtime[ddir];
190 io_p = num2str(ts->io_bytes[ddir] >> 10, 6, 1000, 1);
191 bw_p = num2str(bw, 6, 1000, 1);
192 iops_p = num2str(iops, 6, 1, 0);
dbe1125e 193
6d86144d 194 log_info(" %s: io=%siB, bw=%siB/s, iops=%s, runt=%6lumsec\n", ddir_str[ddir], io_p, bw_p, iops_p, ts->runtime[ddir]);
dbe1125e
JA
195
196 free(io_p);
197 free(bw_p);
b3605062 198 free(iops_p);
3c39a379 199
d85f5118
JA
200 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
201 const char *base = "(usec)";
d9309cb1 202 char *minp, *maxp;
d85f5118 203
ea2accc5 204 if (!usec_to_msec(&min, &max, &mean, &dev))
d85f5118 205 base = "(msec)";
ea2accc5 206
d9309cb1
JA
207 minp = num2str(min, 6, 1, 0);
208 maxp = num2str(max, 6, 1, 0);
209
210 log_info(" slat %s: min=%s, max=%s, avg=%5.02f, stdev=%5.02f\n", base, minp, maxp, mean, dev);
211
212 free(minp);
213 free(maxp);
d85f5118
JA
214 }
215 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
216 const char *base = "(usec)";
d9309cb1 217 char *minp, *maxp;
d85f5118 218
ea2accc5
JA
219 if (!usec_to_msec(&min, &max, &mean, &dev))
220 base = "(msec)";
221
d9309cb1
JA
222 minp = num2str(min, 6, 1, 0);
223 maxp = num2str(max, 6, 1, 0);
224
225 log_info(" clat %s: min=%s, max=%s, avg=%5.02f, stdev=%5.02f\n", base, minp, maxp, mean, dev);
226
227 free(minp);
228 free(maxp);
d85f5118 229 }
079ad09b 230 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
3c39a379
JA
231 double p_of_agg;
232
233 p_of_agg = mean * 100 / (double) rs->agg[ddir];
6d86144d 234 log_info(" bw (KiB/s) : min=%5lu, max=%5lu, per=%3.2f%%, avg=%5.02f, stdev=%5.02f\n", min, max, p_of_agg, mean, dev);
3c39a379
JA
235 }
236}
237
04a0feae
JA
238static void show_lat(double *io_u_lat, int nr, const char **ranges,
239 const char *msg)
240{
241 int new_line = 1, i, line = 0;
242
243 for (i = 0; i < nr; i++) {
244 if (io_u_lat[i] <= 0.0)
245 continue;
246 if (new_line) {
4539ed73
JA
247 if (line)
248 log_info("\n");
04a0feae
JA
249 log_info(" lat (%s): ", msg);
250 new_line = 0;
251 line = 0;
252 }
253 if (line)
254 log_info(", ");
255 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
256 line++;
257 if (line == 5)
258 new_line = 1;
259 }
04a0feae
JA
260}
261
262static void show_lat_u(double *io_u_lat_u)
263{
264 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
265 "250=", "500=", "750=", "1000=", };
266
267 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
268}
269
270static void show_lat_m(double *io_u_lat_m)
271{
272 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
273 "250=", "500=", "750=", "1000=", "2000=",
274 ">=2000=", };
275
276 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
277}
278
279static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
280{
281 show_lat_u(io_u_lat_u);
4539ed73 282 log_info("\n");
04a0feae
JA
283 show_lat_m(io_u_lat_m);
284 log_info("\n");
285}
286
756867bd 287static void show_thread_status(struct thread_stat *ts,
3c39a379
JA
288 struct group_run_stats *rs)
289{
290 double usr_cpu, sys_cpu;
69008999 291 unsigned long runtime;
71619dc2 292 double io_u_dist[FIO_IO_U_MAP_NR];
04a0feae
JA
293 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
294 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
3c39a379 295
b4c5e1ac
JA
296 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
297 !(ts->total_io_u[0] + ts->total_io_u[1]))
3c39a379
JA
298 return;
299
756867bd 300 if (!ts->error)
6d86144d 301 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n", ts->name, ts->groupid, ts->members, ts->error, ts->pid);
6d663077 302 else
6d86144d 303 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n", ts->name, ts->groupid, ts->members, ts->error, ts->verror, ts->pid);
3c39a379 304
7bdce1bd 305 if (ts->description)
6d86144d 306 log_info(" Description : [%s]\n", ts->description);
7bdce1bd 307
756867bd
JA
308 if (ts->io_bytes[DDIR_READ])
309 show_ddir_status(rs, ts, DDIR_READ);
310 if (ts->io_bytes[DDIR_WRITE])
311 show_ddir_status(rs, ts, DDIR_WRITE);
3c39a379 312
756867bd 313 runtime = ts->total_run_time;
69008999 314 if (runtime) {
1e97cce9 315 double runt = (double) runtime;
3c39a379 316
756867bd
JA
317 usr_cpu = (double) ts->usr_time * 100 / runt;
318 sys_cpu = (double) ts->sys_time * 100 / runt;
3c39a379
JA
319 } else {
320 usr_cpu = 0;
321 sys_cpu = 0;
322 }
323
e7823a94 324 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu, minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
71619dc2 325
2270890c 326 stat_calc_dist(ts, io_u_dist);
04a0feae
JA
327 stat_calc_lat_u(ts, io_u_lat_u);
328 stat_calc_lat_m(ts, io_u_lat_m);
71619dc2 329
6d86144d 330 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3], io_u_dist[4], io_u_dist[5], io_u_dist[6]);
30061b97 331 log_info(" issued r/w: total=%lu/%lu, short=%lu/%lu\n", ts->total_io_u[0], ts->total_io_u[1], ts->short_io_u[0], ts->short_io_u[1]);
61697c37 332
04a0feae 333 show_latencies(io_u_lat_u, io_u_lat_m);
3c39a379
JA
334}
335
756867bd 336static void show_ddir_status_terse(struct thread_stat *ts,
c6ae0a5b
JA
337 struct group_run_stats *rs, int ddir)
338{
339 unsigned long min, max;
340 unsigned long long bw;
341 double mean, dev;
342
343 bw = 0;
756867bd
JA
344 if (ts->runtime[ddir])
345 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
c6ae0a5b 346
6d86144d 347 log_info(";%llu;%llu;%lu", ts->io_bytes[ddir] >> 10, bw, ts->runtime[ddir]);
c6ae0a5b 348
079ad09b 349 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
6d86144d 350 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
c6ae0a5b 351 else
6d86144d 352 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
c6ae0a5b 353
079ad09b 354 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
6d86144d 355 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
c6ae0a5b 356 else
6d86144d 357 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
c6ae0a5b 358
079ad09b 359 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
c6ae0a5b
JA
360 double p_of_agg;
361
362 p_of_agg = mean * 100 / (double) rs->agg[ddir];
6d86144d 363 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
c6ae0a5b 364 } else
6d86144d 365 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
c6ae0a5b
JA
366}
367
368
756867bd 369static void show_thread_status_terse(struct thread_stat *ts,
c6ae0a5b
JA
370 struct group_run_stats *rs)
371{
2270890c 372 double io_u_dist[FIO_IO_U_MAP_NR];
04a0feae
JA
373 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
374 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
c6ae0a5b 375 double usr_cpu, sys_cpu;
04a0feae 376 int i;
c6ae0a5b 377
6d86144d 378 log_info("%s;%d;%d", ts->name, ts->groupid, ts->error);
c6ae0a5b 379
756867bd
JA
380 show_ddir_status_terse(ts, rs, 0);
381 show_ddir_status_terse(ts, rs, 1);
c6ae0a5b 382
756867bd
JA
383 if (ts->total_run_time) {
384 double runt = (double) ts->total_run_time;
c6ae0a5b 385
756867bd
JA
386 usr_cpu = (double) ts->usr_time * 100 / runt;
387 sys_cpu = (double) ts->sys_time * 100 / runt;
c6ae0a5b
JA
388 } else {
389 usr_cpu = 0;
390 sys_cpu = 0;
391 }
392
e7823a94 393 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
2270890c
JA
394
395 stat_calc_dist(ts, io_u_dist);
04a0feae
JA
396 stat_calc_lat_u(ts, io_u_lat_u);
397 stat_calc_lat_m(ts, io_u_lat_m);
2270890c 398
6d86144d 399 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%", io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3], io_u_dist[4], io_u_dist[5], io_u_dist[6]);
2270890c 400
04a0feae
JA
401 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
402 log_info(";%3.2f%%", io_u_lat_u[i]);
403 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
404 log_info(";%3.2f%%", io_u_lat_m[i]);
405 log_info("\n");
2270890c
JA
406
407 if (ts->description)
6d86144d 408 log_info(";%s", ts->description);
2270890c 409
6d86144d 410 log_info("\n");
756867bd
JA
411}
412
197574e4 413static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
756867bd
JA
414{
415 double mean, S;
416
417 dst->min_val = min(dst->min_val, src->min_val);
418 dst->max_val = max(dst->max_val, src->max_val);
419 dst->samples += src->samples;
420
421 /*
422 * Needs a new method for calculating stddev, we cannot just
423 * average them we do below for nr > 1
424 */
425 if (nr == 1) {
426 mean = src->mean;
427 S = src->S;
428 } else {
c39cced6
JA
429 mean = ((src->mean * (double) (nr - 1)) + dst->mean) / ((double) nr);
430 S = ((src->S * (double) (nr - 1)) + dst->S) / ((double) nr);
756867bd
JA
431 }
432
433 dst->mean = mean;
434 dst->S = S;
435}
436
3c39a379
JA
437void show_run_stats(void)
438{
439 struct group_run_stats *runstats, *rs;
440 struct thread_data *td;
756867bd 441 struct thread_stat *threadstats, *ts;
197574e4 442 int i, j, k, l, nr_ts, last_ts, idx;
3c39a379
JA
443
444 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
445
446 for (i = 0; i < groupid + 1; i++) {
447 rs = &runstats[i];
448
449 memset(rs, 0, sizeof(*rs));
450 rs->min_bw[0] = rs->min_run[0] = ~0UL;
451 rs->min_bw[1] = rs->min_run[1] = ~0UL;
452 }
453
756867bd
JA
454 /*
455 * find out how many threads stats we need. if group reporting isn't
456 * enabled, it's one-per-td.
457 */
458 nr_ts = 0;
459 last_ts = -1;
460 for_each_td(td, i) {
2dc1bbeb 461 if (!td->o.group_reporting) {
756867bd
JA
462 nr_ts++;
463 continue;
464 }
465 if (last_ts == td->groupid)
466 continue;
467
468 last_ts = td->groupid;
469 nr_ts++;
470 }
471
472 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
473
474 for (i = 0; i < nr_ts; i++) {
475 ts = &threadstats[i];
476
477 memset(ts, 0, sizeof(*ts));
de64df05 478 for (j = 0; j <= DDIR_WRITE; j++) {
197574e4
JA
479 ts->clat_stat[j].min_val = -1UL;
480 ts->slat_stat[j].min_val = -1UL;
481 ts->bw_stat[j].min_val = -1UL;
482 }
7abd0e3a 483 ts->groupid = -1;
756867bd
JA
484 }
485
486 j = 0;
487 last_ts = -1;
197574e4 488 idx = 0;
34572e28 489 for_each_td(td, i) {
2dc1bbeb
JA
490 if (idx && (!td->o.group_reporting ||
491 (td->o.group_reporting && last_ts != td->groupid))) {
7abd0e3a
JA
492 idx = 0;
493 j++;
494 }
495
496 last_ts = td->groupid;
497
756867bd
JA
498 ts = &threadstats[j];
499
197574e4 500 idx++;
6586ee89 501 ts->members++;
756867bd 502
7abd0e3a 503 if (ts->groupid == -1) {
2dc84ba7
JA
504 /*
505 * These are per-group shared already
506 */
2dc1bbeb
JA
507 ts->name = td->o.name;
508 ts->description = td->o.description;
756867bd 509 ts->groupid = td->groupid;
2dc84ba7
JA
510
511 /*
512 * first pid in group, not very useful...
513 */
756867bd 514 ts->pid = td->pid;
2dc84ba7
JA
515 }
516
517 if (td->error && !ts->error) {
518 ts->error = td->error;
756867bd
JA
519 ts->verror = td->verror;
520 }
521
de64df05 522 for (l = 0; l <= DDIR_WRITE; l++) {
197574e4
JA
523 sum_stat(&ts->clat_stat[l], &td->ts.clat_stat[l], idx);
524 sum_stat(&ts->slat_stat[l], &td->ts.slat_stat[l], idx);
525 sum_stat(&ts->bw_stat[l], &td->ts.bw_stat[l], idx);
756867bd 526
197574e4
JA
527 ts->stat_io_bytes[l] += td->ts.stat_io_bytes[l];
528 ts->io_bytes[l] += td->ts.io_bytes[l];
529
530 if (ts->runtime[l] < td->ts.runtime[l])
531 ts->runtime[l] = td->ts.runtime[l];
532 }
756867bd
JA
533
534 ts->usr_time += td->ts.usr_time;
535 ts->sys_time += td->ts.sys_time;
536 ts->ctx += td->ts.ctx;
e7823a94
JA
537 ts->majf += td->ts.majf;
538 ts->minf += td->ts.minf;
756867bd
JA
539
540 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
541 ts->io_u_map[k] += td->ts.io_u_map[k];
04a0feae
JA
542 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
543 ts->io_u_lat_u[k] += td->ts.io_u_lat_u[k];
544 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
545 ts->io_u_lat_m[k] += td->ts.io_u_lat_m[k];
546
756867bd 547
30061b97 548 for (k = 0; k <= DDIR_WRITE; k++) {
b3605062 549 ts->total_io_u[k] += td->ts.total_io_u[k];
30061b97
JA
550 ts->short_io_u[k] += td->ts.short_io_u[k];
551 }
756867bd
JA
552
553 ts->total_run_time += td->ts.total_run_time;
756867bd
JA
554 }
555
556 for (i = 0; i < nr_ts; i++) {
94370ac4 557 unsigned long long bw;
3c39a379 558
756867bd
JA
559 ts = &threadstats[i];
560 rs = &runstats[ts->groupid];
3c39a379 561
de64df05 562 for (j = 0; j <= DDIR_WRITE; j++) {
94370ac4
JA
563 if (!ts->runtime[j])
564 continue;
565 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
566 rs->min_run[j] = ts->runtime[j];
567 if (ts->runtime[j] > rs->max_run[j])
568 rs->max_run[j] = ts->runtime[j];
569
570 bw = 0;
571 if (ts->runtime[j])
572 bw = ts->io_bytes[j] / (unsigned long long) ts->runtime[j];
573 if (bw < rs->min_bw[j])
574 rs->min_bw[j] = bw;
575 if (bw > rs->max_bw[j])
576 rs->max_bw[j] = bw;
577
578 rs->io_kb[j] += ts->io_bytes[j] >> 10;
579 }
3c39a379
JA
580 }
581
582 for (i = 0; i < groupid + 1; i++) {
583 rs = &runstats[i];
584
585 if (rs->max_run[0])
586 rs->agg[0] = (rs->io_kb[0]*1024) / rs->max_run[0];
587 if (rs->max_run[1])
588 rs->agg[1] = (rs->io_kb[1]*1024) / rs->max_run[1];
589 }
590
591 /*
592 * don't overwrite last signal output
593 */
c6ae0a5b
JA
594 if (!terse_output)
595 printf("\n");
3c39a379 596
756867bd
JA
597 for (i = 0; i < nr_ts; i++) {
598 ts = &threadstats[i];
599 rs = &runstats[ts->groupid];
3c39a379 600
c6ae0a5b 601 if (terse_output)
756867bd 602 show_thread_status_terse(ts, rs);
c6ae0a5b 603 else
756867bd 604 show_thread_status(ts, rs);
3c39a379
JA
605 }
606
c6ae0a5b
JA
607 if (!terse_output) {
608 for (i = 0; i < groupid + 1; i++)
609 show_group_stats(&runstats[i], i);
3c39a379 610
c6ae0a5b
JA
611 show_disk_util();
612 }
eecf272f
JA
613
614 free(runstats);
756867bd 615 free(threadstats);
3c39a379
JA
616}
617
68704084 618static inline void add_stat_sample(struct io_stat *is, unsigned long data)
3c39a379 619{
68704084 620 double val = data;
6660cc67 621 double delta;
68704084
JA
622
623 if (data > is->max_val)
624 is->max_val = data;
625 if (data < is->min_val)
626 is->min_val = data;
627
628 delta = val - is->mean;
ef11d737
JA
629 if (delta) {
630 is->mean += delta / (is->samples + 1.0);
631 is->S += delta * (val - is->mean);
632 }
3c39a379 633
3c39a379
JA
634 is->samples++;
635}
636
bb3884d8
JA
637static void __add_log_sample(struct io_log *iolog, unsigned long val,
638 enum fio_ddir ddir, unsigned long time)
3c39a379
JA
639{
640 if (iolog->nr_samples == iolog->max_samples) {
641 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
642
643 iolog->log = realloc(iolog->log, new_size);
644 iolog->max_samples <<= 1;
645 }
646
647 iolog->log[iolog->nr_samples].val = val;
bb3884d8 648 iolog->log[iolog->nr_samples].time = time;
3c39a379
JA
649 iolog->log[iolog->nr_samples].ddir = ddir;
650 iolog->nr_samples++;
651}
652
bb3884d8
JA
653static void add_log_sample(struct thread_data *td, struct io_log *iolog,
654 unsigned long val, enum fio_ddir ddir)
655{
656 __add_log_sample(iolog, val, ddir, mtime_since_now(&td->epoch));
657}
658
659void add_agg_sample(unsigned long val, enum fio_ddir ddir)
660{
661 struct io_log *iolog = agg_io_log[ddir];
662
663 __add_log_sample(iolog, val, ddir, mtime_since_genesis());
664}
665
1e97cce9 666void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
d85f5118 667 unsigned long usec)
3c39a379 668{
756867bd 669 struct thread_stat *ts = &td->ts;
079ad09b 670
d85f5118 671 add_stat_sample(&ts->clat_stat[ddir], usec);
3c39a379 672
079ad09b 673 if (ts->clat_log)
d85f5118 674 add_log_sample(td, ts->clat_log, usec, ddir);
3c39a379
JA
675}
676
1e97cce9 677void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
d85f5118 678 unsigned long usec)
3c39a379 679{
756867bd 680 struct thread_stat *ts = &td->ts;
079ad09b 681
d85f5118 682 add_stat_sample(&ts->slat_stat[ddir], usec);
3c39a379 683
079ad09b 684 if (ts->slat_log)
d85f5118 685 add_log_sample(td, ts->slat_log, usec, ddir);
3c39a379
JA
686}
687
1e97cce9
JA
688void add_bw_sample(struct thread_data *td, enum fio_ddir ddir,
689 struct timeval *t)
3c39a379 690{
756867bd 691 struct thread_stat *ts = &td->ts;
079ad09b 692 unsigned long spent = mtime_since(&ts->stat_sample_time[ddir], t);
3c39a379
JA
693 unsigned long rate;
694
2dc1bbeb 695 if (spent < td->o.bw_avg_time)
3c39a379
JA
696 return;
697
079ad09b
JA
698 rate = (td->this_io_bytes[ddir] - ts->stat_io_bytes[ddir]) / spent;
699 add_stat_sample(&ts->bw_stat[ddir], rate);
3c39a379 700
079ad09b
JA
701 if (ts->bw_log)
702 add_log_sample(td, ts->bw_log, rate, ddir);
3c39a379 703
079ad09b
JA
704 fio_gettime(&ts->stat_sample_time[ddir], NULL);
705 ts->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
3c39a379 706}