blob: e7195c2845c5a156ae441444e25e88776276b171 [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 Axboe7c9b1bc2009-06-03 09:25:57 +020011#include "diskutil.h"
Jens Axboe802ad4a2011-10-05 09:51:58 +020012#include "ieee754.h"
Jens Axboe3c39a372006-06-06 20:56:12 +020013
Jens Axboe3c39a372006-06-06 20:56:12 +020014void update_rusage_stat(struct thread_data *td)
15{
Jens Axboe756867b2007-03-06 15:19:24 +010016 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +020017
Jens Axboec8aaba12011-10-03 12:14:19 +020018 getrusage(RUSAGE_SELF, &td->ru_end);
Jens Axboe079ad092007-02-20 13:58:20 +010019
Jens Axboec8aaba12011-10-03 12:14:19 +020020 ts->usr_time += mtime_since(&td->ru_start.ru_utime,
21 &td->ru_end.ru_utime);
22 ts->sys_time += mtime_since(&td->ru_start.ru_stime,
23 &td->ru_end.ru_stime);
24 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
25 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
26 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
27 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010028
Jens Axboec8aaba12011-10-03 12:14:19 +020029 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +020030}
31
Yu-ju Hong83349192011-08-13 00:53:44 +020032/*
33 * Given a latency, return the index of the corresponding bucket in
34 * the structure tracking percentiles.
35 *
36 * (1) find the group (and error bits) that the value (latency)
37 * belongs to by looking at its MSB. (2) find the bucket number in the
38 * group by looking at the index bits.
39 *
40 */
41static unsigned int plat_val_to_idx(unsigned int val)
42{
43 unsigned int msb, error_bits, base, offset, idx;
44
45 /* Find MSB starting from bit 0 */
46 if (val == 0)
47 msb = 0;
48 else
49 msb = (sizeof(val)*8) - __builtin_clz(val) - 1;
50
Jens Axboe716050f2011-08-16 08:43:45 +020051 /*
52 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
53 * all bits of the sample as index
54 */
Yu-ju Hong83349192011-08-13 00:53:44 +020055 if (msb <= FIO_IO_U_PLAT_BITS)
56 return val;
57
58 /* Compute the number of error bits to discard*/
59 error_bits = msb - FIO_IO_U_PLAT_BITS;
60
61 /* Compute the number of buckets before the group */
62 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
63
Jens Axboe716050f2011-08-16 08:43:45 +020064 /*
65 * Discard the error bits and apply the mask to find the
66 * index for the buckets in the group
67 */
Yu-ju Hong83349192011-08-13 00:53:44 +020068 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
69
70 /* Make sure the index does not exceed (array size - 1) */
71 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1)?
72 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
73
74 return idx;
75}
76
77/*
78 * Convert the given index of the bucket array to the value
79 * represented by the bucket
80 */
81static unsigned int plat_idx_to_val(unsigned int idx)
82{
83 unsigned int error_bits, k, base;
84
85 assert(idx < FIO_IO_U_PLAT_NR);
86
87 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
88 * all bits of the sample as index */
89 if (idx < (FIO_IO_U_PLAT_VAL << 1) )
90 return idx;
91
92 /* Find the group and compute the minimum value of that group */
93 error_bits = (idx >> FIO_IO_U_PLAT_BITS) -1;
94 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
95
96 /* Find its bucket number of the group */
97 k = idx % FIO_IO_U_PLAT_VAL;
98
99 /* Return the mean of the range of the bucket */
100 return base + ((k + 0.5) * (1 << error_bits));
101}
102
103static int double_cmp(const void *a, const void *b)
104{
Jens Axboe802ad4a2011-10-05 09:51:58 +0200105 const fio_fp64_t fa = *(const fio_fp64_t *) a;
106 const fio_fp64_t fb = *(const fio_fp64_t *) b;
Yu-ju Hong83349192011-08-13 00:53:44 +0200107 int cmp = 0;
108
Jens Axboe802ad4a2011-10-05 09:51:58 +0200109 if (fa.u.f > fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200110 cmp = 1;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200111 else if (fa.u.f < fb.u.f)
Yu-ju Hong83349192011-08-13 00:53:44 +0200112 cmp = -1;
113
114 return cmp;
115}
116
117/*
118 * Find and display the p-th percentile of clat
119 */
Jens Axboec59971e2011-10-04 10:34:03 +0200120static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
Jens Axboe802ad4a2011-10-05 09:51:58 +0200121 fio_fp64_t *plist)
Yu-ju Hong83349192011-08-13 00:53:44 +0200122{
123 unsigned long sum = 0;
124 unsigned int len, i, j = 0;
Jens Axboe716050f2011-08-16 08:43:45 +0200125 int is_last = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200126
Jens Axboe802ad4a2011-10-05 09:51:58 +0200127 len = 0;
128 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
129 len++;
Jens Axboe716050f2011-08-16 08:43:45 +0200130
Jens Axboe351de8d2011-10-12 21:03:45 +0200131 if (!len)
132 return;
133
Jens Axboe716050f2011-08-16 08:43:45 +0200134 /*
Jens Axboe802ad4a2011-10-05 09:51:58 +0200135 * Sort the percentile list. Note that it may already be sorted if
136 * we are using the default values, but since it's a short list this
137 * isn't a worry. Also note that this does not work for NaN values.
Jens Axboe716050f2011-08-16 08:43:45 +0200138 */
Jens Axboe802ad4a2011-10-05 09:51:58 +0200139 if (len > 1)
140 qsort((void*)plist, len, sizeof(plist[0]), double_cmp);
Yu-ju Hong83349192011-08-13 00:53:44 +0200141
Jens Axboe81ab0b32011-10-12 20:32:22 +0200142 log_info(" clat percentiles (usec):\n |");
Yu-ju Hong83349192011-08-13 00:53:44 +0200143
Jens Axboe716050f2011-08-16 08:43:45 +0200144 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200145 sum += io_u_plat[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200146 while (sum >= (plist[j].u.f / 100.0 * nr)) {
Jens Axboe81ab0b32011-10-12 20:32:22 +0200147 char fbuf[8];
148
Jens Axboe802ad4a2011-10-05 09:51:58 +0200149 assert(plist[j].u.f <= 100.0);
Yu-ju Hong83349192011-08-13 00:53:44 +0200150
Jens Axboe716050f2011-08-16 08:43:45 +0200151 /* for formatting */
152 if (j != 0 && (j % 4) == 0)
Jens Axboe81ab0b32011-10-12 20:32:22 +0200153 log_info(" |");
Yu-ju Hong83349192011-08-13 00:53:44 +0200154
155 /* end of the list */
156 is_last = (j == len - 1);
157
Jens Axboe81ab0b32011-10-12 20:32:22 +0200158 if (plist[j].u.f < 10.0)
159 sprintf(fbuf, " %2.2f", plist[j].u.f);
160 else
161 sprintf(fbuf, "%2.2f", plist[j].u.f);
162
163 log_info(" %sth=[%5u]%c", fbuf, plat_idx_to_val(i),
Jens Axboe351de8d2011-10-12 21:03:45 +0200164 is_last ? '\n' : ',');
Yu-ju Hong83349192011-08-13 00:53:44 +0200165
Jens Axboe716050f2011-08-16 08:43:45 +0200166 if (is_last)
167 break;
Yu-ju Hong83349192011-08-13 00:53:44 +0200168
Jens Axboe716050f2011-08-16 08:43:45 +0200169 if (j % 4 == 3) /* for formatting */
Yu-ju Hong83349192011-08-13 00:53:44 +0200170 log_info("\n");
Jens Axboe351de8d2011-10-12 21:03:45 +0200171 if (++j == FIO_IO_U_LIST_MAX_LEN)
172 break;
Yu-ju Hong83349192011-08-13 00:53:44 +0200173 }
174 }
175}
176
Jens Axboe3c39a372006-06-06 20:56:12 +0200177static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
178 double *mean, double *dev)
179{
Jens Axboe68704082007-01-10 19:56:37 +0100180 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200181
182 if (is->samples == 0)
183 return 0;
184
185 *min = is->min_val;
186 *max = is->max_val;
187
188 n = (double) is->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200189 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200190
Jens Axboe68704082007-01-10 19:56:37 +0100191 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200192 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100193 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200194 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100195
Jens Axboe3c39a372006-06-06 20:56:12 +0200196 return 1;
197}
198
Jens Axboea64e88d2011-10-03 14:20:01 +0200199void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200200{
Jens Axboedbe11252007-02-11 00:19:51 +0100201 char *p1, *p2, *p3, *p4;
202 const char *ddir_str[] = { " READ", " WRITE" };
203 int i;
204
Jens Axboe25050622011-10-13 08:50:46 +0200205 log_info("Run status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200206
Jens Axboedbe11252007-02-11 00:19:51 +0100207 for (i = 0; i <= DDIR_WRITE; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200208 const int i2p = is_power_of_2(rs->kb_base);
209
Jens Axboedbe11252007-02-11 00:19:51 +0100210 if (!rs->max_run[i])
211 continue;
212
Jens Axboe90fef2d2009-07-17 22:33:32 +0200213 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p);
214 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p);
215 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p);
216 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p);
Jens Axboedbe11252007-02-11 00:19:51 +0100217
Jens Axboeb22989b2009-07-17 22:29:23 +0200218 log_info("%s: io=%sB, aggrb=%sB/s, minb=%sB/s, maxb=%sB/s,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100219 " mint=%llumsec, maxt=%llumsec\n", ddir_str[i], p1, p2,
220 p3, p4, rs->min_run[i],
221 rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100222
223 free(p1);
224 free(p2);
225 free(p3);
226 free(p4);
227 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200228}
229
Jens Axboeb3605062007-03-12 14:19:47 +0100230#define ts_total_io_u(ts) \
231 ((ts)->total_io_u[0] + (ts)->total_io_u[1])
232
Jens Axboe838bc702008-05-22 13:08:23 +0200233static void stat_calc_dist(unsigned int *map, unsigned long total,
234 double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100235{
236 int i;
237
238 /*
239 * Do depth distribution calculations
240 */
241 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200242 if (total) {
243 io_u_dist[i] = (double) map[i] / (double) total;
244 io_u_dist[i] *= 100.0;
245 if (io_u_dist[i] < 0.1 && map[i])
246 io_u_dist[i] = 0.1;
247 } else
248 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100249 }
250}
251
Jens Axboe04a0fea2007-06-19 12:48:41 +0200252static void stat_calc_lat(struct thread_stat *ts, double *dst,
253 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100254{
Jens Axboe838bc702008-05-22 13:08:23 +0200255 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100256 int i;
257
258 /*
259 * Do latency distribution calculations
260 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200261 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200262 if (total) {
263 dst[i] = (double) src[i] / (double) total;
264 dst[i] *= 100.0;
265 if (dst[i] < 0.01 && src[i])
266 dst[i] = 0.01;
267 } else
268 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100269 }
270}
271
Jens Axboe04a0fea2007-06-19 12:48:41 +0200272static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
273{
274 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
275}
276
277static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
278{
279 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
280}
281
Jens Axboeea2accc2007-06-19 09:48:44 +0200282static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
283 double *dev)
284{
285 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
286 *min /= 1000;
287 *max /= 1000;
288 *mean /= 1000.0;
289 *dev /= 1000.0;
290 return 0;
291 }
292
293 return 1;
294}
295
Jens Axboe756867b2007-03-06 15:19:24 +0100296static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200297 int ddir)
298{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100299 const char *ddir_str[] = { "read ", "write" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200300 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100301 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200302 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100303 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200304 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200305
Jens Axboeff58fce2010-08-25 12:02:08 +0200306 assert(ddir_rw(ddir));
307
Jens Axboe756867b2007-03-06 15:19:24 +0100308 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200309 return;
310
Jens Axboe90fef2d2009-07-17 22:33:32 +0200311 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200312 runt = ts->runtime[ddir];
313
314 bw = (1000 * ts->io_bytes[ddir]) / runt;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200315 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
316 bw_p = num2str(bw, 6, 1, i2p);
Jens Axboe8879fd12009-04-20 10:06:02 +0200317
Bruce Cran0aacc502011-07-09 08:19:53 +0200318 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100319 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100320
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100321 log_info(" %s: io=%sB, bw=%sB/s, iops=%s, runt=%6llumsec\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100322 ddir_str[ddir], io_p, bw_p, iops_p,
323 ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100324
325 free(io_p);
326 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100327 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200328
Jens Axboed85f5112007-06-18 09:41:23 +0200329 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
330 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200331 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200332
Jens Axboeea2accc2007-06-19 09:48:44 +0200333 if (!usec_to_msec(&min, &max, &mean, &dev))
Jens Axboed85f5112007-06-18 09:41:23 +0200334 base = "(msec)";
Jens Axboeea2accc2007-06-19 09:48:44 +0200335
Jens Axboed9309cb2007-08-16 13:07:46 +0200336 minp = num2str(min, 6, 1, 0);
337 maxp = num2str(max, 6, 1, 0);
338
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100339 log_info(" slat %s: min=%s, max=%s, avg=%5.02f,"
340 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200341
342 free(minp);
343 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200344 }
345 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
346 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200347 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200348
Jens Axboeea2accc2007-06-19 09:48:44 +0200349 if (!usec_to_msec(&min, &max, &mean, &dev))
350 base = "(msec)";
351
Jens Axboed9309cb2007-08-16 13:07:46 +0200352 minp = num2str(min, 6, 1, 0);
353 maxp = num2str(max, 6, 1, 0);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100354
355 log_info(" clat %s: min=%s, max=%s, avg=%5.02f,"
356 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200357
358 free(minp);
359 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200360 }
Jens Axboe02af0982010-06-24 09:59:34 +0200361 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
362 const char *base = "(usec)";
363 char *minp, *maxp;
364
365 if (!usec_to_msec(&min, &max, &mean, &dev))
366 base = "(msec)";
367
368 minp = num2str(min, 6, 1, 0);
369 maxp = num2str(max, 6, 1, 0);
370
371 log_info(" lat %s: min=%s, max=%s, avg=%5.02f,"
372 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
373
374 free(minp);
375 free(maxp);
376 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200377 if (ts->clat_percentiles) {
378 show_clat_percentiles(ts->io_u_plat[ddir],
379 ts->clat_stat[ddir].samples,
380 ts->percentile_list);
381 }
Jens Axboe079ad092007-02-20 13:58:20 +0100382 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200383 double p_of_agg;
384
385 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboec8eeb9d2011-10-05 14:02:22 +0200386 log_info(" bw (KB/s) : min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100387 " avg=%5.02f, stdev=%5.02f\n", min, max, p_of_agg,
388 mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200389 }
390}
391
Jens Axboe04a0fea2007-06-19 12:48:41 +0200392static void show_lat(double *io_u_lat, int nr, const char **ranges,
393 const char *msg)
394{
395 int new_line = 1, i, line = 0;
396
397 for (i = 0; i < nr; i++) {
398 if (io_u_lat[i] <= 0.0)
399 continue;
400 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200401 if (line)
402 log_info("\n");
Jens Axboe04a0fea2007-06-19 12:48:41 +0200403 log_info(" lat (%s): ", msg);
404 new_line = 0;
405 line = 0;
406 }
407 if (line)
408 log_info(", ");
409 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
410 line++;
411 if (line == 5)
412 new_line = 1;
413 }
Jens Axboe04a0fea2007-06-19 12:48:41 +0200414}
415
416static void show_lat_u(double *io_u_lat_u)
417{
418 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
419 "250=", "500=", "750=", "1000=", };
420
421 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
422}
423
424static void show_lat_m(double *io_u_lat_m)
425{
426 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
427 "250=", "500=", "750=", "1000=", "2000=",
428 ">=2000=", };
429
430 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
431}
432
433static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
434{
435 show_lat_u(io_u_lat_u);
Jens Axboe4539ed72007-07-23 14:21:17 +0200436 log_info("\n");
Jens Axboe04a0fea2007-06-19 12:48:41 +0200437 show_lat_m(io_u_lat_m);
438 log_info("\n");
439}
440
Jens Axboea64e88d2011-10-03 14:20:01 +0200441void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200442{
443 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100444 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100445 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200446 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
447 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200448
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200449 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
450 !(ts->total_io_u[0] + ts->total_io_u[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200451 return;
452
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100453 if (!ts->error) {
454 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n",
455 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200456 ts->error, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100457 } else {
458 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n",
459 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200460 ts->error, ts->verror, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100461 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200462
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100463 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100464 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100465
Jens Axboe756867b2007-03-06 15:19:24 +0100466 if (ts->io_bytes[DDIR_READ])
467 show_ddir_status(rs, ts, DDIR_READ);
468 if (ts->io_bytes[DDIR_WRITE])
469 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200470
Jens Axboe756867b2007-03-06 15:19:24 +0100471 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100472 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100473 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200474
Jens Axboe756867b2007-03-06 15:19:24 +0100475 usr_cpu = (double) ts->usr_time * 100 / runt;
476 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200477 } else {
478 usr_cpu = 0;
479 sys_cpu = 0;
480 }
481
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100482 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
483 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100484
Jens Axboe838bc702008-05-22 13:08:23 +0200485 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100486 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
487 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
488 io_u_dist[1], io_u_dist[2],
489 io_u_dist[3], io_u_dist[4],
490 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200491
492 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
493 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
494 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
495 io_u_dist[1], io_u_dist[2],
496 io_u_dist[3], io_u_dist[4],
497 io_u_dist[5], io_u_dist[6]);
498 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
499 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
500 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
501 io_u_dist[1], io_u_dist[2],
502 io_u_dist[3], io_u_dist[4],
503 io_u_dist[5], io_u_dist[6]);
Jens Axboe0d29de82010-09-01 13:54:15 +0200504 log_info(" issued r/w/d: total=%lu/%lu/%lu, short=%lu/%lu/%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100505 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200506 ts->total_io_u[2],
507 ts->short_io_u[0], ts->short_io_u[1],
508 ts->short_io_u[2]);
Jens Axboe838bc702008-05-22 13:08:23 +0200509 stat_calc_lat_u(ts, io_u_lat_u);
510 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200511 show_latencies(io_u_lat_u, io_u_lat_m);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200512 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200513 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
514 ts->total_err_count,
515 ts->first_error,
516 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200517 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200518}
519
Jens Axboe756867b2007-03-06 15:19:24 +0100520static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200521 struct group_run_stats *rs, int ddir)
522{
523 unsigned long min, max;
524 unsigned long long bw;
525 double mean, dev;
526
Jens Axboeff58fce2010-08-25 12:02:08 +0200527 assert(ddir_rw(ddir));
528
Jens Axboec6ae0a52006-06-12 11:04:44 +0200529 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
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100533 log_info(";%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100534 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200535
Jens Axboe079ad092007-02-20 13:58:20 +0100536 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100537 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200538 else
Jens Axboe6d861442007-03-15 09:22:23 +0100539 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200540
Jens Axboe079ad092007-02-20 13:58:20 +0100541 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100542 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200543 else
Jens Axboe6d861442007-03-15 09:22:23 +0100544 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200545
Jens Axboe02af0982010-06-24 09:59:34 +0200546 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
547 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
548 else
549 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
550
Jens Axboe079ad092007-02-20 13:58:20 +0100551 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboec6ae0a52006-06-12 11:04:44 +0200552 double p_of_agg;
553
554 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6d861442007-03-15 09:22:23 +0100555 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200556 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100557 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200558}
559
Jens Axboe525c2bf2010-06-30 15:22:21 +0200560#define FIO_TERSE_VERSION "2"
Jens Axboec6ae0a52006-06-12 11:04:44 +0200561
Jens Axboe756867b2007-03-06 15:19:24 +0100562static void show_thread_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200563 struct group_run_stats *rs)
564{
Jens Axboe22708902007-03-06 17:05:32 +0100565 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200566 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
567 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200568 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200569 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200570
David Nellans562c2d22010-09-23 08:38:17 +0200571 /* General Info */
Jens Axboe525c2bf2010-06-30 15:22:21 +0200572 log_info("%s;%s;%d;%d", FIO_TERSE_VERSION, ts->name, ts->groupid,
573 ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200574 /* Log Read Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100575 show_ddir_status_terse(ts, rs, 0);
David Nellans562c2d22010-09-23 08:38:17 +0200576 /* Log Write Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100577 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200578
David Nellans562c2d22010-09-23 08:38:17 +0200579 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100580 if (ts->total_run_time) {
581 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200582
Jens Axboe756867b2007-03-06 15:19:24 +0100583 usr_cpu = (double) ts->usr_time * 100 / runt;
584 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200585 } else {
586 usr_cpu = 0;
587 sys_cpu = 0;
588 }
589
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100590 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
591 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100592
David Nellans562c2d22010-09-23 08:38:17 +0200593 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200594 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200595 stat_calc_lat_u(ts, io_u_lat_u);
596 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100597
David Nellans562c2d22010-09-23 08:38:17 +0200598 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100599 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
600 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
601 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100602
David Nellans562c2d22010-09-23 08:38:17 +0200603 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200604 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
605 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200606 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200607 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
608 log_info(";%3.2f%%", io_u_lat_m[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200609 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200610 if (ts->continue_on_error)
611 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200612 log_info("\n");
Jens Axboe22708902007-03-06 17:05:32 +0100613
David Nellans562c2d22010-09-23 08:38:17 +0200614 /* Additional output if description is set */
Jens Axboe22708902007-03-06 17:05:32 +0100615 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100616 log_info(";%s", ts->description);
Jens Axboe22708902007-03-06 17:05:32 +0100617
Jens Axboe6d861442007-03-15 09:22:23 +0100618 log_info("\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100619}
620
Jens Axboe197574e2007-03-08 15:35:11 +0100621static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100622{
623 double mean, S;
624
Zheng Liue09231c2011-09-16 08:20:12 +0200625 if (src->samples == 0)
626 return;
627
Jens Axboe756867b2007-03-06 15:19:24 +0100628 dst->min_val = min(dst->min_val, src->min_val);
629 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +0100630
631 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200632 * Compute new mean and S after the merge
633 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
634 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +0100635 */
636 if (nr == 1) {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200637 mean = src->mean.u.f;
638 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +0100639 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200640 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200641
Jens Axboe802ad4a2011-10-05 09:51:58 +0200642 mean = ((src->mean.u.f * src->samples) +
643 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200644 (dst->samples + src->samples);
645
Jens Axboe802ad4a2011-10-05 09:51:58 +0200646 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200647 (dst->samples * src->samples) /
648 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +0100649 }
650
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200651 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200652 dst->mean.u.f = mean;
653 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +0100654}
655
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200656void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
657{
658 int i;
659
660 for (i = 0; i < 2; i++) {
661 if (dst->max_run[i] < src->max_run[i])
662 dst->max_run[i] = src->max_run[i];
663 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
664 dst->min_run[i] = src->min_run[i];
665 if (dst->max_bw[i] < src->max_bw[i])
666 dst->max_bw[i] = src->max_bw[i];
667 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
668 dst->min_bw[i] = src->min_bw[i];
669
670 dst->io_kb[i] += src->io_kb[i];
671 dst->agg[i] += src->agg[i];
672 }
673
674}
675
Jens Axboe5b9babb2011-10-10 12:14:30 +0200676void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
677{
678 int l, k;
679
680 for (l = 0; l <= DDIR_WRITE; l++) {
681 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
682 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
683 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
684 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
685
686 dst->io_bytes[l] += src->io_bytes[l];
687
688 if (dst->runtime[l] < src->runtime[l])
689 dst->runtime[l] = src->runtime[l];
690 }
691
692 dst->usr_time += src->usr_time;
693 dst->sys_time += src->sys_time;
694 dst->ctx += src->ctx;
695 dst->majf += src->majf;
696 dst->minf += src->minf;
697
698 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
699 dst->io_u_map[k] += src->io_u_map[k];
700 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
701 dst->io_u_submit[k] += src->io_u_submit[k];
702 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
703 dst->io_u_complete[k] += src->io_u_complete[k];
704 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
705 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
706 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
707 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
708
709 for (k = 0; k <= 2; k++) {
710 dst->total_io_u[k] += src->total_io_u[k];
711 dst->short_io_u[k] += src->short_io_u[k];
712 }
713
714 for (k = 0; k <= DDIR_WRITE; k++) {
715 int m;
716 for (m = 0; m < FIO_IO_U_PLAT_NR; m++)
717 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
718 }
719
720 dst->total_run_time += src->total_run_time;
721 dst->total_submit += src->total_submit;
722 dst->total_complete += src->total_complete;
723}
724
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200725void init_group_run_stat(struct group_run_stats *gs)
726{
727 memset(gs, 0, sizeof(*gs));
728 gs->min_bw[0] = gs->min_run[0] = ~0UL;
729 gs->min_bw[1] = gs->min_run[1] = ~0UL;
730}
731
732void init_thread_stat(struct thread_stat *ts)
733{
734 int j;
735
736 memset(ts, 0, sizeof(*ts));
737
738 for (j = 0; j <= DDIR_WRITE; j++) {
739 ts->lat_stat[j].min_val = -1UL;
740 ts->clat_stat[j].min_val = -1UL;
741 ts->slat_stat[j].min_val = -1UL;
742 ts->bw_stat[j].min_val = -1UL;
743 }
744 ts->groupid = -1;
745}
746
Jens Axboe3c39a372006-06-06 20:56:12 +0200747void show_run_stats(void)
748{
749 struct group_run_stats *runstats, *rs;
750 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100751 struct thread_stat *threadstats, *ts;
Jens Axboe5b9babb2011-10-10 12:14:30 +0200752 int i, j, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200753 int kb_base_warned = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200754
755 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
756
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200757 for (i = 0; i < groupid + 1; i++)
758 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +0200759
Jens Axboe756867b2007-03-06 15:19:24 +0100760 /*
761 * find out how many threads stats we need. if group reporting isn't
762 * enabled, it's one-per-td.
763 */
764 nr_ts = 0;
765 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200766 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100767 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +0100768 nr_ts++;
769 continue;
770 }
771 if (last_ts == td->groupid)
772 continue;
773
774 last_ts = td->groupid;
775 nr_ts++;
776 }
777
778 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
779
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200780 for (i = 0; i < nr_ts; i++)
781 init_thread_stat(&threadstats[i]);
Jens Axboe756867b2007-03-06 15:19:24 +0100782
783 j = 0;
784 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100785 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100786 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100787 if (idx && (!td->o.group_reporting ||
788 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +0100789 idx = 0;
790 j++;
791 }
792
793 last_ts = td->groupid;
794
Jens Axboe756867b2007-03-06 15:19:24 +0100795 ts = &threadstats[j];
796
Yu-ju Hong83349192011-08-13 00:53:44 +0200797 ts->clat_percentiles = td->o.clat_percentiles;
798 if (td->o.overwrite_plist)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200799 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200800 else
Jens Axboe802ad4a2011-10-05 09:51:58 +0200801 memcpy(ts->percentile_list, def_percentile_list, sizeof(def_percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200802
Jens Axboe197574e2007-03-08 15:35:11 +0100803 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100804 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100805
Jens Axboe7abd0e32007-03-12 15:24:43 +0100806 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100807 /*
808 * These are per-group shared already
809 */
Jens Axboef6bb5b82011-10-03 12:21:25 +0200810 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +0200811 if (td->o.description)
812 strncpy(ts->description, td->o.description,
813 FIO_JOBNAME_SIZE);
814 else
815 memset(ts->description, 0, FIO_JOBNAME_SIZE);
816
Jens Axboe756867b2007-03-06 15:19:24 +0100817 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100818
819 /*
820 * first pid in group, not very useful...
821 */
Jens Axboe756867b2007-03-06 15:19:24 +0100822 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200823
824 ts->kb_base = td->o.kb_base;
825 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
826 log_info("fio: kb_base differs for jobs in group, using"
827 " %u as the base\n", ts->kb_base);
828 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100829 }
830
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200831 ts->continue_on_error = td->o.continue_on_error;
832 ts->total_err_count += td->total_err_count;
833 ts->first_error = td->first_error;
834 if (!ts->error) {
835 if (!td->error && td->o.continue_on_error &&
836 td->first_error) {
837 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200838 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200839 } else if (td->error) {
840 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200841 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200842 }
Jens Axboe756867b2007-03-06 15:19:24 +0100843 }
844
Jens Axboe5b9babb2011-10-10 12:14:30 +0200845 sum_thread_stats(ts, &td->ts, idx);
Jens Axboe756867b2007-03-06 15:19:24 +0100846 }
847
848 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100849 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200850
Jens Axboe756867b2007-03-06 15:19:24 +0100851 ts = &threadstats[i];
852 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200853 rs->kb_base = ts->kb_base;
Jens Axboe3c39a372006-06-06 20:56:12 +0200854
Jens Axboede64df02007-03-08 19:09:49 +0100855 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100856 if (!ts->runtime[j])
857 continue;
858 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
859 rs->min_run[j] = ts->runtime[j];
860 if (ts->runtime[j] > rs->max_run[j])
861 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +0200862
Jens Axboe94370ac2007-03-08 15:28:10 +0100863 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +0200864 if (ts->runtime[j]) {
865 unsigned long runt;
866
Jens Axboe90fef2d2009-07-17 22:33:32 +0200867 runt = ts->runtime[j];
Jens Axboe8879fd12009-04-20 10:06:02 +0200868 bw = ts->io_bytes[j] / runt;
869 }
Jens Axboe94370ac2007-03-08 15:28:10 +0100870 if (bw < rs->min_bw[j])
871 rs->min_bw[j] = bw;
872 if (bw > rs->max_bw[j])
873 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200874
Jens Axboe90fef2d2009-07-17 22:33:32 +0200875 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +0100876 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200877 }
878
879 for (i = 0; i < groupid + 1; i++) {
Jens Axboe8879fd12009-04-20 10:06:02 +0200880 unsigned long max_run[2];
881
Jens Axboe3c39a372006-06-06 20:56:12 +0200882 rs = &runstats[i];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200883 max_run[0] = rs->max_run[0];
884 max_run[1] = rs->max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200885
886 if (rs->max_run[0])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200887 rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0];
Jens Axboe3c39a372006-06-06 20:56:12 +0200888 if (rs->max_run[1])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200889 rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200890 }
891
892 /*
893 * don't overwrite last signal output
894 */
Jens Axboec6ae0a52006-06-12 11:04:44 +0200895 if (!terse_output)
Jens Axboe4ceb30d2010-02-24 09:19:14 +0100896 log_info("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200897
Jens Axboe756867b2007-03-06 15:19:24 +0100898 for (i = 0; i < nr_ts; i++) {
899 ts = &threadstats[i];
900 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200901
Jens Axboea64e88d2011-10-03 14:20:01 +0200902 if (is_backend)
903 fio_server_send_ts(ts, rs);
904 else if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +0100905 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200906 else
Jens Axboe756867b2007-03-06 15:19:24 +0100907 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200908 }
909
Jens Axboec6ae0a52006-06-12 11:04:44 +0200910 if (!terse_output) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200911 for (i = 0; i < groupid + 1; i++) {
912 rs = &runstats[i];
913
914 rs->groupid = i;
915 if (is_backend)
916 fio_server_send_gs(rs);
917 else
918 show_group_stats(rs);
919 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200920
Jens Axboec6ae0a52006-06-12 11:04:44 +0200921 show_disk_util();
922 }
Jens Axboeeecf2722006-10-20 14:00:36 +0200923
924 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +0100925 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +0200926}
927
Jens Axboe68704082007-01-10 19:56:37 +0100928static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +0200929{
Jens Axboe68704082007-01-10 19:56:37 +0100930 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +0100931 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +0200932
Jens Axboe68704082007-01-10 19:56:37 +0100933 if (data > is->max_val)
934 is->max_val = data;
935 if (data < is->min_val)
936 is->min_val = data;
937
Jens Axboe802ad4a2011-10-05 09:51:58 +0200938 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +0200939 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200940 is->mean.u.f += delta / (is->samples + 1.0);
941 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +0200942 }
Jens Axboe68704082007-01-10 19:56:37 +0100943
Jens Axboe3c39a372006-06-06 20:56:12 +0200944 is->samples++;
945}
946
Jens Axboebb3884d2007-01-17 17:23:11 +1100947static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +0200948 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -0700949 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200950{
Jens Axboe306ddc92009-05-18 13:08:12 +0200951 const int nr_samples = iolog->nr_samples;
952
Jens Axboe3c39a372006-06-06 20:56:12 +0200953 if (iolog->nr_samples == iolog->max_samples) {
954 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
955
956 iolog->log = realloc(iolog->log, new_size);
957 iolog->max_samples <<= 1;
958 }
959
Jens Axboe306ddc92009-05-18 13:08:12 +0200960 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -0700961 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +0200962 iolog->log[nr_samples].ddir = ddir;
963 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +0200964 iolog->nr_samples++;
965}
966
Jens Axboebb3884d2007-01-17 17:23:11 +1100967static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +0200968 unsigned long val, enum fio_ddir ddir,
969 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100970{
Jens Axboeff58fce2010-08-25 12:02:08 +0200971 if (!ddir_rw(ddir))
972 return;
973
Jens Axboe306ddc92009-05-18 13:08:12 +0200974 __add_log_sample(iolog, val, ddir, bs, mtime_since_now(&td->epoch));
Jens Axboebb3884d2007-01-17 17:23:11 +1100975}
976
Jens Axboe306ddc92009-05-18 13:08:12 +0200977void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100978{
Jens Axboeff58fce2010-08-25 12:02:08 +0200979 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +1100980
Jens Axboeff58fce2010-08-25 12:02:08 +0200981 if (!ddir_rw(ddir))
982 return;
983
984 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +0200985 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +1100986}
987
Yu-ju Hong83349192011-08-13 00:53:44 +0200988static void add_clat_percentile_sample(struct thread_stat *ts,
989 unsigned long usec, enum fio_ddir ddir)
990{
991 unsigned int idx = plat_val_to_idx(usec);
992 assert(idx < FIO_IO_U_PLAT_NR);
993
994 ts->io_u_plat[ddir][idx]++;
995}
996
Jens Axboe1e97cce2006-12-05 11:44:16 +0100997void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +0200998 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200999{
Jens Axboe756867b2007-03-06 15:19:24 +01001000 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001001
Jens Axboeff58fce2010-08-25 12:02:08 +02001002 if (!ddir_rw(ddir))
1003 return;
1004
Jens Axboed85f5112007-06-18 09:41:23 +02001005 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001006
Jens Axboe7b9f7332011-10-03 10:06:44 +02001007 if (td->clat_log)
1008 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +02001009
1010 if (ts->clat_percentiles)
1011 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +02001012}
1013
Jens Axboe1e97cce2006-12-05 11:44:16 +01001014void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001015 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001016{
Jens Axboe756867b2007-03-06 15:19:24 +01001017 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001018
Jens Axboeff58fce2010-08-25 12:02:08 +02001019 if (!ddir_rw(ddir))
1020 return;
1021
Jens Axboed85f5112007-06-18 09:41:23 +02001022 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001023
Jens Axboe7b9f7332011-10-03 10:06:44 +02001024 if (td->slat_log)
1025 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001026}
1027
Jens Axboe02af0982010-06-24 09:59:34 +02001028void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
1029 unsigned long usec, unsigned int bs)
1030{
1031 struct thread_stat *ts = &td->ts;
1032
Jens Axboeff58fce2010-08-25 12:02:08 +02001033 if (!ddir_rw(ddir))
1034 return;
1035
Jens Axboe02af0982010-06-24 09:59:34 +02001036 add_stat_sample(&ts->lat_stat[ddir], usec);
1037
Jens Axboe7b9f7332011-10-03 10:06:44 +02001038 if (td->lat_log)
1039 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001040}
1041
Jens Axboe306ddc92009-05-18 13:08:12 +02001042void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001043 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001044{
Jens Axboe756867b2007-03-06 15:19:24 +01001045 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001046 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001047
Jens Axboeff58fce2010-08-25 12:02:08 +02001048 if (!ddir_rw(ddir))
1049 return;
1050
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001051 spent = mtime_since(&td->bw_sample_time, t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001052 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001053 return;
1054
Jens Axboef0505a12011-10-03 12:12:03 +02001055 rate = (td->this_io_bytes[ddir] - td->stat_io_bytes[ddir]) *
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001056 1000 / spent / 1024;
Jens Axboe079ad092007-02-20 13:58:20 +01001057 add_stat_sample(&ts->bw_stat[ddir], rate);
Jens Axboe3c39a372006-06-06 20:56:12 +02001058
Jens Axboe7b9f7332011-10-03 10:06:44 +02001059 if (td->bw_log)
1060 add_log_sample(td, td->bw_log, rate, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001061
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001062 fio_gettime(&td->bw_sample_time, NULL);
Jens Axboef0505a12011-10-03 12:12:03 +02001063 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
Jens Axboe3c39a372006-06-06 20:56:12 +02001064}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001065
1066void add_iops_sample(struct thread_data *td, enum fio_ddir ddir,
1067 struct timeval *t)
1068{
1069 struct thread_stat *ts = &td->ts;
1070 unsigned long spent, iops;
1071
1072 if (!ddir_rw(ddir))
1073 return;
1074
1075 spent = mtime_since(&td->iops_sample_time, t);
1076 if (spent < td->o.iops_avg_time)
1077 return;
1078
1079 iops = ((td->this_io_blocks[ddir] - td->stat_io_blocks[ddir]) * 1000) / spent;
1080
1081 add_stat_sample(&ts->iops_stat[ddir], iops);
1082
1083 if (td->iops_log) {
1084 assert(iops);
1085 add_log_sample(td, td->iops_log, iops, ddir, 0);
1086 }
1087
1088 fio_gettime(&td->iops_sample_time, NULL);
1089 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
1090}