Update terse output
[fio.git] / stat.c
... / ...
CommitLineData
1#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
5#include <sys/stat.h>
6#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
11
12static struct itimerval itimer;
13static struct list_head disk_list = LIST_HEAD_INIT(disk_list);
14static dev_t last_dev;
15
16/*
17 * Cheesy number->string conversion, complete with carry rounding error.
18 */
19static char *num2str(unsigned long num, int maxlen, int base)
20{
21 /*
22 * could be passed in for 10^3 base, but every caller expects
23 * 2^10 base right now.
24 */
25 const unsigned int thousand = 1024;
26 char postfix[] = { 'K', 'M', 'G', 'P', 'E' };
27 char *buf;
28 int i;
29
30 buf = malloc(128);
31
32 for (i = 0; base > 1; i++)
33 base /= thousand;
34
35 do {
36 int len, carry = 0;
37
38 len = sprintf(buf, "%'lu", num);
39 if (len <= maxlen) {
40 buf[len] = postfix[i];
41 buf[len + 1] = '\0';
42 return buf;
43 }
44
45 if ((num % thousand) >= (thousand / 2))
46 carry = 1;
47
48 num /= thousand;
49 num += carry;
50 i++;
51 } while (i <= 5);
52
53 return buf;
54}
55
56static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus)
57{
58 unsigned in_flight;
59 char line[256];
60 FILE *f;
61 char *p;
62
63 f = fopen(du->path, "r");
64 if (!f)
65 return 1;
66
67 p = fgets(line, sizeof(line), f);
68 if (!p) {
69 fclose(f);
70 return 1;
71 }
72
73 if (sscanf(p, "%u %u %llu %u %u %u %llu %u %u %u %u\n", &dus->ios[0], &dus->merges[0], &dus->sectors[0], &dus->ticks[0], &dus->ios[1], &dus->merges[1], &dus->sectors[1], &dus->ticks[1], &in_flight, &dus->io_ticks, &dus->time_in_queue) != 11) {
74 fclose(f);
75 return 1;
76 }
77
78 fclose(f);
79 return 0;
80}
81
82static void update_io_tick_disk(struct disk_util *du)
83{
84 struct disk_util_stat __dus, *dus, *ldus;
85 struct timeval t;
86
87 if (get_io_ticks(du, &__dus))
88 return;
89
90 dus = &du->dus;
91 ldus = &du->last_dus;
92
93 dus->sectors[0] += (__dus.sectors[0] - ldus->sectors[0]);
94 dus->sectors[1] += (__dus.sectors[1] - ldus->sectors[1]);
95 dus->ios[0] += (__dus.ios[0] - ldus->ios[0]);
96 dus->ios[1] += (__dus.ios[1] - ldus->ios[1]);
97 dus->merges[0] += (__dus.merges[0] - ldus->merges[0]);
98 dus->merges[1] += (__dus.merges[1] - ldus->merges[1]);
99 dus->ticks[0] += (__dus.ticks[0] - ldus->ticks[0]);
100 dus->ticks[1] += (__dus.ticks[1] - ldus->ticks[1]);
101 dus->io_ticks += (__dus.io_ticks - ldus->io_ticks);
102 dus->time_in_queue += (__dus.time_in_queue - ldus->time_in_queue);
103
104 fio_gettime(&t, NULL);
105 du->msec += mtime_since(&du->time, &t);
106 memcpy(&du->time, &t, sizeof(t));
107 memcpy(ldus, &__dus, sizeof(__dus));
108}
109
110void update_io_ticks(void)
111{
112 struct list_head *entry;
113 struct disk_util *du;
114
115 list_for_each(entry, &disk_list) {
116 du = list_entry(entry, struct disk_util, list);
117 update_io_tick_disk(du);
118 }
119}
120
121static int disk_util_exists(dev_t dev)
122{
123 struct list_head *entry;
124 struct disk_util *du;
125
126 list_for_each(entry, &disk_list) {
127 du = list_entry(entry, struct disk_util, list);
128
129 if (du->dev == dev)
130 return 1;
131 }
132
133 return 0;
134}
135
136static void disk_util_add(dev_t dev, char *path)
137{
138 struct disk_util *du, *__du;
139 struct list_head *entry;
140
141 du = malloc(sizeof(*du));
142 memset(du, 0, sizeof(*du));
143 INIT_LIST_HEAD(&du->list);
144 sprintf(du->path, "%s/stat", path);
145 du->name = strdup(basename(path));
146 du->dev = dev;
147
148 list_for_each(entry, &disk_list) {
149 __du = list_entry(entry, struct disk_util, list);
150
151 if (!strcmp(du->name, __du->name)) {
152 free(du->name);
153 free(du);
154 return;
155 }
156 }
157
158 fio_gettime(&du->time, NULL);
159 get_io_ticks(du, &du->last_dus);
160
161 list_add_tail(&du->list, &disk_list);
162}
163
164static int check_dev_match(dev_t dev, char *path)
165{
166 unsigned int major, minor;
167 char line[256], *p;
168 FILE *f;
169
170 f = fopen(path, "r");
171 if (!f) {
172 perror("open path");
173 return 1;
174 }
175
176 p = fgets(line, sizeof(line), f);
177 if (!p) {
178 fclose(f);
179 return 1;
180 }
181
182 if (sscanf(p, "%u:%u", &major, &minor) != 2) {
183 fclose(f);
184 return 1;
185 }
186
187 if (((major << 8) | minor) == dev) {
188 fclose(f);
189 return 0;
190 }
191
192 fclose(f);
193 return 1;
194}
195
196static int find_block_dir(dev_t dev, char *path)
197{
198 struct dirent *dir;
199 struct stat st;
200 int found = 0;
201 DIR *D;
202
203 D = opendir(path);
204 if (!D)
205 return 0;
206
207 while ((dir = readdir(D)) != NULL) {
208 char full_path[256];
209
210 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
211 continue;
212
213 sprintf(full_path, "%s/%s", path, dir->d_name);
214
215 if (!strcmp(dir->d_name, "dev")) {
216 if (!check_dev_match(dev, full_path)) {
217 found = 1;
218 break;
219 }
220 }
221
222 if (lstat(full_path, &st) == -1) {
223 perror("stat");
224 break;
225 }
226
227 if (!S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))
228 continue;
229
230 found = find_block_dir(dev, full_path);
231 if (found) {
232 strcpy(path, full_path);
233 break;
234 }
235 }
236
237 closedir(D);
238 return found;
239}
240
241void init_disk_util(struct thread_data *td)
242{
243 struct fio_file *f;
244 struct stat st;
245 char foo[PATH_MAX], tmp[PATH_MAX];
246 dev_t dev;
247 char *p;
248
249 if (!td->do_disk_util || (td->io_ops->flags & FIO_DISKLESSIO))
250 return;
251
252 /*
253 * Just use the same file, they are on the same device.
254 */
255 f = &td->files[0];
256 if (!stat(f->file_name, &st)) {
257 if (S_ISBLK(st.st_mode))
258 dev = st.st_rdev;
259 else
260 dev = st.st_dev;
261 } else {
262 /*
263 * must be a file, open "." in that path
264 */
265 strncpy(foo, f->file_name, PATH_MAX - 1);
266 p = dirname(foo);
267 if (stat(p, &st)) {
268 perror("disk util stat");
269 return;
270 }
271
272 dev = st.st_dev;
273 }
274
275 if (disk_util_exists(dev))
276 return;
277
278 /*
279 * for an fs without a device, we will repeatedly stat through
280 * sysfs which can take oodles of time for thousands of files. so
281 * cache the last lookup and compare with that before going through
282 * everything again.
283 */
284 if (dev == last_dev)
285 return;
286
287 last_dev = dev;
288
289 sprintf(foo, "/sys/block");
290 if (!find_block_dir(dev, foo))
291 return;
292
293 /*
294 * If there's a ../queue/ directory there, we are inside a partition.
295 * Check if that is the case and jump back. For loop/md/dm etc we
296 * are already in the right spot.
297 */
298 sprintf(tmp, "%s/../queue", foo);
299 if (!stat(tmp, &st)) {
300 p = dirname(foo);
301 sprintf(tmp, "%s/queue", p);
302 if (stat(tmp, &st)) {
303 log_err("unknown sysfs layout\n");
304 return;
305 }
306 strncpy(tmp, p, PATH_MAX - 1);
307 sprintf(foo, "%s", tmp);
308 }
309
310 if (td->ioscheduler)
311 td->sysfs_root = strdup(foo);
312
313 disk_util_add(dev, foo);
314}
315
316void disk_util_timer_arm(void)
317{
318 itimer.it_value.tv_sec = 0;
319 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
320 setitimer(ITIMER_REAL, &itimer, NULL);
321}
322
323void update_rusage_stat(struct thread_data *td)
324{
325 struct thread_stat *ts = &td->ts;
326
327 getrusage(RUSAGE_SELF, &ts->ru_end);
328
329 ts->usr_time += mtime_since(&ts->ru_start.ru_utime, &ts->ru_end.ru_utime);
330 ts->sys_time += mtime_since(&ts->ru_start.ru_stime, &ts->ru_end.ru_stime);
331 ts->ctx += ts->ru_end.ru_nvcsw + ts->ru_end.ru_nivcsw - (ts->ru_start.ru_nvcsw + ts->ru_start.ru_nivcsw);
332
333 memcpy(&ts->ru_start, &ts->ru_end, sizeof(ts->ru_end));
334}
335
336static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
337 double *mean, double *dev)
338{
339 double n = is->samples;
340
341 if (is->samples == 0)
342 return 0;
343
344 *min = is->min_val;
345 *max = is->max_val;
346
347 n = (double) is->samples;
348 *mean = is->mean;
349
350 if (n > 1.0)
351 *dev = sqrt(is->S / (n - 1.0));
352 else
353 *dev = -1.0;
354
355 return 1;
356}
357
358static void show_group_stats(struct group_run_stats *rs, int id)
359{
360 char *p1, *p2, *p3, *p4;
361 const char *ddir_str[] = { " READ", " WRITE" };
362 int i;
363
364 fprintf(f_out, "\nRun status group %d (all jobs):\n", id);
365
366 for (i = 0; i <= DDIR_WRITE; i++) {
367 if (!rs->max_run[i])
368 continue;
369
370 p1 = num2str(rs->io_kb[i], 6, 1);
371 p2 = num2str(rs->agg[i], 6, 1);
372 p3 = num2str(rs->min_bw[i], 6, 1);
373 p4 = num2str(rs->max_bw[i], 6, 1);
374
375 fprintf(f_out, "%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[0], rs->max_run[0]);
376
377 free(p1);
378 free(p2);
379 free(p3);
380 free(p4);
381 }
382}
383
384static void show_disk_util(void)
385{
386 struct disk_util_stat *dus;
387 struct list_head *entry, *next;
388 struct disk_util *du;
389 double util;
390
391 fprintf(f_out, "\nDisk stats (read/write):\n");
392
393 list_for_each(entry, &disk_list) {
394 du = list_entry(entry, struct disk_util, list);
395 dus = &du->dus;
396
397 util = (double) 100 * du->dus.io_ticks / (double) du->msec;
398 if (util > 100.0)
399 util = 100.0;
400
401 fprintf(f_out, " %s: ios=%u/%u, merge=%u/%u, ticks=%u/%u, in_queue=%u, util=%3.2f%%\n", du->name, dus->ios[0], dus->ios[1], dus->merges[0], dus->merges[1], dus->ticks[0], dus->ticks[1], dus->time_in_queue, util);
402 }
403
404 /*
405 * now free the list
406 */
407 list_for_each_safe(entry, next, &disk_list) {
408 list_del(entry);
409 du = list_entry(entry, struct disk_util, list);
410 free(du->name);
411 free(du);
412 }
413}
414
415static void stat_calc_dist(struct thread_stat *ts, double *io_u_dist)
416{
417 int i;
418
419 /*
420 * Do depth distribution calculations
421 */
422 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
423 io_u_dist[i] = (double) ts->io_u_map[i] / (double) ts->total_io_u;
424 io_u_dist[i] *= 100.0;
425 }
426}
427
428static void stat_calc_lat(struct thread_stat *ts, double *io_u_lat)
429{
430 int i;
431
432 /*
433 * Do latency distribution calculations
434 */
435 for (i = 0; i < FIO_IO_U_LAT_NR; i++) {
436 io_u_lat[i] = (double) ts->io_u_lat[i] / (double) ts->total_io_u;
437 io_u_lat[i] *= 100.0;
438 }
439}
440
441static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
442 int ddir)
443{
444 const char *ddir_str[] = { "read ", "write" };
445 unsigned long min, max;
446 unsigned long long bw;
447 double mean, dev;
448 char *io_p, *bw_p;
449
450 if (!ts->runtime[ddir])
451 return;
452
453 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
454 io_p = num2str(ts->io_bytes[ddir] >> 10, 6, 1);
455 bw_p = num2str(bw, 6, 1);
456
457 fprintf(f_out, " %s: io=%siB, bw=%siB/s, runt=%6lumsec\n", ddir_str[ddir], io_p, bw_p, ts->runtime[ddir]);
458
459 free(io_p);
460 free(bw_p);
461
462 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
463 fprintf(f_out, " slat (msec): min=%5lu, max=%5lu, avg=%5.02f, stdev=%5.02f\n", min, max, mean, dev);
464
465 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
466 fprintf(f_out, " clat (msec): min=%5lu, max=%5lu, avg=%5.02f, stdev=%5.02f\n", min, max, mean, dev);
467
468 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
469 double p_of_agg;
470
471 p_of_agg = mean * 100 / (double) rs->agg[ddir];
472 fprintf(f_out, " bw (KiB/s) : min=%5lu, max=%5lu, per=%3.2f%%, avg=%5.02f, stdev=%5.02f\n", min, max, p_of_agg, mean, dev);
473 }
474}
475
476static void show_thread_status(struct thread_stat *ts,
477 struct group_run_stats *rs)
478{
479 double usr_cpu, sys_cpu;
480 unsigned long runtime;
481 double io_u_dist[FIO_IO_U_MAP_NR];
482 double io_u_lat[FIO_IO_U_LAT_NR];
483
484 if (!(ts->io_bytes[0] + ts->io_bytes[1]))
485 return;
486
487 if (!ts->error)
488 fprintf(f_out, "%s: (groupid=%d): err=%2d: pid=%d\n", ts->name, ts->groupid, ts->error, ts->pid);
489 else
490 fprintf(f_out, "%s: (groupid=%d): err=%2d (%s): pid=%d\n", ts->name, ts->groupid, ts->error, ts->verror, ts->pid);
491
492 if (ts->io_bytes[DDIR_READ])
493 show_ddir_status(rs, ts, DDIR_READ);
494 if (ts->io_bytes[DDIR_WRITE])
495 show_ddir_status(rs, ts, DDIR_WRITE);
496
497 runtime = ts->total_run_time;
498 if (runtime) {
499 double runt = (double) runtime;
500
501 usr_cpu = (double) ts->usr_time * 100 / runt;
502 sys_cpu = (double) ts->sys_time * 100 / runt;
503 } else {
504 usr_cpu = 0;
505 sys_cpu = 0;
506 }
507
508 fprintf(f_out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu\n", usr_cpu, sys_cpu, ts->ctx);
509
510 stat_calc_dist(ts, io_u_dist);
511 stat_calc_lat(ts, io_u_lat);
512
513 fprintf(f_out, " 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]);
514
515 fprintf(f_out, " lat (msec): 2=%3.1f%%, 4=%3.1f%%, 10=%3.1f%%, 20=%3.1f%%, 50=%3.1f%%, 100=%3.1f%%\n", io_u_lat[0], io_u_lat[1], io_u_lat[2], io_u_lat[3], io_u_lat[4], io_u_lat[5]);
516 fprintf(f_out, " lat (msec): 250=%3.1f%%, 500=%3.1f%%, 750=%3.1f%%, 1000=%3.1f%%, >=2000=%3.1f%%\n", io_u_lat[6], io_u_lat[7], io_u_lat[8], io_u_lat[9], io_u_lat[10]);
517
518 if (ts->description)
519 fprintf(f_out, "%s\n", ts->description);
520}
521
522static void show_ddir_status_terse(struct thread_stat *ts,
523 struct group_run_stats *rs, int ddir)
524{
525 unsigned long min, max;
526 unsigned long long bw;
527 double mean, dev;
528
529 bw = 0;
530 if (ts->runtime[ddir])
531 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
532
533 fprintf(f_out, ",%llu,%llu,%lu", ts->io_bytes[ddir] >> 10, bw, ts->runtime[ddir]);
534
535 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
536 fprintf(f_out, ",%lu,%lu,%f,%f", min, max, mean, dev);
537 else
538 fprintf(f_out, ",%lu,%lu,%f,%f", 0UL, 0UL, 0.0, 0.0);
539
540 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
541 fprintf(f_out, ",%lu,%lu,%f,%f", min, max, mean, dev);
542 else
543 fprintf(f_out, ",%lu,%lu,%f,%f", 0UL, 0UL, 0.0, 0.0);
544
545 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
546 double p_of_agg;
547
548 p_of_agg = mean * 100 / (double) rs->agg[ddir];
549 fprintf(f_out, ",%lu,%lu,%f%%,%f,%f", min, max, p_of_agg, mean, dev);
550 } else
551 fprintf(f_out, ",%lu,%lu,%f%%,%f,%f", 0UL, 0UL, 0.0, 0.0, 0.0);
552}
553
554
555static void show_thread_status_terse(struct thread_stat *ts,
556 struct group_run_stats *rs)
557{
558 double io_u_dist[FIO_IO_U_MAP_NR];
559 double io_u_lat[FIO_IO_U_LAT_NR];
560 double usr_cpu, sys_cpu;
561
562 fprintf(f_out, "%s,%d,%d", ts->name, ts->groupid, ts->error);
563
564 show_ddir_status_terse(ts, rs, 0);
565 show_ddir_status_terse(ts, rs, 1);
566
567 if (ts->total_run_time) {
568 double runt = (double) ts->total_run_time;
569
570 usr_cpu = (double) ts->usr_time * 100 / runt;
571 sys_cpu = (double) ts->sys_time * 100 / runt;
572 } else {
573 usr_cpu = 0;
574 sys_cpu = 0;
575 }
576
577 fprintf(f_out, ",%f%%,%f%%,%lu", usr_cpu, sys_cpu, ts->ctx);
578
579 stat_calc_dist(ts, io_u_dist);
580 stat_calc_lat(ts, io_u_lat);
581
582 fprintf(f_out, ",%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]);
583
584 fprintf(f_out, "%3.1f%%,%3.1f%%,%3.1f%%,%3.1f%%,%3.1f%%,%3.1f%%\n", io_u_lat[0], io_u_lat[1], io_u_lat[2], io_u_lat[3], io_u_lat[4], io_u_lat[5]);
585 fprintf(f_out, "%3.1f%%,%3.1f%%,%3.1f%%,%3.1f%%,%3.1f%%", io_u_lat[6], io_u_lat[7], io_u_lat[8], io_u_lat[9], io_u_lat[10]);
586
587 if (ts->description)
588 fprintf(f_out, ",%s", ts->description);
589
590 fprintf(f_out, "\n");
591}
592
593static void __sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
594{
595 double mean, S;
596
597 dst->min_val = min(dst->min_val, src->min_val);
598 dst->max_val = max(dst->max_val, src->max_val);
599 dst->samples += src->samples;
600
601 /*
602 * Needs a new method for calculating stddev, we cannot just
603 * average them we do below for nr > 1
604 */
605 if (nr == 1) {
606 mean = src->mean;
607 S = src->S;
608 } else {
609 mean = ((src->mean * (double) (nr - 1)) + dst->mean) / ((double) nr);
610 S = ((src->S * (double) (nr - 1)) + dst->S) / ((double) nr);
611 }
612
613 dst->mean = mean;
614 dst->S = S;
615}
616
617static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
618{
619 __sum_stat(&dst[DDIR_READ], &src[DDIR_READ], nr);
620 __sum_stat(&dst[DDIR_WRITE], &src[DDIR_WRITE], nr);
621}
622
623void show_run_stats(void)
624{
625 struct group_run_stats *runstats, *rs;
626 struct thread_data *td;
627 struct thread_stat *threadstats, *ts;
628 int i, j, k, nr_ts, last_ts, members;
629
630 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
631
632 for (i = 0; i < groupid + 1; i++) {
633 rs = &runstats[i];
634
635 memset(rs, 0, sizeof(*rs));
636 rs->min_bw[0] = rs->min_run[0] = ~0UL;
637 rs->min_bw[1] = rs->min_run[1] = ~0UL;
638 }
639
640 /*
641 * find out how many threads stats we need. if group reporting isn't
642 * enabled, it's one-per-td.
643 */
644 nr_ts = 0;
645 last_ts = -1;
646 for_each_td(td, i) {
647 if (!td->group_reporting) {
648 nr_ts++;
649 continue;
650 }
651 if (last_ts == td->groupid)
652 continue;
653
654 last_ts = td->groupid;
655 nr_ts++;
656 }
657
658 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
659
660 for (i = 0; i < nr_ts; i++) {
661 ts = &threadstats[i];
662
663 memset(ts, 0, sizeof(*ts));
664 ts->clat_stat[0].min_val = -1UL;
665 ts->clat_stat[1].min_val = -1UL;
666 ts->slat_stat[0].min_val = -1UL;
667 ts->slat_stat[1].min_val = -1UL;
668 ts->bw_stat[0].min_val = -1UL;
669 ts->bw_stat[1].min_val = -1UL;
670 }
671
672 j = 0;
673 last_ts = -1;
674 members = 0;
675 for_each_td(td, i) {
676 ts = &threadstats[j];
677
678 members++;
679
680 if (!ts->groupid) {
681 /*
682 * These are per-group shared already
683 */
684 ts->name = td->name;
685 ts->description = td->description;
686 ts->groupid = td->groupid;
687
688 /*
689 * first pid in group, not very useful...
690 */
691 ts->pid = td->pid;
692 }
693
694 if (td->error && !ts->error) {
695 ts->error = td->error;
696 ts->verror = td->verror;
697 }
698
699 sum_stat(ts->clat_stat, td->ts.clat_stat, members);
700 sum_stat(ts->slat_stat, td->ts.slat_stat, members);
701 sum_stat(ts->bw_stat, td->ts.bw_stat, members);
702
703 ts->stat_io_bytes[0] += td->ts.stat_io_bytes[0];
704 ts->stat_io_bytes[1] += td->ts.stat_io_bytes[1];
705
706 ts->usr_time += td->ts.usr_time;
707 ts->sys_time += td->ts.sys_time;
708 ts->ctx += td->ts.ctx;
709
710 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
711 ts->io_u_map[k] += td->ts.io_u_map[k];
712 for (k = 0; k < FIO_IO_U_LAT_NR; k++)
713 ts->io_u_lat[k] += td->ts.io_u_lat[k];
714
715 ts->total_io_u += td->ts.total_io_u;
716 ts->io_bytes[0] += td->ts.io_bytes[0];
717 ts->io_bytes[1] += td->ts.io_bytes[1];
718
719 if (ts->runtime[0] < td->ts.runtime[0])
720 ts->runtime[0] = td->ts.runtime[0];
721 if (ts->runtime[1] < td->ts.runtime[1])
722 ts->runtime[1] = td->ts.runtime[1];
723
724 ts->total_run_time += td->ts.total_run_time;
725
726 if (!td->group_reporting) {
727 members = 0;
728 j++;
729 continue;
730 }
731 if (last_ts == td->groupid)
732 continue;
733
734 if (last_ts != -1) {
735 members = 0;
736 j++;
737 }
738
739 last_ts = td->groupid;
740 }
741
742 for (i = 0; i < nr_ts; i++) {
743 unsigned long long rbw, wbw;
744
745 ts = &threadstats[i];
746 rs = &runstats[ts->groupid];
747
748 if (ts->runtime[0] < rs->min_run[0] || !rs->min_run[0])
749 rs->min_run[0] = ts->runtime[0];
750 if (ts->runtime[0] > rs->max_run[0])
751 rs->max_run[0] = ts->runtime[0];
752 if (ts->runtime[1] < rs->min_run[1] || !rs->min_run[1])
753 rs->min_run[1] = ts->runtime[1];
754 if (ts->runtime[1] > rs->max_run[1])
755 rs->max_run[1] = ts->runtime[1];
756
757 rbw = wbw = 0;
758 if (ts->runtime[0])
759 rbw = ts->io_bytes[0] / (unsigned long long) ts->runtime[0];
760 if (ts->runtime[1])
761 wbw = ts->io_bytes[1] / (unsigned long long) ts->runtime[1];
762
763 if (rbw < rs->min_bw[0])
764 rs->min_bw[0] = rbw;
765 if (wbw < rs->min_bw[1])
766 rs->min_bw[1] = wbw;
767 if (rbw > rs->max_bw[0])
768 rs->max_bw[0] = rbw;
769 if (wbw > rs->max_bw[1])
770 rs->max_bw[1] = wbw;
771
772 rs->io_kb[0] += ts->io_bytes[0] >> 10;
773 rs->io_kb[1] += ts->io_bytes[1] >> 10;
774 }
775
776 for (i = 0; i < groupid + 1; i++) {
777 rs = &runstats[i];
778
779 if (rs->max_run[0])
780 rs->agg[0] = (rs->io_kb[0]*1024) / rs->max_run[0];
781 if (rs->max_run[1])
782 rs->agg[1] = (rs->io_kb[1]*1024) / rs->max_run[1];
783 }
784
785 /*
786 * don't overwrite last signal output
787 */
788 if (!terse_output)
789 printf("\n");
790
791 for (i = 0; i < nr_ts; i++) {
792 ts = &threadstats[i];
793 rs = &runstats[ts->groupid];
794
795 if (terse_output)
796 show_thread_status_terse(ts, rs);
797 else
798 show_thread_status(ts, rs);
799 }
800
801 if (!terse_output) {
802 for (i = 0; i < groupid + 1; i++)
803 show_group_stats(&runstats[i], i);
804
805 show_disk_util();
806 }
807
808 free(runstats);
809 free(threadstats);
810}
811
812static inline void add_stat_sample(struct io_stat *is, unsigned long data)
813{
814 double val = data;
815 double delta;
816
817 if (data > is->max_val)
818 is->max_val = data;
819 if (data < is->min_val)
820 is->min_val = data;
821
822 delta = val - is->mean;
823 is->mean += delta / (is->samples + 1.0);
824 is->S += delta * (val - is->mean);
825
826 is->samples++;
827}
828
829static void __add_log_sample(struct io_log *iolog, unsigned long val,
830 enum fio_ddir ddir, unsigned long time)
831{
832 if (iolog->nr_samples == iolog->max_samples) {
833 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
834
835 iolog->log = realloc(iolog->log, new_size);
836 iolog->max_samples <<= 1;
837 }
838
839 iolog->log[iolog->nr_samples].val = val;
840 iolog->log[iolog->nr_samples].time = time;
841 iolog->log[iolog->nr_samples].ddir = ddir;
842 iolog->nr_samples++;
843}
844
845static void add_log_sample(struct thread_data *td, struct io_log *iolog,
846 unsigned long val, enum fio_ddir ddir)
847{
848 __add_log_sample(iolog, val, ddir, mtime_since_now(&td->epoch));
849}
850
851void add_agg_sample(unsigned long val, enum fio_ddir ddir)
852{
853 struct io_log *iolog = agg_io_log[ddir];
854
855 __add_log_sample(iolog, val, ddir, mtime_since_genesis());
856}
857
858void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
859 unsigned long msec)
860{
861 struct thread_stat *ts = &td->ts;
862
863 add_stat_sample(&ts->clat_stat[ddir], msec);
864
865 if (ts->clat_log)
866 add_log_sample(td, ts->clat_log, msec, ddir);
867}
868
869void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
870 unsigned long msec)
871{
872 struct thread_stat *ts = &td->ts;
873
874 add_stat_sample(&ts->slat_stat[ddir], msec);
875
876 if (ts->slat_log)
877 add_log_sample(td, ts->slat_log, msec, ddir);
878}
879
880void add_bw_sample(struct thread_data *td, enum fio_ddir ddir,
881 struct timeval *t)
882{
883 struct thread_stat *ts = &td->ts;
884 unsigned long spent = mtime_since(&ts->stat_sample_time[ddir], t);
885 unsigned long rate;
886
887 if (spent < td->bw_avg_time)
888 return;
889
890 rate = (td->this_io_bytes[ddir] - ts->stat_io_bytes[ddir]) / spent;
891 add_stat_sample(&ts->bw_stat[ddir], rate);
892
893 if (ts->bw_log)
894 add_log_sample(td, ts->bw_log, rate, ddir);
895
896 fio_gettime(&ts->stat_sample_time[ddir], NULL);
897 ts->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
898}