blob: 8d391a35d4dec7058e0670bde73685d3fa176937 [file] [log] [blame]
Jens Axboe3c39a372006-06-06 20:56:12 +02001#include <stdio.h>
2#include <string.h>
3#include <sys/time.h>
4#include <sys/types.h>
Jens Axboe5c4e1db2006-06-07 14:17:08 +02005#include <sys/stat.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02006#include <dirent.h>
7#include <libgen.h>
8#include <math.h>
9
10#include "fio.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020011
12static struct itimerval itimer;
Jens Axboe5c4e1db2006-06-07 14:17:08 +020013static struct list_head disk_list = LIST_HEAD_INIT(disk_list);
Jens Axboec0a6b0d2007-02-26 12:28:58 +010014static dev_t last_dev;
Jens Axboe3c39a372006-06-06 20:56:12 +020015
Jens Axboedbe11252007-02-11 00:19:51 +010016/*
Jens Axboe34403fb2007-03-02 21:43:25 +010017 * Cheesy number->string conversion, complete with carry rounding error.
Jens Axboedbe11252007-02-11 00:19:51 +010018 */
Jens Axboeb3605062007-03-12 14:19:47 +010019static char *num2str(unsigned long num, int maxlen, int base, int pow2)
Jens Axboedbe11252007-02-11 00:19:51 +010020{
Jens Axboeb3605062007-03-12 14:19:47 +010021 char postfix[] = { ' ', 'K', 'M', 'G', 'P', 'E' };
22 unsigned int thousand;
Jens Axboedbe11252007-02-11 00:19:51 +010023 char *buf;
24 int i;
25
Jens Axboeb3605062007-03-12 14:19:47 +010026 if (pow2)
27 thousand = 1024;
28 else
29 thousand = 1000;
30
Jens Axboedbe11252007-02-11 00:19:51 +010031 buf = malloc(128);
32
33 for (i = 0; base > 1; i++)
34 base /= thousand;
35
36 do {
37 int len, carry = 0;
38
39 len = sprintf(buf, "%'lu", num);
40 if (len <= maxlen) {
Jens Axboeb3605062007-03-12 14:19:47 +010041 if (i >= 1) {
42 buf[len] = postfix[i];
43 buf[len + 1] = '\0';
44 }
Jens Axboedbe11252007-02-11 00:19:51 +010045 return buf;
46 }
47
48 if ((num % thousand) >= (thousand / 2))
49 carry = 1;
50
51 num /= thousand;
52 num += carry;
53 i++;
Jens Axboef3502ba2007-02-14 01:27:09 +010054 } while (i <= 5);
Jens Axboedbe11252007-02-11 00:19:51 +010055
56 return buf;
57}
58
Jens Axboe3c39a372006-06-06 20:56:12 +020059static int get_io_ticks(struct disk_util *du, struct disk_util_stat *dus)
60{
61 unsigned in_flight;
62 char line[256];
63 FILE *f;
64 char *p;
65
66 f = fopen(du->path, "r");
67 if (!f)
68 return 1;
69
70 p = fgets(line, sizeof(line), f);
71 if (!p) {
72 fclose(f);
73 return 1;
74 }
75
76 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) {
77 fclose(f);
78 return 1;
79 }
80
81 fclose(f);
82 return 0;
83}
84
85static void update_io_tick_disk(struct disk_util *du)
86{
87 struct disk_util_stat __dus, *dus, *ldus;
88 struct timeval t;
89
90 if (get_io_ticks(du, &__dus))
91 return;
92
93 dus = &du->dus;
94 ldus = &du->last_dus;
95
96 dus->sectors[0] += (__dus.sectors[0] - ldus->sectors[0]);
97 dus->sectors[1] += (__dus.sectors[1] - ldus->sectors[1]);
98 dus->ios[0] += (__dus.ios[0] - ldus->ios[0]);
99 dus->ios[1] += (__dus.ios[1] - ldus->ios[1]);
100 dus->merges[0] += (__dus.merges[0] - ldus->merges[0]);
101 dus->merges[1] += (__dus.merges[1] - ldus->merges[1]);
102 dus->ticks[0] += (__dus.ticks[0] - ldus->ticks[0]);
103 dus->ticks[1] += (__dus.ticks[1] - ldus->ticks[1]);
104 dus->io_ticks += (__dus.io_ticks - ldus->io_ticks);
105 dus->time_in_queue += (__dus.time_in_queue - ldus->time_in_queue);
106
Jens Axboe02bcaa82006-11-24 10:42:00 +0100107 fio_gettime(&t, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +0200108 du->msec += mtime_since(&du->time, &t);
109 memcpy(&du->time, &t, sizeof(t));
110 memcpy(ldus, &__dus, sizeof(__dus));
111}
112
113void update_io_ticks(void)
114{
115 struct list_head *entry;
116 struct disk_util *du;
117
118 list_for_each(entry, &disk_list) {
119 du = list_entry(entry, struct disk_util, list);
120 update_io_tick_disk(du);
121 }
122}
123
124static int disk_util_exists(dev_t dev)
125{
126 struct list_head *entry;
127 struct disk_util *du;
128
129 list_for_each(entry, &disk_list) {
130 du = list_entry(entry, struct disk_util, list);
131
132 if (du->dev == dev)
133 return 1;
134 }
135
136 return 0;
137}
138
139static void disk_util_add(dev_t dev, char *path)
140{
Jens Axboe1188caf2007-01-08 10:57:27 +0100141 struct disk_util *du, *__du;
142 struct list_head *entry;
Jens Axboe3c39a372006-06-06 20:56:12 +0200143
Jens Axboe1188caf2007-01-08 10:57:27 +0100144 du = malloc(sizeof(*du));
Jens Axboe3c39a372006-06-06 20:56:12 +0200145 memset(du, 0, sizeof(*du));
146 INIT_LIST_HEAD(&du->list);
147 sprintf(du->path, "%s/stat", path);
148 du->name = strdup(basename(path));
149 du->dev = dev;
150
Jens Axboe1188caf2007-01-08 10:57:27 +0100151 list_for_each(entry, &disk_list) {
152 __du = list_entry(entry, struct disk_util, list);
153
154 if (!strcmp(du->name, __du->name)) {
155 free(du->name);
156 free(du);
157 return;
158 }
159 }
160
Jens Axboe02bcaa82006-11-24 10:42:00 +0100161 fio_gettime(&du->time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +0200162 get_io_ticks(du, &du->last_dus);
163
164 list_add_tail(&du->list, &disk_list);
165}
166
167static int check_dev_match(dev_t dev, char *path)
168{
169 unsigned int major, minor;
170 char line[256], *p;
171 FILE *f;
172
173 f = fopen(path, "r");
174 if (!f) {
175 perror("open path");
176 return 1;
177 }
178
179 p = fgets(line, sizeof(line), f);
180 if (!p) {
181 fclose(f);
182 return 1;
183 }
184
185 if (sscanf(p, "%u:%u", &major, &minor) != 2) {
186 fclose(f);
187 return 1;
188 }
189
190 if (((major << 8) | minor) == dev) {
191 fclose(f);
192 return 0;
193 }
194
195 fclose(f);
196 return 1;
197}
198
199static int find_block_dir(dev_t dev, char *path)
200{
201 struct dirent *dir;
202 struct stat st;
203 int found = 0;
204 DIR *D;
205
206 D = opendir(path);
207 if (!D)
208 return 0;
209
210 while ((dir = readdir(D)) != NULL) {
211 char full_path[256];
212
213 if (!strcmp(dir->d_name, ".") || !strcmp(dir->d_name, ".."))
214 continue;
Jens Axboe3c39a372006-06-06 20:56:12 +0200215
216 sprintf(full_path, "%s/%s", path, dir->d_name);
217
218 if (!strcmp(dir->d_name, "dev")) {
219 if (!check_dev_match(dev, full_path)) {
220 found = 1;
221 break;
222 }
223 }
224
Jens Axboe3307d652006-07-17 18:15:41 +0200225 if (lstat(full_path, &st) == -1) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200226 perror("stat");
227 break;
228 }
229
230 if (!S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))
231 continue;
232
233 found = find_block_dir(dev, full_path);
234 if (found) {
235 strcpy(path, full_path);
236 break;
237 }
238 }
239
240 closedir(D);
241 return found;
242}
243
244void init_disk_util(struct thread_data *td)
245{
Jens Axboe53cdc682006-10-18 11:50:58 +0200246 struct fio_file *f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200247 struct stat st;
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100248 char foo[PATH_MAX], tmp[PATH_MAX];
Jens Axboe3c39a372006-06-06 20:56:12 +0200249 dev_t dev;
250 char *p;
251
Jens Axboe138502a2007-03-01 08:27:42 +0100252 if (!td->do_disk_util || (td->io_ops->flags & FIO_DISKLESSIO))
Jens Axboe3c39a372006-06-06 20:56:12 +0200253 return;
254
Jens Axboe53cdc682006-10-18 11:50:58 +0200255 /*
256 * Just use the same file, they are on the same device.
257 */
258 f = &td->files[0];
259 if (!stat(f->file_name, &st)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200260 if (S_ISBLK(st.st_mode))
261 dev = st.st_rdev;
262 else
263 dev = st.st_dev;
264 } else {
265 /*
266 * must be a file, open "." in that path
267 */
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100268 strncpy(foo, f->file_name, PATH_MAX - 1);
Jens Axboe3c39a372006-06-06 20:56:12 +0200269 p = dirname(foo);
270 if (stat(p, &st)) {
271 perror("disk util stat");
272 return;
273 }
274
275 dev = st.st_dev;
276 }
277
278 if (disk_util_exists(dev))
279 return;
Jens Axboec0a6b0d2007-02-26 12:28:58 +0100280
281 /*
282 * for an fs without a device, we will repeatedly stat through
283 * sysfs which can take oodles of time for thousands of files. so
284 * cache the last lookup and compare with that before going through
285 * everything again.
286 */
287 if (dev == last_dev)
288 return;
289
290 last_dev = dev;
Jens Axboe3c39a372006-06-06 20:56:12 +0200291
292 sprintf(foo, "/sys/block");
293 if (!find_block_dir(dev, foo))
294 return;
295
296 /*
297 * If there's a ../queue/ directory there, we are inside a partition.
298 * Check if that is the case and jump back. For loop/md/dm etc we
299 * are already in the right spot.
300 */
301 sprintf(tmp, "%s/../queue", foo);
302 if (!stat(tmp, &st)) {
303 p = dirname(foo);
304 sprintf(tmp, "%s/queue", p);
305 if (stat(tmp, &st)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200306 log_err("unknown sysfs layout\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200307 return;
308 }
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100309 strncpy(tmp, p, PATH_MAX - 1);
Jens Axboe84585002006-10-19 20:26:22 +0200310 sprintf(foo, "%s", tmp);
Jens Axboe3c39a372006-06-06 20:56:12 +0200311 }
312
Jens Axboeeecf2722006-10-20 14:00:36 +0200313 if (td->ioscheduler)
314 td->sysfs_root = strdup(foo);
315
Jens Axboe3c39a372006-06-06 20:56:12 +0200316 disk_util_add(dev, foo);
317}
318
319void disk_util_timer_arm(void)
320{
321 itimer.it_value.tv_sec = 0;
322 itimer.it_value.tv_usec = DISK_UTIL_MSEC * 1000;
323 setitimer(ITIMER_REAL, &itimer, NULL);
324}
325
326void update_rusage_stat(struct thread_data *td)
327{
Jens Axboe756867b2007-03-06 15:19:24 +0100328 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200329
Jens Axboe079ad092007-02-20 13:58:20 +0100330 getrusage(RUSAGE_SELF, &ts->ru_end);
331
332 ts->usr_time += mtime_since(&ts->ru_start.ru_utime, &ts->ru_end.ru_utime);
333 ts->sys_time += mtime_since(&ts->ru_start.ru_stime, &ts->ru_end.ru_stime);
334 ts->ctx += ts->ru_end.ru_nvcsw + ts->ru_end.ru_nivcsw - (ts->ru_start.ru_nvcsw + ts->ru_start.ru_nivcsw);
Jens Axboe3c39a372006-06-06 20:56:12 +0200335
Jens Axboe079ad092007-02-20 13:58:20 +0100336 memcpy(&ts->ru_start, &ts->ru_end, sizeof(ts->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +0200337}
338
339static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
340 double *mean, double *dev)
341{
Jens Axboe68704082007-01-10 19:56:37 +0100342 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200343
344 if (is->samples == 0)
345 return 0;
346
347 *min = is->min_val;
348 *max = is->max_val;
349
350 n = (double) is->samples;
Jens Axboe68704082007-01-10 19:56:37 +0100351 *mean = is->mean;
Jens Axboe3c39a372006-06-06 20:56:12 +0200352
Jens Axboe68704082007-01-10 19:56:37 +0100353 if (n > 1.0)
354 *dev = sqrt(is->S / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100355 else
Jens Axboe68704082007-01-10 19:56:37 +0100356 *dev = -1.0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100357
Jens Axboe3c39a372006-06-06 20:56:12 +0200358 return 1;
359}
360
361static void show_group_stats(struct group_run_stats *rs, int id)
362{
Jens Axboedbe11252007-02-11 00:19:51 +0100363 char *p1, *p2, *p3, *p4;
364 const char *ddir_str[] = { " READ", " WRITE" };
365 int i;
366
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200367 fprintf(f_out, "\nRun status group %d (all jobs):\n", id);
Jens Axboe3c39a372006-06-06 20:56:12 +0200368
Jens Axboedbe11252007-02-11 00:19:51 +0100369 for (i = 0; i <= DDIR_WRITE; i++) {
370 if (!rs->max_run[i])
371 continue;
372
Jens Axboeb3605062007-03-12 14:19:47 +0100373 p1 = num2str(rs->io_kb[i], 6, 1000, 1);
374 p2 = num2str(rs->agg[i], 6, 1000, 1);
375 p3 = num2str(rs->min_bw[i], 6, 1000, 1);
376 p4 = num2str(rs->max_bw[i], 6, 1000, 1);
Jens Axboedbe11252007-02-11 00:19:51 +0100377
Jens Axboe197574e2007-03-08 15:35:11 +0100378 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[i], rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100379
380 free(p1);
381 free(p2);
382 free(p3);
383 free(p4);
384 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200385}
386
387static void show_disk_util(void)
388{
389 struct disk_util_stat *dus;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200390 struct list_head *entry, *next;
Jens Axboe3c39a372006-06-06 20:56:12 +0200391 struct disk_util *du;
392 double util;
393
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200394 fprintf(f_out, "\nDisk stats (read/write):\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200395
396 list_for_each(entry, &disk_list) {
397 du = list_entry(entry, struct disk_util, list);
398 dus = &du->dus;
399
400 util = (double) 100 * du->dus.io_ticks / (double) du->msec;
401 if (util > 100.0)
402 util = 100.0;
403
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200404 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);
Jens Axboe3c39a372006-06-06 20:56:12 +0200405 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200406
407 /*
408 * now free the list
409 */
410 list_for_each_safe(entry, next, &disk_list) {
411 list_del(entry);
412 du = list_entry(entry, struct disk_util, list);
413 free(du->name);
414 free(du);
415 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200416}
417
Jens Axboeb3605062007-03-12 14:19:47 +0100418#define ts_total_io_u(ts) \
419 ((ts)->total_io_u[0] + (ts)->total_io_u[1])
420
Jens Axboe22708902007-03-06 17:05:32 +0100421static void stat_calc_dist(struct thread_stat *ts, double *io_u_dist)
422{
423 int i;
424
425 /*
426 * Do depth distribution calculations
427 */
428 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboeb3605062007-03-12 14:19:47 +0100429 io_u_dist[i] = (double) ts->io_u_map[i] / (double) ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100430 io_u_dist[i] *= 100.0;
431 }
432}
433
434static void stat_calc_lat(struct thread_stat *ts, double *io_u_lat)
435{
436 int i;
437
438 /*
439 * Do latency distribution calculations
440 */
441 for (i = 0; i < FIO_IO_U_LAT_NR; i++) {
Jens Axboeb3605062007-03-12 14:19:47 +0100442 io_u_lat[i] = (double) ts->io_u_lat[i] / (double) ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100443 io_u_lat[i] *= 100.0;
444 }
445}
446
Jens Axboe756867b2007-03-06 15:19:24 +0100447static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200448 int ddir)
449{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100450 const char *ddir_str[] = { "read ", "write" };
Jens Axboe3c39a372006-06-06 20:56:12 +0200451 unsigned long min, max;
Jens Axboeb3605062007-03-12 14:19:47 +0100452 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200453 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100454 char *io_p, *bw_p, *iops_p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200455
Jens Axboe756867b2007-03-06 15:19:24 +0100456 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200457 return;
458
Jens Axboe756867b2007-03-06 15:19:24 +0100459 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
Jens Axboeb3605062007-03-12 14:19:47 +0100460 iops = (1000 * ts->total_io_u[ddir]) / ts->runtime[ddir];
461 io_p = num2str(ts->io_bytes[ddir] >> 10, 6, 1000, 1);
462 bw_p = num2str(bw, 6, 1000, 1);
463 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100464
Jens Axboeb3605062007-03-12 14:19:47 +0100465 fprintf(f_out, " %s: io=%siB, bw=%siB/s, iops=%s, runt=%6lumsec\n", ddir_str[ddir], io_p, bw_p, iops_p, ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100466
467 free(io_p);
468 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100469 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200470
Jens Axboe079ad092007-02-20 13:58:20 +0100471 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6104ddb2007-01-11 14:24:29 +0100472 fprintf(f_out, " slat (msec): min=%5lu, max=%5lu, avg=%5.02f, stdev=%5.02f\n", min, max, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200473
Jens Axboe079ad092007-02-20 13:58:20 +0100474 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6104ddb2007-01-11 14:24:29 +0100475 fprintf(f_out, " clat (msec): min=%5lu, max=%5lu, avg=%5.02f, stdev=%5.02f\n", min, max, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200476
Jens Axboe079ad092007-02-20 13:58:20 +0100477 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200478 double p_of_agg;
479
480 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6104ddb2007-01-11 14:24:29 +0100481 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);
Jens Axboe3c39a372006-06-06 20:56:12 +0200482 }
483}
484
Jens Axboe756867b2007-03-06 15:19:24 +0100485static void show_thread_status(struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200486 struct group_run_stats *rs)
487{
488 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100489 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100490 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboeec118302007-02-17 04:38:20 +0100491 double io_u_lat[FIO_IO_U_LAT_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200492
Jens Axboe756867b2007-03-06 15:19:24 +0100493 if (!(ts->io_bytes[0] + ts->io_bytes[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200494 return;
495
Jens Axboe756867b2007-03-06 15:19:24 +0100496 if (!ts->error)
Jens Axboe6586ee82007-03-06 19:46:09 +0100497 fprintf(f_out, "%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n", ts->name, ts->groupid, ts->members, ts->error, ts->pid);
Jens Axboe6d663072007-02-11 00:57:13 +0100498 else
Jens Axboe6586ee82007-03-06 19:46:09 +0100499 fprintf(f_out, "%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n", ts->name, ts->groupid, ts->members, ts->error, ts->verror, ts->pid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200500
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100501 if (ts->description)
502 fprintf(f_out, " Description : [%s]\n", ts->description);
503
Jens Axboe756867b2007-03-06 15:19:24 +0100504 if (ts->io_bytes[DDIR_READ])
505 show_ddir_status(rs, ts, DDIR_READ);
506 if (ts->io_bytes[DDIR_WRITE])
507 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200508
Jens Axboe756867b2007-03-06 15:19:24 +0100509 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100510 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100511 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200512
Jens Axboe756867b2007-03-06 15:19:24 +0100513 usr_cpu = (double) ts->usr_time * 100 / runt;
514 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200515 } else {
516 usr_cpu = 0;
517 sys_cpu = 0;
518 }
519
Jens Axboe756867b2007-03-06 15:19:24 +0100520 fprintf(f_out, " cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu\n", usr_cpu, sys_cpu, ts->ctx);
Jens Axboe71619dc2007-01-13 23:56:33 +0100521
Jens Axboe22708902007-03-06 17:05:32 +0100522 stat_calc_dist(ts, io_u_dist);
523 stat_calc_lat(ts, io_u_lat);
Jens Axboe71619dc2007-01-13 23:56:33 +0100524
Jens Axboe5d458072007-01-13 23:59:00 +0100525 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]);
Jens Axboe61697c32007-02-05 15:04:46 +0100526
Jens Axboe8abdce62007-02-21 10:22:55 +0100527 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]);
528 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]);
Jens Axboe3c39a372006-06-06 20:56:12 +0200529}
530
Jens Axboe756867b2007-03-06 15:19:24 +0100531static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200532 struct group_run_stats *rs, int ddir)
533{
534 unsigned long min, max;
535 unsigned long long bw;
536 double mean, dev;
537
538 bw = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100539 if (ts->runtime[ddir])
540 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200541
Jens Axboe6af019c2007-03-06 19:50:58 +0100542 fprintf(f_out, ";%llu;%llu;%lu", ts->io_bytes[ddir] >> 10, bw, ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200543
Jens Axboe079ad092007-02-20 13:58:20 +0100544 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6af019c2007-03-06 19:50:58 +0100545 fprintf(f_out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200546 else
Jens Axboe6af019c2007-03-06 19:50:58 +0100547 fprintf(f_out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200548
Jens Axboe079ad092007-02-20 13:58:20 +0100549 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6af019c2007-03-06 19:50:58 +0100550 fprintf(f_out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200551 else
Jens Axboe6af019c2007-03-06 19:50:58 +0100552 fprintf(f_out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200553
Jens Axboe079ad092007-02-20 13:58:20 +0100554 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboec6ae0a52006-06-12 11:04:44 +0200555 double p_of_agg;
556
557 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6af019c2007-03-06 19:50:58 +0100558 fprintf(f_out, ";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200559 } else
Jens Axboe6af019c2007-03-06 19:50:58 +0100560 fprintf(f_out, ";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200561}
562
563
Jens Axboe756867b2007-03-06 15:19:24 +0100564static void show_thread_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200565 struct group_run_stats *rs)
566{
Jens Axboe22708902007-03-06 17:05:32 +0100567 double io_u_dist[FIO_IO_U_MAP_NR];
568 double io_u_lat[FIO_IO_U_LAT_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200569 double usr_cpu, sys_cpu;
570
Jens Axboe6af019c2007-03-06 19:50:58 +0100571 fprintf(f_out, "%s;%d;%d", ts->name, ts->groupid, ts->error);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200572
Jens Axboe756867b2007-03-06 15:19:24 +0100573 show_ddir_status_terse(ts, rs, 0);
574 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200575
Jens Axboe756867b2007-03-06 15:19:24 +0100576 if (ts->total_run_time) {
577 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200578
Jens Axboe756867b2007-03-06 15:19:24 +0100579 usr_cpu = (double) ts->usr_time * 100 / runt;
580 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200581 } else {
582 usr_cpu = 0;
583 sys_cpu = 0;
584 }
585
Jens Axboe6af019c2007-03-06 19:50:58 +0100586 fprintf(f_out, ";%f%%;%f%%;%lu", usr_cpu, sys_cpu, ts->ctx);
Jens Axboe22708902007-03-06 17:05:32 +0100587
588 stat_calc_dist(ts, io_u_dist);
589 stat_calc_lat(ts, io_u_lat);
590
Jens Axboe6af019c2007-03-06 19:50:58 +0100591 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]);
Jens Axboe22708902007-03-06 17:05:32 +0100592
Jens Axboe6af019c2007-03-06 19:50:58 +0100593 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]);
594 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]);
Jens Axboe22708902007-03-06 17:05:32 +0100595
596 if (ts->description)
Jens Axboe6af019c2007-03-06 19:50:58 +0100597 fprintf(f_out, ";%s", ts->description);
Jens Axboe22708902007-03-06 17:05:32 +0100598
599 fprintf(f_out, "\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100600}
601
Jens Axboe197574e2007-03-08 15:35:11 +0100602static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100603{
604 double mean, S;
605
606 dst->min_val = min(dst->min_val, src->min_val);
607 dst->max_val = max(dst->max_val, src->max_val);
608 dst->samples += src->samples;
609
610 /*
611 * Needs a new method for calculating stddev, we cannot just
612 * average them we do below for nr > 1
613 */
614 if (nr == 1) {
615 mean = src->mean;
616 S = src->S;
617 } else {
Jens Axboec39cced2007-03-06 15:37:00 +0100618 mean = ((src->mean * (double) (nr - 1)) + dst->mean) / ((double) nr);
619 S = ((src->S * (double) (nr - 1)) + dst->S) / ((double) nr);
Jens Axboe756867b2007-03-06 15:19:24 +0100620 }
621
622 dst->mean = mean;
623 dst->S = S;
624}
625
Jens Axboe3c39a372006-06-06 20:56:12 +0200626void show_run_stats(void)
627{
628 struct group_run_stats *runstats, *rs;
629 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100630 struct thread_stat *threadstats, *ts;
Jens Axboe197574e2007-03-08 15:35:11 +0100631 int i, j, k, l, nr_ts, last_ts, idx;
Jens Axboe3c39a372006-06-06 20:56:12 +0200632
633 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
634
635 for (i = 0; i < groupid + 1; i++) {
636 rs = &runstats[i];
637
638 memset(rs, 0, sizeof(*rs));
639 rs->min_bw[0] = rs->min_run[0] = ~0UL;
640 rs->min_bw[1] = rs->min_run[1] = ~0UL;
641 }
642
Jens Axboe756867b2007-03-06 15:19:24 +0100643 /*
644 * find out how many threads stats we need. if group reporting isn't
645 * enabled, it's one-per-td.
646 */
647 nr_ts = 0;
648 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200649 for_each_td(td, i) {
Jens Axboe756867b2007-03-06 15:19:24 +0100650 if (!td->group_reporting) {
651 nr_ts++;
652 continue;
653 }
654 if (last_ts == td->groupid)
655 continue;
656
657 last_ts = td->groupid;
658 nr_ts++;
659 }
660
661 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
662
663 for (i = 0; i < nr_ts; i++) {
664 ts = &threadstats[i];
665
666 memset(ts, 0, sizeof(*ts));
Jens Axboede64df02007-03-08 19:09:49 +0100667 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe197574e2007-03-08 15:35:11 +0100668 ts->clat_stat[j].min_val = -1UL;
669 ts->slat_stat[j].min_val = -1UL;
670 ts->bw_stat[j].min_val = -1UL;
671 }
Jens Axboe756867b2007-03-06 15:19:24 +0100672 }
673
674 j = 0;
675 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100676 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100677 for_each_td(td, i) {
678 ts = &threadstats[j];
679
Jens Axboe197574e2007-03-08 15:35:11 +0100680 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100681 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100682
683 if (!ts->groupid) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100684 /*
685 * These are per-group shared already
686 */
Jens Axboe756867b2007-03-06 15:19:24 +0100687 ts->name = td->name;
688 ts->description = td->description;
Jens Axboe756867b2007-03-06 15:19:24 +0100689 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100690
691 /*
692 * first pid in group, not very useful...
693 */
Jens Axboe756867b2007-03-06 15:19:24 +0100694 ts->pid = td->pid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100695 }
696
697 if (td->error && !ts->error) {
698 ts->error = td->error;
Jens Axboe756867b2007-03-06 15:19:24 +0100699 ts->verror = td->verror;
700 }
701
Jens Axboede64df02007-03-08 19:09:49 +0100702 for (l = 0; l <= DDIR_WRITE; l++) {
Jens Axboe197574e2007-03-08 15:35:11 +0100703 sum_stat(&ts->clat_stat[l], &td->ts.clat_stat[l], idx);
704 sum_stat(&ts->slat_stat[l], &td->ts.slat_stat[l], idx);
705 sum_stat(&ts->bw_stat[l], &td->ts.bw_stat[l], idx);
Jens Axboe756867b2007-03-06 15:19:24 +0100706
Jens Axboe197574e2007-03-08 15:35:11 +0100707 ts->stat_io_bytes[l] += td->ts.stat_io_bytes[l];
708 ts->io_bytes[l] += td->ts.io_bytes[l];
709
710 if (ts->runtime[l] < td->ts.runtime[l])
711 ts->runtime[l] = td->ts.runtime[l];
712 }
Jens Axboe756867b2007-03-06 15:19:24 +0100713
714 ts->usr_time += td->ts.usr_time;
715 ts->sys_time += td->ts.sys_time;
716 ts->ctx += td->ts.ctx;
717
718 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
719 ts->io_u_map[k] += td->ts.io_u_map[k];
720 for (k = 0; k < FIO_IO_U_LAT_NR; k++)
721 ts->io_u_lat[k] += td->ts.io_u_lat[k];
722
Jens Axboeb3605062007-03-12 14:19:47 +0100723 for (k = 0; k <= DDIR_WRITE; k++)
724 ts->total_io_u[k] += td->ts.total_io_u[k];
Jens Axboe756867b2007-03-06 15:19:24 +0100725
726 ts->total_run_time += td->ts.total_run_time;
727
728 if (!td->group_reporting) {
Jens Axboe197574e2007-03-08 15:35:11 +0100729 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100730 j++;
731 continue;
732 }
733 if (last_ts == td->groupid)
734 continue;
735
736 if (last_ts != -1) {
Jens Axboe197574e2007-03-08 15:35:11 +0100737 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100738 j++;
739 }
740
741 last_ts = td->groupid;
742 }
743
744 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100745 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200746
Jens Axboe756867b2007-03-06 15:19:24 +0100747 ts = &threadstats[i];
748 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200749
Jens Axboede64df02007-03-08 19:09:49 +0100750 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100751 if (!ts->runtime[j])
752 continue;
753 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
754 rs->min_run[j] = ts->runtime[j];
755 if (ts->runtime[j] > rs->max_run[j])
756 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +0200757
Jens Axboe94370ac2007-03-08 15:28:10 +0100758 bw = 0;
759 if (ts->runtime[j])
760 bw = ts->io_bytes[j] / (unsigned long long) ts->runtime[j];
761 if (bw < rs->min_bw[j])
762 rs->min_bw[j] = bw;
763 if (bw > rs->max_bw[j])
764 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200765
Jens Axboe94370ac2007-03-08 15:28:10 +0100766 rs->io_kb[j] += ts->io_bytes[j] >> 10;
767 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200768 }
769
770 for (i = 0; i < groupid + 1; i++) {
771 rs = &runstats[i];
772
773 if (rs->max_run[0])
774 rs->agg[0] = (rs->io_kb[0]*1024) / rs->max_run[0];
775 if (rs->max_run[1])
776 rs->agg[1] = (rs->io_kb[1]*1024) / rs->max_run[1];
777 }
778
779 /*
780 * don't overwrite last signal output
781 */
Jens Axboec6ae0a52006-06-12 11:04:44 +0200782 if (!terse_output)
783 printf("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200784
Jens Axboe756867b2007-03-06 15:19:24 +0100785 for (i = 0; i < nr_ts; i++) {
786 ts = &threadstats[i];
787 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200788
Jens Axboec6ae0a52006-06-12 11:04:44 +0200789 if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +0100790 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200791 else
Jens Axboe756867b2007-03-06 15:19:24 +0100792 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200793 }
794
Jens Axboec6ae0a52006-06-12 11:04:44 +0200795 if (!terse_output) {
796 for (i = 0; i < groupid + 1; i++)
797 show_group_stats(&runstats[i], i);
Jens Axboe3c39a372006-06-06 20:56:12 +0200798
Jens Axboec6ae0a52006-06-12 11:04:44 +0200799 show_disk_util();
800 }
Jens Axboeeecf2722006-10-20 14:00:36 +0200801
802 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +0100803 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +0200804}
805
Jens Axboe68704082007-01-10 19:56:37 +0100806static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +0200807{
Jens Axboe68704082007-01-10 19:56:37 +0100808 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +0100809 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +0200810
Jens Axboe68704082007-01-10 19:56:37 +0100811 if (data > is->max_val)
812 is->max_val = data;
813 if (data < is->min_val)
814 is->min_val = data;
815
816 delta = val - is->mean;
Jens Axboe6660cc62007-03-06 15:48:38 +0100817 is->mean += delta / (is->samples + 1.0);
Jens Axboe68704082007-01-10 19:56:37 +0100818 is->S += delta * (val - is->mean);
819
Jens Axboe3c39a372006-06-06 20:56:12 +0200820 is->samples++;
821}
822
Jens Axboebb3884d2007-01-17 17:23:11 +1100823static void __add_log_sample(struct io_log *iolog, unsigned long val,
824 enum fio_ddir ddir, unsigned long time)
Jens Axboe3c39a372006-06-06 20:56:12 +0200825{
826 if (iolog->nr_samples == iolog->max_samples) {
827 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
828
829 iolog->log = realloc(iolog->log, new_size);
830 iolog->max_samples <<= 1;
831 }
832
833 iolog->log[iolog->nr_samples].val = val;
Jens Axboebb3884d2007-01-17 17:23:11 +1100834 iolog->log[iolog->nr_samples].time = time;
Jens Axboe3c39a372006-06-06 20:56:12 +0200835 iolog->log[iolog->nr_samples].ddir = ddir;
836 iolog->nr_samples++;
837}
838
Jens Axboebb3884d2007-01-17 17:23:11 +1100839static void add_log_sample(struct thread_data *td, struct io_log *iolog,
840 unsigned long val, enum fio_ddir ddir)
841{
842 __add_log_sample(iolog, val, ddir, mtime_since_now(&td->epoch));
843}
844
845void add_agg_sample(unsigned long val, enum fio_ddir ddir)
846{
847 struct io_log *iolog = agg_io_log[ddir];
848
849 __add_log_sample(iolog, val, ddir, mtime_since_genesis());
850}
851
Jens Axboe1e97cce2006-12-05 11:44:16 +0100852void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
853 unsigned long msec)
Jens Axboe3c39a372006-06-06 20:56:12 +0200854{
Jens Axboe756867b2007-03-06 15:19:24 +0100855 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200856
Jens Axboe079ad092007-02-20 13:58:20 +0100857 add_stat_sample(&ts->clat_stat[ddir], msec);
858
859 if (ts->clat_log)
860 add_log_sample(td, ts->clat_log, msec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200861}
862
Jens Axboe1e97cce2006-12-05 11:44:16 +0100863void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
864 unsigned long msec)
Jens Axboe3c39a372006-06-06 20:56:12 +0200865{
Jens Axboe756867b2007-03-06 15:19:24 +0100866 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200867
Jens Axboe079ad092007-02-20 13:58:20 +0100868 add_stat_sample(&ts->slat_stat[ddir], msec);
869
870 if (ts->slat_log)
871 add_log_sample(td, ts->slat_log, msec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200872}
873
Jens Axboe1e97cce2006-12-05 11:44:16 +0100874void add_bw_sample(struct thread_data *td, enum fio_ddir ddir,
875 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200876{
Jens Axboe756867b2007-03-06 15:19:24 +0100877 struct thread_stat *ts = &td->ts;
Jens Axboe079ad092007-02-20 13:58:20 +0100878 unsigned long spent = mtime_since(&ts->stat_sample_time[ddir], t);
Jens Axboe3c39a372006-06-06 20:56:12 +0200879 unsigned long rate;
880
881 if (spent < td->bw_avg_time)
882 return;
883
Jens Axboe079ad092007-02-20 13:58:20 +0100884 rate = (td->this_io_bytes[ddir] - ts->stat_io_bytes[ddir]) / spent;
885 add_stat_sample(&ts->bw_stat[ddir], rate);
Jens Axboe3c39a372006-06-06 20:56:12 +0200886
Jens Axboe079ad092007-02-20 13:58:20 +0100887 if (ts->bw_log)
888 add_log_sample(td, ts->bw_log, rate, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200889
Jens Axboe079ad092007-02-20 13:58:20 +0100890 fio_gettime(&ts->stat_sample_time[ddir], NULL);
891 ts->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
Jens Axboe3c39a372006-06-06 20:56:12 +0200892}