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