blob: bcf8fa83ff5f97a73f8b6ee10161e387688a8140 [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
Jens Axboea64e88d2011-10-03 14:20:01 +0200194void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200195{
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 Axboea64e88d2011-10-03 14:20:01 +0200200 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
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 Axboea64e88d2011-10-03 14:20:01 +0200436void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200437{
438 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100439 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100440 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200441 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
442 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200443
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200444 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
445 !(ts->total_io_u[0] + ts->total_io_u[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200446 return;
447
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100448 if (!ts->error) {
449 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n",
450 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200451 ts->error, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100452 } else {
453 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n",
454 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200455 ts->error, ts->verror, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100456 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200457
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100458 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100459 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100460
Jens Axboe756867b2007-03-06 15:19:24 +0100461 if (ts->io_bytes[DDIR_READ])
462 show_ddir_status(rs, ts, DDIR_READ);
463 if (ts->io_bytes[DDIR_WRITE])
464 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200465
Jens Axboe756867b2007-03-06 15:19:24 +0100466 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100467 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100468 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200469
Jens Axboe756867b2007-03-06 15:19:24 +0100470 usr_cpu = (double) ts->usr_time * 100 / runt;
471 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200472 } else {
473 usr_cpu = 0;
474 sys_cpu = 0;
475 }
476
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100477 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
478 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100479
Jens Axboe838bc702008-05-22 13:08:23 +0200480 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100481 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
482 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
483 io_u_dist[1], io_u_dist[2],
484 io_u_dist[3], io_u_dist[4],
485 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200486
487 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
488 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
489 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
490 io_u_dist[1], io_u_dist[2],
491 io_u_dist[3], io_u_dist[4],
492 io_u_dist[5], io_u_dist[6]);
493 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
494 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
495 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
496 io_u_dist[1], io_u_dist[2],
497 io_u_dist[3], io_u_dist[4],
498 io_u_dist[5], io_u_dist[6]);
Jens Axboe0d29de82010-09-01 13:54:15 +0200499 log_info(" issued r/w/d: total=%lu/%lu/%lu, short=%lu/%lu/%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100500 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200501 ts->total_io_u[2],
502 ts->short_io_u[0], ts->short_io_u[1],
503 ts->short_io_u[2]);
Jens Axboe838bc702008-05-22 13:08:23 +0200504 stat_calc_lat_u(ts, io_u_lat_u);
505 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200506 show_latencies(io_u_lat_u, io_u_lat_m);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200507 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200508 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
509 ts->total_err_count,
510 ts->first_error,
511 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200512 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200513}
514
Jens Axboe756867b2007-03-06 15:19:24 +0100515static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200516 struct group_run_stats *rs, int ddir)
517{
518 unsigned long min, max;
519 unsigned long long bw;
520 double mean, dev;
521
Jens Axboeff58fce2010-08-25 12:02:08 +0200522 assert(ddir_rw(ddir));
523
Jens Axboec6ae0a52006-06-12 11:04:44 +0200524 bw = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100525 if (ts->runtime[ddir])
526 bw = ts->io_bytes[ddir] / ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200527
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100528 log_info(";%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100529 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200530
Jens Axboe079ad092007-02-20 13:58:20 +0100531 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100532 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200533 else
Jens Axboe6d861442007-03-15 09:22:23 +0100534 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200535
Jens Axboe079ad092007-02-20 13:58:20 +0100536 if (calc_lat(&ts->clat_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 Axboe02af0982010-06-24 09:59:34 +0200541 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
542 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
543 else
544 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
545
Jens Axboe079ad092007-02-20 13:58:20 +0100546 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboec6ae0a52006-06-12 11:04:44 +0200547 double p_of_agg;
548
549 p_of_agg = mean * 100 / (double) rs->agg[ddir];
Jens Axboe6d861442007-03-15 09:22:23 +0100550 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200551 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100552 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200553}
554
Jens Axboe525c2bf2010-06-30 15:22:21 +0200555#define FIO_TERSE_VERSION "2"
Jens Axboec6ae0a52006-06-12 11:04:44 +0200556
Jens Axboe756867b2007-03-06 15:19:24 +0100557static void show_thread_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200558 struct group_run_stats *rs)
559{
Jens Axboe22708902007-03-06 17:05:32 +0100560 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200561 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
562 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200563 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200564 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200565
David Nellans562c2d22010-09-23 08:38:17 +0200566 /* General Info */
Jens Axboe525c2bf2010-06-30 15:22:21 +0200567 log_info("%s;%s;%d;%d", FIO_TERSE_VERSION, ts->name, ts->groupid,
568 ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200569 /* Log Read Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100570 show_ddir_status_terse(ts, rs, 0);
David Nellans562c2d22010-09-23 08:38:17 +0200571 /* Log Write Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100572 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200573
David Nellans562c2d22010-09-23 08:38:17 +0200574 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100575 if (ts->total_run_time) {
576 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200577
Jens Axboe756867b2007-03-06 15:19:24 +0100578 usr_cpu = (double) ts->usr_time * 100 / runt;
579 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200580 } else {
581 usr_cpu = 0;
582 sys_cpu = 0;
583 }
584
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100585 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
586 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100587
David Nellans562c2d22010-09-23 08:38:17 +0200588 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200589 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200590 stat_calc_lat_u(ts, io_u_lat_u);
591 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100592
David Nellans562c2d22010-09-23 08:38:17 +0200593 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100594 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
595 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
596 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100597
David Nellans562c2d22010-09-23 08:38:17 +0200598 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200599 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
600 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200601 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200602 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
603 log_info(";%3.2f%%", io_u_lat_m[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200604 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200605 if (ts->continue_on_error)
606 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200607 log_info("\n");
Jens Axboe22708902007-03-06 17:05:32 +0100608
David Nellans562c2d22010-09-23 08:38:17 +0200609 /* Additional output if description is set */
Jens Axboe22708902007-03-06 17:05:32 +0100610 if (ts->description)
Jens Axboe6d861442007-03-15 09:22:23 +0100611 log_info(";%s", ts->description);
Jens Axboe22708902007-03-06 17:05:32 +0100612
Jens Axboe6d861442007-03-15 09:22:23 +0100613 log_info("\n");
Jens Axboe756867b2007-03-06 15:19:24 +0100614}
615
Jens Axboe197574e2007-03-08 15:35:11 +0100616static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100617{
618 double mean, S;
619
Zheng Liue09231c2011-09-16 08:20:12 +0200620 if (src->samples == 0)
621 return;
622
Jens Axboe756867b2007-03-06 15:19:24 +0100623 dst->min_val = min(dst->min_val, src->min_val);
624 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +0100625
626 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200627 * Compute new mean and S after the merge
628 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
629 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +0100630 */
631 if (nr == 1) {
632 mean = src->mean;
633 S = src->S;
634 } else {
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200635 double delta = src->mean - dst->mean;
636
637 mean = ((src->mean * src->samples) +
638 (dst->mean * dst->samples)) /
639 (dst->samples + src->samples);
640
641 S = src->S + dst->S + pow(delta, 2.0) *
642 (dst->samples * src->samples) /
643 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +0100644 }
645
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200646 dst->samples += src->samples;
Jens Axboe756867b2007-03-06 15:19:24 +0100647 dst->mean = mean;
648 dst->S = S;
649}
650
Jens Axboe3c39a372006-06-06 20:56:12 +0200651void show_run_stats(void)
652{
653 struct group_run_stats *runstats, *rs;
654 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100655 struct thread_stat *threadstats, *ts;
Jens Axboe197574e2007-03-08 15:35:11 +0100656 int i, j, k, l, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200657 int kb_base_warned = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200658
659 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
660
661 for (i = 0; i < groupid + 1; i++) {
662 rs = &runstats[i];
663
664 memset(rs, 0, sizeof(*rs));
665 rs->min_bw[0] = rs->min_run[0] = ~0UL;
666 rs->min_bw[1] = rs->min_run[1] = ~0UL;
667 }
668
Jens Axboe756867b2007-03-06 15:19:24 +0100669 /*
670 * find out how many threads stats we need. if group reporting isn't
671 * enabled, it's one-per-td.
672 */
673 nr_ts = 0;
674 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200675 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100676 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +0100677 nr_ts++;
678 continue;
679 }
680 if (last_ts == td->groupid)
681 continue;
682
683 last_ts = td->groupid;
684 nr_ts++;
685 }
686
687 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
688
689 for (i = 0; i < nr_ts; i++) {
690 ts = &threadstats[i];
691
692 memset(ts, 0, sizeof(*ts));
Jens Axboede64df02007-03-08 19:09:49 +0100693 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe02af0982010-06-24 09:59:34 +0200694 ts->lat_stat[j].min_val = -1UL;
Jens Axboe197574e2007-03-08 15:35:11 +0100695 ts->clat_stat[j].min_val = -1UL;
696 ts->slat_stat[j].min_val = -1UL;
697 ts->bw_stat[j].min_val = -1UL;
698 }
Jens Axboe7abd0e32007-03-12 15:24:43 +0100699 ts->groupid = -1;
Jens Axboe756867b2007-03-06 15:19:24 +0100700 }
701
702 j = 0;
703 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100704 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100705 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100706 if (idx && (!td->o.group_reporting ||
707 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +0100708 idx = 0;
709 j++;
710 }
711
712 last_ts = td->groupid;
713
Jens Axboe756867b2007-03-06 15:19:24 +0100714 ts = &threadstats[j];
715
Yu-ju Hong83349192011-08-13 00:53:44 +0200716 ts->clat_percentiles = td->o.clat_percentiles;
717 if (td->o.overwrite_plist)
718 ts->percentile_list = td->o.percentile_list;
719 else
720 ts->percentile_list = NULL;
721
Jens Axboe197574e2007-03-08 15:35:11 +0100722 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100723 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100724
Jens Axboe7abd0e32007-03-12 15:24:43 +0100725 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100726 /*
727 * These are per-group shared already
728 */
Jens Axboef6bb5b82011-10-03 12:21:25 +0200729 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +0200730 if (td->o.description)
731 strncpy(ts->description, td->o.description,
732 FIO_JOBNAME_SIZE);
733 else
734 memset(ts->description, 0, FIO_JOBNAME_SIZE);
735
Jens Axboe756867b2007-03-06 15:19:24 +0100736 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100737
738 /*
739 * first pid in group, not very useful...
740 */
Jens Axboe756867b2007-03-06 15:19:24 +0100741 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200742
743 ts->kb_base = td->o.kb_base;
744 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
745 log_info("fio: kb_base differs for jobs in group, using"
746 " %u as the base\n", ts->kb_base);
747 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100748 }
749
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200750 ts->continue_on_error = td->o.continue_on_error;
751 ts->total_err_count += td->total_err_count;
752 ts->first_error = td->first_error;
753 if (!ts->error) {
754 if (!td->error && td->o.continue_on_error &&
755 td->first_error) {
756 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200757 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200758 } else if (td->error) {
759 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200760 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200761 }
Jens Axboe756867b2007-03-06 15:19:24 +0100762 }
763
Jens Axboede64df02007-03-08 19:09:49 +0100764 for (l = 0; l <= DDIR_WRITE; l++) {
Jens Axboe197574e2007-03-08 15:35:11 +0100765 sum_stat(&ts->clat_stat[l], &td->ts.clat_stat[l], idx);
766 sum_stat(&ts->slat_stat[l], &td->ts.slat_stat[l], idx);
Jens Axboe02af0982010-06-24 09:59:34 +0200767 sum_stat(&ts->lat_stat[l], &td->ts.lat_stat[l], idx);
Jens Axboe197574e2007-03-08 15:35:11 +0100768 sum_stat(&ts->bw_stat[l], &td->ts.bw_stat[l], idx);
Jens Axboe756867b2007-03-06 15:19:24 +0100769
Jens Axboe197574e2007-03-08 15:35:11 +0100770 ts->io_bytes[l] += td->ts.io_bytes[l];
771
772 if (ts->runtime[l] < td->ts.runtime[l])
773 ts->runtime[l] = td->ts.runtime[l];
774 }
Jens Axboe756867b2007-03-06 15:19:24 +0100775
776 ts->usr_time += td->ts.usr_time;
777 ts->sys_time += td->ts.sys_time;
778 ts->ctx += td->ts.ctx;
Jens Axboee7823a92007-09-07 20:33:33 +0200779 ts->majf += td->ts.majf;
780 ts->minf += td->ts.minf;
Jens Axboe756867b2007-03-06 15:19:24 +0100781
782 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
783 ts->io_u_map[k] += td->ts.io_u_map[k];
Jens Axboe838bc702008-05-22 13:08:23 +0200784 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
785 ts->io_u_submit[k] += td->ts.io_u_submit[k];
786 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
787 ts->io_u_complete[k] += td->ts.io_u_complete[k];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200788 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
789 ts->io_u_lat_u[k] += td->ts.io_u_lat_u[k];
790 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
791 ts->io_u_lat_m[k] += td->ts.io_u_lat_m[k];
792
Jens Axboe756867b2007-03-06 15:19:24 +0100793
Jens Axboe0d29de82010-09-01 13:54:15 +0200794 for (k = 0; k <= 2; k++) {
Jens Axboeb3605062007-03-12 14:19:47 +0100795 ts->total_io_u[k] += td->ts.total_io_u[k];
Jens Axboe30061b92007-04-17 13:31:34 +0200796 ts->short_io_u[k] += td->ts.short_io_u[k];
Eric Gouriou0a7d7f92011-08-16 08:35:43 +0200797 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200798
Eric Gouriou0a7d7f92011-08-16 08:35:43 +0200799 for (k = 0; k <= DDIR_WRITE; k++) {
800 int m;
Yu-ju Hong83349192011-08-13 00:53:44 +0200801 for (m = 0; m < FIO_IO_U_PLAT_NR; m++)
802 ts->io_u_plat[k][m] += td->ts.io_u_plat[k][m];
Jens Axboe30061b92007-04-17 13:31:34 +0200803 }
Jens Axboe756867b2007-03-06 15:19:24 +0100804
805 ts->total_run_time += td->ts.total_run_time;
Jens Axboe838bc702008-05-22 13:08:23 +0200806 ts->total_submit += td->ts.total_submit;
807 ts->total_complete += td->ts.total_complete;
Jens Axboe756867b2007-03-06 15:19:24 +0100808 }
809
810 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100811 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200812
Jens Axboe756867b2007-03-06 15:19:24 +0100813 ts = &threadstats[i];
814 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200815 rs->kb_base = ts->kb_base;
Jens Axboe3c39a372006-06-06 20:56:12 +0200816
Jens Axboede64df02007-03-08 19:09:49 +0100817 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100818 if (!ts->runtime[j])
819 continue;
820 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
821 rs->min_run[j] = ts->runtime[j];
822 if (ts->runtime[j] > rs->max_run[j])
823 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +0200824
Jens Axboe94370ac2007-03-08 15:28:10 +0100825 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +0200826 if (ts->runtime[j]) {
827 unsigned long runt;
828
Jens Axboe90fef2d2009-07-17 22:33:32 +0200829 runt = ts->runtime[j];
Jens Axboe8879fd12009-04-20 10:06:02 +0200830 bw = ts->io_bytes[j] / runt;
831 }
Jens Axboe94370ac2007-03-08 15:28:10 +0100832 if (bw < rs->min_bw[j])
833 rs->min_bw[j] = bw;
834 if (bw > rs->max_bw[j])
835 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200836
Jens Axboe90fef2d2009-07-17 22:33:32 +0200837 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +0100838 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200839 }
840
841 for (i = 0; i < groupid + 1; i++) {
Jens Axboe8879fd12009-04-20 10:06:02 +0200842 unsigned long max_run[2];
843
Jens Axboe3c39a372006-06-06 20:56:12 +0200844 rs = &runstats[i];
Jens Axboe90fef2d2009-07-17 22:33:32 +0200845 max_run[0] = rs->max_run[0];
846 max_run[1] = rs->max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200847
848 if (rs->max_run[0])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200849 rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0];
Jens Axboe3c39a372006-06-06 20:56:12 +0200850 if (rs->max_run[1])
Jens Axboe4cf1abc2010-06-25 14:33:37 +0200851 rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +0200852 }
853
854 /*
855 * don't overwrite last signal output
856 */
Jens Axboec6ae0a52006-06-12 11:04:44 +0200857 if (!terse_output)
Jens Axboe4ceb30d2010-02-24 09:19:14 +0100858 log_info("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +0200859
Jens Axboe756867b2007-03-06 15:19:24 +0100860 for (i = 0; i < nr_ts; i++) {
861 ts = &threadstats[i];
862 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +0200863
Jens Axboea64e88d2011-10-03 14:20:01 +0200864 if (is_backend)
865 fio_server_send_ts(ts, rs);
866 else if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +0100867 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200868 else
Jens Axboe756867b2007-03-06 15:19:24 +0100869 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200870 }
871
Jens Axboec6ae0a52006-06-12 11:04:44 +0200872 if (!terse_output) {
Jens Axboea64e88d2011-10-03 14:20:01 +0200873 for (i = 0; i < groupid + 1; i++) {
874 rs = &runstats[i];
875
876 rs->groupid = i;
877 if (is_backend)
878 fio_server_send_gs(rs);
879 else
880 show_group_stats(rs);
881 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200882
Jens Axboec6ae0a52006-06-12 11:04:44 +0200883 show_disk_util();
884 }
Jens Axboeeecf2722006-10-20 14:00:36 +0200885
886 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +0100887 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +0200888}
889
Jens Axboe68704082007-01-10 19:56:37 +0100890static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +0200891{
Jens Axboe68704082007-01-10 19:56:37 +0100892 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +0100893 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +0200894
Jens Axboe68704082007-01-10 19:56:37 +0100895 if (data > is->max_val)
896 is->max_val = data;
897 if (data < is->min_val)
898 is->min_val = data;
899
900 delta = val - is->mean;
Jens Axboeef11d732007-03-29 15:36:29 +0200901 if (delta) {
902 is->mean += delta / (is->samples + 1.0);
903 is->S += delta * (val - is->mean);
904 }
Jens Axboe68704082007-01-10 19:56:37 +0100905
Jens Axboe3c39a372006-06-06 20:56:12 +0200906 is->samples++;
907}
908
Jens Axboebb3884d2007-01-17 17:23:11 +1100909static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +0200910 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -0700911 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +0200912{
Jens Axboe306ddc92009-05-18 13:08:12 +0200913 const int nr_samples = iolog->nr_samples;
914
Jens Axboe3c39a372006-06-06 20:56:12 +0200915 if (iolog->nr_samples == iolog->max_samples) {
916 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
917
918 iolog->log = realloc(iolog->log, new_size);
919 iolog->max_samples <<= 1;
920 }
921
Jens Axboe306ddc92009-05-18 13:08:12 +0200922 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -0700923 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +0200924 iolog->log[nr_samples].ddir = ddir;
925 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +0200926 iolog->nr_samples++;
927}
928
Jens Axboebb3884d2007-01-17 17:23:11 +1100929static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +0200930 unsigned long val, enum fio_ddir ddir,
931 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100932{
Jens Axboeff58fce2010-08-25 12:02:08 +0200933 if (!ddir_rw(ddir))
934 return;
935
Jens Axboe306ddc92009-05-18 13:08:12 +0200936 __add_log_sample(iolog, val, ddir, bs, mtime_since_now(&td->epoch));
Jens Axboebb3884d2007-01-17 17:23:11 +1100937}
938
Jens Axboe306ddc92009-05-18 13:08:12 +0200939void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +1100940{
Jens Axboeff58fce2010-08-25 12:02:08 +0200941 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +1100942
Jens Axboeff58fce2010-08-25 12:02:08 +0200943 if (!ddir_rw(ddir))
944 return;
945
946 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +0200947 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +1100948}
949
Yu-ju Hong83349192011-08-13 00:53:44 +0200950static void add_clat_percentile_sample(struct thread_stat *ts,
951 unsigned long usec, enum fio_ddir ddir)
952{
953 unsigned int idx = plat_val_to_idx(usec);
954 assert(idx < FIO_IO_U_PLAT_NR);
955
956 ts->io_u_plat[ddir][idx]++;
957}
958
Jens Axboe1e97cce2006-12-05 11:44:16 +0100959void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +0200960 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200961{
Jens Axboe756867b2007-03-06 15:19:24 +0100962 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200963
Jens Axboeff58fce2010-08-25 12:02:08 +0200964 if (!ddir_rw(ddir))
965 return;
966
Jens Axboed85f5112007-06-18 09:41:23 +0200967 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +0100968
Jens Axboe7b9f7332011-10-03 10:06:44 +0200969 if (td->clat_log)
970 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +0200971
972 if (ts->clat_percentiles)
973 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +0200974}
975
Jens Axboe1e97cce2006-12-05 11:44:16 +0100976void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +0200977 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200978{
Jens Axboe756867b2007-03-06 15:19:24 +0100979 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +0200980
Jens Axboeff58fce2010-08-25 12:02:08 +0200981 if (!ddir_rw(ddir))
982 return;
983
Jens Axboed85f5112007-06-18 09:41:23 +0200984 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +0100985
Jens Axboe7b9f7332011-10-03 10:06:44 +0200986 if (td->slat_log)
987 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +0200988}
989
Jens Axboe02af0982010-06-24 09:59:34 +0200990void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
991 unsigned long usec, unsigned int bs)
992{
993 struct thread_stat *ts = &td->ts;
994
Jens Axboeff58fce2010-08-25 12:02:08 +0200995 if (!ddir_rw(ddir))
996 return;
997
Jens Axboe02af0982010-06-24 09:59:34 +0200998 add_stat_sample(&ts->lat_stat[ddir], usec);
999
Jens Axboe7b9f7332011-10-03 10:06:44 +02001000 if (td->lat_log)
1001 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001002}
1003
Jens Axboe306ddc92009-05-18 13:08:12 +02001004void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001005 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001006{
Jens Axboe756867b2007-03-06 15:19:24 +01001007 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001008 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001009
Jens Axboeff58fce2010-08-25 12:02:08 +02001010 if (!ddir_rw(ddir))
1011 return;
1012
Jens Axboef0505a12011-10-03 12:12:03 +02001013 spent = mtime_since(&td->stat_sample_time[ddir], t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001014 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001015 return;
1016
Jens Axboef0505a12011-10-03 12:12:03 +02001017 rate = (td->this_io_bytes[ddir] - td->stat_io_bytes[ddir]) *
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001018 1000 / spent / 1024;
Jens Axboe079ad092007-02-20 13:58:20 +01001019 add_stat_sample(&ts->bw_stat[ddir], rate);
Jens Axboe3c39a372006-06-06 20:56:12 +02001020
Jens Axboe7b9f7332011-10-03 10:06:44 +02001021 if (td->bw_log)
1022 add_log_sample(td, td->bw_log, rate, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001023
Jens Axboef0505a12011-10-03 12:12:03 +02001024 fio_gettime(&td->stat_sample_time[ddir], NULL);
1025 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
Jens Axboe3c39a372006-06-06 20:56:12 +02001026}