blob: 37127839712bed07c6521cfe1b9a3039f54072a6 [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
Jens Axboe3c3ed072012-03-27 09:12:39 +020066 * index for the buckets in the group
Jens Axboe716050f2011-08-16 08:43:45 +020067 */
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) */
Jens Axboe3c3ed072012-03-27 09:12:39 +020071 idx = (base + offset) < (FIO_IO_U_PLAT_NR - 1) ?
Yu-ju Hong83349192011-08-13 00:53:44 +020072 (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 */
Jens Axboe3c3ed072012-03-27 09:12:39 +020089 if (idx < (FIO_IO_U_PLAT_VAL << 1))
Yu-ju Hong83349192011-08-13 00:53:44 +020090 return idx;
91
92 /* Find the group and compute the minimum value of that group */
Jens Axboe3c3ed072012-03-27 09:12:39 +020093 error_bits = (idx >> FIO_IO_U_PLAT_BITS) - 1;
Yu-ju Hong83349192011-08-13 00:53:44 +020094 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 Axboea2697902012-03-05 16:43:49 +0100117unsigned int calc_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
118 fio_fp64_t *plist, unsigned int **output,
119 unsigned int *maxv, unsigned int *minv)
Yu-ju Hong83349192011-08-13 00:53:44 +0200120{
121 unsigned long sum = 0;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200122 unsigned int len, i, j = 0;
123 unsigned int oval_len = 0;
124 unsigned int *ovals = NULL;
125 int is_last;
126
127 *minv = -1U;
128 *maxv = 0;
Yu-ju Hong83349192011-08-13 00:53:44 +0200129
Jens Axboe802ad4a2011-10-05 09:51:58 +0200130 len = 0;
131 while (len < FIO_IO_U_LIST_MAX_LEN && plist[len].u.f != 0.0)
132 len++;
Jens Axboe716050f2011-08-16 08:43:45 +0200133
Jens Axboe351de8d2011-10-12 21:03:45 +0200134 if (!len)
Jens Axboe1db92cb2011-10-13 13:43:36 +0200135 return 0;
Jens Axboe351de8d2011-10-12 21:03:45 +0200136
Jens Axboe716050f2011-08-16 08:43:45 +0200137 /*
Jens Axboe802ad4a2011-10-05 09:51:58 +0200138 * Sort the percentile list. Note that it may already be sorted if
139 * we are using the default values, but since it's a short list this
140 * isn't a worry. Also note that this does not work for NaN values.
Jens Axboe716050f2011-08-16 08:43:45 +0200141 */
Jens Axboe802ad4a2011-10-05 09:51:58 +0200142 if (len > 1)
Jens Axboe3c3ed072012-03-27 09:12:39 +0200143 qsort((void *)plist, len, sizeof(plist[0]), double_cmp);
Yu-ju Hong83349192011-08-13 00:53:44 +0200144
Jens Axboe4f6f8292011-10-13 09:28:21 +0200145 /*
146 * Calculate bucket values, note down max and min values
147 */
Jens Axboe07511a62011-10-13 12:00:24 +0200148 is_last = 0;
149 for (i = 0; i < FIO_IO_U_PLAT_NR && !is_last; i++) {
Yu-ju Hong83349192011-08-13 00:53:44 +0200150 sum += io_u_plat[i];
Jens Axboe802ad4a2011-10-05 09:51:58 +0200151 while (sum >= (plist[j].u.f / 100.0 * nr)) {
152 assert(plist[j].u.f <= 100.0);
Yu-ju Hong83349192011-08-13 00:53:44 +0200153
Jens Axboe4f6f8292011-10-13 09:28:21 +0200154 if (j == oval_len) {
155 oval_len += 100;
156 ovals = realloc(ovals, oval_len * sizeof(unsigned int));
157 }
Yu-ju Hong83349192011-08-13 00:53:44 +0200158
Jens Axboe4f6f8292011-10-13 09:28:21 +0200159 ovals[j] = plat_idx_to_val(i);
Jens Axboe1db92cb2011-10-13 13:43:36 +0200160 if (ovals[j] < *minv)
161 *minv = ovals[j];
162 if (ovals[j] > *maxv)
163 *maxv = ovals[j];
Jens Axboe07511a62011-10-13 12:00:24 +0200164
165 is_last = (j == len - 1);
166 if (is_last)
167 break;
168
Jens Axboe4f6f8292011-10-13 09:28:21 +0200169 j++;
Yu-ju Hong83349192011-08-13 00:53:44 +0200170 }
171 }
Jens Axboe4f6f8292011-10-13 09:28:21 +0200172
Jens Axboe1db92cb2011-10-13 13:43:36 +0200173 *output = ovals;
174 return len;
175}
176
177/*
178 * Find and display the p-th percentile of clat
179 */
180static void show_clat_percentiles(unsigned int *io_u_plat, unsigned long nr,
181 fio_fp64_t *plist)
182{
183 unsigned int len, j = 0, minv, maxv;
184 unsigned int *ovals;
185 int is_last, scale_down;
186
187 len = calc_clat_percentiles(io_u_plat, nr, plist, &ovals, &maxv, &minv);
188 if (!len)
189 goto out;
190
Jens Axboe4f6f8292011-10-13 09:28:21 +0200191 /*
192 * We default to usecs, but if the value range is such that we
193 * should scale down to msecs, do that.
194 */
195 if (minv > 2000 && maxv > 99999) {
196 scale_down = 1;
197 log_info(" clat percentiles (msec):\n |");
198 } else {
199 scale_down = 0;
200 log_info(" clat percentiles (usec):\n |");
201 }
202
203 for (j = 0; j < len; j++) {
204 char fbuf[8];
205
206 /* for formatting */
207 if (j != 0 && (j % 4) == 0)
208 log_info(" |");
209
210 /* end of the list */
211 is_last = (j == len - 1);
212
213 if (plist[j].u.f < 10.0)
214 sprintf(fbuf, " %2.2f", plist[j].u.f);
215 else
216 sprintf(fbuf, "%2.2f", plist[j].u.f);
217
218 if (scale_down)
219 ovals[j] = (ovals[j] + 999) / 1000;
220
221 log_info(" %sth=[%5u]%c", fbuf, ovals[j], is_last ? '\n' : ',');
222
223 if (is_last)
224 break;
225
226 if (j % 4 == 3) /* for formatting */
227 log_info("\n");
228 }
229
Jens Axboe1db92cb2011-10-13 13:43:36 +0200230out:
Jens Axboe4f6f8292011-10-13 09:28:21 +0200231 if (ovals)
232 free(ovals);
Yu-ju Hong83349192011-08-13 00:53:44 +0200233}
234
Jens Axboeb29ad562012-03-05 13:08:51 +0100235int calc_lat(struct io_stat *is, unsigned long *min, unsigned long *max,
236 double *mean, double *dev)
Jens Axboe3c39a372006-06-06 20:56:12 +0200237{
Jens Axboe68704082007-01-10 19:56:37 +0100238 double n = is->samples;
Jens Axboe3c39a372006-06-06 20:56:12 +0200239
240 if (is->samples == 0)
241 return 0;
242
243 *min = is->min_val;
244 *max = is->max_val;
245
246 n = (double) is->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200247 *mean = is->mean.u.f;
Jens Axboe3c39a372006-06-06 20:56:12 +0200248
Jens Axboe68704082007-01-10 19:56:37 +0100249 if (n > 1.0)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200250 *dev = sqrt(is->S.u.f / (n - 1.0));
Jens Axboeef9c5c42007-01-03 14:21:13 +0100251 else
Jens Axboe4b43f542007-07-19 21:38:35 +0200252 *dev = 0;
Jens Axboeef9c5c42007-01-03 14:21:13 +0100253
Jens Axboe3c39a372006-06-06 20:56:12 +0200254 return 1;
255}
256
Jens Axboea64e88d2011-10-03 14:20:01 +0200257void show_group_stats(struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200258{
Jens Axboedbe11252007-02-11 00:19:51 +0100259 char *p1, *p2, *p3, *p4;
260 const char *ddir_str[] = { " READ", " WRITE" };
261 int i;
262
Jens Axboe7e1773b2011-10-14 12:47:56 +0200263 log_info("\nRun status group %d (all jobs):\n", rs->groupid);
Jens Axboe3c39a372006-06-06 20:56:12 +0200264
Jens Axboedbe11252007-02-11 00:19:51 +0100265 for (i = 0; i <= DDIR_WRITE; i++) {
Jens Axboe90fef2d2009-07-17 22:33:32 +0200266 const int i2p = is_power_of_2(rs->kb_base);
267
Jens Axboedbe11252007-02-11 00:19:51 +0100268 if (!rs->max_run[i])
269 continue;
270
Jens Axboe90fef2d2009-07-17 22:33:32 +0200271 p1 = num2str(rs->io_kb[i], 6, rs->kb_base, i2p);
272 p2 = num2str(rs->agg[i], 6, rs->kb_base, i2p);
273 p3 = num2str(rs->min_bw[i], 6, rs->kb_base, i2p);
274 p4 = num2str(rs->max_bw[i], 6, rs->kb_base, i2p);
Jens Axboedbe11252007-02-11 00:19:51 +0100275
Jens Axboeb22989b2009-07-17 22:29:23 +0200276 log_info("%s: io=%sB, aggrb=%sB/s, minb=%sB/s, maxb=%sB/s,"
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100277 " mint=%llumsec, maxt=%llumsec\n", ddir_str[i], p1, p2,
278 p3, p4, rs->min_run[i],
279 rs->max_run[i]);
Jens Axboedbe11252007-02-11 00:19:51 +0100280
281 free(p1);
282 free(p2);
283 free(p3);
284 free(p4);
285 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200286}
287
Jens Axboe2e331012012-03-05 22:07:54 +0100288void stat_calc_dist(unsigned int *map, unsigned long total, double *io_u_dist)
Jens Axboe22708902007-03-06 17:05:32 +0100289{
290 int i;
291
292 /*
293 * Do depth distribution calculations
294 */
295 for (i = 0; i < FIO_IO_U_MAP_NR; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200296 if (total) {
297 io_u_dist[i] = (double) map[i] / (double) total;
298 io_u_dist[i] *= 100.0;
299 if (io_u_dist[i] < 0.1 && map[i])
300 io_u_dist[i] = 0.1;
301 } else
302 io_u_dist[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100303 }
304}
305
Jens Axboe04a0fea2007-06-19 12:48:41 +0200306static void stat_calc_lat(struct thread_stat *ts, double *dst,
307 unsigned int *src, int nr)
Jens Axboe22708902007-03-06 17:05:32 +0100308{
Jens Axboe838bc702008-05-22 13:08:23 +0200309 unsigned long total = ts_total_io_u(ts);
Jens Axboe22708902007-03-06 17:05:32 +0100310 int i;
311
312 /*
313 * Do latency distribution calculations
314 */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200315 for (i = 0; i < nr; i++) {
Jens Axboe838bc702008-05-22 13:08:23 +0200316 if (total) {
317 dst[i] = (double) src[i] / (double) total;
318 dst[i] *= 100.0;
319 if (dst[i] < 0.01 && src[i])
320 dst[i] = 0.01;
321 } else
322 dst[i] = 0.0;
Jens Axboe22708902007-03-06 17:05:32 +0100323 }
324}
325
Jens Axboee5bd1342012-03-05 21:38:12 +0100326void stat_calc_lat_u(struct thread_stat *ts, double *io_u_lat)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200327{
328 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_u, FIO_IO_U_LAT_U_NR);
329}
330
Jens Axboee5bd1342012-03-05 21:38:12 +0100331void stat_calc_lat_m(struct thread_stat *ts, double *io_u_lat)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200332{
333 stat_calc_lat(ts, io_u_lat, ts->io_u_lat_m, FIO_IO_U_LAT_M_NR);
334}
335
Jens Axboeb29ad562012-03-05 13:08:51 +0100336static void display_lat(const char *name, unsigned long min, unsigned long max,
337 double mean, double dev)
Jens Axboeea2accc2007-06-19 09:48:44 +0200338{
Jens Axboeb29ad562012-03-05 13:08:51 +0100339 const char *base = "(usec)";
340 char *minp, *maxp;
Jens Axboeea2accc2007-06-19 09:48:44 +0200341
Jens Axboeb29ad562012-03-05 13:08:51 +0100342 if (!usec_to_msec(&min, &max, &mean, &dev))
343 base = "(msec)";
344
345 minp = num2str(min, 6, 1, 0);
346 maxp = num2str(max, 6, 1, 0);
347
348 log_info(" %s %s: min=%s, max=%s, avg=%5.02f,"
349 " stdev=%5.02f\n", name, base, minp, maxp, mean, dev);
350
351 free(minp);
352 free(maxp);
Jens Axboeea2accc2007-06-19 09:48:44 +0200353}
354
Jens Axboe756867b2007-03-06 15:19:24 +0100355static void show_ddir_status(struct group_run_stats *rs, struct thread_stat *ts,
Jens Axboe3c39a372006-06-06 20:56:12 +0200356 int ddir)
357{
Jens Axboe3c9b60c2006-11-07 08:36:14 +0100358 const char *ddir_str[] = { "read ", "write" };
Jens Axboe8879fd12009-04-20 10:06:02 +0200359 unsigned long min, max, runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100360 unsigned long long bw, iops;
Jens Axboe3c39a372006-06-06 20:56:12 +0200361 double mean, dev;
Jens Axboeb3605062007-03-12 14:19:47 +0100362 char *io_p, *bw_p, *iops_p;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200363 int i2p;
Jens Axboe3c39a372006-06-06 20:56:12 +0200364
Jens Axboeff58fce2010-08-25 12:02:08 +0200365 assert(ddir_rw(ddir));
366
Jens Axboe756867b2007-03-06 15:19:24 +0100367 if (!ts->runtime[ddir])
Jens Axboe3c39a372006-06-06 20:56:12 +0200368 return;
369
Jens Axboe90fef2d2009-07-17 22:33:32 +0200370 i2p = is_power_of_2(rs->kb_base);
Jens Axboe8879fd12009-04-20 10:06:02 +0200371 runt = ts->runtime[ddir];
372
373 bw = (1000 * ts->io_bytes[ddir]) / runt;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200374 io_p = num2str(ts->io_bytes[ddir], 6, 1, i2p);
375 bw_p = num2str(bw, 6, 1, i2p);
Jens Axboe8879fd12009-04-20 10:06:02 +0200376
Bruce Cran0aacc502011-07-09 08:19:53 +0200377 iops = (1000 * (uint64_t)ts->total_io_u[ddir]) / runt;
Jens Axboeb3605062007-03-12 14:19:47 +0100378 iops_p = num2str(iops, 6, 1, 0);
Jens Axboedbe11252007-02-11 00:19:51 +0100379
Signed-off-by Steven Prattcda99fa2010-12-14 08:31:36 +0100380 log_info(" %s: io=%sB, bw=%sB/s, iops=%s, runt=%6llumsec\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100381 ddir_str[ddir], io_p, bw_p, iops_p,
382 ts->runtime[ddir]);
Jens Axboedbe11252007-02-11 00:19:51 +0100383
384 free(io_p);
385 free(bw_p);
Jens Axboeb3605062007-03-12 14:19:47 +0100386 free(iops_p);
Jens Axboe3c39a372006-06-06 20:56:12 +0200387
Jens Axboeb29ad562012-03-05 13:08:51 +0100388 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
389 display_lat("slat", min, max, mean, dev);
390 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
391 display_lat("clat", min, max, mean, dev);
392 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
393 display_lat(" lat", min, max, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200394
Yu-ju Hong83349192011-08-13 00:53:44 +0200395 if (ts->clat_percentiles) {
396 show_clat_percentiles(ts->io_u_plat[ddir],
397 ts->clat_stat[ddir].samples,
398 ts->percentile_list);
399 }
Jens Axboe079ad092007-02-20 13:58:20 +0100400 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100401 double p_of_agg = 100.0;
Jens Axboeb7017e32011-10-14 09:30:01 +0200402 const char *bw_str = "KB";
Jens Axboe3c39a372006-06-06 20:56:12 +0200403
Jens Axboe2f2c6922012-02-07 16:42:43 +0100404 if (rs->agg[ddir]) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100405 p_of_agg = mean * 100 / (double) rs->agg[ddir];
406 if (p_of_agg > 100.0)
407 p_of_agg = 100.0;
408 }
Jens Axboeb7017e32011-10-14 09:30:01 +0200409
410 if (mean > 999999.9) {
411 min /= 1000.0;
412 max /= 1000.0;
413 mean /= 1000.0;
414 dev /= 1000.0;
415 bw_str = "MB";
416 }
417
Jens Axboe7e1773b2011-10-14 12:47:56 +0200418 log_info(" bw (%s/s) : min=%5lu, max=%5lu, per=%3.2f%%,"
Jens Axboeb7017e32011-10-14 09:30:01 +0200419 " avg=%5.02f, stdev=%5.02f\n", bw_str, min, max,
420 p_of_agg, mean, dev);
Jens Axboe3c39a372006-06-06 20:56:12 +0200421 }
422}
423
Jens Axboe7e1773b2011-10-14 12:47:56 +0200424static int show_lat(double *io_u_lat, int nr, const char **ranges,
425 const char *msg)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200426{
Jens Axboe7e1773b2011-10-14 12:47:56 +0200427 int new_line = 1, i, line = 0, shown = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200428
429 for (i = 0; i < nr; i++) {
430 if (io_u_lat[i] <= 0.0)
431 continue;
Jens Axboe7e1773b2011-10-14 12:47:56 +0200432 shown = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200433 if (new_line) {
Jens Axboe4539ed72007-07-23 14:21:17 +0200434 if (line)
435 log_info("\n");
Jens Axboe7e1773b2011-10-14 12:47:56 +0200436 log_info(" lat (%s) : ", msg);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200437 new_line = 0;
438 line = 0;
439 }
440 if (line)
441 log_info(", ");
442 log_info("%s%3.2f%%", ranges[i], io_u_lat[i]);
443 line++;
444 if (line == 5)
445 new_line = 1;
446 }
Jens Axboe7e1773b2011-10-14 12:47:56 +0200447
448 if (shown)
449 log_info("\n");
450
451 return shown;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200452}
453
454static void show_lat_u(double *io_u_lat_u)
455{
456 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
457 "250=", "500=", "750=", "1000=", };
458
459 show_lat(io_u_lat_u, FIO_IO_U_LAT_U_NR, ranges, "usec");
460}
461
462static void show_lat_m(double *io_u_lat_m)
463{
464 const char *ranges[] = { "2=", "4=", "10=", "20=", "50=", "100=",
465 "250=", "500=", "750=", "1000=", "2000=",
466 ">=2000=", };
467
468 show_lat(io_u_lat_m, FIO_IO_U_LAT_M_NR, ranges, "msec");
469}
470
Jens Axboec551f652012-03-05 20:49:10 +0100471static void show_latencies(struct thread_stat *ts)
Jens Axboe04a0fea2007-06-19 12:48:41 +0200472{
Jens Axboec551f652012-03-05 20:49:10 +0100473 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
474 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
475
Jens Axboe5a189882012-03-05 14:08:34 +0100476 stat_calc_lat_u(ts, io_u_lat_u);
477 stat_calc_lat_m(ts, io_u_lat_m);
478
Jens Axboe04a0fea2007-06-19 12:48:41 +0200479 show_lat_u(io_u_lat_u);
480 show_lat_m(io_u_lat_m);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200481}
482
Jens Axboea64e88d2011-10-03 14:20:01 +0200483void show_thread_status(struct thread_stat *ts, struct group_run_stats *rs)
Jens Axboe3c39a372006-06-06 20:56:12 +0200484{
485 double usr_cpu, sys_cpu;
Jens Axboe69008992006-11-24 13:12:56 +0100486 unsigned long runtime;
Jens Axboe71619dc2007-01-13 23:56:33 +0100487 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe3c39a372006-06-06 20:56:12 +0200488
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200489 if (!(ts->io_bytes[0] + ts->io_bytes[1]) &&
490 !(ts->total_io_u[0] + ts->total_io_u[1]))
Jens Axboe3c39a372006-06-06 20:56:12 +0200491 return;
492
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100493 if (!ts->error) {
494 log_info("%s: (groupid=%d, jobs=%d): err=%2d: pid=%d\n",
495 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200496 ts->error, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100497 } else {
498 log_info("%s: (groupid=%d, jobs=%d): err=%2d (%s): pid=%d\n",
499 ts->name, ts->groupid, ts->members,
Jens Axboe5921e802008-05-30 15:02:38 +0200500 ts->error, ts->verror, (int) ts->pid);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100501 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200502
Jens Axboe259e47d2011-10-13 21:05:59 +0200503 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100504 log_info(" Description : [%s]\n", ts->description);
Jens Axboe7bdce1b2007-03-06 20:01:13 +0100505
Jens Axboe756867b2007-03-06 15:19:24 +0100506 if (ts->io_bytes[DDIR_READ])
507 show_ddir_status(rs, ts, DDIR_READ);
508 if (ts->io_bytes[DDIR_WRITE])
509 show_ddir_status(rs, ts, DDIR_WRITE);
Jens Axboe3c39a372006-06-06 20:56:12 +0200510
Jens Axboec551f652012-03-05 20:49:10 +0100511 show_latencies(ts);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200512
Jens Axboe756867b2007-03-06 15:19:24 +0100513 runtime = ts->total_run_time;
Jens Axboe69008992006-11-24 13:12:56 +0100514 if (runtime) {
Jens Axboe1e97cce2006-12-05 11:44:16 +0100515 double runt = (double) runtime;
Jens Axboe3c39a372006-06-06 20:56:12 +0200516
Jens Axboe756867b2007-03-06 15:19:24 +0100517 usr_cpu = (double) ts->usr_time * 100 / runt;
518 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboe3c39a372006-06-06 20:56:12 +0200519 } else {
520 usr_cpu = 0;
521 sys_cpu = 0;
522 }
523
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100524 log_info(" cpu : usr=%3.2f%%, sys=%3.2f%%, ctx=%lu, majf=%lu,"
525 " minf=%lu\n", usr_cpu, sys_cpu, ts->ctx, ts->majf, ts->minf);
Jens Axboe71619dc2007-01-13 23:56:33 +0100526
Jens Axboe838bc702008-05-22 13:08:23 +0200527 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100528 log_info(" IO depths : 1=%3.1f%%, 2=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%,"
529 " 16=%3.1f%%, 32=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
530 io_u_dist[1], io_u_dist[2],
531 io_u_dist[3], io_u_dist[4],
532 io_u_dist[5], io_u_dist[6]);
Jens Axboe838bc702008-05-22 13:08:23 +0200533
534 stat_calc_dist(ts->io_u_submit, ts->total_submit, io_u_dist);
535 log_info(" submit : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
536 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
537 io_u_dist[1], io_u_dist[2],
538 io_u_dist[3], io_u_dist[4],
539 io_u_dist[5], io_u_dist[6]);
540 stat_calc_dist(ts->io_u_complete, ts->total_complete, io_u_dist);
541 log_info(" complete : 0=%3.1f%%, 4=%3.1f%%, 8=%3.1f%%, 16=%3.1f%%,"
542 " 32=%3.1f%%, 64=%3.1f%%, >=64=%3.1f%%\n", io_u_dist[0],
543 io_u_dist[1], io_u_dist[2],
544 io_u_dist[3], io_u_dist[4],
545 io_u_dist[5], io_u_dist[6]);
Jens Axboe7e1773b2011-10-14 12:47:56 +0200546 log_info(" issued : total=r=%lu/w=%lu/d=%lu,"
547 " short=r=%lu/w=%lu/d=%lu\n",
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100548 ts->total_io_u[0], ts->total_io_u[1],
Jens Axboe0d29de82010-09-01 13:54:15 +0200549 ts->total_io_u[2],
550 ts->short_io_u[0], ts->short_io_u[1],
551 ts->short_io_u[2]);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200552 if (ts->continue_on_error) {
Jens Axboe1ec99ee2009-06-15 12:37:30 +0200553 log_info(" errors : total=%lu, first_error=%d/<%s>\n",
554 ts->total_err_count,
555 ts->first_error,
556 strerror(ts->first_error));
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200557 }
Jens Axboe3c39a372006-06-06 20:56:12 +0200558}
559
Jens Axboe756867b2007-03-06 15:19:24 +0100560static void show_ddir_status_terse(struct thread_stat *ts,
Jens Axboec6ae0a52006-06-12 11:04:44 +0200561 struct group_run_stats *rs, int ddir)
562{
563 unsigned long min, max;
Jens Axboe312b4af2011-10-13 13:11:42 +0200564 unsigned long long bw, iops;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200565 unsigned int *ovals = NULL;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200566 double mean, dev;
Jens Axboe1db92cb2011-10-13 13:43:36 +0200567 unsigned int len, minv, maxv;
568 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200569
Jens Axboeff58fce2010-08-25 12:02:08 +0200570 assert(ddir_rw(ddir));
571
Jens Axboe312b4af2011-10-13 13:11:42 +0200572 iops = bw = 0;
573 if (ts->runtime[ddir]) {
574 uint64_t runt = ts->runtime[ddir];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200575
Jens Axboe312b4af2011-10-13 13:11:42 +0200576 bw = ts->io_bytes[ddir] / runt;
577 iops = (1000 * (uint64_t) ts->total_io_u[ddir]) / runt;
578 }
579
580 log_info(";%llu;%llu;%llu;%llu", ts->io_bytes[ddir] >> 10, bw, iops,
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100581 ts->runtime[ddir]);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200582
Jens Axboe079ad092007-02-20 13:58:20 +0100583 if (calc_lat(&ts->slat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100584 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200585 else
Jens Axboe6d861442007-03-15 09:22:23 +0100586 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200587
Jens Axboe079ad092007-02-20 13:58:20 +0100588 if (calc_lat(&ts->clat_stat[ddir], &min, &max, &mean, &dev))
Jens Axboe6d861442007-03-15 09:22:23 +0100589 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200590 else
Jens Axboe6d861442007-03-15 09:22:23 +0100591 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200592
Jens Axboe1db92cb2011-10-13 13:43:36 +0200593 if (ts->clat_percentiles) {
594 len = calc_clat_percentiles(ts->io_u_plat[ddir],
595 ts->clat_stat[ddir].samples,
596 ts->percentile_list, &ovals, &maxv,
597 &minv);
598 } else
599 len = 0;
600
601 for (i = 0; i < FIO_IO_U_LIST_MAX_LEN; i++) {
602 if (i >= len) {
603 log_info(";0%%=0");
604 continue;
605 }
606 log_info(";%2.2f%%=%u", ts->percentile_list[i].u.f, ovals[i]);
607 }
Keplar kramer2341a372011-10-19 21:31:27 +0200608
609 if (calc_lat(&ts->lat_stat[ddir], &min, &max, &mean, &dev))
610 log_info(";%lu;%lu;%f;%f", min, max, mean, dev);
611 else
612 log_info(";%lu;%lu;%f;%f", 0UL, 0UL, 0.0, 0.0);
613
Jens Axboe1db92cb2011-10-13 13:43:36 +0200614 if (ovals)
615 free(ovals);
616
Jens Axboe079ad092007-02-20 13:58:20 +0100617 if (calc_lat(&ts->bw_stat[ddir], &min, &max, &mean, &dev)) {
Jens Axboe19d3e962012-02-07 12:27:28 +0100618 double p_of_agg = 100.0;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200619
Jens Axboe19d3e962012-02-07 12:27:28 +0100620 if (rs->agg[ddir]) {
621 p_of_agg = mean * 100 / (double) rs->agg[ddir];
622 if (p_of_agg > 100.0)
623 p_of_agg = 100.0;
624 }
625
Jens Axboe6d861442007-03-15 09:22:23 +0100626 log_info(";%lu;%lu;%f%%;%f;%f", min, max, p_of_agg, mean, dev);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200627 } else
Jens Axboe6d861442007-03-15 09:22:23 +0100628 log_info(";%lu;%lu;%f%%;%f;%f", 0UL, 0UL, 0.0, 0.0, 0.0);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200629}
630
Jens Axboe4d658652011-10-17 15:05:47 +0200631static void show_thread_status_terse_v2(struct thread_stat *ts,
Jens Axboe3c3ed072012-03-27 09:12:39 +0200632 struct group_run_stats *rs)
Jens Axboe4d658652011-10-17 15:05:47 +0200633{
634 double io_u_dist[FIO_IO_U_MAP_NR];
635 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
636 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
637 double usr_cpu, sys_cpu;
638 int i;
639
640 /* General Info */
641 log_info("2;%s;%d;%d", ts->name, ts->groupid, ts->error);
642 /* Log Read Status */
643 show_ddir_status_terse(ts, rs, 0);
644 /* Log Write Status */
645 show_ddir_status_terse(ts, rs, 1);
646
647 /* CPU Usage */
648 if (ts->total_run_time) {
649 double runt = (double) ts->total_run_time;
650
651 usr_cpu = (double) ts->usr_time * 100 / runt;
652 sys_cpu = (double) ts->sys_time * 100 / runt;
653 } else {
654 usr_cpu = 0;
655 sys_cpu = 0;
656 }
657
658 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
659 ts->minf);
660
661 /* Calc % distribution of IO depths, usecond, msecond latency */
662 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
663 stat_calc_lat_u(ts, io_u_lat_u);
664 stat_calc_lat_m(ts, io_u_lat_m);
665
666 /* Only show fixed 7 I/O depth levels*/
667 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
668 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
669 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
670
671 /* Microsecond latency */
672 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
673 log_info(";%3.2f%%", io_u_lat_u[i]);
674 /* Millisecond latency */
675 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
676 log_info(";%3.2f%%", io_u_lat_m[i]);
677 /* Additional output if continue_on_error set - default off*/
678 if (ts->continue_on_error)
679 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
680 log_info("\n");
681
682 /* Additional output if description is set */
683 if (ts->description)
684 log_info(";%s", ts->description);
685
686 log_info("\n");
687}
688
Jens Axboe312b4af2011-10-13 13:11:42 +0200689#define FIO_TERSE_VERSION "3"
Jens Axboec6ae0a52006-06-12 11:04:44 +0200690
Jens Axboe4d658652011-10-17 15:05:47 +0200691static void show_thread_status_terse_v3(struct thread_stat *ts,
692 struct group_run_stats *rs)
Jens Axboec6ae0a52006-06-12 11:04:44 +0200693{
Jens Axboe22708902007-03-06 17:05:32 +0100694 double io_u_dist[FIO_IO_U_MAP_NR];
Jens Axboe04a0fea2007-06-19 12:48:41 +0200695 double io_u_lat_u[FIO_IO_U_LAT_U_NR];
696 double io_u_lat_m[FIO_IO_U_LAT_M_NR];
Jens Axboec6ae0a52006-06-12 11:04:44 +0200697 double usr_cpu, sys_cpu;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200698 int i;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200699
David Nellans562c2d22010-09-23 08:38:17 +0200700 /* General Info */
Jens Axboe5e726d02011-10-14 08:08:10 +0200701 log_info("%s;%s;%s;%d;%d", FIO_TERSE_VERSION, fio_version_string,
702 ts->name, ts->groupid, ts->error);
David Nellans562c2d22010-09-23 08:38:17 +0200703 /* Log Read Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100704 show_ddir_status_terse(ts, rs, 0);
David Nellans562c2d22010-09-23 08:38:17 +0200705 /* Log Write Status */
Jens Axboe756867b2007-03-06 15:19:24 +0100706 show_ddir_status_terse(ts, rs, 1);
Jens Axboec6ae0a52006-06-12 11:04:44 +0200707
David Nellans562c2d22010-09-23 08:38:17 +0200708 /* CPU Usage */
Jens Axboe756867b2007-03-06 15:19:24 +0100709 if (ts->total_run_time) {
710 double runt = (double) ts->total_run_time;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200711
Jens Axboe756867b2007-03-06 15:19:24 +0100712 usr_cpu = (double) ts->usr_time * 100 / runt;
713 sys_cpu = (double) ts->sys_time * 100 / runt;
Jens Axboec6ae0a52006-06-12 11:04:44 +0200714 } else {
715 usr_cpu = 0;
716 sys_cpu = 0;
717 }
718
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100719 log_info(";%f%%;%f%%;%lu;%lu;%lu", usr_cpu, sys_cpu, ts->ctx, ts->majf,
720 ts->minf);
Jens Axboe22708902007-03-06 17:05:32 +0100721
David Nellans562c2d22010-09-23 08:38:17 +0200722 /* Calc % distribution of IO depths, usecond, msecond latency */
Jens Axboe838bc702008-05-22 13:08:23 +0200723 stat_calc_dist(ts->io_u_map, ts_total_io_u(ts), io_u_dist);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200724 stat_calc_lat_u(ts, io_u_lat_u);
725 stat_calc_lat_m(ts, io_u_lat_m);
Jens Axboe22708902007-03-06 17:05:32 +0100726
David Nellans562c2d22010-09-23 08:38:17 +0200727 /* Only show fixed 7 I/O depth levels*/
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100728 log_info(";%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%;%3.1f%%",
729 io_u_dist[0], io_u_dist[1], io_u_dist[2], io_u_dist[3],
730 io_u_dist[4], io_u_dist[5], io_u_dist[6]);
Jens Axboe22708902007-03-06 17:05:32 +0100731
David Nellans562c2d22010-09-23 08:38:17 +0200732 /* Microsecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200733 for (i = 0; i < FIO_IO_U_LAT_U_NR; i++)
734 log_info(";%3.2f%%", io_u_lat_u[i]);
David Nellans562c2d22010-09-23 08:38:17 +0200735 /* Millisecond latency */
Jens Axboe04a0fea2007-06-19 12:48:41 +0200736 for (i = 0; i < FIO_IO_U_LAT_M_NR; i++)
737 log_info(";%3.2f%%", io_u_lat_m[i]);
Jens Axboef2f788d2011-10-13 14:03:52 +0200738
739 /* disk util stats, if any */
740 show_disk_util(1);
741
David Nellans562c2d22010-09-23 08:38:17 +0200742 /* Additional output if continue_on_error set - default off*/
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200743 if (ts->continue_on_error)
744 log_info(";%lu;%d", ts->total_err_count, ts->first_error);
Jens Axboe04a0fea2007-06-19 12:48:41 +0200745 log_info("\n");
Jens Axboe22708902007-03-06 17:05:32 +0100746
David Nellans562c2d22010-09-23 08:38:17 +0200747 /* Additional output if description is set */
Jens Axboe4b0f2252011-10-13 15:03:25 +0200748 if (strlen(ts->description))
Jens Axboe6d861442007-03-15 09:22:23 +0100749 log_info(";%s", ts->description);
Jens Axboe756867b2007-03-06 15:19:24 +0100750}
751
Jens Axboe4d658652011-10-17 15:05:47 +0200752static void show_thread_status_terse(struct thread_stat *ts,
753 struct group_run_stats *rs)
754{
755 if (terse_version == 2)
756 show_thread_status_terse_v2(ts, rs);
757 else if (terse_version == 3)
758 show_thread_status_terse_v3(ts, rs);
759 else
760 log_err("fio: bad terse version!? %d\n", terse_version);
761}
762
Jens Axboe197574e2007-03-08 15:35:11 +0100763static void sum_stat(struct io_stat *dst, struct io_stat *src, int nr)
Jens Axboe756867b2007-03-06 15:19:24 +0100764{
765 double mean, S;
766
Zheng Liue09231c2011-09-16 08:20:12 +0200767 if (src->samples == 0)
768 return;
769
Jens Axboe756867b2007-03-06 15:19:24 +0100770 dst->min_val = min(dst->min_val, src->min_val);
771 dst->max_val = max(dst->max_val, src->max_val);
Jens Axboe756867b2007-03-06 15:19:24 +0100772
773 /*
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200774 * Compute new mean and S after the merge
775 * <http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance
776 * #Parallel_algorithm>
Jens Axboe756867b2007-03-06 15:19:24 +0100777 */
778 if (nr == 1) {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200779 mean = src->mean.u.f;
780 S = src->S.u.f;
Jens Axboe756867b2007-03-06 15:19:24 +0100781 } else {
Jens Axboe802ad4a2011-10-05 09:51:58 +0200782 double delta = src->mean.u.f - dst->mean.u.f;
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200783
Jens Axboe802ad4a2011-10-05 09:51:58 +0200784 mean = ((src->mean.u.f * src->samples) +
785 (dst->mean.u.f * dst->samples)) /
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200786 (dst->samples + src->samples);
787
Jens Axboe802ad4a2011-10-05 09:51:58 +0200788 S = src->S.u.f + dst->S.u.f + pow(delta, 2.0) *
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200789 (dst->samples * src->samples) /
790 (dst->samples + src->samples);
Jens Axboe756867b2007-03-06 15:19:24 +0100791 }
792
Yu-ju Hongcdcac5c2011-07-30 09:18:13 +0200793 dst->samples += src->samples;
Jens Axboe802ad4a2011-10-05 09:51:58 +0200794 dst->mean.u.f = mean;
795 dst->S.u.f = S;
Jens Axboe756867b2007-03-06 15:19:24 +0100796}
797
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200798void sum_group_stats(struct group_run_stats *dst, struct group_run_stats *src)
799{
800 int i;
801
802 for (i = 0; i < 2; i++) {
803 if (dst->max_run[i] < src->max_run[i])
804 dst->max_run[i] = src->max_run[i];
805 if (dst->min_run[i] && dst->min_run[i] > src->min_run[i])
806 dst->min_run[i] = src->min_run[i];
807 if (dst->max_bw[i] < src->max_bw[i])
808 dst->max_bw[i] = src->max_bw[i];
809 if (dst->min_bw[i] && dst->min_bw[i] > src->min_bw[i])
810 dst->min_bw[i] = src->min_bw[i];
811
812 dst->io_kb[i] += src->io_kb[i];
813 dst->agg[i] += src->agg[i];
814 }
815
816}
817
Jens Axboe5b9babb2011-10-10 12:14:30 +0200818void sum_thread_stats(struct thread_stat *dst, struct thread_stat *src, int nr)
819{
820 int l, k;
821
822 for (l = 0; l <= DDIR_WRITE; l++) {
823 sum_stat(&dst->clat_stat[l], &src->clat_stat[l], nr);
824 sum_stat(&dst->slat_stat[l], &src->slat_stat[l], nr);
825 sum_stat(&dst->lat_stat[l], &src->lat_stat[l], nr);
826 sum_stat(&dst->bw_stat[l], &src->bw_stat[l], nr);
827
828 dst->io_bytes[l] += src->io_bytes[l];
829
830 if (dst->runtime[l] < src->runtime[l])
831 dst->runtime[l] = src->runtime[l];
832 }
833
834 dst->usr_time += src->usr_time;
835 dst->sys_time += src->sys_time;
836 dst->ctx += src->ctx;
837 dst->majf += src->majf;
838 dst->minf += src->minf;
839
840 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
841 dst->io_u_map[k] += src->io_u_map[k];
842 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
843 dst->io_u_submit[k] += src->io_u_submit[k];
844 for (k = 0; k < FIO_IO_U_MAP_NR; k++)
845 dst->io_u_complete[k] += src->io_u_complete[k];
846 for (k = 0; k < FIO_IO_U_LAT_U_NR; k++)
847 dst->io_u_lat_u[k] += src->io_u_lat_u[k];
848 for (k = 0; k < FIO_IO_U_LAT_M_NR; k++)
849 dst->io_u_lat_m[k] += src->io_u_lat_m[k];
850
851 for (k = 0; k <= 2; k++) {
852 dst->total_io_u[k] += src->total_io_u[k];
853 dst->short_io_u[k] += src->short_io_u[k];
854 }
855
856 for (k = 0; k <= DDIR_WRITE; k++) {
857 int m;
858 for (m = 0; m < FIO_IO_U_PLAT_NR; m++)
859 dst->io_u_plat[k][m] += src->io_u_plat[k][m];
860 }
861
862 dst->total_run_time += src->total_run_time;
863 dst->total_submit += src->total_submit;
864 dst->total_complete += src->total_complete;
865}
866
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200867void init_group_run_stat(struct group_run_stats *gs)
868{
869 memset(gs, 0, sizeof(*gs));
870 gs->min_bw[0] = gs->min_run[0] = ~0UL;
871 gs->min_bw[1] = gs->min_run[1] = ~0UL;
872}
873
874void init_thread_stat(struct thread_stat *ts)
875{
876 int j;
877
878 memset(ts, 0, sizeof(*ts));
879
880 for (j = 0; j <= DDIR_WRITE; j++) {
881 ts->lat_stat[j].min_val = -1UL;
882 ts->clat_stat[j].min_val = -1UL;
883 ts->slat_stat[j].min_val = -1UL;
884 ts->bw_stat[j].min_val = -1UL;
885 }
886 ts->groupid = -1;
887}
888
Jens Axboe3c39a372006-06-06 20:56:12 +0200889void show_run_stats(void)
890{
891 struct group_run_stats *runstats, *rs;
892 struct thread_data *td;
Jens Axboe756867b2007-03-06 15:19:24 +0100893 struct thread_stat *threadstats, *ts;
Jens Axboe5b9babb2011-10-10 12:14:30 +0200894 int i, j, nr_ts, last_ts, idx;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200895 int kb_base_warned = 0;
Jens Axboe3c39a372006-06-06 20:56:12 +0200896
897 runstats = malloc(sizeof(struct group_run_stats) * (groupid + 1));
898
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200899 for (i = 0; i < groupid + 1; i++)
900 init_group_run_stat(&runstats[i]);
Jens Axboe3c39a372006-06-06 20:56:12 +0200901
Jens Axboe756867b2007-03-06 15:19:24 +0100902 /*
903 * find out how many threads stats we need. if group reporting isn't
904 * enabled, it's one-per-td.
905 */
906 nr_ts = 0;
907 last_ts = -1;
Jens Axboe34572e22006-10-20 09:33:18 +0200908 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100909 if (!td->o.group_reporting) {
Jens Axboe756867b2007-03-06 15:19:24 +0100910 nr_ts++;
911 continue;
912 }
913 if (last_ts == td->groupid)
914 continue;
915
916 last_ts = td->groupid;
917 nr_ts++;
918 }
919
920 threadstats = malloc(nr_ts * sizeof(struct thread_stat));
921
Jens Axboe37f0c1a2011-10-11 14:08:33 +0200922 for (i = 0; i < nr_ts; i++)
923 init_thread_stat(&threadstats[i]);
Jens Axboe756867b2007-03-06 15:19:24 +0100924
925 j = 0;
926 last_ts = -1;
Jens Axboe197574e2007-03-08 15:35:11 +0100927 idx = 0;
Jens Axboe756867b2007-03-06 15:19:24 +0100928 for_each_td(td, i) {
Jens Axboe2dc1bbe2007-03-15 15:01:33 +0100929 if (idx && (!td->o.group_reporting ||
930 (td->o.group_reporting && last_ts != td->groupid))) {
Jens Axboe7abd0e32007-03-12 15:24:43 +0100931 idx = 0;
932 j++;
933 }
934
935 last_ts = td->groupid;
936
Jens Axboe756867b2007-03-06 15:19:24 +0100937 ts = &threadstats[j];
938
Yu-ju Hong83349192011-08-13 00:53:44 +0200939 ts->clat_percentiles = td->o.clat_percentiles;
940 if (td->o.overwrite_plist)
Jens Axboe802ad4a2011-10-05 09:51:58 +0200941 memcpy(ts->percentile_list, td->o.percentile_list, sizeof(td->o.percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200942 else
Jens Axboe802ad4a2011-10-05 09:51:58 +0200943 memcpy(ts->percentile_list, def_percentile_list, sizeof(def_percentile_list));
Yu-ju Hong83349192011-08-13 00:53:44 +0200944
Jens Axboe197574e2007-03-08 15:35:11 +0100945 idx++;
Jens Axboe6586ee82007-03-06 19:46:09 +0100946 ts->members++;
Jens Axboe756867b2007-03-06 15:19:24 +0100947
Jens Axboe7abd0e32007-03-12 15:24:43 +0100948 if (ts->groupid == -1) {
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100949 /*
950 * These are per-group shared already
951 */
Jens Axboef6bb5b82011-10-03 12:21:25 +0200952 strncpy(ts->name, td->o.name, FIO_JOBNAME_SIZE);
Jens Axboea64e88d2011-10-03 14:20:01 +0200953 if (td->o.description)
954 strncpy(ts->description, td->o.description,
955 FIO_JOBNAME_SIZE);
956 else
957 memset(ts->description, 0, FIO_JOBNAME_SIZE);
958
Jens Axboe2f122b12012-03-15 13:10:19 +0100959 /*
960 * If multiple entries in this group, this is
961 * the first member.
962 */
963 ts->thread_number = td->thread_number;
Jens Axboe756867b2007-03-06 15:19:24 +0100964 ts->groupid = td->groupid;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100965
966 /*
967 * first pid in group, not very useful...
968 */
Jens Axboe756867b2007-03-06 15:19:24 +0100969 ts->pid = td->pid;
Jens Axboe90fef2d2009-07-17 22:33:32 +0200970
971 ts->kb_base = td->o.kb_base;
972 } else if (ts->kb_base != td->o.kb_base && !kb_base_warned) {
973 log_info("fio: kb_base differs for jobs in group, using"
974 " %u as the base\n", ts->kb_base);
975 kb_base_warned = 1;
Jens Axboe2dc84ba2007-03-06 15:46:33 +0100976 }
977
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200978 ts->continue_on_error = td->o.continue_on_error;
979 ts->total_err_count += td->total_err_count;
980 ts->first_error = td->first_error;
981 if (!ts->error) {
982 if (!td->error && td->o.continue_on_error &&
983 td->first_error) {
984 ts->error = td->first_error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200985 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200986 } else if (td->error) {
987 ts->error = td->error;
Jens Axboef6bb5b82011-10-03 12:21:25 +0200988 strcpy(ts->verror, td->verror);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200989 }
Jens Axboe756867b2007-03-06 15:19:24 +0100990 }
991
Jens Axboe5b9babb2011-10-10 12:14:30 +0200992 sum_thread_stats(ts, &td->ts, idx);
Jens Axboe756867b2007-03-06 15:19:24 +0100993 }
994
995 for (i = 0; i < nr_ts; i++) {
Jens Axboe94370ac2007-03-08 15:28:10 +0100996 unsigned long long bw;
Jens Axboe3c39a372006-06-06 20:56:12 +0200997
Jens Axboe756867b2007-03-06 15:19:24 +0100998 ts = &threadstats[i];
999 rs = &runstats[ts->groupid];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001000 rs->kb_base = ts->kb_base;
Jens Axboe3c39a372006-06-06 20:56:12 +02001001
Jens Axboede64df02007-03-08 19:09:49 +01001002 for (j = 0; j <= DDIR_WRITE; j++) {
Jens Axboe94370ac2007-03-08 15:28:10 +01001003 if (!ts->runtime[j])
1004 continue;
1005 if (ts->runtime[j] < rs->min_run[j] || !rs->min_run[j])
1006 rs->min_run[j] = ts->runtime[j];
1007 if (ts->runtime[j] > rs->max_run[j])
1008 rs->max_run[j] = ts->runtime[j];
Jens Axboe3c39a372006-06-06 20:56:12 +02001009
Jens Axboe94370ac2007-03-08 15:28:10 +01001010 bw = 0;
Jens Axboe8879fd12009-04-20 10:06:02 +02001011 if (ts->runtime[j]) {
1012 unsigned long runt;
1013
Jens Axboe90fef2d2009-07-17 22:33:32 +02001014 runt = ts->runtime[j];
Jens Axboe8879fd12009-04-20 10:06:02 +02001015 bw = ts->io_bytes[j] / runt;
1016 }
Jens Axboe94370ac2007-03-08 15:28:10 +01001017 if (bw < rs->min_bw[j])
1018 rs->min_bw[j] = bw;
1019 if (bw > rs->max_bw[j])
1020 rs->max_bw[j] = bw;
Jens Axboe3c39a372006-06-06 20:56:12 +02001021
Jens Axboe90fef2d2009-07-17 22:33:32 +02001022 rs->io_kb[j] += ts->io_bytes[j] / rs->kb_base;
Jens Axboe94370ac2007-03-08 15:28:10 +01001023 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001024 }
1025
1026 for (i = 0; i < groupid + 1; i++) {
Jens Axboe8879fd12009-04-20 10:06:02 +02001027 unsigned long max_run[2];
1028
Jens Axboe3c39a372006-06-06 20:56:12 +02001029 rs = &runstats[i];
Jens Axboe90fef2d2009-07-17 22:33:32 +02001030 max_run[0] = rs->max_run[0];
1031 max_run[1] = rs->max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +02001032
1033 if (rs->max_run[0])
Jens Axboe4cf1abc2010-06-25 14:33:37 +02001034 rs->agg[0] = (rs->io_kb[0] * 1000) / max_run[0];
Jens Axboe3c39a372006-06-06 20:56:12 +02001035 if (rs->max_run[1])
Jens Axboe4cf1abc2010-06-25 14:33:37 +02001036 rs->agg[1] = (rs->io_kb[1] * 1000) / max_run[1];
Jens Axboe3c39a372006-06-06 20:56:12 +02001037 }
1038
1039 /*
1040 * don't overwrite last signal output
1041 */
Jens Axboec6ae0a52006-06-12 11:04:44 +02001042 if (!terse_output)
Jens Axboe4ceb30d2010-02-24 09:19:14 +01001043 log_info("\n");
Jens Axboe3c39a372006-06-06 20:56:12 +02001044
Jens Axboe756867b2007-03-06 15:19:24 +01001045 for (i = 0; i < nr_ts; i++) {
1046 ts = &threadstats[i];
1047 rs = &runstats[ts->groupid];
Jens Axboe3c39a372006-06-06 20:56:12 +02001048
Jens Axboea64e88d2011-10-03 14:20:01 +02001049 if (is_backend)
1050 fio_server_send_ts(ts, rs);
1051 else if (terse_output)
Jens Axboe756867b2007-03-06 15:19:24 +01001052 show_thread_status_terse(ts, rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001053 else
Jens Axboe756867b2007-03-06 15:19:24 +01001054 show_thread_status(ts, rs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001055 }
1056
Jens Axboe72c27ff2011-10-16 11:50:31 +02001057 for (i = 0; i < groupid + 1; i++) {
1058 rs = &runstats[i];
Jens Axboea64e88d2011-10-03 14:20:01 +02001059
Jens Axboe72c27ff2011-10-16 11:50:31 +02001060 rs->groupid = i;
Jens Axboed09a64a2011-10-13 11:38:56 +02001061 if (is_backend)
Jens Axboe72c27ff2011-10-16 11:50:31 +02001062 fio_server_send_gs(rs);
1063 else if (!terse_output)
1064 show_group_stats(rs);
Jens Axboec6ae0a52006-06-12 11:04:44 +02001065 }
Jens Axboeeecf2722006-10-20 14:00:36 +02001066
Jens Axboe72c27ff2011-10-16 11:50:31 +02001067 if (is_backend)
1068 fio_server_send_du();
1069 else if (!terse_output)
1070 show_disk_util(0);
1071
Jens Axboeeecf2722006-10-20 14:00:36 +02001072 free(runstats);
Jens Axboe756867b2007-03-06 15:19:24 +01001073 free(threadstats);
Jens Axboe3c39a372006-06-06 20:56:12 +02001074}
1075
Jens Axboeb852e7c2012-03-30 10:30:35 +02001076static void *__show_running_run_stats(void *arg)
1077{
1078 struct thread_data *td;
1079 unsigned long long *rt;
1080 struct timeval tv;
1081 int i;
1082
1083 rt = malloc(thread_number * sizeof(unsigned long long));
1084 fio_gettime(&tv, NULL);
1085
1086 for_each_td(td, i) {
1087 rt[i] = mtime_since(&td->start, &tv);
1088 if (td_read(td) && td->io_bytes[DDIR_READ])
1089 td->ts.runtime[DDIR_READ] += rt[i];
1090 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1091 td->ts.runtime[DDIR_WRITE] += rt[i];
1092
1093 update_rusage_stat(td);
1094 td->ts.io_bytes[0] = td->io_bytes[0];
1095 td->ts.io_bytes[1] = td->io_bytes[1];
1096 td->ts.total_run_time = mtime_since(&td->epoch, &tv);
1097 }
1098
1099 show_run_stats();
1100
1101 for_each_td(td, i) {
1102 if (td_read(td) && td->io_bytes[DDIR_READ])
1103 td->ts.runtime[DDIR_READ] -= rt[i];
1104 if (td_write(td) && td->io_bytes[DDIR_WRITE])
1105 td->ts.runtime[DDIR_WRITE] -= rt[i];
1106 }
1107
1108 free(rt);
1109 return NULL;
1110}
1111
1112/*
1113 * Called from signal handler. It _should_ be safe to just run this inline
1114 * in the sig handler, but we should be disturbing the system less by just
1115 * creating a thread to do it.
1116 */
1117void show_running_run_stats(void)
1118{
1119 pthread_t thread;
1120
1121 pthread_create(&thread, NULL, __show_running_run_stats, NULL);
1122 pthread_detach(thread);
1123}
1124
Jens Axboe68704082007-01-10 19:56:37 +01001125static inline void add_stat_sample(struct io_stat *is, unsigned long data)
Jens Axboe3c39a372006-06-06 20:56:12 +02001126{
Jens Axboe68704082007-01-10 19:56:37 +01001127 double val = data;
Jens Axboe6660cc62007-03-06 15:48:38 +01001128 double delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001129
Jens Axboe68704082007-01-10 19:56:37 +01001130 if (data > is->max_val)
1131 is->max_val = data;
1132 if (data < is->min_val)
1133 is->min_val = data;
1134
Jens Axboe802ad4a2011-10-05 09:51:58 +02001135 delta = val - is->mean.u.f;
Jens Axboeef11d732007-03-29 15:36:29 +02001136 if (delta) {
Jens Axboe802ad4a2011-10-05 09:51:58 +02001137 is->mean.u.f += delta / (is->samples + 1.0);
1138 is->S.u.f += delta * (val - is->mean.u.f);
Jens Axboeef11d732007-03-29 15:36:29 +02001139 }
Jens Axboe68704082007-01-10 19:56:37 +01001140
Jens Axboe3c39a372006-06-06 20:56:12 +02001141 is->samples++;
1142}
1143
Jens Axboebb3884d2007-01-17 17:23:11 +11001144static void __add_log_sample(struct io_log *iolog, unsigned long val,
Jens Axboe306ddc92009-05-18 13:08:12 +02001145 enum fio_ddir ddir, unsigned int bs,
Jens Axboe2b13e712011-01-19 14:04:16 -07001146 unsigned long t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001147{
Jens Axboe306ddc92009-05-18 13:08:12 +02001148 const int nr_samples = iolog->nr_samples;
1149
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001150 if (!iolog->nr_samples)
1151 iolog->avg_last = t;
1152
Jens Axboe3c39a372006-06-06 20:56:12 +02001153 if (iolog->nr_samples == iolog->max_samples) {
1154 int new_size = sizeof(struct io_sample) * iolog->max_samples*2;
1155
1156 iolog->log = realloc(iolog->log, new_size);
1157 iolog->max_samples <<= 1;
1158 }
1159
Jens Axboe306ddc92009-05-18 13:08:12 +02001160 iolog->log[nr_samples].val = val;
Jens Axboe2b13e712011-01-19 14:04:16 -07001161 iolog->log[nr_samples].time = t;
Jens Axboe306ddc92009-05-18 13:08:12 +02001162 iolog->log[nr_samples].ddir = ddir;
1163 iolog->log[nr_samples].bs = bs;
Jens Axboe3c39a372006-06-06 20:56:12 +02001164 iolog->nr_samples++;
1165}
1166
Jens Axboe7fb28d32011-12-01 15:17:24 +01001167static inline void reset_io_stat(struct io_stat *ios)
1168{
1169 ios->max_val = ios->min_val = ios->samples = 0;
1170 ios->mean.u.f = ios->S.u.f = 0;
1171}
1172
Jens Axboebb3884d2007-01-17 17:23:11 +11001173static void add_log_sample(struct thread_data *td, struct io_log *iolog,
Jens Axboe306ddc92009-05-18 13:08:12 +02001174 unsigned long val, enum fio_ddir ddir,
1175 unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001176{
Jens Axboe7fb28d32011-12-01 15:17:24 +01001177 unsigned long elapsed, this_window;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001178
Jens Axboeff58fce2010-08-25 12:02:08 +02001179 if (!ddir_rw(ddir))
1180 return;
1181
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001182 elapsed = mtime_since_now(&td->epoch);
1183
1184 /*
1185 * If no time averaging, just add the log sample.
1186 */
1187 if (!iolog->avg_msec) {
1188 __add_log_sample(iolog, val, ddir, bs, elapsed);
1189 return;
1190 }
1191
1192 /*
1193 * Add the sample. If the time period has passed, then
1194 * add that entry to the log and clear.
1195 */
1196 add_stat_sample(&iolog->avg_window[ddir], val);
1197
Jens Axboe7fb28d32011-12-01 15:17:24 +01001198 /*
1199 * If period hasn't passed, adding the above sample is all we
1200 * need to do.
1201 */
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001202 this_window = elapsed - iolog->avg_last;
1203 if (this_window < iolog->avg_msec)
1204 return;
1205
Jens Axboe7fb28d32011-12-01 15:17:24 +01001206 /*
1207 * Note an entry in the log. Use the mean from the logged samples,
1208 * making sure to properly round up. Only write a log entry if we
1209 * had actual samples done.
1210 */
1211 if (iolog->avg_window[DDIR_READ].samples) {
1212 unsigned long mr;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001213
Jens Axboe7fb28d32011-12-01 15:17:24 +01001214 mr = iolog->avg_window[DDIR_READ].mean.u.f + 0.50;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001215 __add_log_sample(iolog, mr, DDIR_READ, 0, elapsed);
Jens Axboe7fb28d32011-12-01 15:17:24 +01001216 }
1217 if (iolog->avg_window[DDIR_WRITE].samples) {
1218 unsigned long mw;
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001219
Jens Axboe7fb28d32011-12-01 15:17:24 +01001220 mw = iolog->avg_window[DDIR_WRITE].mean.u.f + 0.50;
1221 __add_log_sample(iolog, mw, DDIR_WRITE, 0, elapsed);
1222 }
1223
1224 reset_io_stat(&iolog->avg_window[DDIR_READ]);
1225 reset_io_stat(&iolog->avg_window[DDIR_WRITE]);
Jens Axboeb8bc8cb2011-12-01 09:04:31 +01001226 iolog->avg_last = elapsed;
Jens Axboebb3884d2007-01-17 17:23:11 +11001227}
1228
Jens Axboe306ddc92009-05-18 13:08:12 +02001229void add_agg_sample(unsigned long val, enum fio_ddir ddir, unsigned int bs)
Jens Axboebb3884d2007-01-17 17:23:11 +11001230{
Jens Axboeff58fce2010-08-25 12:02:08 +02001231 struct io_log *iolog;
Jens Axboebb3884d2007-01-17 17:23:11 +11001232
Jens Axboeff58fce2010-08-25 12:02:08 +02001233 if (!ddir_rw(ddir))
1234 return;
1235
1236 iolog = agg_io_log[ddir];
Jens Axboe306ddc92009-05-18 13:08:12 +02001237 __add_log_sample(iolog, val, ddir, bs, mtime_since_genesis());
Jens Axboebb3884d2007-01-17 17:23:11 +11001238}
1239
Yu-ju Hong83349192011-08-13 00:53:44 +02001240static void add_clat_percentile_sample(struct thread_stat *ts,
1241 unsigned long usec, enum fio_ddir ddir)
1242{
1243 unsigned int idx = plat_val_to_idx(usec);
1244 assert(idx < FIO_IO_U_PLAT_NR);
1245
1246 ts->io_u_plat[ddir][idx]++;
1247}
1248
Jens Axboe1e97cce2006-12-05 11:44:16 +01001249void add_clat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001250 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001251{
Jens Axboe756867b2007-03-06 15:19:24 +01001252 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001253
Jens Axboeff58fce2010-08-25 12:02:08 +02001254 if (!ddir_rw(ddir))
1255 return;
1256
Jens Axboed85f5112007-06-18 09:41:23 +02001257 add_stat_sample(&ts->clat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001258
Jens Axboe7b9f7332011-10-03 10:06:44 +02001259 if (td->clat_log)
1260 add_log_sample(td, td->clat_log, usec, ddir, bs);
Yu-ju Hong83349192011-08-13 00:53:44 +02001261
1262 if (ts->clat_percentiles)
1263 add_clat_percentile_sample(ts, usec, ddir);
Jens Axboe3c39a372006-06-06 20:56:12 +02001264}
1265
Jens Axboe1e97cce2006-12-05 11:44:16 +01001266void add_slat_sample(struct thread_data *td, enum fio_ddir ddir,
Jens Axboe306ddc92009-05-18 13:08:12 +02001267 unsigned long usec, unsigned int bs)
Jens Axboe3c39a372006-06-06 20:56:12 +02001268{
Jens Axboe756867b2007-03-06 15:19:24 +01001269 struct thread_stat *ts = &td->ts;
Jens Axboe3c39a372006-06-06 20:56:12 +02001270
Jens Axboeff58fce2010-08-25 12:02:08 +02001271 if (!ddir_rw(ddir))
1272 return;
1273
Jens Axboed85f5112007-06-18 09:41:23 +02001274 add_stat_sample(&ts->slat_stat[ddir], usec);
Jens Axboe079ad092007-02-20 13:58:20 +01001275
Jens Axboe7b9f7332011-10-03 10:06:44 +02001276 if (td->slat_log)
1277 add_log_sample(td, td->slat_log, usec, ddir, bs);
Jens Axboe3c39a372006-06-06 20:56:12 +02001278}
1279
Jens Axboe02af0982010-06-24 09:59:34 +02001280void add_lat_sample(struct thread_data *td, enum fio_ddir ddir,
1281 unsigned long usec, unsigned int bs)
1282{
1283 struct thread_stat *ts = &td->ts;
1284
Jens Axboeff58fce2010-08-25 12:02:08 +02001285 if (!ddir_rw(ddir))
1286 return;
1287
Jens Axboe02af0982010-06-24 09:59:34 +02001288 add_stat_sample(&ts->lat_stat[ddir], usec);
1289
Jens Axboe7b9f7332011-10-03 10:06:44 +02001290 if (td->lat_log)
1291 add_log_sample(td, td->lat_log, usec, ddir, bs);
Jens Axboe02af0982010-06-24 09:59:34 +02001292}
1293
Jens Axboe306ddc92009-05-18 13:08:12 +02001294void add_bw_sample(struct thread_data *td, enum fio_ddir ddir, unsigned int bs,
Jens Axboe1e97cce2006-12-05 11:44:16 +01001295 struct timeval *t)
Jens Axboe3c39a372006-06-06 20:56:12 +02001296{
Jens Axboe756867b2007-03-06 15:19:24 +01001297 struct thread_stat *ts = &td->ts;
Jens Axboeff58fce2010-08-25 12:02:08 +02001298 unsigned long spent, rate;
Jens Axboe3c39a372006-06-06 20:56:12 +02001299
Jens Axboeff58fce2010-08-25 12:02:08 +02001300 if (!ddir_rw(ddir))
1301 return;
1302
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001303 spent = mtime_since(&td->bw_sample_time, t);
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001304 if (spent < td->o.bw_avg_time)
Jens Axboe3c39a372006-06-06 20:56:12 +02001305 return;
Jens Axboe9602d8d2012-02-20 20:19:28 +01001306
1307 /*
Josh Carter5daa4eb2012-02-20 10:12:22 +01001308 * Compute both read and write rates for the interval.
1309 */
1310 for (ddir = DDIR_READ; ddir <= DDIR_WRITE; ddir++) {
1311 uint64_t delta;
Jens Axboe3c39a372006-06-06 20:56:12 +02001312
Josh Carter5daa4eb2012-02-20 10:12:22 +01001313 delta = td->this_io_bytes[ddir] - td->stat_io_bytes[ddir];
1314 if (!delta)
1315 continue; /* No entries for interval */
Jens Axboe3c39a372006-06-06 20:56:12 +02001316
Josh Carter5daa4eb2012-02-20 10:12:22 +01001317 rate = delta * 1000 / spent / 1024;
1318 add_stat_sample(&ts->bw_stat[ddir], rate);
1319
1320 if (td->bw_log)
1321 add_log_sample(td, td->bw_log, rate, ddir, bs);
1322
1323 td->stat_io_bytes[ddir] = td->this_io_bytes[ddir];
1324 }
Jens Axboe3c39a372006-06-06 20:56:12 +02001325
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001326 fio_gettime(&td->bw_sample_time, NULL);
Jens Axboe3c39a372006-06-06 20:56:12 +02001327}
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001328
1329void add_iops_sample(struct thread_data *td, enum fio_ddir ddir,
1330 struct timeval *t)
1331{
1332 struct thread_stat *ts = &td->ts;
1333 unsigned long spent, iops;
1334
1335 if (!ddir_rw(ddir))
1336 return;
1337
1338 spent = mtime_since(&td->iops_sample_time, t);
1339 if (spent < td->o.iops_avg_time)
1340 return;
1341
Jens Axboe9602d8d2012-02-20 20:19:28 +01001342 /*
1343 * Compute both read and write rates for the interval.
1344 */
1345 for (ddir = DDIR_READ; ddir <= DDIR_WRITE; ddir++) {
1346 uint64_t delta;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001347
Jens Axboe9602d8d2012-02-20 20:19:28 +01001348 delta = td->this_io_blocks[ddir] - td->stat_io_blocks[ddir];
1349 if (!delta)
1350 continue; /* No entries for interval */
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001351
Jens Axboe9602d8d2012-02-20 20:19:28 +01001352 iops = (delta * 1000) / spent;
1353 add_stat_sample(&ts->iops_stat[ddir], iops);
1354
1355 if (td->iops_log)
1356 add_log_sample(td, td->iops_log, iops, ddir, 0);
1357
Jens Axboe421f4a82012-02-28 08:20:26 +01001358 td->stat_io_blocks[ddir] = td->this_io_blocks[ddir];
Jens Axboe9602d8d2012-02-20 20:19:28 +01001359 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001360
1361 fio_gettime(&td->iops_sample_time, NULL);
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001362}