blob: a02c5829a494cf330a9394e731c0802b83b8b567 [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 Axboec7c6cb42011-10-13 14:12:40 +020012#include "lib/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
Jens Axboe1db92cb2011-10-13 13:43:36 +0200117static unsigned int calc_clat_percentiles(unsigned int *io_u_plat,
118 unsigned long nr, fio_fp64_t *plist,
119 unsigned int **output,
120 unsigned int *maxv,
121 unsigned int *minv)
Yu-ju Hong83349192011-08-13 00:53:44 +0200122{
123 unsigned long sum = 0;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200124 unsigned int len, i, j = 0;
125 unsigned int oval_len = 0;
126 unsigned int *ovals = NULL;
127 int is_last;
128
129 *minv = -1U;
130 *maxv = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200131
Jens Axboe802ad4a2011-10-05 09:51:58 +0200132 len = 0;
133 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
134 len++;
Jens Axboe716050f2011-08-16 08:43:45 +0200135
Jens Axboe351de8d2011-10-12 21:03:45 +0200136 if (!len)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200137 return 0;
Jens Axboe351de8d2011-10-12 21:03:45 +0200138
Jens Axboe716050f2011-08-16 08:43:45 +0200139 /*
Jens Axboe802ad4a2011-10-05 09:51:58 +0200140 * Sort the percentile list. Note that it may already be sorted if
141 * we are using the default values, but since it's a short list this
142 * isn't a worry. Also note that this does not work for NaN values.
Jens Axboe716050f2011-08-16 08:43:45 +0200143 */
Jens Axboe802ad4a2011-10-05 09:51:58 +0200144 if (len > 1)
145 qsort((void*)plist, len, sizeof(plist[0]), double_cmp);
Yu-ju Hong83349192011-08-13 00:53:44 +0200146
Jens Axboe4f6f8292011-10-13 09:28:21 +0200147 /*
148 * Calculate bucket values, note down max and min values
149 */
Jens Axboe07511a62011-10-13 12:00:24 +0200150 is_last = 0;
151 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200152 sum += io_u_plat[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200153 while (sum >= (plist[j].u.f / 100.0 * nr)) {
154 assert(plist[j].u.f <= 100.0);
Yu-ju Hong83349192011-08-13 00:53:44 +0200155
Jens Axboe4f6f8292011-10-13 09:28:21 +0200156 if (j == oval_len) {
157 oval_len += 100;
158 ovals = realloc(ovals, oval_len * sizeof(unsigned int));
159 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200160
Jens Axboe4f6f8292011-10-13 09:28:21 +0200161 ovals[j] = plat_idx_to_val(i);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200162 if (ovals[j] < *minv)
163 *minv = ovals[j];
164 if (ovals[j] > *maxv)
165 *maxv = ovals[j];
Jens Axboe07511a62011-10-13 12:00:24 +0200166
167 is_last = (j == len - 1);
168 if (is_last)
169 break;
170
Jens Axboe4f6f8292011-10-13 09:28:21 +0200171 j++;
Yu-ju Hong83349192011-08-13 00:53:44 +0200172 }
173 }
Jens Axboe4f6f8292011-10-13 09:28:21 +0200174
Jens Axboe1db92cb2011-10-13 13:43:36 +0200175 *output = ovals;
176 return len;
177}
178
179/*
180 * Find and display the p-th percentile of clat
181 */
182static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
183 fio_fp64_t *plist)
184{
185 unsigned int len, j = 0, minv, maxv;
186 unsigned int *ovals;
187 int is_last, scale_down;
188
189 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
190 if (!len)
191 goto out;
192
Jens Axboe4f6f8292011-10-13 09:28:21 +0200193 /*
194 * We default to usecs, but if the value range is such that we
195 * should scale down to msecs, do that.
196 */
197 if (minv > 2000 && maxv > 99999) {
198 scale_down = 1;
199 log_info(" clat percentiles (msec):\n |");
200 } else {
201 scale_down = 0;
202 log_info(" clat percentiles (usec):\n |");
203 }
204
205 for (j = 0; j < len; j++) {
206 char fbuf[8];
207
208 /* for formatting */
209 if (j != 0 && (j % 4) == 0)
210 log_info(" |");
211
212 /* end of the list */
213 is_last = (j == len - 1);
214
215 if (plist[j].u.f < 10.0)
216 sprintf(fbuf, " %2.2f", plist[j].u.f);
217 else
218 sprintf(fbuf, "%2.2f", plist[j].u.f);
219
220 if (scale_down)
221 ovals[j] = (ovals[j] + 999) / 1000;
222
223 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
224
225 if (is_last)
226 break;
227
228 if (j % 4 == 3) /* for formatting */
229 log_info("\n");
230 }
231
Jens Axboe1db92cb2011-10-13 13:43:36 +0200232out:
Jens Axboe4f6f8292011-10-13 09:28:21 +0200233 if (ovals)
234 free(ovals);
Yu-ju Hong83349192011-08-13 00:53:44 +0200235}
236
Jens Axboe3c39a372006-06-06 20:56:12 +0200237static int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
238 double *mean, double *dev)
239{
Jens Axboe68704082007-01-10 19:56:37 +0100240 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200241
242 if (is->samples == 0)
243 return 0;
244
245 *min = is->min_val;
246 *max = is->max_val;
247
248 n = (double) is->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200249 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200250
Jens Axboe68704082007-01-10 19:56:37 +0100251 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200252 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100253 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200254 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100255
Jens Axboe3c39a372006-06-06 20:56:12 +0200256 return 1;
257}
258
Jens Axboea64e88d2011-10-03 14:20:01 +0200259void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200260{
Jens Axboedbe11252007-02-11 00:19:51 +0100261 char *p1, *p2, *p3, *p4;
262 const char *ddir_str[] = { " READ", " WRITE" };
263 int i;
264
Jens Axboe7e1773b2011-10-14 12:47:56 +0200265 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200266
Jens Axboedbe11252007-02-11 00:19:51 +0100267 for (i = 0; i <= DDIR_WRITE; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200268 const int i2p = is_power_of_2(rs->kb_base);
269
Jens Axboedbe11252007-02-11 00:19:51 +0100270 if (!rs->max_run[i])
271 continue;
272
Jens Axboe90fef2d2009-07-17 22:33:32 +0200273 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p);
274 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p);
275 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p);
276 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p);
Jens Axboedbe11252007-02-11 00:19:51 +0100277
Jens Axboeb22989b2009-07-17 22:29:23 +0200278 log_info("%s: io=%sB, aggrb=%sB/s, minb=%sB/s, maxb=%sB/s,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100279 " mint=%llumsec, maxt=%llumsec\n", ddir_str[i], p1, p2,
280 p3, p4, rs->min_run[i],
281 rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100282
283 free(p1);
284 free(p2);
285 free(p3);
286 free(p4);
287 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200288}
289
Jens Axboeb3605062007-03-12 14:19:47 +0100290#define ts_total_io_u(ts) \
291 ((ts)->total_io_u[0] + (ts)->total_io_u[1])
292
Jens Axboe838bc702008-05-22 13:08:23 +0200293static void stat_calc_dist(unsigned int *map, unsigned long total,
294 double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100295{
296 int i;
297
298 /*
299 * Do depth distribution calculations
300 */
301 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200302 if (total) {
303 io_u_dist[i] = (double) map[i] / (double) total;
304 io_u_dist[i] *= 100.0;
305 if (io_u_dist[i] < 0.1 && map[i])
306 io_u_dist[i] = 0.1;
307 } else
308 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100309 }
310}
311
Jens Axboe04a0fea2007-06-19 12:48:41 +0200312static void stat_calc_lat(struct thread_stat *ts, double *dst,
313 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100314{
Jens Axboe838bc702008-05-22 13:08:23 +0200315 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100316 int i;
317
318 /*
319 * Do latency distribution calculations
320 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200321 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200322 if (total) {
323 dst[i] = (double) src[i] / (double) total;
324 dst[i] *= 100.0;
325 if (dst[i] < 0.01 && src[i])
326 dst[i] = 0.01;
327 } else
328 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100329 }
330}
331
Jens Axboe04a0fea2007-06-19 12:48:41 +0200332static void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
333{
334 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
335}
336
337static void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
338{
339 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
340}
341
Jens Axboeea2accc2007-06-19 09:48:44 +0200342static int usec_to_msec(unsigned long *min, unsigned long *max, double *mean,
343 double *dev)
344{
345 if (*min > 1000 && *max > 1000 && *mean > 1000.0 && *dev > 1000.0) {
346 *min /= 1000;
347 *max /= 1000;
348 *mean /= 1000.0;
349 *dev /= 1000.0;
350 return 0;
351 }
352
353 return 1;
354}
355
Jens Axboe756867b2007-03-06 15:19:24 +0100356static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200357 int ddir)
358{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100359 const char *ddir_str[] = { "read ", "write" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200360 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100361 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200362 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100363 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200364 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200365
Jens Axboeff58fce2010-08-25 12:02:08 +0200366 assert(ddir_rw(ddir));
367
Jens Axboe756867b2007-03-06 15:19:24 +0100368 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200369 return;
370
Jens Axboe90fef2d2009-07-17 22:33:32 +0200371 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200372 runt = ts->runtime[ddir];
373
374 bw = (1000 * ts->io_bytes[ddir]) / runt;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200375 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
376 bw_p = num2str(bw, 6, 1, i2p);
Jens Axboe8879fd12009-04-20 10:06:02 +0200377
Bruce Cran0aacc502011-07-09 08:19:53 +0200378 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100379 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100380
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100381 log_info(" %s: io=%sB, bw=%sB/s, iops=%s, runt=%6llumsec\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100382 ddir_str[ddir], io_p, bw_p, iops_p,
383 ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100384
385 free(io_p);
386 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100387 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200388
Jens Axboed85f5112007-06-18 09:41:23 +0200389 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev)) {
390 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200391 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200392
Jens Axboeea2accc2007-06-19 09:48:44 +0200393 if (!usec_to_msec(&min, &max, &mean, &dev))
Jens Axboed85f5112007-06-18 09:41:23 +0200394 base = "(msec)";
Jens Axboeea2accc2007-06-19 09:48:44 +0200395
Jens Axboed9309cb2007-08-16 13:07:46 +0200396 minp = num2str(min, 6, 1, 0);
397 maxp = num2str(max, 6, 1, 0);
398
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100399 log_info(" slat %s: min=%s, max=%s, avg=%5.02f,"
400 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200401
402 free(minp);
403 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200404 }
405 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev)) {
406 const char *base = "(usec)";
Jens Axboed9309cb2007-08-16 13:07:46 +0200407 char *minp, *maxp;
Jens Axboe3c39a372006-06-06 20:56:12 +0200408
Jens Axboeea2accc2007-06-19 09:48:44 +0200409 if (!usec_to_msec(&min, &max, &mean, &dev))
410 base = "(msec)";
411
Jens Axboed9309cb2007-08-16 13:07:46 +0200412 minp = num2str(min, 6, 1, 0);
413 maxp = num2str(max, 6, 1, 0);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100414
415 log_info(" clat %s: min=%s, max=%s, avg=%5.02f,"
416 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
Jens Axboed9309cb2007-08-16 13:07:46 +0200417
418 free(minp);
419 free(maxp);
Jens Axboed85f5112007-06-18 09:41:23 +0200420 }
Jens Axboe02af0982010-06-24 09:59:34 +0200421 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev)) {
422 const char *base = "(usec)";
423 char *minp, *maxp;
424
425 if (!usec_to_msec(&min, &max, &mean, &dev))
426 base = "(msec)";
427
428 minp = num2str(min, 6, 1, 0);
429 maxp = num2str(max, 6, 1, 0);
430
431 log_info(" lat %s: min=%s, max=%s, avg=%5.02f,"
432 " stdev=%5.02f\n", base, minp, maxp, mean, dev);
433
434 free(minp);
435 free(maxp);
436 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200437 if (ts->clat_percentiles) {
438 show_clat_percentiles(ts->io_u_plat[ddir],
439 ts->clat_stat[ddir].samples,
440 ts->percentile_list);
441 }
Jens Axboe079ad092007-02-20 13:58:20 +0100442 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100443 double p_of_agg = 100.0;
Jens Axboeb7017e32011-10-14 09:30:01 +0200444 const char *bw_str = "KB";
Jens Axboe3c39a372006-06-06 20:56:12 +0200445
Jens Axboe2f2c6922012-02-07 16:42:43 +0100446 if (rs->agg[ddir]) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100447 p_of_agg = mean * 100 / (double) rs->agg[ddir];
448 if (p_of_agg > 100.0)
449 p_of_agg = 100.0;
450 }
Jens Axboeb7017e32011-10-14 09:30:01 +0200451
452 if (mean > 999999.9) {
453 min /= 1000.0;
454 max /= 1000.0;
455 mean /= 1000.0;
456 dev /= 1000.0;
457 bw_str = "MB";
458 }
459
Jens Axboe7e1773b2011-10-14 12:47:56 +0200460 log_info(" bw (%s/s) : min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboeb7017e32011-10-14 09:30:01 +0200461 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
462 p_of_agg, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200463 }
464}
465
Jens Axboe7e1773b2011-10-14 12:47:56 +0200466static int show_lat(double *io_u_lat, int nr, const char **ranges,
467 const char *msg)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200468{
Jens Axboe7e1773b2011-10-14 12:47:56 +0200469 int new_line = 1, i, line = 0, shown = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200470
471 for (i = 0; i < nr; i++) {
472 if (io_u_lat[i] <= 0.0)
473 continue;
Jens Axboe7e1773b2011-10-14 12:47:56 +0200474 shown = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200475 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200476 if (line)
477 log_info("\n");
Jens Axboe7e1773b2011-10-14 12:47:56 +0200478 log_info(" lat (%s) : ", msg);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200479 new_line = 0;
480 line = 0;
481 }
482 if (line)
483 log_info(", ");
484 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
485 line++;
486 if (line == 5)
487 new_line = 1;
488 }
Jens Axboe7e1773b2011-10-14 12:47:56 +0200489
490 if (shown)
491 log_info("\n");
492
493 return shown;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200494}
495
496static void show_lat_u(double *io_u_lat_u)
497{
498 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
499 "250=", "500=", "750=", "1000=", };
500
501 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
502}
503
504static void show_lat_m(double *io_u_lat_m)
505{
506 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
507 "250=", "500=", "750=", "1000=", "2000=",
508 ">=2000=", };
509
510 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
511}
512
513static void show_latencies(double *io_u_lat_u, double *io_u_lat_m)
514{
515 show_lat_u(io_u_lat_u);
516 show_lat_m(io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200517}
518
Jens Axboea64e88d2011-10-03 14:20:01 +0200519void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200520{
521 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100522 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100523 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200524 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
525 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200526
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200527 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
528 !(ts->total_io_u[0] + ts->total_io_u[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200529 return;
530
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100531 if (!ts->error) {
532 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n",
533 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200534 ts->error, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100535 } else {
536 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n",
537 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200538 ts->error, ts->verror, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100539 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200540
Jens Axboe259e47d2011-10-13 21:05:59 +0200541 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100542 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100543
Jens Axboe756867b2007-03-06 15:19:24 +0100544 if (ts->io_bytes[DDIR_READ])
545 show_ddir_status(rs, ts, DDIR_READ);
546 if (ts->io_bytes[DDIR_WRITE])
547 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200548
Jens Axboe7e1773b2011-10-14 12:47:56 +0200549 stat_calc_lat_u(ts, io_u_lat_u);
550 stat_calc_lat_m(ts, io_u_lat_m);
551 show_latencies(io_u_lat_u, io_u_lat_m);
552
Jens Axboe756867b2007-03-06 15:19:24 +0100553 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100554 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100555 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200556
Jens Axboe756867b2007-03-06 15:19:24 +0100557 usr_cpu = (double) ts->usr_time * 100 / runt;
558 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200559 } else {
560 usr_cpu = 0;
561 sys_cpu = 0;
562 }
563
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100564 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
565 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100566
Jens Axboe838bc702008-05-22 13:08:23 +0200567 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100568 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
569 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
570 io_u_dist[1], io_u_dist[2],
571 io_u_dist[3], io_u_dist[4],
572 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200573
574 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
575 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
576 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
577 io_u_dist[1], io_u_dist[2],
578 io_u_dist[3], io_u_dist[4],
579 io_u_dist[5], io_u_dist[6]);
580 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
581 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
582 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
583 io_u_dist[1], io_u_dist[2],
584 io_u_dist[3], io_u_dist[4],
585 io_u_dist[5], io_u_dist[6]);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200586 log_info(" issued : total=r=%lu/w=%lu/d=%lu,"
587 " short=r=%lu/w=%lu/d=%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100588 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200589 ts->total_io_u[2],
590 ts->short_io_u[0], ts->short_io_u[1],
591 ts->short_io_u[2]);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200592 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200593 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
594 ts->total_err_count,
595 ts->first_error,
596 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200597 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200598}
599
Jens Axboe756867b2007-03-06 15:19:24 +0100600static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200601 struct group_run_stats *rs, int ddir)
602{
603 unsigned long min, max;
Jens Axboe312b4af2011-10-13 13:11:42 +0200604 unsigned long long bw, iops;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200605 unsigned int *ovals = NULL;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200606 double mean, dev;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200607 unsigned int len, minv, maxv;
608 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200609
Jens Axboeff58fce2010-08-25 12:02:08 +0200610 assert(ddir_rw(ddir));
611
Jens Axboe312b4af2011-10-13 13:11:42 +0200612 iops = bw = 0;
613 if (ts->runtime[ddir]) {
614 uint64_t runt = ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200615
Jens Axboe312b4af2011-10-13 13:11:42 +0200616 bw = ts->io_bytes[ddir] / runt;
617 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
618 }
619
620 log_info(";%llu;%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw, iops,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100621 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200622
Jens Axboe079ad092007-02-20 13:58:20 +0100623 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100624 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200625 else
Jens Axboe6d861442007-03-15 09:22:23 +0100626 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200627
Jens Axboe079ad092007-02-20 13:58:20 +0100628 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100629 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200630 else
Jens Axboe6d861442007-03-15 09:22:23 +0100631 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200632
Jens Axboe1db92cb2011-10-13 13:43:36 +0200633 if (ts->clat_percentiles) {
634 len = calc_clat_percentiles(ts->io_u_plat[ddir],
635 ts->clat_stat[ddir].samples,
636 ts->percentile_list, &ovals, &maxv,
637 &minv);
638 } else
639 len = 0;
640
641 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
642 if (i >= len) {
643 log_info(";0%%=0");
644 continue;
645 }
646 log_info(";%2.2f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
647 }
Keplar kramer2341a372011-10-19 21:31:27 +0200648
649 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
650 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
651 else
652 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
653
Jens Axboe1db92cb2011-10-13 13:43:36 +0200654 if (ovals)
655 free(ovals);
656
Jens Axboe079ad092007-02-20 13:58:20 +0100657 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100658 double p_of_agg = 100.0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200659
Jens Axboe19d3e962012-02-07 12:27:28 +0100660 if (rs->agg[ddir]) {
661 p_of_agg = mean * 100 / (double) rs->agg[ddir];
662 if (p_of_agg > 100.0)
663 p_of_agg = 100.0;
664 }
665
Jens Axboe6d861442007-03-15 09:22:23 +0100666 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200667 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100668 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200669}
670
Jens Axboe4d658652011-10-17 15:05:47 +0200671static void show_thread_status_terse_v2(struct thread_stat *ts,
672 struct group_run_stats *rs)
673{
674 double io_u_dist[FIO_IO_U_MAP_NR];
675 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
676 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
677 double usr_cpu, sys_cpu;
678 int i;
679
680 /* General Info */
681 log_info("2;%s;%d;%d", ts->name, ts->groupid, ts->error);
682 /* Log Read Status */
683 show_ddir_status_terse(ts, rs, 0);
684 /* Log Write Status */
685 show_ddir_status_terse(ts, rs, 1);
686
687 /* CPU Usage */
688 if (ts->total_run_time) {
689 double runt = (double) ts->total_run_time;
690
691 usr_cpu = (double) ts->usr_time * 100 / runt;
692 sys_cpu = (double) ts->sys_time * 100 / runt;
693 } else {
694 usr_cpu = 0;
695 sys_cpu = 0;
696 }
697
698 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
699 ts->minf);
700
701 /* Calc % distribution of IO depths, usecond, msecond latency */
702 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
703 stat_calc_lat_u(ts, io_u_lat_u);
704 stat_calc_lat_m(ts, io_u_lat_m);
705
706 /* Only show fixed 7 I/O depth levels*/
707 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
708 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
709 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
710
711 /* Microsecond latency */
712 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
713 log_info(";%3.2f%%", io_u_lat_u[i]);
714 /* Millisecond latency */
715 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
716 log_info(";%3.2f%%", io_u_lat_m[i]);
717 /* Additional output if continue_on_error set - default off*/
718 if (ts->continue_on_error)
719 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
720 log_info("\n");
721
722 /* Additional output if description is set */
723 if (ts->description)
724 log_info(";%s", ts->description);
725
726 log_info("\n");
727}
728
Jens Axboe312b4af2011-10-13 13:11:42 +0200729#define FIO_TERSE_VERSION "3"
Jens Axboec6ae0a52006-06-12 11:04:44 +0200730
Jens Axboe4d658652011-10-17 15:05:47 +0200731static void show_thread_status_terse_v3(struct thread_stat *ts,
732 struct group_run_stats *rs)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200733{
Jens Axboe22708902007-03-06 17:05:32 +0100734 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200735 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
736 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200737 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200738 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200739
David Nellans562c2d22010-09-23 08:38:17 +0200740 /* General Info */
Jens Axboe5e726d02011-10-14 08:08:10 +0200741 log_info("%s;%s;%s;%d;%d", FIO_TERSE_VERSION, fio_version_string,
742 ts->name, ts->groupid, ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200743 /* Log Read Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100744 show_ddir_status_terse(ts, rs, 0);
David Nellans562c2d22010-09-23 08:38:17 +0200745 /* Log Write Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100746 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200747
David Nellans562c2d22010-09-23 08:38:17 +0200748 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100749 if (ts->total_run_time) {
750 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200751
Jens Axboe756867b2007-03-06 15:19:24 +0100752 usr_cpu = (double) ts->usr_time * 100 / runt;
753 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200754 } else {
755 usr_cpu = 0;
756 sys_cpu = 0;
757 }
758
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100759 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
760 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100761
David Nellans562c2d22010-09-23 08:38:17 +0200762 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200763 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200764 stat_calc_lat_u(ts, io_u_lat_u);
765 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100766
David Nellans562c2d22010-09-23 08:38:17 +0200767 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100768 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
769 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
770 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100771
David Nellans562c2d22010-09-23 08:38:17 +0200772 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200773 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
774 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200775 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200776 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
777 log_info(";%3.2f%%", io_u_lat_m[i]);
Jens Axboef2f788d2011-10-13 14:03:52 +0200778
779 /* disk util stats, if any */
780 show_disk_util(1);
781
David Nellans562c2d22010-09-23 08:38:17 +0200782 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200783 if (ts->continue_on_error)
784 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200785 log_info("\n");
Jens Axboe22708902007-03-06 17:05:32 +0100786
David Nellans562c2d22010-09-23 08:38:17 +0200787 /* Additional output if description is set */
Jens Axboe4b0f2252011-10-13 15:03:25 +0200788 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100789 log_info(";%s", ts->description);
Jens Axboe756867b2007-03-06 15:19:24 +0100790}
791
Jens Axboe4d658652011-10-17 15:05:47 +0200792static void show_thread_status_terse(struct thread_stat *ts,
793 struct group_run_stats *rs)
794{
795 if (terse_version == 2)
796 show_thread_status_terse_v2(ts, rs);
797 else if (terse_version == 3)
798 show_thread_status_terse_v3(ts, rs);
799 else
800 log_err("fio: bad terse version!? %d\n", terse_version);
801}
802
Jens Axboe197574e2007-03-08 15:35:11 +0100803static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100804{
805 double mean, S;
806
Zheng Liue09231c2011-09-16 08:20:12 +0200807 if (src->samples == 0)
808 return;
809
Jens Axboe756867b2007-03-06 15:19:24 +0100810 dst->min_val = min(dst->min_val, src->min_val);
811 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +0100812
813 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200814 * Compute new mean and S after the merge
815 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
816 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +0100817 */
818 if (nr == 1) {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200819 mean = src->mean.u.f;
820 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +0100821 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200822 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200823
Jens Axboe802ad4a2011-10-05 09:51:58 +0200824 mean = ((src->mean.u.f * src->samples) +
825 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200826 (dst->samples + src->samples);
827
Jens Axboe802ad4a2011-10-05 09:51:58 +0200828 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200829 (dst->samples * src->samples) /
830 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +0100831 }
832
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200833 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200834 dst->mean.u.f = mean;
835 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +0100836}
837
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200838void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
839{
840 int i;
841
842 for (i = 0; i < 2; i++) {
843 if (dst->max_run[i] < src->max_run[i])
844 dst->max_run[i] = src->max_run[i];
845 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
846 dst->min_run[i] = src->min_run[i];
847 if (dst->max_bw[i] < src->max_bw[i])
848 dst->max_bw[i] = src->max_bw[i];
849 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
850 dst->min_bw[i] = src->min_bw[i];
851
852 dst->io_kb[i] += src->io_kb[i];
853 dst->agg[i] += src->agg[i];
854 }
855
856}
857
Jens Axboe5b9babb2011-10-10 12:14:30 +0200858void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
859{
860 int l, k;
861
862 for (l = 0; l <= DDIR_WRITE; l++) {
863 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
864 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
865 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
866 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
867
868 dst->io_bytes[l] += src->io_bytes[l];
869
870 if (dst->runtime[l] < src->runtime[l])
871 dst->runtime[l] = src->runtime[l];
872 }
873
874 dst->usr_time += src->usr_time;
875 dst->sys_time += src->sys_time;
876 dst->ctx += src->ctx;
877 dst->majf += src->majf;
878 dst->minf += src->minf;
879
880 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
881 dst->io_u_map[k] += src->io_u_map[k];
882 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
883 dst->io_u_submit[k] += src->io_u_submit[k];
884 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
885 dst->io_u_complete[k] += src->io_u_complete[k];
886 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
887 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
888 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
889 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
890
891 for (k = 0; k <= 2; k++) {
892 dst->total_io_u[k] += src->total_io_u[k];
893 dst->short_io_u[k] += src->short_io_u[k];
894 }
895
896 for (k = 0; k <= DDIR_WRITE; k++) {
897 int m;
898 for (m = 0; m < FIO_IO_U_PLAT_NR; m++)
899 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
900 }
901
902 dst->total_run_time += src->total_run_time;
903 dst->total_submit += src->total_submit;
904 dst->total_complete += src->total_complete;
905}
906
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200907void init_group_run_stat(struct group_run_stats *gs)
908{
909 memset(gs, 0, sizeof(*gs));
910 gs->min_bw[0] = gs->min_run[0] = ~0UL;
911 gs->min_bw[1] = gs->min_run[1] = ~0UL;
912}
913
914void init_thread_stat(struct thread_stat *ts)
915{
916 int j;
917
918 memset(ts, 0, sizeof(*ts));
919
920 for (j = 0; j <= DDIR_WRITE; j++) {
921 ts->lat_stat[j].min_val = -1UL;
922 ts->clat_stat[j].min_val = -1UL;
923 ts->slat_stat[j].min_val = -1UL;
924 ts->bw_stat[j].min_val = -1UL;
925 }
926 ts->groupid = -1;
927}
928
Jens Axboe3c39a372006-06-06 20:56:12 +0200929void show_run_stats(void)
930{
931 struct group_run_stats *runstats, *rs;
932 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100933 struct thread_stat *threadstats, *ts;
Jens Axboe5b9babb2011-10-10 12:14:30 +0200934 int i, j, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200935 int kb_base_warned = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200936
937 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
938
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200939 for (i = 0; i < groupid + 1; i++)
940 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +0200941
Jens Axboe756867b2007-03-06 15:19:24 +0100942 /*
943 * find out how many threads stats we need. if group reporting isn't
944 * enabled, it's one-per-td.
945 */
946 nr_ts = 0;
947 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200948 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100949 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +0100950 nr_ts++;
951 continue;
952 }
953 if (last_ts == td->groupid)
954 continue;
955
956 last_ts = td->groupid;
957 nr_ts++;
958 }
959
960 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
961
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200962 for (i = 0; i < nr_ts; i++)
963 init_thread_stat(&threadstats[i]);
Jens Axboe756867b2007-03-06 15:19:24 +0100964
965 j = 0;
966 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100967 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100968 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100969 if (idx && (!td->o.group_reporting ||
970 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +0100971 idx = 0;
972 j++;
973 }
974
975 last_ts = td->groupid;
976
Jens Axboe756867b2007-03-06 15:19:24 +0100977 ts = &threadstats[j];
978
Yu-ju Hong83349192011-08-13 00:53:44 +0200979 ts->clat_percentiles = td->o.clat_percentiles;
980 if (td->o.overwrite_plist)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200981 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200982 else
Jens Axboe802ad4a2011-10-05 09:51:58 +0200983 memcpy(ts->percentile_list, def_percentile_list, sizeof(def_percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200984
Jens Axboe197574e2007-03-08 15:35:11 +0100985 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100986 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100987
Jens Axboe7abd0e32007-03-12 15:24:43 +0100988 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100989 /*
990 * These are per-group shared already
991 */
Jens Axboef6bb5b82011-10-03 12:21:25 +0200992 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +0200993 if (td->o.description)
994 strncpy(ts->description, td->o.description,
995 FIO_JOBNAME_SIZE);
996 else
997 memset(ts->description, 0, FIO_JOBNAME_SIZE);
998
Jens Axboe756867b2007-03-06 15:19:24 +0100999 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001000
1001 /*
1002 * first pid in group, not very useful...
1003 */
Jens Axboe756867b2007-03-06 15:19:24 +01001004 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +02001005
1006 ts->kb_base = td->o.kb_base;
1007 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
1008 log_info("fio: kb_base differs for jobs in group, using"
1009 " %u as the base\n", ts->kb_base);
1010 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +01001011 }
1012
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001013 ts->continue_on_error = td->o.continue_on_error;
1014 ts->total_err_count += td->total_err_count;
1015 ts->first_error = td->first_error;
1016 if (!ts->error) {
1017 if (!td->error && td->o.continue_on_error &&
1018 td->first_error) {
1019 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001020 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001021 } else if (td->error) {
1022 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +02001023 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001024 }
Jens Axboe756867b2007-03-06 15:19:24 +01001025 }
1026
Jens Axboe5b9babb2011-10-10 12:14:30 +02001027 sum_thread_stats(ts, &td->ts, idx);
Jens Axboe756867b2007-03-06 15:19:24 +01001028 }
1029
1030 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001031 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001032
Jens Axboe756867b2007-03-06 15:19:24 +01001033 ts = &threadstats[i];
1034 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001035 rs->kb_base = ts->kb_base;
Jens Axboe3c39a372006-06-06 20:56:12 +02001036
Jens Axboede64df02007-03-08 19:09:49 +01001037 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001038 if (!ts->runtime[j])
1039 continue;
1040 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1041 rs->min_run[j] = ts->runtime[j];
1042 if (ts->runtime[j] > rs->max_run[j])
1043 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +02001044
Jens Axboe94370ac2007-03-08 15:28:10 +01001045 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +02001046 if (ts->runtime[j]) {
1047 unsigned long runt;
1048
Jens Axboe90fef2d2009-07-17 22:33:32 +02001049 runt = ts->runtime[j];
Jens Axboe8879fd12009-04-20 10:06:02 +02001050 bw = ts->io_bytes[j] / runt;
1051 }
Jens Axboe94370ac2007-03-08 15:28:10 +01001052 if (bw < rs->min_bw[j])
1053 rs->min_bw[j] = bw;
1054 if (bw > rs->max_bw[j])
1055 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001056
Jens Axboe90fef2d2009-07-17 22:33:32 +02001057 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +01001058 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001059 }
1060
1061 for (i = 0; i < groupid + 1; i++) {
Jens Axboe8879fd12009-04-20 10:06:02 +02001062 unsigned long max_run[2];
1063
Jens Axboe3c39a372006-06-06 20:56:12 +02001064 rs = &runstats[i];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001065 max_run[0] = rs->max_run[0];
1066 max_run[1] = rs->max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +02001067
1068 if (rs->max_run[0])
Jens Axboe4cf1abc2010-06-25 14:33:37 +02001069 rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0];
Jens Axboe3c39a372006-06-06 20:56:12 +02001070 if (rs->max_run[1])
Jens Axboe4cf1abc2010-06-25 14:33:37 +02001071 rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +02001072 }
1073
1074 /*
1075 * don't overwrite last signal output
1076 */
Jens Axboec6ae0a52006-06-12 11:04:44 +02001077 if (!terse_output)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001078 log_info("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +02001079
Jens Axboe756867b2007-03-06 15:19:24 +01001080 for (i = 0; i < nr_ts; i++) {
1081 ts = &threadstats[i];
1082 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +02001083
Jens Axboea64e88d2011-10-03 14:20:01 +02001084 if (is_backend)
1085 fio_server_send_ts(ts, rs);
1086 else if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +01001087 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001088 else
Jens Axboe756867b2007-03-06 15:19:24 +01001089 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001090 }
1091
Jens Axboe72c27ff2011-10-16 11:50:31 +02001092 for (i = 0; i < groupid + 1; i++) {
1093 rs = &runstats[i];
Jens Axboea64e88d2011-10-03 14:20:01 +02001094
Jens Axboe72c27ff2011-10-16 11:50:31 +02001095 rs->groupid = i;
Jens Axboed09a64a2011-10-13 11:38:56 +02001096 if (is_backend)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001097 fio_server_send_gs(rs);
1098 else if (!terse_output)
1099 show_group_stats(rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001100 }
Jens Axboeeecf2722006-10-20 14:00:36 +02001101
Jens Axboe72c27ff2011-10-16 11:50:31 +02001102 if (is_backend)
1103 fio_server_send_du();
1104 else if (!terse_output)
1105 show_disk_util(0);
1106
1107 free_disk_util();
1108
Jens Axboeeecf2722006-10-20 14:00:36 +02001109 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +01001110 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +02001111}
1112
Jens Axboe68704082007-01-10 19:56:37 +01001113static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +02001114{
Jens Axboe68704082007-01-10 19:56:37 +01001115 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +01001116 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001117
Jens Axboe68704082007-01-10 19:56:37 +01001118 if (data > is->max_val)
1119 is->max_val = data;
1120 if (data < is->min_val)
1121 is->min_val = data;
1122
Jens Axboe802ad4a2011-10-05 09:51:58 +02001123 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +02001124 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001125 is->mean.u.f += delta / (is->samples + 1.0);
1126 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +02001127 }
Jens Axboe68704082007-01-10 19:56:37 +01001128
Jens Axboe3c39a372006-06-06 20:56:12 +02001129 is->samples++;
1130}
1131
Jens Axboebb3884d2007-01-17 17:23:11 +11001132static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +02001133 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -07001134 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001135{
Jens Axboe306ddc92009-05-18 13:08:12 +02001136 const int nr_samples = iolog->nr_samples;
1137
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001138 if (!iolog->nr_samples)
1139 iolog->avg_last = t;
1140
Jens Axboe3c39a372006-06-06 20:56:12 +02001141 if (iolog->nr_samples == iolog->max_samples) {
1142 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
1143
1144 iolog->log = realloc(iolog->log, new_size);
1145 iolog->max_samples <<= 1;
1146 }
1147
Jens Axboe306ddc92009-05-18 13:08:12 +02001148 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -07001149 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +02001150 iolog->log[nr_samples].ddir = ddir;
1151 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +02001152 iolog->nr_samples++;
1153}
1154
Jens Axboe7fb28d32011-12-01 15:17:24 +01001155static inline void reset_io_stat(struct io_stat *ios)
1156{
1157 ios->max_val = ios->min_val = ios->samples = 0;
1158 ios->mean.u.f = ios->S.u.f = 0;
1159}
1160
Jens Axboebb3884d2007-01-17 17:23:11 +11001161static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +02001162 unsigned long val, enum fio_ddir ddir,
1163 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001164{
Jens Axboe7fb28d32011-12-01 15:17:24 +01001165 unsigned long elapsed, this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001166
Jens Axboeff58fce2010-08-25 12:02:08 +02001167 if (!ddir_rw(ddir))
1168 return;
1169
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001170 elapsed = mtime_since_now(&td->epoch);
1171
1172 /*
1173 * If no time averaging, just add the log sample.
1174 */
1175 if (!iolog->avg_msec) {
1176 __add_log_sample(iolog, val, ddir, bs, elapsed);
1177 return;
1178 }
1179
1180 /*
1181 * Add the sample. If the time period has passed, then
1182 * add that entry to the log and clear.
1183 */
1184 add_stat_sample(&iolog->avg_window[ddir], val);
1185
Jens Axboe7fb28d32011-12-01 15:17:24 +01001186 /*
1187 * If period hasn't passed, adding the above sample is all we
1188 * need to do.
1189 */
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001190 this_window = elapsed - iolog->avg_last;
1191 if (this_window < iolog->avg_msec)
1192 return;
1193
Jens Axboe7fb28d32011-12-01 15:17:24 +01001194 /*
1195 * Note an entry in the log. Use the mean from the logged samples,
1196 * making sure to properly round up. Only write a log entry if we
1197 * had actual samples done.
1198 */
1199 if (iolog->avg_window[DDIR_READ].samples) {
1200 unsigned long mr;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001201
Jens Axboe7fb28d32011-12-01 15:17:24 +01001202 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001203 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed);
Jens Axboe7fb28d32011-12-01 15:17:24 +01001204 }
1205 if (iolog->avg_window[DDIR_WRITE].samples) {
1206 unsigned long mw;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001207
Jens Axboe7fb28d32011-12-01 15:17:24 +01001208 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
1209 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed);
1210 }
1211
1212 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1213 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001214 iolog->avg_last = elapsed;
Jens Axboebb3884d2007-01-17 17:23:11 +11001215}
1216
Jens Axboe306ddc92009-05-18 13:08:12 +02001217void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001218{
Jens Axboeff58fce2010-08-25 12:02:08 +02001219 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +11001220
Jens Axboeff58fce2010-08-25 12:02:08 +02001221 if (!ddir_rw(ddir))
1222 return;
1223
1224 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +02001225 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +11001226}
1227
Yu-ju Hong83349192011-08-13 00:53:44 +02001228static void add_clat_percentile_sample(struct thread_stat *ts,
1229 unsigned long usec, enum fio_ddir ddir)
1230{
1231 unsigned int idx = plat_val_to_idx(usec);
1232 assert(idx < FIO_IO_U_PLAT_NR);
1233
1234 ts->io_u_plat[ddir][idx]++;
1235}
1236
Jens Axboe1e97cce2006-12-05 11:44:16 +01001237void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001238 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001239{
Jens Axboe756867b2007-03-06 15:19:24 +01001240 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001241
Jens Axboeff58fce2010-08-25 12:02:08 +02001242 if (!ddir_rw(ddir))
1243 return;
1244
Jens Axboed85f5112007-06-18 09:41:23 +02001245 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001246
Jens Axboe7b9f7332011-10-03 10:06:44 +02001247 if (td->clat_log)
1248 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +02001249
1250 if (ts->clat_percentiles)
1251 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +02001252}
1253
Jens Axboe1e97cce2006-12-05 11:44:16 +01001254void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001255 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001256{
Jens Axboe756867b2007-03-06 15:19:24 +01001257 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001258
Jens Axboeff58fce2010-08-25 12:02:08 +02001259 if (!ddir_rw(ddir))
1260 return;
1261
Jens Axboed85f5112007-06-18 09:41:23 +02001262 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001263
Jens Axboe7b9f7332011-10-03 10:06:44 +02001264 if (td->slat_log)
1265 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001266}
1267
Jens Axboe02af0982010-06-24 09:59:34 +02001268void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
1269 unsigned long usec, unsigned int bs)
1270{
1271 struct thread_stat *ts = &td->ts;
1272
Jens Axboeff58fce2010-08-25 12:02:08 +02001273 if (!ddir_rw(ddir))
1274 return;
1275
Jens Axboe02af0982010-06-24 09:59:34 +02001276 add_stat_sample(&ts->lat_stat[ddir], usec);
1277
Jens Axboe7b9f7332011-10-03 10:06:44 +02001278 if (td->lat_log)
1279 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001280}
1281
Jens Axboe306ddc92009-05-18 13:08:12 +02001282void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001283 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001284{
Jens Axboe756867b2007-03-06 15:19:24 +01001285 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001286 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001287
Jens Axboeff58fce2010-08-25 12:02:08 +02001288 if (!ddir_rw(ddir))
1289 return;
1290
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001291 spent = mtime_since(&td->bw_sample_time, t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001292 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001293 return;
Jens Axboe9602d8d2012-02-20 20:19:28 +01001294
1295 /*
Josh Carter5daa4eb2012-02-20 10:12:22 +01001296 * Compute both read and write rates for the interval.
1297 */
1298 for (ddir = DDIR_READ; ddir <= DDIR_WRITE; ddir++) {
1299 uint64_t delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001300
Josh Carter5daa4eb2012-02-20 10:12:22 +01001301 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
1302 if (!delta)
1303 continue; /* No entries for interval */
Jens Axboe3c39a372006-06-06 20:56:12 +02001304
Josh Carter5daa4eb2012-02-20 10:12:22 +01001305 rate = delta * 1000 / spent / 1024;
1306 add_stat_sample(&ts->bw_stat[ddir], rate);
1307
1308 if (td->bw_log)
1309 add_log_sample(td, td->bw_log, rate, ddir, bs);
1310
1311 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
1312 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001313
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001314 fio_gettime(&td->bw_sample_time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +02001315}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001316
1317void add_iops_sample(struct thread_data *td, enum fio_ddir ddir,
1318 struct timeval *t)
1319{
1320 struct thread_stat *ts = &td->ts;
1321 unsigned long spent, iops;
1322
1323 if (!ddir_rw(ddir))
1324 return;
1325
1326 spent = mtime_since(&td->iops_sample_time, t);
1327 if (spent < td->o.iops_avg_time)
1328 return;
1329
Jens Axboe9602d8d2012-02-20 20:19:28 +01001330 /*
1331 * Compute both read and write rates for the interval.
1332 */
1333 for (ddir = DDIR_READ; ddir <= DDIR_WRITE; ddir++) {
1334 uint64_t delta;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001335
Jens Axboe9602d8d2012-02-20 20:19:28 +01001336 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
1337 if (!delta)
1338 continue; /* No entries for interval */
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001339
Jens Axboe9602d8d2012-02-20 20:19:28 +01001340 iops = (delta * 1000) / spent;
1341 add_stat_sample(&ts->iops_stat[ddir], iops);
1342
1343 if (td->iops_log)
1344 add_log_sample(td, td->iops_log, iops, ddir, 0);
1345
1346 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
1347 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001348
1349 fio_gettime(&td->iops_sample_time, NULL);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001350}