blob: 681d5cbc47e9b90c85391738554a15da3623be35 [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 */
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 */
Jens Axboec8c51ef2007-02-11 05:02:48 +010025 const unsigned int thousand = 1024;
Jens Axboef3502ba2007-02-14 01:27:09 +010026 char postfix[] = { 'K', 'M', 'G', 'P', 'E' };
Jens Axboedbe11252007-02-11 00:19:51 +010027 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++;
Jens Axboef3502ba2007-02-14 01:27:09 +010051 } while (i <= 5);
Jens Axboedbe11252007-02-11 00:19:51 +010052
53 return buf;
54}
55
Jens Axboe3c39a372006-06-06 20:56:12 +020056static 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
Jens Axboe02bcaa82006-11-24 10:42:00 +0100104 fio_gettime(&t, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +0200105 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{
Jens Axboe1188caf2007-01-08 10:57:27 +0100138 struct disk_util *du, *__du;
139 struct list_head *entry;
Jens Axboe3c39a372006-06-06 20:56:12 +0200140
Jens Axboe1188caf2007-01-08 10:57:27 +0100141 du = malloc(sizeof(*du));
Jens Axboe3c39a372006-06-06 20:56:12 +0200142 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
Jens Axboe1188caf2007-01-08 10:57:27 +0100148 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
Jens Axboe02bcaa82006-11-24 10:42:00 +0100158 fio_gettime(&du->time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +0200159 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;
Jens Axboe3c39a372006-06-06 20:56:12 +0200212
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
Jens Axboe3307d652006-07-17 18:15:41 +0200222 if (lstat(full_path, &st) == -1) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200223 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{
Jens Axboe53cdc682006-10-18 11:50:58 +0200243 struct fio_file *f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200244 struct stat st;
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100245 char foo[PATH_MAX], tmp[PATH_MAX];
Jens Axboe3c39a372006-06-06 20:56:12 +0200246 dev_t dev;
247 char *p;
248
Jens Axboe138502a2007-03-01 08:27:42 +0100249 if (!td->do_disk_util || (td->io_ops->flags & FIO_DISKLESSIO))
Jens Axboe3c39a372006-06-06 20:56:12 +0200250 return;
251
Jens Axboe53cdc682006-10-18 11:50:58 +0200252 /*
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)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200257 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 */
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100265 strncpy(foo, f->file_name, PATH_MAX - 1);
Jens Axboe3c39a372006-06-06 20:56:12 +0200266 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;
Jens Axboec0a6b0d2007-02-26 12:28:58 +0100277
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;
Jens Axboe3c39a372006-06-06 20:56:12 +0200288
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)) {
Jens Axboe3b70d7e2006-06-08 21:48:46 +0200303 log_err("unknown sysfs layout\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200304 return;
305 }
Jens Axboe0bbab0e2006-11-02 09:18:36 +0100306 strncpy(tmp, p, PATH_MAX - 1);
Jens Axboe84585002006-10-19 20:26:22 +0200307 sprintf(foo, "%s", tmp);
Jens Axboe3c39a372006-06-06 20:56:12 +0200308 }
309
Jens Axboeeecf2722006-10-20 14:00:36 +0200310 if (td->ioscheduler)
311 td->sysfs_root = strdup(foo);
312
Jens Axboe3c39a372006-06-06 20:56:12 +0200313 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{
Jens Axboe756867b2007-03-06 15:19:24 +0100325 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200326
Jens Axboe079ad092007-02-20 13:58:20 +0100327 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);
Jens Axboe3c39a372006-06-06 20:56:12 +0200332
Jens Axboe079ad092007-02-20 13:58:20 +0100333 memcpy(&ts->ru_start, &ts->ru_end, sizeof(ts->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +0200334}
335
336static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
337 double *mean, double *dev)
338{
Jens Axboe68704082007-01-10 19:56:37 +0100339 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200340
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;
Jens Axboe68704082007-01-10 19:56:37 +0100348 *mean = is->mean;
Jens Axboe3c39a372006-06-06 20:56:12 +0200349
Jens Axboe68704082007-01-10 19:56:37 +0100350 if (n > 1.0)
351 *dev = sqrt(is->S / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100352 else
Jens Axboe68704082007-01-10 19:56:37 +0100353 *dev = -1.0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100354
Jens Axboe3c39a372006-06-06 20:56:12 +0200355 return 1;
356}
357
358static void show_group_stats(struct group_run_stats *rs, int id)
359{
Jens Axboedbe11252007-02-11 00:19:51 +0100360 char *p1, *p2, *p3, *p4;
361 const char *ddir_str[] = { " READ", " WRITE" };
362 int i;
363
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200364 fprintf(f_out, "\nRun status group %d (all jobs):\n", id);
Jens Axboe3c39a372006-06-06 20:56:12 +0200365
Jens Axboedbe11252007-02-11 00:19:51 +0100366 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 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200382}
383
384static void show_disk_util(void)
385{
386 struct disk_util_stat *dus;
Jens Axboeb4a6a592006-10-20 13:54:47 +0200387 struct list_head *entry, *next;
Jens Axboe3c39a372006-06-06 20:56:12 +0200388 struct disk_util *du;
389 double util;
390
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200391 fprintf(f_out, "\nDisk stats (read/write):\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200392
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
Jens Axboeeb8bbf42006-06-08 21:40:11 +0200401 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 +0200402 }
Jens Axboeb4a6a592006-10-20 13:54:47 +0200403
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 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200413}
414
Jens Axboe22708902007-03-06 17:05:32 +0100415static 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
Jens Axboe756867b2007-03-06 15:19:24 +0100441static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200442 int ddir)
443{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100444 const char *ddir_str[] = { "read ", "write" };
Jens Axboe3c39a372006-06-06 20:56:12 +0200445 unsigned long min, max;
446 unsigned long long bw;
447 double mean, dev;
Jens Axboedbe11252007-02-11 00:19:51 +0100448 char *io_p, *bw_p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200449
Jens Axboe756867b2007-03-06 15:19:24 +0100450 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200451 return;
452
Jens Axboe756867b2007-03-06 15:19:24 +0100453 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
454 io_p = num2str(ts->io_bytes[ddir] >> 10, 6, 1);
Jens Axboedbe11252007-02-11 00:19:51 +0100455 bw_p = num2str(bw, 6, 1);
456
Jens Axboe756867b2007-03-06 15:19:24 +0100457 fprintf(f_out, " %s: io=%siB, bw=%siB/s, runt=%6lumsec\n", ddir_str[ddir], io_p, bw_p, ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100458
459 free(io_p);
460 free(bw_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200461
Jens Axboe079ad092007-02-20 13:58:20 +0100462 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6104ddb2007-01-11 14:24:29 +0100463 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 +0200464
Jens Axboe079ad092007-02-20 13:58:20 +0100465 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6104ddb2007-01-11 14:24:29 +0100466 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 +0200467
Jens Axboe079ad092007-02-20 13:58:20 +0100468 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200469 double p_of_agg;
470
471 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6104ddb2007-01-11 14:24:29 +0100472 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 +0200473 }
474}
475
Jens Axboe756867b2007-03-06 15:19:24 +0100476static void show_thread_status(struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200477 struct group_run_stats *rs)
478{
479 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100480 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100481 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboeec118302007-02-17 04:38:20 +0100482 double io_u_lat[FIO_IO_U_LAT_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200483
Jens Axboe756867b2007-03-06 15:19:24 +0100484 if (!(ts->io_bytes[0] + ts->io_bytes[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200485 return;
486
Jens Axboe756867b2007-03-06 15:19:24 +0100487 if (!ts->error)
Jens Axboe6586ee82007-03-06 19:46:09 +0100488 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 +0100489 else
Jens Axboe6586ee82007-03-06 19:46:09 +0100490 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 +0200491
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100492 if (ts->description)
493 fprintf(f_out, " Description : [%s]\n", ts->description);
494
Jens Axboe756867b2007-03-06 15:19:24 +0100495 if (ts->io_bytes[DDIR_READ])
496 show_ddir_status(rs, ts, DDIR_READ);
497 if (ts->io_bytes[DDIR_WRITE])
498 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200499
Jens Axboe756867b2007-03-06 15:19:24 +0100500 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100501 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100502 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200503
Jens Axboe756867b2007-03-06 15:19:24 +0100504 usr_cpu = (double) ts->usr_time * 100 / runt;
505 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200506 } else {
507 usr_cpu = 0;
508 sys_cpu = 0;
509 }
510
Jens Axboe756867b2007-03-06 15:19:24 +0100511 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 +0100512
Jens Axboe22708902007-03-06 17:05:32 +0100513 stat_calc_dist(ts, io_u_dist);
514 stat_calc_lat(ts, io_u_lat);
Jens Axboe71619dc2007-01-13 23:56:33 +0100515
Jens Axboe5d458072007-01-13 23:59:00 +0100516 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 +0100517
Jens Axboe8abdce62007-02-21 10:22:55 +0100518 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]);
519 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 +0200520}
521
Jens Axboe756867b2007-03-06 15:19:24 +0100522static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200523 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;
Jens Axboe756867b2007-03-06 15:19:24 +0100530 if (ts->runtime[ddir])
531 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200532
Jens Axboe6af019c2007-03-06 19:50:58 +0100533 fprintf(f_out, ";%llu;%llu;%lu", ts->io_bytes[ddir] >> 10, bw, ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200534
Jens Axboe079ad092007-02-20 13:58:20 +0100535 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6af019c2007-03-06 19:50:58 +0100536 fprintf(f_out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200537 else
Jens Axboe6af019c2007-03-06 19:50:58 +0100538 fprintf(f_out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200539
Jens Axboe079ad092007-02-20 13:58:20 +0100540 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6af019c2007-03-06 19:50:58 +0100541 fprintf(f_out, ";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200542 else
Jens Axboe6af019c2007-03-06 19:50:58 +0100543 fprintf(f_out, ";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200544
Jens Axboe079ad092007-02-20 13:58:20 +0100545 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboec6ae0a52006-06-12 11:04:44 +0200546 double p_of_agg;
547
548 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6af019c2007-03-06 19:50:58 +0100549 fprintf(f_out, ";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200550 } else
Jens Axboe6af019c2007-03-06 19:50:58 +0100551 fprintf(f_out, ";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200552}
553
554
Jens Axboe756867b2007-03-06 15:19:24 +0100555static void show_thread_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200556 struct group_run_stats *rs)
557{
Jens Axboe22708902007-03-06 17:05:32 +0100558 double io_u_dist[FIO_IO_U_MAP_NR];
559 double io_u_lat[FIO_IO_U_LAT_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200560 double usr_cpu, sys_cpu;
561
Jens Axboe6af019c2007-03-06 19:50:58 +0100562 fprintf(f_out, "%s;%d;%d", ts->name, ts->groupid, ts->error);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200563
Jens Axboe756867b2007-03-06 15:19:24 +0100564 show_ddir_status_terse(ts, rs, 0);
565 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200566
Jens Axboe756867b2007-03-06 15:19:24 +0100567 if (ts->total_run_time) {
568 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200569
Jens Axboe756867b2007-03-06 15:19:24 +0100570 usr_cpu = (double) ts->usr_time * 100 / runt;
571 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200572 } else {
573 usr_cpu = 0;
574 sys_cpu = 0;
575 }
576
Jens Axboe6af019c2007-03-06 19:50:58 +0100577 fprintf(f_out, ";%f%%;%f%%;%lu", usr_cpu, sys_cpu, ts->ctx);
Jens Axboe22708902007-03-06 17:05:32 +0100578
579 stat_calc_dist(ts, io_u_dist);
580 stat_calc_lat(ts, io_u_lat);
581
Jens Axboe6af019c2007-03-06 19:50:58 +0100582 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 +0100583
Jens Axboe6af019c2007-03-06 19:50:58 +0100584 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]);
Jens Axboe22708902007-03-06 17:05:32 +0100586
587 if (ts->description)
Jens Axboe6af019c2007-03-06 19:50:58 +0100588 fprintf(f_out, ";%s", ts->description);
Jens Axboe22708902007-03-06 17:05:32 +0100589
590 fprintf(f_out, "\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100591}
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 {
Jens Axboec39cced2007-03-06 15:37:00 +0100609 mean = ((src->mean * (double) (nr - 1)) + dst->mean) / ((double) nr);
610 S = ((src->S * (double) (nr - 1)) + dst->S) / ((double) nr);
Jens Axboe756867b2007-03-06 15:19:24 +0100611 }
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);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200621}
622
Jens Axboe3c39a372006-06-06 20:56:12 +0200623void show_run_stats(void)
624{
625 struct group_run_stats *runstats, *rs;
626 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100627 struct thread_stat *threadstats, *ts;
628 int i, j, k, nr_ts, last_ts, members;
Jens Axboe3c39a372006-06-06 20:56:12 +0200629
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
Jens Axboe756867b2007-03-06 15:19:24 +0100640 /*
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;
Jens Axboe34572e22006-10-20 09:33:18 +0200646 for_each_td(td, i) {
Jens Axboe756867b2007-03-06 15:19:24 +0100647 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++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100679 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100680
681 if (!ts->groupid) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100682 /*
683 * These are per-group shared already
684 */
Jens Axboe756867b2007-03-06 15:19:24 +0100685 ts->name = td->name;
686 ts->description = td->description;
Jens Axboe756867b2007-03-06 15:19:24 +0100687 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100688
689 /*
690 * first pid in group, not very useful...
691 */
Jens Axboe756867b2007-03-06 15:19:24 +0100692 ts->pid = td->pid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100693 }
694
695 if (td->error && !ts->error) {
696 ts->error = td->error;
Jens Axboe756867b2007-03-06 15:19:24 +0100697 ts->verror = td->verror;
698 }
699
700 sum_stat(ts->clat_stat, td->ts.clat_stat, members);
701 sum_stat(ts->slat_stat, td->ts.slat_stat, members);
702 sum_stat(ts->bw_stat, td->ts.bw_stat, members);
703
704 ts->stat_io_bytes[0] += td->ts.stat_io_bytes[0];
705 ts->stat_io_bytes[1] += td->ts.stat_io_bytes[1];
706
707 ts->usr_time += td->ts.usr_time;
708 ts->sys_time += td->ts.sys_time;
709 ts->ctx += td->ts.ctx;
710
711 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
712 ts->io_u_map[k] += td->ts.io_u_map[k];
713 for (k = 0; k < FIO_IO_U_LAT_NR; k++)
714 ts->io_u_lat[k] += td->ts.io_u_lat[k];
715
716 ts->total_io_u += td->ts.total_io_u;
717 ts->io_bytes[0] += td->ts.io_bytes[0];
718 ts->io_bytes[1] += td->ts.io_bytes[1];
719
720 if (ts->runtime[0] < td->ts.runtime[0])
721 ts->runtime[0] = td->ts.runtime[0];
722 if (ts->runtime[1] < td->ts.runtime[1])
723 ts->runtime[1] = td->ts.runtime[1];
724
725 ts->total_run_time += td->ts.total_run_time;
726
727 if (!td->group_reporting) {
728 members = 0;
729 j++;
730 continue;
731 }
732 if (last_ts == td->groupid)
733 continue;
734
735 if (last_ts != -1) {
736 members = 0;
737 j++;
738 }
739
740 last_ts = td->groupid;
741 }
742
743 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100744 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200745
Jens Axboe756867b2007-03-06 15:19:24 +0100746 ts = &threadstats[i];
747 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200748
Jens Axboe94370ac2007-03-08 15:28:10 +0100749 for (j = 0; j < 2; j++) {
750 if (!ts->runtime[j])
751 continue;
752 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
753 rs->min_run[j] = ts->runtime[j];
754 if (ts->runtime[j] > rs->max_run[j])
755 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +0200756
Jens Axboe94370ac2007-03-08 15:28:10 +0100757 bw = 0;
758 if (ts->runtime[j])
759 bw = ts->io_bytes[j] / (unsigned long long) ts->runtime[j];
760 if (bw < rs->min_bw[j])
761 rs->min_bw[j] = bw;
762 if (bw > rs->max_bw[j])
763 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200764
Jens Axboe94370ac2007-03-08 15:28:10 +0100765 rs->io_kb[j] += ts->io_bytes[j] >> 10;
766 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200767 }
768
769 for (i = 0; i < groupid + 1; i++) {
770 rs = &runstats[i];
771
772 if (rs->max_run[0])
773 rs->agg[0] = (rs->io_kb[0]*1024) / rs->max_run[0];
774 if (rs->max_run[1])
775 rs->agg[1] = (rs->io_kb[1]*1024) / rs->max_run[1];
776 }
777
778 /*
779 * don't overwrite last signal output
780 */
Jens Axboec6ae0a52006-06-12 11:04:44 +0200781 if (!terse_output)
782 printf("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200783
Jens Axboe756867b2007-03-06 15:19:24 +0100784 for (i = 0; i < nr_ts; i++) {
785 ts = &threadstats[i];
786 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200787
Jens Axboec6ae0a52006-06-12 11:04:44 +0200788 if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +0100789 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200790 else
Jens Axboe756867b2007-03-06 15:19:24 +0100791 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200792 }
793
Jens Axboec6ae0a52006-06-12 11:04:44 +0200794 if (!terse_output) {
795 for (i = 0; i < groupid + 1; i++)
796 show_group_stats(&runstats[i], i);
Jens Axboe3c39a372006-06-06 20:56:12 +0200797
Jens Axboec6ae0a52006-06-12 11:04:44 +0200798 show_disk_util();
799 }
Jens Axboeeecf2722006-10-20 14:00:36 +0200800
801 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +0100802 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +0200803}
804
Jens Axboe68704082007-01-10 19:56:37 +0100805static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +0200806{
Jens Axboe68704082007-01-10 19:56:37 +0100807 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +0100808 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +0200809
Jens Axboe68704082007-01-10 19:56:37 +0100810 if (data > is->max_val)
811 is->max_val = data;
812 if (data < is->min_val)
813 is->min_val = data;
814
815 delta = val - is->mean;
Jens Axboe6660cc62007-03-06 15:48:38 +0100816 is->mean += delta / (is->samples + 1.0);
Jens Axboe68704082007-01-10 19:56:37 +0100817 is->S += delta * (val - is->mean);
818
Jens Axboe3c39a372006-06-06 20:56:12 +0200819 is->samples++;
820}
821
Jens Axboebb3884d2007-01-17 17:23:11 +1100822static void __add_log_sample(struct io_log *iolog, unsigned long val,
823 enum fio_ddir ddir, unsigned long time)
Jens Axboe3c39a372006-06-06 20:56:12 +0200824{
825 if (iolog->nr_samples == iolog->max_samples) {
826 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
827
828 iolog->log = realloc(iolog->log, new_size);
829 iolog->max_samples <<= 1;
830 }
831
832 iolog->log[iolog->nr_samples].val = val;
Jens Axboebb3884d2007-01-17 17:23:11 +1100833 iolog->log[iolog->nr_samples].time = time;
Jens Axboe3c39a372006-06-06 20:56:12 +0200834 iolog->log[iolog->nr_samples].ddir = ddir;
835 iolog->nr_samples++;
836}
837
Jens Axboebb3884d2007-01-17 17:23:11 +1100838static void add_log_sample(struct thread_data *td, struct io_log *iolog,
839 unsigned long val, enum fio_ddir ddir)
840{
841 __add_log_sample(iolog, val, ddir, mtime_since_now(&td->epoch));
842}
843
844void add_agg_sample(unsigned long val, enum fio_ddir ddir)
845{
846 struct io_log *iolog = agg_io_log[ddir];
847
848 __add_log_sample(iolog, val, ddir, mtime_since_genesis());
849}
850
Jens Axboe1e97cce2006-12-05 11:44:16 +0100851void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
852 unsigned long msec)
Jens Axboe3c39a372006-06-06 20:56:12 +0200853{
Jens Axboe756867b2007-03-06 15:19:24 +0100854 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200855
Jens Axboe079ad092007-02-20 13:58:20 +0100856 add_stat_sample(&ts->clat_stat[ddir], msec);
857
858 if (ts->clat_log)
859 add_log_sample(td, ts->clat_log, msec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200860}
861
Jens Axboe1e97cce2006-12-05 11:44:16 +0100862void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
863 unsigned long msec)
Jens Axboe3c39a372006-06-06 20:56:12 +0200864{
Jens Axboe756867b2007-03-06 15:19:24 +0100865 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200866
Jens Axboe079ad092007-02-20 13:58:20 +0100867 add_stat_sample(&ts->slat_stat[ddir], msec);
868
869 if (ts->slat_log)
870 add_log_sample(td, ts->slat_log, msec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200871}
872
Jens Axboe1e97cce2006-12-05 11:44:16 +0100873void add_bw_sample(struct thread_data *td, enum fio_ddir ddir,
874 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200875{
Jens Axboe756867b2007-03-06 15:19:24 +0100876 struct thread_stat *ts = &td->ts;
Jens Axboe079ad092007-02-20 13:58:20 +0100877 unsigned long spent = mtime_since(&ts->stat_sample_time[ddir], t);
Jens Axboe3c39a372006-06-06 20:56:12 +0200878 unsigned long rate;
879
880 if (spent < td->bw_avg_time)
881 return;
882
Jens Axboe079ad092007-02-20 13:58:20 +0100883 rate = (td->this_io_bytes[ddir] - ts->stat_io_bytes[ddir]) / spent;
884 add_stat_sample(&ts->bw_stat[ddir], rate);
Jens Axboe3c39a372006-06-06 20:56:12 +0200885
Jens Axboe079ad092007-02-20 13:58:20 +0100886 if (ts->bw_log)
887 add_log_sample(td, ts->bw_log, rate, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200888
Jens Axboe079ad092007-02-20 13:58:20 +0100889 fio_gettime(&ts->stat_sample_time[ddir], NULL);
890 ts->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
Jens Axboe3c39a372006-06-06 20:56:12 +0200891}