blob: 4bae5767c852cae4fb254a23f367c8a88463998e [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 Axboe3c39a372006-06-06 20:56:12 +020012
Jens Axboe3c39a372006-06-06 20:56:12 +020013void update_rusage_stat(struct thread_data *td)
14{
Jens Axboe756867b2007-03-06 15:19:24 +010015 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +020016
Jens Axboec8aaba12011-10-03 12:14:19 +020017 getrusage(RUSAGE_SELF, &td->ru_end);
Jens Axboe079ad092007-02-20 13:58:20 +010018
Jens Axboec8aaba12011-10-03 12:14:19 +020019 ts->usr_time += mtime_since(&td->ru_start.ru_utime,
20 &td->ru_end.ru_utime);
21 ts->sys_time += mtime_since(&td->ru_start.ru_stime,
22 &td->ru_end.ru_stime);
23 ts->ctx += td->ru_end.ru_nvcsw + td->ru_end.ru_nivcsw
24 - (td->ru_start.ru_nvcsw + td->ru_start.ru_nivcsw);
25 ts->minf += td->ru_end.ru_minflt - td->ru_start.ru_minflt;
26 ts->majf += td->ru_end.ru_majflt - td->ru_start.ru_majflt;
Jens Axboe5ec10ea2008-03-06 15:42:00 +010027
Jens Axboec8aaba12011-10-03 12:14:19 +020028 memcpy(&td->ru_start, &td->ru_end, sizeof(td->ru_end));
Jens Axboe3c39a372006-06-06 20:56:12 +020029}
30
Yu-ju Hong83349192011-08-13 00:53:44 +020031/*
32 * Given a latency, return the index of the corresponding bucket in
33 * the structure tracking percentiles.
34 *
35 * (1) find the group (and error bits) that the value (latency)
36 * belongs to by looking at its MSB. (2) find the bucket number in the
37 * group by looking at the index bits.
38 *
39 */
40static unsigned int plat_val_to_idx(unsigned int val)
41{
42 unsigned int msb, error_bits, base, offset, idx;
43
44 /* Find MSB starting from bit 0 */
45 if (val == 0)
46 msb = 0;
47 else
48 msb = (sizeof(val)*8) - __builtin_clz(val) - 1;
49
Jens Axboe716050f2011-08-16 08:43:45 +020050 /*
51 * MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
52 * all bits of the sample as index
53 */
Yu-ju Hong83349192011-08-13 00:53:44 +020054 if (msb <= FIO_IO_U_PLAT_BITS)
55 return val;
56
57 /* Compute the number of error bits to discard*/
58 error_bits = msb - FIO_IO_U_PLAT_BITS;
59
60 /* Compute the number of buckets before the group */
61 base = (error_bits + 1) << FIO_IO_U_PLAT_BITS;
62
Jens Axboe716050f2011-08-16 08:43:45 +020063 /*
64 * Discard the error bits and apply the mask to find the
65 * index for the buckets in the group
66 */
Yu-ju Hong83349192011-08-13 00:53:44 +020067 offset = (FIO_IO_U_PLAT_VAL - 1) & (val >> error_bits);
68
69 /* Make sure the index does not exceed (array size - 1) */
70 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1)?
71 (base + offset) : (FIO_IO_U_PLAT_NR - 1);
72
73 return idx;
74}
75
76/*
77 * Convert the given index of the bucket array to the value
78 * represented by the bucket
79 */
80static unsigned int plat_idx_to_val(unsigned int idx)
81{
82 unsigned int error_bits, k, base;
83
84 assert(idx < FIO_IO_U_PLAT_NR);
85
86 /* MSB <= (FIO_IO_U_PLAT_BITS-1), cannot be rounded off. Use
87 * all bits of the sample as index */
88 if (idx < (FIO_IO_U_PLAT_VAL << 1) )
89 return idx;
90
91 /* Find the group and compute the minimum value of that group */
92 error_bits = (idx >> FIO_IO_U_PLAT_BITS) -1;
93 base = 1 << (error_bits + FIO_IO_U_PLAT_BITS);
94
95 /* Find its bucket number of the group */
96 k = idx % FIO_IO_U_PLAT_VAL;
97
98 /* Return the mean of the range of the bucket */
99 return base + ((k + 0.5) * (1 << error_bits));
100}
101
102static int double_cmp(const void *a, const void *b)
103{
104 const double fa = *(const double *)a;
105 const double fb = *(const double *)b;
106 int cmp = 0;
107
108 if (fa > fb)
109 cmp = 1;
110 else if (fa < fb)
111 cmp = -1;
112
113 return cmp;
114}
115
116/*
117 * Find and display the p-th percentile of clat
118 */
119static void show_clat_percentiles(unsigned int* io_u_plat, unsigned long nr,
120 double* user_list)
121{
122 unsigned long sum = 0;
123 unsigned int len, i, j = 0;
Jens Axboe716050f2011-08-16 08:43:45 +0200124 const double *plist;
125 int is_last = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200126 static const double def_list[FIO_IO_U_LIST_MAX_LEN] = {
127 1.0, 5.0, 10.0, 20.0, 30.0,
128 40.0, 50.0, 60.0, 70.0, 80.0,
129 90.0, 95.0, 99.0, 99.5, 99.9};
130
Jens Axboe716050f2011-08-16 08:43:45 +0200131 plist = user_list;
132 if (!plist)
133 plist = def_list;
Yu-ju Hong83349192011-08-13 00:53:44 +0200134
Jens Axboe716050f2011-08-16 08:43:45 +0200135 for (len = 0; len <FIO_IO_U_LIST_MAX_LEN && plist[len] != 0; len++)
136 ;
137
138 /*
139 * Sort the user-specified list. Note that this does not work
140 * for NaN values
141 */
Yu-ju Hong83349192011-08-13 00:53:44 +0200142 if (user_list && len > 1)
143 qsort((void*)user_list, len, sizeof(user_list[0]), double_cmp);
144
Yu-ju Hong83349192011-08-13 00:53:44 +0200145 log_info(" clat percentiles (usec) :");
146
Jens Axboe716050f2011-08-16 08:43:45 +0200147 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200148 sum += io_u_plat[i];
Jens Axboe716050f2011-08-16 08:43:45 +0200149 while (sum >= (plist[j] / 100 * nr)) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200150 assert(plist[j] <= 100.0);
151
Jens Axboe716050f2011-08-16 08:43:45 +0200152 /* for formatting */
153 if (j != 0 && (j % 4) == 0)
Yu-ju Hong83349192011-08-13 00:53:44 +0200154 log_info(" ");
155
156 /* end of the list */
157 is_last = (j == len - 1);
158
159 log_info(" %2.2fth=%u%c", plist[j], plat_idx_to_val(i),
160 (is_last? '\n' : ','));
161
Jens Axboe716050f2011-08-16 08:43:45 +0200162 if (is_last)
163 break;
Yu-ju Hong83349192011-08-13 00:53:44 +0200164
Jens Axboe716050f2011-08-16 08:43:45 +0200165 if (j % 4 == 3) /* for formatting */
Yu-ju Hong83349192011-08-13 00:53:44 +0200166 log_info("\n");
167 j++;
168 }
169 }
170}
171
Jens Axboe3c39a372006-06-06 20:56:12 +0200172static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
173 double *mean, double *dev)
174{
Jens Axboe68704082007-01-10 19:56:37 +0100175 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200176
177 if (is->samples == 0)
178 return 0;
179
180 *min = is->min_val;
181 *max = is->max_val;
182
183 n = (double) is->samples;
Jens Axboe68704082007-01-10 19:56:37 +0100184 *mean = is->mean;
Jens Axboe3c39a372006-06-06 20:56:12 +0200185
Jens Axboe68704082007-01-10 19:56:37 +0100186 if (n > 1.0)
187 *dev = sqrt(is->S / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100188 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200189 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100190
Jens Axboe3c39a372006-06-06 20:56:12 +0200191 return 1;
192}
193
194static void show_group_stats(struct group_run_stats *rs, int id)
195{
Jens Axboedbe11252007-02-11 00:19:51 +0100196 char *p1, *p2, *p3, *p4;
197 const char *ddir_str[] = { " READ", " WRITE" };
198 int i;
199
Jens Axboe6d861442007-03-15 09:22:23 +0100200 log_info("\nRun status group %d (all jobs):\n", id);
Jens Axboe3c39a372006-06-06 20:56:12 +0200201
Jens Axboedbe11252007-02-11 00:19:51 +0100202 for (i = 0; i <= DDIR_WRITE; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200203 const int i2p = is_power_of_2(rs->kb_base);
204
Jens Axboedbe11252007-02-11 00:19:51 +0100205 if (!rs->max_run[i])
206 continue;
207
Jens Axboe90fef2d2009-07-17 22:33:32 +0200208 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p);
209 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p);
210 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p);
211 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p);
Jens Axboedbe11252007-02-11 00:19:51 +0100212
Jens Axboeb22989b2009-07-17 22:29:23 +0200213 log_info("%s: io=%sB, aggrb=%sB/s, minb=%sB/s, maxb=%sB/s,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100214 " mint=%llumsec, maxt=%llumsec\n", ddir_str[i], p1, p2,
215 p3, p4, rs->min_run[i],
216 rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100217
218 free(p1);
219 free(p2);
220 free(p3);
221 free(p4);
222 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200223}
224
Jens Axboeb3605062007-03-12 14:19:47 +0100225#define ts_total_io_u(ts) \
226 ((ts)->total_io_u[0] + (ts)->total_io_u[1])
227
Jens Axboe838bc702008-05-22 13:08:23 +0200228static void stat_calc_dist(unsigned int *map, unsigned long total,
229 double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100230{
231 int i;
232
233 /*
234 * Do depth distribution calculations
235 */
236 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200237 if (total) {
238 io_u_dist[i] = (double) map[i] / (double) total;
239 io_u_dist[i] *= 100.0;
240 if (io_u_dist[i] < 0.1 && map[i])
241 io_u_dist[i] = 0.1;
242 } else
243 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100244 }
245}
246
Jens Axboe04a0fea2007-06-19 12:48:41 +0200247static void stat_calc_lat(struct thread_stat *ts, double *dst,
248 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100249{
Jens Axboe838bc702008-05-22 13:08:23 +0200250 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100251 int i;
252
253 /*
254 * Do latency distribution calculations
255 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200256 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200257 if (total) {
258 dst[i] = (double) src[i] / (double) total;
259 dst[i] *= 100.0;
260 if (dst[i] < 0.01 && src[i])
261 dst[i] = 0.01;
262 } else
263 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100264 }
265}
266
Jens Axboe04a0fea2007-06-19 12:48:41 +0200267static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
268{
269 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
270}
271
272static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
273{
274 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
275}
276
Jens Axboeea2accc2007-06-19 09:48:44 +0200277static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
278 double *dev)
279{
280 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
281 *min /= 1000;
282 *max /= 1000;
283 *mean /= 1000.0;
284 *dev /= 1000.0;
285 return 0;
286 }
287
288 return 1;
289}
290
Jens Axboe756867b2007-03-06 15:19:24 +0100291static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200292 int ddir)
293{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100294 const char *ddir_str[] = { "read ", "write" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200295 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100296 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200297 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100298 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200299 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200300
Jens Axboeff58fce2010-08-25 12:02:08 +0200301 assert(ddir_rw(ddir));
302
Jens Axboe756867b2007-03-06 15:19:24 +0100303 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200304 return;
305
Jens Axboe90fef2d2009-07-17 22:33:32 +0200306 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200307 runt = ts->runtime[ddir];
308
309 bw = (1000 * ts->io_bytes[ddir]) / runt;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200310 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
311 bw_p = num2str(bw, 6, 1, i2p);
Jens Axboe8879fd12009-04-20 10:06:02 +0200312
Bruce Cran0aacc502011-07-09 08:19:53 +0200313 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100314 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100315
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100316 log_info(" %s: io=%sB, bw=%sB/s, iops=%s, runt=%6llumsec\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100317 ddir_str[ddir], io_p, bw_p, iops_p,
318 ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100319
320 free(io_p);
321 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100322 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200323
Jens Axboed85f5112007-06-18 09:41:23 +0200324 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
325 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200326 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200327
Jens Axboeea2accc2007-06-19 09:48:44 +0200328 if (!usec_to_msec(&min, &max, &mean, &dev))
Jens Axboed85f5112007-06-18 09:41:23 +0200329 base = "(msec)";
Jens Axboeea2accc2007-06-19 09:48:44 +0200330
Jens Axboed9309cb2007-08-16 13:07:46 +0200331 minp = num2str(min, 6, 1, 0);
332 maxp = num2str(max, 6, 1, 0);
333
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100334 log_info(" slat %s: min=%s, max=%s, avg=%5.02f,"
335 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200336
337 free(minp);
338 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200339 }
340 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
341 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200342 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200343
Jens Axboeea2accc2007-06-19 09:48:44 +0200344 if (!usec_to_msec(&min, &max, &mean, &dev))
345 base = "(msec)";
346
Jens Axboed9309cb2007-08-16 13:07:46 +0200347 minp = num2str(min, 6, 1, 0);
348 maxp = num2str(max, 6, 1, 0);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100349
350 log_info(" clat %s: min=%s, max=%s, avg=%5.02f,"
351 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200352
353 free(minp);
354 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200355 }
Jens Axboe02af0982010-06-24 09:59:34 +0200356 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
357 const char *base = "(usec)";
358 char *minp, *maxp;
359
360 if (!usec_to_msec(&min, &max, &mean, &dev))
361 base = "(msec)";
362
363 minp = num2str(min, 6, 1, 0);
364 maxp = num2str(max, 6, 1, 0);
365
366 log_info(" lat %s: min=%s, max=%s, avg=%5.02f,"
367 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
368
369 free(minp);
370 free(maxp);
371 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200372 if (ts->clat_percentiles) {
373 show_clat_percentiles(ts->io_u_plat[ddir],
374 ts->clat_stat[ddir].samples,
375 ts->percentile_list);
376 }
Jens Axboe079ad092007-02-20 13:58:20 +0100377 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe3c39a372006-06-06 20:56:12 +0200378 double p_of_agg;
379
380 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboeb22989b2009-07-17 22:29:23 +0200381 log_info(" bw (KB/s) : min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100382 " avg=%5.02f, stdev=%5.02f\n", min, max, p_of_agg,
383 mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200384 }
385}
386
Jens Axboe04a0fea2007-06-19 12:48:41 +0200387static void show_lat(double *io_u_lat, int nr, const char **ranges,
388 const char *msg)
389{
390 int new_line = 1, i, line = 0;
391
392 for (i = 0; i < nr; i++) {
393 if (io_u_lat[i] <= 0.0)
394 continue;
395 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200396 if (line)
397 log_info("\n");
Jens Axboe04a0fea2007-06-19 12:48:41 +0200398 log_info(" lat (%s): ", msg);
399 new_line = 0;
400 line = 0;
401 }
402 if (line)
403 log_info(", ");
404 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
405 line++;
406 if (line == 5)
407 new_line = 1;
408 }
Jens Axboe04a0fea2007-06-19 12:48:41 +0200409}
410
411static void show_lat_u(double *io_u_lat_u)
412{
413 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
414 "250=", "500=", "750=", "1000=", };
415
416 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
417}
418
419static void show_lat_m(double *io_u_lat_m)
420{
421 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
422 "250=", "500=", "750=", "1000=", "2000=",
423 ">=2000=", };
424
425 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
426}
427
428static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
429{
430 show_lat_u(io_u_lat_u);
Jens Axboe4539ed72007-07-23 14:21:17 +0200431 log_info("\n");
Jens Axboe04a0fea2007-06-19 12:48:41 +0200432 show_lat_m(io_u_lat_m);
433 log_info("\n");
434}
435
Jens Axboe756867b2007-03-06 15:19:24 +0100436static void show_thread_status(struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200437 struct group_run_stats *rs)
438{
439 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100440 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100441 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200442 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
443 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200444
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200445 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
446 !(ts->total_io_u[0] + ts->total_io_u[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200447 return;
448
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100449 if (!ts->error) {
450 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n",
451 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200452 ts->error, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100453 } else {
454 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n",
455 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200456 ts->error, ts->verror, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100457 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200458
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100459 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100460 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100461
Jens Axboe756867b2007-03-06 15:19:24 +0100462 if (ts->io_bytes[DDIR_READ])
463 show_ddir_status(rs, ts, DDIR_READ);
464 if (ts->io_bytes[DDIR_WRITE])
465 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200466
Jens Axboe756867b2007-03-06 15:19:24 +0100467 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100468 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100469 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200470
Jens Axboe756867b2007-03-06 15:19:24 +0100471 usr_cpu = (double) ts->usr_time * 100 / runt;
472 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200473 } else {
474 usr_cpu = 0;
475 sys_cpu = 0;
476 }
477
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100478 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
479 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100480
Jens Axboe838bc702008-05-22 13:08:23 +0200481 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100482 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
483 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
484 io_u_dist[1], io_u_dist[2],
485 io_u_dist[3], io_u_dist[4],
486 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200487
488 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
489 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
490 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
491 io_u_dist[1], io_u_dist[2],
492 io_u_dist[3], io_u_dist[4],
493 io_u_dist[5], io_u_dist[6]);
494 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
495 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
496 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
497 io_u_dist[1], io_u_dist[2],
498 io_u_dist[3], io_u_dist[4],
499 io_u_dist[5], io_u_dist[6]);
Jens Axboe0d29de82010-09-01 13:54:15 +0200500 log_info(" issued r/w/d: total=%lu/%lu/%lu, short=%lu/%lu/%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100501 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200502 ts->total_io_u[2],
503 ts->short_io_u[0], ts->short_io_u[1],
504 ts->short_io_u[2]);
Jens Axboe838bc702008-05-22 13:08:23 +0200505 stat_calc_lat_u(ts, io_u_lat_u);
506 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200507 show_latencies(io_u_lat_u, io_u_lat_m);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200508 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200509 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
510 ts->total_err_count,
511 ts->first_error,
512 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200513 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200514}
515
Jens Axboe756867b2007-03-06 15:19:24 +0100516static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200517 struct group_run_stats *rs, int ddir)
518{
519 unsigned long min, max;
520 unsigned long long bw;
521 double mean, dev;
522
Jens Axboeff58fce2010-08-25 12:02:08 +0200523 assert(ddir_rw(ddir));
524
Jens Axboec6ae0a52006-06-12 11:04:44 +0200525 bw = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100526 if (ts->runtime[ddir])
527 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200528
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100529 log_info(";%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100530 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200531
Jens Axboe079ad092007-02-20 13:58:20 +0100532 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100533 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200534 else
Jens Axboe6d861442007-03-15 09:22:23 +0100535 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200536
Jens Axboe079ad092007-02-20 13:58:20 +0100537 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100538 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200539 else
Jens Axboe6d861442007-03-15 09:22:23 +0100540 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200541
Jens Axboe02af0982010-06-24 09:59:34 +0200542 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
543 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
544 else
545 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
546
Jens Axboe079ad092007-02-20 13:58:20 +0100547 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboec6ae0a52006-06-12 11:04:44 +0200548 double p_of_agg;
549
550 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6d861442007-03-15 09:22:23 +0100551 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200552 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100553 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200554}
555
Jens Axboe525c2bf2010-06-30 15:22:21 +0200556#define FIO_TERSE_VERSION "2"
Jens Axboec6ae0a52006-06-12 11:04:44 +0200557
Jens Axboe756867b2007-03-06 15:19:24 +0100558static void show_thread_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200559 struct group_run_stats *rs)
560{
Jens Axboe22708902007-03-06 17:05:32 +0100561 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200562 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
563 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200564 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200565 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200566
David Nellans562c2d22010-09-23 08:38:17 +0200567 /* General Info */
Jens Axboe525c2bf2010-06-30 15:22:21 +0200568 log_info("%s;%s;%d;%d", FIO_TERSE_VERSION, ts->name, ts->groupid,
569 ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200570 /* Log Read Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100571 show_ddir_status_terse(ts, rs, 0);
David Nellans562c2d22010-09-23 08:38:17 +0200572 /* Log Write Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100573 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200574
David Nellans562c2d22010-09-23 08:38:17 +0200575 /* CPU Usage */
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 Axboe5ec10ea2008-03-06 15:42:00 +0100586 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
587 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100588
David Nellans562c2d22010-09-23 08:38:17 +0200589 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200590 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200591 stat_calc_lat_u(ts, io_u_lat_u);
592 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100593
David Nellans562c2d22010-09-23 08:38:17 +0200594 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100595 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
596 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
597 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100598
David Nellans562c2d22010-09-23 08:38:17 +0200599 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200600 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
601 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200602 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200603 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
604 log_info(";%3.2f%%", io_u_lat_m[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200605 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200606 if (ts->continue_on_error)
607 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200608 log_info("\n");
Jens Axboe22708902007-03-06 17:05:32 +0100609
David Nellans562c2d22010-09-23 08:38:17 +0200610 /* Additional output if description is set */
Jens Axboe22708902007-03-06 17:05:32 +0100611 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100612 log_info(";%s", ts->description);
Jens Axboe22708902007-03-06 17:05:32 +0100613
Jens Axboe6d861442007-03-15 09:22:23 +0100614 log_info("\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100615}
616
Jens Axboe197574e2007-03-08 15:35:11 +0100617static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100618{
619 double mean, S;
620
Zheng Liue09231c2011-09-16 08:20:12 +0200621 if (src->samples == 0)
622 return;
623
Jens Axboe756867b2007-03-06 15:19:24 +0100624 dst->min_val = min(dst->min_val, src->min_val);
625 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +0100626
627 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200628 * Compute new mean and S after the merge
629 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
630 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +0100631 */
632 if (nr == 1) {
633 mean = src->mean;
634 S = src->S;
635 } else {
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200636 double delta = src->mean - dst->mean;
637
638 mean = ((src->mean * src->samples) +
639 (dst->mean * dst->samples)) /
640 (dst->samples + src->samples);
641
642 S = src->S + dst->S + pow(delta, 2.0) *
643 (dst->samples * src->samples) /
644 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +0100645 }
646
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200647 dst->samples += src->samples;
Jens Axboe756867b2007-03-06 15:19:24 +0100648 dst->mean = mean;
649 dst->S = S;
650}
651
Jens Axboe3c39a372006-06-06 20:56:12 +0200652void show_run_stats(void)
653{
654 struct group_run_stats *runstats, *rs;
655 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100656 struct thread_stat *threadstats, *ts;
Jens Axboe197574e2007-03-08 15:35:11 +0100657 int i, j, k, l, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200658 int kb_base_warned = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200659
660 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
661
662 for (i = 0; i < groupid + 1; i++) {
663 rs = &runstats[i];
664
665 memset(rs, 0, sizeof(*rs));
666 rs->min_bw[0] = rs->min_run[0] = ~0UL;
667 rs->min_bw[1] = rs->min_run[1] = ~0UL;
668 }
669
Jens Axboe756867b2007-03-06 15:19:24 +0100670 /*
671 * find out how many threads stats we need. if group reporting isn't
672 * enabled, it's one-per-td.
673 */
674 nr_ts = 0;
675 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200676 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100677 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +0100678 nr_ts++;
679 continue;
680 }
681 if (last_ts == td->groupid)
682 continue;
683
684 last_ts = td->groupid;
685 nr_ts++;
686 }
687
688 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
689
690 for (i = 0; i < nr_ts; i++) {
691 ts = &threadstats[i];
692
693 memset(ts, 0, sizeof(*ts));
Jens Axboede64df02007-03-08 19:09:49 +0100694 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe02af0982010-06-24 09:59:34 +0200695 ts->lat_stat[j].min_val = -1UL;
Jens Axboe197574e2007-03-08 15:35:11 +0100696 ts->clat_stat[j].min_val = -1UL;
697 ts->slat_stat[j].min_val = -1UL;
698 ts->bw_stat[j].min_val = -1UL;
699 }
Jens Axboe7abd0e32007-03-12 15:24:43 +0100700 ts->groupid = -1;
Jens Axboe756867b2007-03-06 15:19:24 +0100701 }
702
703 j = 0;
704 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100705 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100706 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100707 if (idx && (!td->o.group_reporting ||
708 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +0100709 idx = 0;
710 j++;
711 }
712
713 last_ts = td->groupid;
714
Jens Axboe756867b2007-03-06 15:19:24 +0100715 ts = &threadstats[j];
716
Yu-ju Hong83349192011-08-13 00:53:44 +0200717 ts->clat_percentiles = td->o.clat_percentiles;
718 if (td->o.overwrite_plist)
719 ts->percentile_list = td->o.percentile_list;
720 else
721 ts->percentile_list = NULL;
722
Jens Axboe197574e2007-03-08 15:35:11 +0100723 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100724 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100725
Jens Axboe7abd0e32007-03-12 15:24:43 +0100726 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100727 /*
728 * These are per-group shared already
729 */
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100730 ts->name = td->o.name;
731 ts->description = td->o.description;
Jens Axboe756867b2007-03-06 15:19:24 +0100732 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100733
734 /*
735 * first pid in group, not very useful...
736 */
Jens Axboe756867b2007-03-06 15:19:24 +0100737 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200738
739 ts->kb_base = td->o.kb_base;
740 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
741 log_info("fio: kb_base differs for jobs in group, using"
742 " %u as the base\n", ts->kb_base);
743 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100744 }
745
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200746 ts->continue_on_error = td->o.continue_on_error;
747 ts->total_err_count += td->total_err_count;
748 ts->first_error = td->first_error;
749 if (!ts->error) {
750 if (!td->error && td->o.continue_on_error &&
751 td->first_error) {
752 ts->error = td->first_error;
753 ts->verror = td->verror;
754 } else if (td->error) {
755 ts->error = td->error;
756 ts->verror = td->verror;
757 }
Jens Axboe756867b2007-03-06 15:19:24 +0100758 }
759
Jens Axboede64df02007-03-08 19:09:49 +0100760 for (l = 0; l <= DDIR_WRITE; l++) {
Jens Axboe197574e2007-03-08 15:35:11 +0100761 sum_stat(&ts->clat_stat[l], &td->ts.clat_stat[l], idx);
762 sum_stat(&ts->slat_stat[l], &td->ts.slat_stat[l], idx);
Jens Axboe02af0982010-06-24 09:59:34 +0200763 sum_stat(&ts->lat_stat[l], &td->ts.lat_stat[l], idx);
Jens Axboe197574e2007-03-08 15:35:11 +0100764 sum_stat(&ts->bw_stat[l], &td->ts.bw_stat[l], idx);
Jens Axboe756867b2007-03-06 15:19:24 +0100765
Jens Axboe197574e2007-03-08 15:35:11 +0100766 ts->io_bytes[l] += td->ts.io_bytes[l];
767
768 if (ts->runtime[l] < td->ts.runtime[l])
769 ts->runtime[l] = td->ts.runtime[l];
770 }
Jens Axboe756867b2007-03-06 15:19:24 +0100771
772 ts->usr_time += td->ts.usr_time;
773 ts->sys_time += td->ts.sys_time;
774 ts->ctx += td->ts.ctx;
Jens Axboee7823a92007-09-07 20:33:33 +0200775 ts->majf += td->ts.majf;
776 ts->minf += td->ts.minf;
Jens Axboe756867b2007-03-06 15:19:24 +0100777
778 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
779 ts->io_u_map[k] += td->ts.io_u_map[k];
Jens Axboe838bc702008-05-22 13:08:23 +0200780 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
781 ts->io_u_submit[k] += td->ts.io_u_submit[k];
782 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
783 ts->io_u_complete[k] += td->ts.io_u_complete[k];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200784 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
785 ts->io_u_lat_u[k] += td->ts.io_u_lat_u[k];
786 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
787 ts->io_u_lat_m[k] += td->ts.io_u_lat_m[k];
788
Jens Axboe756867b2007-03-06 15:19:24 +0100789
Jens Axboe0d29de82010-09-01 13:54:15 +0200790 for (k = 0; k <= 2; k++) {
Jens Axboeb3605062007-03-12 14:19:47 +0100791 ts->total_io_u[k] += td->ts.total_io_u[k];
Jens Axboe30061b92007-04-17 13:31:34 +0200792 ts->short_io_u[k] += td->ts.short_io_u[k];
Eric Gouriou0a7d7f92011-08-16 08:35:43 +0200793 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200794
Eric Gouriou0a7d7f92011-08-16 08:35:43 +0200795 for (k = 0; k <= DDIR_WRITE; k++) {
796 int m;
Yu-ju Hong83349192011-08-13 00:53:44 +0200797 for (m = 0; m < FIO_IO_U_PLAT_NR; m++)
798 ts->io_u_plat[k][m] += td->ts.io_u_plat[k][m];
Jens Axboe30061b92007-04-17 13:31:34 +0200799 }
Jens Axboe756867b2007-03-06 15:19:24 +0100800
801 ts->total_run_time += td->ts.total_run_time;
Jens Axboe838bc702008-05-22 13:08:23 +0200802 ts->total_submit += td->ts.total_submit;
803 ts->total_complete += td->ts.total_complete;
Jens Axboe756867b2007-03-06 15:19:24 +0100804 }
805
806 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100807 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200808
Jens Axboe756867b2007-03-06 15:19:24 +0100809 ts = &threadstats[i];
810 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200811 rs->kb_base = ts->kb_base;
Jens Axboe3c39a372006-06-06 20:56:12 +0200812
Jens Axboede64df02007-03-08 19:09:49 +0100813 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100814 if (!ts->runtime[j])
815 continue;
816 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
817 rs->min_run[j] = ts->runtime[j];
818 if (ts->runtime[j] > rs->max_run[j])
819 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +0200820
Jens Axboe94370ac2007-03-08 15:28:10 +0100821 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +0200822 if (ts->runtime[j]) {
823 unsigned long runt;
824
Jens Axboe90fef2d2009-07-17 22:33:32 +0200825 runt = ts->runtime[j];
Jens Axboe8879fd12009-04-20 10:06:02 +0200826 bw = ts->io_bytes[j] / runt;
827 }
Jens Axboe94370ac2007-03-08 15:28:10 +0100828 if (bw < rs->min_bw[j])
829 rs->min_bw[j] = bw;
830 if (bw > rs->max_bw[j])
831 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200832
Jens Axboe90fef2d2009-07-17 22:33:32 +0200833 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +0100834 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200835 }
836
837 for (i = 0; i < groupid + 1; i++) {
Jens Axboe8879fd12009-04-20 10:06:02 +0200838 unsigned long max_run[2];
839
Jens Axboe3c39a372006-06-06 20:56:12 +0200840 rs = &runstats[i];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200841 max_run[0] = rs->max_run[0];
842 max_run[1] = rs->max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200843
844 if (rs->max_run[0])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200845 rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0];
Jens Axboe3c39a372006-06-06 20:56:12 +0200846 if (rs->max_run[1])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200847 rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200848 }
849
850 /*
851 * don't overwrite last signal output
852 */
Jens Axboec6ae0a52006-06-12 11:04:44 +0200853 if (!terse_output)
Jens Axboe4ceb30d2010-02-24 09:19:14 +0100854 log_info("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200855
Jens Axboe756867b2007-03-06 15:19:24 +0100856 for (i = 0; i < nr_ts; i++) {
857 ts = &threadstats[i];
858 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200859
Jens Axboec6ae0a52006-06-12 11:04:44 +0200860 if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +0100861 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200862 else
Jens Axboe756867b2007-03-06 15:19:24 +0100863 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200864 }
865
Jens Axboec6ae0a52006-06-12 11:04:44 +0200866 if (!terse_output) {
867 for (i = 0; i < groupid + 1; i++)
868 show_group_stats(&runstats[i], i);
Jens Axboe3c39a372006-06-06 20:56:12 +0200869
Jens Axboec6ae0a52006-06-12 11:04:44 +0200870 show_disk_util();
871 }
Jens Axboeeecf2722006-10-20 14:00:36 +0200872
873 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +0100874 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +0200875}
876
Jens Axboe68704082007-01-10 19:56:37 +0100877static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +0200878{
Jens Axboe68704082007-01-10 19:56:37 +0100879 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +0100880 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +0200881
Jens Axboe68704082007-01-10 19:56:37 +0100882 if (data > is->max_val)
883 is->max_val = data;
884 if (data < is->min_val)
885 is->min_val = data;
886
887 delta = val - is->mean;
Jens Axboeef11d732007-03-29 15:36:29 +0200888 if (delta) {
889 is->mean += delta / (is->samples + 1.0);
890 is->S += delta * (val - is->mean);
891 }
Jens Axboe68704082007-01-10 19:56:37 +0100892
Jens Axboe3c39a372006-06-06 20:56:12 +0200893 is->samples++;
894}
895
Jens Axboebb3884d2007-01-17 17:23:11 +1100896static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +0200897 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -0700898 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200899{
Jens Axboe306ddc92009-05-18 13:08:12 +0200900 const int nr_samples = iolog->nr_samples;
901
Jens Axboe3c39a372006-06-06 20:56:12 +0200902 if (iolog->nr_samples == iolog->max_samples) {
903 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
904
905 iolog->log = realloc(iolog->log, new_size);
906 iolog->max_samples <<= 1;
907 }
908
Jens Axboe306ddc92009-05-18 13:08:12 +0200909 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -0700910 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +0200911 iolog->log[nr_samples].ddir = ddir;
912 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +0200913 iolog->nr_samples++;
914}
915
Jens Axboebb3884d2007-01-17 17:23:11 +1100916static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +0200917 unsigned long val, enum fio_ddir ddir,
918 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100919{
Jens Axboeff58fce2010-08-25 12:02:08 +0200920 if (!ddir_rw(ddir))
921 return;
922
Jens Axboe306ddc92009-05-18 13:08:12 +0200923 __add_log_sample(iolog, val, ddir, bs, mtime_since_now(&td->epoch));
Jens Axboebb3884d2007-01-17 17:23:11 +1100924}
925
Jens Axboe306ddc92009-05-18 13:08:12 +0200926void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100927{
Jens Axboeff58fce2010-08-25 12:02:08 +0200928 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +1100929
Jens Axboeff58fce2010-08-25 12:02:08 +0200930 if (!ddir_rw(ddir))
931 return;
932
933 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +0200934 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +1100935}
936
Yu-ju Hong83349192011-08-13 00:53:44 +0200937static void add_clat_percentile_sample(struct thread_stat *ts,
938 unsigned long usec, enum fio_ddir ddir)
939{
940 unsigned int idx = plat_val_to_idx(usec);
941 assert(idx < FIO_IO_U_PLAT_NR);
942
943 ts->io_u_plat[ddir][idx]++;
944}
945
Jens Axboe1e97cce2006-12-05 11:44:16 +0100946void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +0200947 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200948{
Jens Axboe756867b2007-03-06 15:19:24 +0100949 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200950
Jens Axboeff58fce2010-08-25 12:02:08 +0200951 if (!ddir_rw(ddir))
952 return;
953
Jens Axboed85f5112007-06-18 09:41:23 +0200954 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +0100955
Jens Axboe7b9f7332011-10-03 10:06:44 +0200956 if (td->clat_log)
957 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +0200958
959 if (ts->clat_percentiles)
960 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200961}
962
Jens Axboe1e97cce2006-12-05 11:44:16 +0100963void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +0200964 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200965{
Jens Axboe756867b2007-03-06 15:19:24 +0100966 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200967
Jens Axboeff58fce2010-08-25 12:02:08 +0200968 if (!ddir_rw(ddir))
969 return;
970
Jens Axboed85f5112007-06-18 09:41:23 +0200971 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +0100972
Jens Axboe7b9f7332011-10-03 10:06:44 +0200973 if (td->slat_log)
974 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200975}
976
Jens Axboe02af0982010-06-24 09:59:34 +0200977void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
978 unsigned long usec, unsigned int bs)
979{
980 struct thread_stat *ts = &td->ts;
981
Jens Axboeff58fce2010-08-25 12:02:08 +0200982 if (!ddir_rw(ddir))
983 return;
984
Jens Axboe02af0982010-06-24 09:59:34 +0200985 add_stat_sample(&ts->lat_stat[ddir], usec);
986
Jens Axboe7b9f7332011-10-03 10:06:44 +0200987 if (td->lat_log)
988 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +0200989}
990
Jens Axboe306ddc92009-05-18 13:08:12 +0200991void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +0100992 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200993{
Jens Axboe756867b2007-03-06 15:19:24 +0100994 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +0200995 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +0200996
Jens Axboeff58fce2010-08-25 12:02:08 +0200997 if (!ddir_rw(ddir))
998 return;
999
Jens Axboef0505a12011-10-03 12:12:03 +02001000 spent = mtime_since(&td->stat_sample_time[ddir], t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001001 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001002 return;
1003
Jens Axboef0505a12011-10-03 12:12:03 +02001004 rate = (td->this_io_bytes[ddir] - td->stat_io_bytes[ddir]) *
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001005 1000 / spent / 1024;
Jens Axboe079ad092007-02-20 13:58:20 +01001006 add_stat_sample(&ts->bw_stat[ddir], rate);
Jens Axboe3c39a372006-06-06 20:56:12 +02001007
Jens Axboe7b9f7332011-10-03 10:06:44 +02001008 if (td->bw_log)
1009 add_log_sample(td, td->bw_log, rate, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001010
Jens Axboef0505a12011-10-03 12:12:03 +02001011 fio_gettime(&td->stat_sample_time[ddir], NULL);
1012 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
Jens Axboe3c39a372006-06-06 20:56:12 +02001013}