blob: acc1a7b1dcb9f4ab6ac2c56a1552247c905ab41e [file] [log] [blame]
Jens Axboe10ba5352006-10-20 11:39:27 +02001#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <signal.h>
5#include <time.h>
Jens Axboe0c6e7512007-02-22 11:19:39 +01006#include <assert.h>
Jens Axboe10ba5352006-10-20 11:39:27 +02007
8#include "fio.h"
Jens Axboe5973caf2008-05-21 19:52:35 +02009#include "hash.h"
Jens Axboe4f5af7b2009-06-03 08:45:40 +020010#include "verify.h"
Jens Axboe0d29de82010-09-01 13:54:15 +020011#include "trim.h"
Jens Axboe1fbbf722010-03-25 23:03:18 +010012#include "lib/rand.h"
Jens Axboe7ebd7962012-11-28 21:24:46 +010013#include "lib/axmap.h"
Jens Axboe002fe732014-02-11 08:31:13 -070014#include "err.h"
Jens Axboe10ba5352006-10-20 11:39:27 +020015
Jens Axboe97601022007-02-18 12:47:29 +010016struct io_completion_data {
17 int nr; /* input */
Jens Axboe97601022007-02-18 12:47:29 +010018
19 int error; /* output */
Jens Axboe100f49f2013-01-23 10:15:57 -070020 uint64_t bytes_done[DDIR_RWDIR_CNT]; /* output */
Jens Axboe97601022007-02-18 12:47:29 +010021 struct timeval time; /* output */
22};
23
Jens Axboe10ba5352006-10-20 11:39:27 +020024/*
Jens Axboe7ebd7962012-11-28 21:24:46 +010025 * The ->io_axmap contains a map of blocks we have or have not done io
Jens Axboe10ba5352006-10-20 11:39:27 +020026 * to yet. Used to make sure we cover the entire range in a fair fashion.
27 */
Jens Axboe1ae83d42013-01-12 01:44:15 -070028static int random_map_free(struct fio_file *f, const uint64_t block)
Jens Axboe10ba5352006-10-20 11:39:27 +020029{
Jens Axboe7ebd7962012-11-28 21:24:46 +010030 return !axmap_isset(f->io_axmap, block);
Jens Axboe10ba5352006-10-20 11:39:27 +020031}
32
33/*
Jens Axboedf415582006-10-20 11:41:03 +020034 * Mark a given offset as used in the map.
35 */
Jens Axboe9bf20612007-03-01 09:33:57 +010036static void mark_random_map(struct thread_data *td, struct io_u *io_u)
Jens Axboedf415582006-10-20 11:41:03 +020037{
Jens Axboe2dc1bbe2007-03-15 15:01:33 +010038 unsigned int min_bs = td->o.rw_min_bs;
Jens Axboe9bf20612007-03-01 09:33:57 +010039 struct fio_file *f = io_u->file;
Jens Axboe51ede0b2012-11-22 13:50:29 +010040 unsigned int nr_blocks;
Jens Axboe1ae83d42013-01-12 01:44:15 -070041 uint64_t block;
Jens Axboedf415582006-10-20 11:41:03 +020042
Jens Axboe1ae83d42013-01-12 01:44:15 -070043 block = (io_u->offset - f->file_offset) / (uint64_t) min_bs;
Jens Axboec685b5b2007-02-10 20:02:28 +010044 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
45
Jens Axboe2ab9e982012-11-22 15:14:17 +010046 if (!(io_u->flags & IO_U_F_BUSY_OK))
Jens Axboe7ebd7962012-11-28 21:24:46 +010047 nr_blocks = axmap_set_nr(f->io_axmap, block, nr_blocks);
Jens Axboedf415582006-10-20 11:41:03 +020048
Jens Axboe51ede0b2012-11-22 13:50:29 +010049 if ((nr_blocks * min_bs) < io_u->buflen)
50 io_u->buflen = nr_blocks * min_bs;
Jens Axboedf415582006-10-20 11:41:03 +020051}
52
Jens Axboe74776732013-01-11 14:03:25 +010053static uint64_t last_block(struct thread_data *td, struct fio_file *f,
54 enum fio_ddir ddir)
Jens Axboe2ba1c292008-02-01 13:16:38 +010055{
Jens Axboe74776732013-01-11 14:03:25 +010056 uint64_t max_blocks;
57 uint64_t max_size;
Jens Axboe2ba1c292008-02-01 13:16:38 +010058
Jens Axboeff58fce2010-08-25 12:02:08 +020059 assert(ddir_rw(ddir));
60
Jens Axboed9dd70f2008-05-23 12:37:23 +020061 /*
62 * Hmm, should we make sure that ->io_size <= ->real_file_size?
63 */
64 max_size = f->io_size;
65 if (max_size > f->real_file_size)
66 max_size = f->real_file_size;
67
Steven Noonaned335852012-01-31 13:58:00 +010068 if (td->o.zone_range)
69 max_size = td->o.zone_range;
70
Jens Axboe1ae83d42013-01-12 01:44:15 -070071 max_blocks = max_size / (uint64_t) td->o.ba[ddir];
Jens Axboe2ba1c292008-02-01 13:16:38 +010072 if (!max_blocks)
73 return 0;
74
Jens Axboe67778e82008-05-15 09:20:08 +020075 return max_blocks;
Jens Axboe2ba1c292008-02-01 13:16:38 +010076}
77
Jens Axboe1ae83d42013-01-12 01:44:15 -070078struct rand_off {
79 struct flist_head list;
80 uint64_t off;
81};
82
Jens Axboee25839d2012-11-06 10:49:42 +010083static int __get_next_rand_offset(struct thread_data *td, struct fio_file *f,
Jens Axboe1ae83d42013-01-12 01:44:15 -070084 enum fio_ddir ddir, uint64_t *b)
Jens Axboeec4015d2007-03-23 08:04:27 +010085{
Jens Axboe1ae83d42013-01-12 01:44:15 -070086 uint64_t r, lastb;
Jens Axboe74776732013-01-11 14:03:25 +010087
88 lastb = last_block(td, f, ddir);
89 if (!lastb)
90 return 1;
Jens Axboeec4015d2007-03-23 08:04:27 +010091
Jens Axboe8055e412012-11-26 08:43:47 +010092 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE) {
Jens Axboe1ae83d42013-01-12 01:44:15 -070093 uint64_t rmax;
Jens Axboe15b87722011-10-12 09:42:33 +020094
Jens Axboe8055e412012-11-26 08:43:47 +010095 rmax = td->o.use_os_rand ? OS_RAND_MAX : FRAND_MAX;
96
97 if (td->o.use_os_rand) {
98 rmax = OS_RAND_MAX;
99 r = os_random_long(&td->random_state);
100 } else {
101 rmax = FRAND_MAX;
102 r = __rand(&td->__random_state);
103 }
104
Jens Axboe4b91ee82013-02-25 10:18:33 +0100105 dprint(FD_RANDOM, "off rand %llu\n", (unsigned long long) r);
Jens Axboe8055e412012-11-26 08:43:47 +0100106
Jens Axboe1ae83d42013-01-12 01:44:15 -0700107 *b = (lastb - 1) * (r / ((uint64_t) rmax + 1.0));
Jens Axboe51ede0b2012-11-22 13:50:29 +0100108 } else {
Jens Axboe8055e412012-11-26 08:43:47 +0100109 uint64_t off = 0;
110
Jens Axboe74776732013-01-11 14:03:25 +0100111 if (lfsr_next(&f->lfsr, &off, lastb))
Jens Axboe8055e412012-11-26 08:43:47 +0100112 return 1;
113
114 *b = off;
Jens Axboe51ede0b2012-11-22 13:50:29 +0100115 }
Jens Axboe2615cc42011-03-28 09:35:09 +0200116
Jens Axboeec4015d2007-03-23 08:04:27 +0100117 /*
Jens Axboe51ede0b2012-11-22 13:50:29 +0100118 * if we are not maintaining a random map, we are done.
Jens Axboeec4015d2007-03-23 08:04:27 +0100119 */
Jens Axboe51ede0b2012-11-22 13:50:29 +0100120 if (!file_randommap(td, f))
121 goto ret;
Jens Axboe43c63a72007-05-21 13:23:30 +0200122
123 /*
Jens Axboe51ede0b2012-11-22 13:50:29 +0100124 * calculate map offset and check if it's free
Jens Axboe43c63a72007-05-21 13:23:30 +0200125 */
Jens Axboe51ede0b2012-11-22 13:50:29 +0100126 if (random_map_free(f, *b))
127 goto ret;
128
Jens Axboe4b91ee82013-02-25 10:18:33 +0100129 dprint(FD_RANDOM, "get_next_rand_offset: offset %llu busy\n",
130 (unsigned long long) *b);
Jens Axboe51ede0b2012-11-22 13:50:29 +0100131
Jens Axboe7ebd7962012-11-28 21:24:46 +0100132 *b = axmap_next_free(f->io_axmap, *b);
Jens Axboe51ede0b2012-11-22 13:50:29 +0100133 if (*b == (uint64_t) -1ULL)
134 return 1;
Jens Axboe0ce8b112011-01-27 22:25:29 +0100135ret:
136 return 0;
Jens Axboeec4015d2007-03-23 08:04:27 +0100137}
138
Jens Axboe925fee32012-11-06 13:50:32 +0100139static int __get_next_rand_offset_zipf(struct thread_data *td,
140 struct fio_file *f, enum fio_ddir ddir,
Jens Axboe1ae83d42013-01-12 01:44:15 -0700141 uint64_t *b)
Jens Axboee25839d2012-11-06 10:49:42 +0100142{
Jens Axboe9c6f6312012-11-07 09:15:45 +0100143 *b = zipf_next(&f->zipf);
Jens Axboee25839d2012-11-06 10:49:42 +0100144 return 0;
145}
146
Jens Axboe925fee32012-11-06 13:50:32 +0100147static int __get_next_rand_offset_pareto(struct thread_data *td,
148 struct fio_file *f, enum fio_ddir ddir,
Jens Axboe1ae83d42013-01-12 01:44:15 -0700149 uint64_t *b)
Jens Axboe925fee32012-11-06 13:50:32 +0100150{
Jens Axboe9c6f6312012-11-07 09:15:45 +0100151 *b = pareto_next(&f->zipf);
Jens Axboe925fee32012-11-06 13:50:32 +0100152 return 0;
153}
154
Jens Axboe1ae83d42013-01-12 01:44:15 -0700155static int flist_cmp(void *data, struct flist_head *a, struct flist_head *b)
156{
157 struct rand_off *r1 = flist_entry(a, struct rand_off, list);
158 struct rand_off *r2 = flist_entry(b, struct rand_off, list);
159
160 return r1->off - r2->off;
161}
162
163static int get_off_from_method(struct thread_data *td, struct fio_file *f,
164 enum fio_ddir ddir, uint64_t *b)
Jens Axboee25839d2012-11-06 10:49:42 +0100165{
166 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM)
167 return __get_next_rand_offset(td, f, ddir, b);
168 else if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
169 return __get_next_rand_offset_zipf(td, f, ddir, b);
Jens Axboe925fee32012-11-06 13:50:32 +0100170 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
171 return __get_next_rand_offset_pareto(td, f, ddir, b);
Jens Axboee25839d2012-11-06 10:49:42 +0100172
173 log_err("fio: unknown random distribution: %d\n", td->o.random_distribution);
174 return 1;
175}
176
Jens Axboebcd5abf2013-01-23 09:27:25 -0700177/*
178 * Sort the reads for a verify phase in batches of verifysort_nr, if
179 * specified.
180 */
181static inline int should_sort_io(struct thread_data *td)
182{
183 if (!td->o.verifysort_nr || !td->o.do_verify)
184 return 0;
185 if (!td_random(td))
186 return 0;
187 if (td->runstate != TD_VERIFYING)
188 return 0;
189 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE)
190 return 0;
191
192 return 1;
193}
194
Jens Axboed9472272013-07-25 10:20:45 -0600195static int should_do_random(struct thread_data *td, enum fio_ddir ddir)
Jens Axboe211c9b82013-04-26 08:56:17 -0600196{
197 unsigned int v;
198 unsigned long r;
199
Jens Axboed9472272013-07-25 10:20:45 -0600200 if (td->o.perc_rand[ddir] == 100)
Jens Axboe211c9b82013-04-26 08:56:17 -0600201 return 1;
202
203 if (td->o.use_os_rand) {
Jens Axboed9472272013-07-25 10:20:45 -0600204 r = os_random_long(&td->seq_rand_state[ddir]);
Jens Axboe211c9b82013-04-26 08:56:17 -0600205 v = 1 + (int) (100.0 * (r / (OS_RAND_MAX + 1.0)));
206 } else {
Jens Axboed9472272013-07-25 10:20:45 -0600207 r = __rand(&td->__seq_rand_state[ddir]);
Jens Axboe211c9b82013-04-26 08:56:17 -0600208 v = 1 + (int) (100.0 * (r / (FRAND_MAX + 1.0)));
209 }
210
Jens Axboed9472272013-07-25 10:20:45 -0600211 return v <= td->o.perc_rand[ddir];
Jens Axboe211c9b82013-04-26 08:56:17 -0600212}
213
Jens Axboe1ae83d42013-01-12 01:44:15 -0700214static int get_next_rand_offset(struct thread_data *td, struct fio_file *f,
215 enum fio_ddir ddir, uint64_t *b)
216{
217 struct rand_off *r;
218 int i, ret = 1;
219
Jens Axboebcd5abf2013-01-23 09:27:25 -0700220 if (!should_sort_io(td))
Jens Axboe1ae83d42013-01-12 01:44:15 -0700221 return get_off_from_method(td, f, ddir, b);
222
223 if (!flist_empty(&td->next_rand_list)) {
224 struct rand_off *r;
225fetch:
226 r = flist_entry(td->next_rand_list.next, struct rand_off, list);
227 flist_del(&r->list);
228 *b = r->off;
229 free(r);
230 return 0;
231 }
232
233 for (i = 0; i < td->o.verifysort_nr; i++) {
234 r = malloc(sizeof(*r));
235
236 ret = get_off_from_method(td, f, ddir, &r->off);
237 if (ret) {
238 free(r);
239 break;
240 }
241
242 flist_add(&r->list, &td->next_rand_list);
243 }
244
245 if (ret && !i)
246 return ret;
247
248 assert(!flist_empty(&td->next_rand_list));
249 flist_sort(NULL, &td->next_rand_list, flist_cmp);
250 goto fetch;
251}
252
Jens Axboe38dad622010-07-20 14:46:00 -0600253static int get_next_rand_block(struct thread_data *td, struct fio_file *f,
Jens Axboe1ae83d42013-01-12 01:44:15 -0700254 enum fio_ddir ddir, uint64_t *b)
Jens Axboe38dad622010-07-20 14:46:00 -0600255{
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100256 if (!get_next_rand_offset(td, f, ddir, b))
257 return 0;
258
259 if (td->o.time_based) {
Jens Axboe33c48812013-01-21 09:46:06 -0700260 fio_file_reset(td, f);
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100261 if (!get_next_rand_offset(td, f, ddir, b))
262 return 0;
Jens Axboe38dad622010-07-20 14:46:00 -0600263 }
264
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100265 dprint(FD_IO, "%s: rand offset failed, last=%llu, size=%llu\n",
Jens Axboe4b91ee82013-02-25 10:18:33 +0100266 f->file_name, (unsigned long long) f->last_pos,
267 (unsigned long long) f->real_file_size);
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100268 return 1;
Jens Axboe38dad622010-07-20 14:46:00 -0600269}
270
Jens Axboe37cf9e32012-03-17 12:54:30 +0100271static int get_next_seq_offset(struct thread_data *td, struct fio_file *f,
Jens Axboe1ae83d42013-01-12 01:44:15 -0700272 enum fio_ddir ddir, uint64_t *offset)
Jens Axboe38dad622010-07-20 14:46:00 -0600273{
Jens Axboeff58fce2010-08-25 12:02:08 +0200274 assert(ddir_rw(ddir));
275
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200276 if (f->last_pos >= f->io_size + get_start_offset(td) && td->o.time_based)
Daniel Ehrenbergc04e4662012-03-16 18:54:15 +0100277 f->last_pos = f->last_pos - f->io_size;
278
Jens Axboe38dad622010-07-20 14:46:00 -0600279 if (f->last_pos < f->real_file_size) {
Jens Axboe1ae83d42013-01-12 01:44:15 -0700280 uint64_t pos;
Jens Axboe059b0802011-08-25 09:09:37 +0200281
Jens Axboea66da7a2011-08-31 13:14:12 -0600282 if (f->last_pos == f->file_offset && td->o.ddir_seq_add < 0)
283 f->last_pos = f->real_file_size;
284
285 pos = f->last_pos - f->file_offset;
Jens Axboe059b0802011-08-25 09:09:37 +0200286 if (pos)
287 pos += td->o.ddir_seq_add;
288
Jens Axboe37cf9e32012-03-17 12:54:30 +0100289 *offset = pos;
Jens Axboe38dad622010-07-20 14:46:00 -0600290 return 0;
291 }
292
293 return 1;
294}
295
296static int get_next_block(struct thread_data *td, struct io_u *io_u,
Jens Axboe6aca9b32013-07-25 12:45:26 -0600297 enum fio_ddir ddir, int rw_seq,
298 unsigned int *is_random)
Jens Axboe38dad622010-07-20 14:46:00 -0600299{
300 struct fio_file *f = io_u->file;
Jens Axboe1ae83d42013-01-12 01:44:15 -0700301 uint64_t b, offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600302 int ret;
303
Jens Axboeff58fce2010-08-25 12:02:08 +0200304 assert(ddir_rw(ddir));
305
Jens Axboe37cf9e32012-03-17 12:54:30 +0100306 b = offset = -1ULL;
307
Jens Axboe38dad622010-07-20 14:46:00 -0600308 if (rw_seq) {
Jens Axboe211c9b82013-04-26 08:56:17 -0600309 if (td_random(td)) {
Jens Axboe6aca9b32013-07-25 12:45:26 -0600310 if (should_do_random(td, ddir)) {
Jens Axboe211c9b82013-04-26 08:56:17 -0600311 ret = get_next_rand_block(td, f, ddir, &b);
Jens Axboe6aca9b32013-07-25 12:45:26 -0600312 *is_random = 1;
313 } else {
314 *is_random = 0;
Jens Axboe211c9b82013-04-26 08:56:17 -0600315 io_u->flags |= IO_U_F_BUSY_OK;
316 ret = get_next_seq_offset(td, f, ddir, &offset);
317 if (ret)
318 ret = get_next_rand_block(td, f, ddir, &b);
319 }
Jens Axboe6aca9b32013-07-25 12:45:26 -0600320 } else {
321 *is_random = 0;
Jens Axboe37cf9e32012-03-17 12:54:30 +0100322 ret = get_next_seq_offset(td, f, ddir, &offset);
Jens Axboe6aca9b32013-07-25 12:45:26 -0600323 }
Jens Axboe38dad622010-07-20 14:46:00 -0600324 } else {
325 io_u->flags |= IO_U_F_BUSY_OK;
Jens Axboe6aca9b32013-07-25 12:45:26 -0600326 *is_random = 0;
Jens Axboe38dad622010-07-20 14:46:00 -0600327
328 if (td->o.rw_seq == RW_SEQ_SEQ) {
Jens Axboe37cf9e32012-03-17 12:54:30 +0100329 ret = get_next_seq_offset(td, f, ddir, &offset);
Jens Axboe6aca9b32013-07-25 12:45:26 -0600330 if (ret) {
Jens Axboe37cf9e32012-03-17 12:54:30 +0100331 ret = get_next_rand_block(td, f, ddir, &b);
Jens Axboe6aca9b32013-07-25 12:45:26 -0600332 *is_random = 0;
333 }
Jens Axboe38dad622010-07-20 14:46:00 -0600334 } else if (td->o.rw_seq == RW_SEQ_IDENT) {
335 if (f->last_start != -1ULL)
Jens Axboe37cf9e32012-03-17 12:54:30 +0100336 offset = f->last_start - f->file_offset;
Jens Axboe38dad622010-07-20 14:46:00 -0600337 else
Jens Axboe37cf9e32012-03-17 12:54:30 +0100338 offset = 0;
Jens Axboe38dad622010-07-20 14:46:00 -0600339 ret = 0;
340 } else {
341 log_err("fio: unknown rw_seq=%d\n", td->o.rw_seq);
342 ret = 1;
343 }
344 }
Bruce Cran6d68b992013-01-13 17:21:58 +0000345
Jens Axboe37cf9e32012-03-17 12:54:30 +0100346 if (!ret) {
347 if (offset != -1ULL)
348 io_u->offset = offset;
349 else if (b != -1ULL)
350 io_u->offset = b * td->o.ba[ddir];
351 else {
Jens Axboe4e0a8fa2013-04-15 11:40:57 +0200352 log_err("fio: bug in offset generation: offset=%llu, b=%llu\n", (unsigned long long) offset, (unsigned long long) b);
Jens Axboe37cf9e32012-03-17 12:54:30 +0100353 ret = 1;
354 }
355 }
356
Jens Axboe38dad622010-07-20 14:46:00 -0600357 return ret;
358}
359
Jens Axboe10ba5352006-10-20 11:39:27 +0200360/*
361 * For random io, generate a random new block and see if it's used. Repeat
362 * until we find a free one. For sequential io, just return the end of
363 * the last io issued.
364 */
Jens Axboe6aca9b32013-07-25 12:45:26 -0600365static int __get_next_offset(struct thread_data *td, struct io_u *io_u,
366 unsigned int *is_random)
Jens Axboe10ba5352006-10-20 11:39:27 +0200367{
Jens Axboe9bf20612007-03-01 09:33:57 +0100368 struct fio_file *f = io_u->file;
Jens Axboe4ba66132008-02-05 10:05:50 +0100369 enum fio_ddir ddir = io_u->ddir;
Jens Axboe38dad622010-07-20 14:46:00 -0600370 int rw_seq_hit = 0;
Jens Axboe10ba5352006-10-20 11:39:27 +0200371
Jens Axboeff58fce2010-08-25 12:02:08 +0200372 assert(ddir_rw(ddir));
373
Jens Axboe38dad622010-07-20 14:46:00 -0600374 if (td->o.ddir_seq_nr && !--td->ddir_seq_nr) {
375 rw_seq_hit = 1;
Jens Axboe5736c102010-07-20 12:03:25 -0600376 td->ddir_seq_nr = td->o.ddir_seq_nr;
Jens Axboe38dad622010-07-20 14:46:00 -0600377 }
Jens Axboe10ba5352006-10-20 11:39:27 +0200378
Jens Axboe6aca9b32013-07-25 12:45:26 -0600379 if (get_next_block(td, io_u, ddir, rw_seq_hit, is_random))
Jens Axboe38dad622010-07-20 14:46:00 -0600380 return 1;
Jens Axboe10ba5352006-10-20 11:39:27 +0200381
Jens Axboe009bd842008-05-15 10:19:46 +0200382 if (io_u->offset >= f->io_size) {
383 dprint(FD_IO, "get_next_offset: offset %llu >= io_size %llu\n",
Jens Axboe4b91ee82013-02-25 10:18:33 +0100384 (unsigned long long) io_u->offset,
385 (unsigned long long) f->io_size);
Jens Axboe009bd842008-05-15 10:19:46 +0200386 return 1;
387 }
388
389 io_u->offset += f->file_offset;
Jens Axboe2ba1c292008-02-01 13:16:38 +0100390 if (io_u->offset >= f->real_file_size) {
391 dprint(FD_IO, "get_next_offset: offset %llu >= size %llu\n",
Jens Axboe4b91ee82013-02-25 10:18:33 +0100392 (unsigned long long) io_u->offset,
393 (unsigned long long) f->real_file_size);
Jens Axboe10ba5352006-10-20 11:39:27 +0200394 return 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +0100395 }
Jens Axboe10ba5352006-10-20 11:39:27 +0200396
397 return 0;
398}
399
Jens Axboe6aca9b32013-07-25 12:45:26 -0600400static int get_next_offset(struct thread_data *td, struct io_u *io_u,
401 unsigned int *is_random)
Jens Axboe15dc1932010-03-05 10:59:06 +0100402{
Jens Axboed72be542012-11-30 19:37:46 +0100403 if (td->flags & TD_F_PROFILE_OPS) {
404 struct prof_io_ops *ops = &td->prof_io_ops;
Jens Axboe7eb36572010-03-08 13:58:49 +0100405
Jens Axboed72be542012-11-30 19:37:46 +0100406 if (ops->fill_io_u_off)
Jens Axboe6aca9b32013-07-25 12:45:26 -0600407 return ops->fill_io_u_off(td, io_u, is_random);
Jens Axboed72be542012-11-30 19:37:46 +0100408 }
Jens Axboe15dc1932010-03-05 10:59:06 +0100409
Jens Axboe6aca9b32013-07-25 12:45:26 -0600410 return __get_next_offset(td, io_u, is_random);
Jens Axboe15dc1932010-03-05 10:59:06 +0100411}
412
Jens Axboe79944122011-05-24 11:26:16 +0200413static inline int io_u_fits(struct thread_data *td, struct io_u *io_u,
414 unsigned int buflen)
415{
416 struct fio_file *f = io_u->file;
417
Dan Ehrenbergce95d652012-08-16 08:58:21 +0200418 return io_u->offset + buflen <= f->io_size + get_start_offset(td);
Jens Axboe79944122011-05-24 11:26:16 +0200419}
420
Jens Axboe6aca9b32013-07-25 12:45:26 -0600421static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u,
422 unsigned int is_random)
Jens Axboe10ba5352006-10-20 11:39:27 +0200423{
Jens Axboe6aca9b32013-07-25 12:45:26 -0600424 int ddir = io_u->ddir;
Jens Axboe24d23ca2012-11-13 08:31:24 -0700425 unsigned int buflen = 0;
Jens Axboef3059de2008-06-11 15:37:32 +0200426 unsigned int minbs, maxbs;
Jens Axboe1294c3e2011-05-11 08:15:18 +0200427 unsigned long r, rand_max;
Jens Axboe10ba5352006-10-20 11:39:27 +0200428
Jens Axboe6aca9b32013-07-25 12:45:26 -0600429 assert(ddir_rw(io_u->ddir));
430
431 if (td->o.bs_is_seq_rand)
432 ddir = is_random ? DDIR_WRITE: DDIR_READ;
433 else
434 ddir = io_u->ddir;
Jens Axboeff58fce2010-08-25 12:02:08 +0200435
Jens Axboef3059de2008-06-11 15:37:32 +0200436 minbs = td->o.min_bs[ddir];
437 maxbs = td->o.max_bs[ddir];
438
Jens Axboe79944122011-05-24 11:26:16 +0200439 if (minbs == maxbs)
440 return minbs;
441
Jens Axboe52c58022012-02-06 21:58:56 +0100442 /*
443 * If we can't satisfy the min block size from here, then fail
444 */
445 if (!io_u_fits(td, io_u, minbs))
446 return 0;
447
Jens Axboe4c07ad82011-03-28 09:51:09 +0200448 if (td->o.use_os_rand)
449 rand_max = OS_RAND_MAX;
450 else
451 rand_max = FRAND_MAX;
452
Jens Axboe79944122011-05-24 11:26:16 +0200453 do {
Jens Axboe4c07ad82011-03-28 09:51:09 +0200454 if (td->o.use_os_rand)
455 r = os_random_long(&td->bsrange_state);
456 else
457 r = __rand(&td->__bsrange_state);
458
Jens Axboe720e84a2009-04-21 08:29:55 +0200459 if (!td->o.bssplit_nr[ddir]) {
Jens Axboef3059de2008-06-11 15:37:32 +0200460 buflen = 1 + (unsigned int) ((double) maxbs *
Jens Axboe4c07ad82011-03-28 09:51:09 +0200461 (r / (rand_max + 1.0)));
Jens Axboef3059de2008-06-11 15:37:32 +0200462 if (buflen < minbs)
463 buflen = minbs;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100464 } else {
Jens Axboe564ca972007-12-14 12:21:19 +0100465 long perc = 0;
466 unsigned int i;
467
Jens Axboe720e84a2009-04-21 08:29:55 +0200468 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
469 struct bssplit *bsp = &td->o.bssplit[ddir][i];
Jens Axboe564ca972007-12-14 12:21:19 +0100470
471 buflen = bsp->bs;
472 perc += bsp->perc;
Jens Axboe79944122011-05-24 11:26:16 +0200473 if ((r <= ((rand_max / 100L) * perc)) &&
474 io_u_fits(td, io_u, buflen))
Jens Axboe564ca972007-12-14 12:21:19 +0100475 break;
476 }
477 }
Jens Axboe79944122011-05-24 11:26:16 +0200478
Josef Bacika9f70b12013-07-08 20:32:50 -0400479 if (td->o.do_verify && td->o.verify != VERIFY_NONE)
480 buflen = (buflen + td->o.verify_interval - 1) &
481 ~(td->o.verify_interval - 1);
482
Jens Axboef3059de2008-06-11 15:37:32 +0200483 if (!td->o.bs_unaligned && is_power_of_2(minbs))
484 buflen = (buflen + minbs - 1) & ~(minbs - 1);
Jens Axboe10ba5352006-10-20 11:39:27 +0200485
Jens Axboe79944122011-05-24 11:26:16 +0200486 } while (!io_u_fits(td, io_u, buflen));
Jens Axboe6a5e6882007-07-26 10:47:51 +0200487
Jens Axboe10ba5352006-10-20 11:39:27 +0200488 return buflen;
489}
490
Jens Axboe6aca9b32013-07-25 12:45:26 -0600491static unsigned int get_next_buflen(struct thread_data *td, struct io_u *io_u,
492 unsigned int is_random)
Jens Axboe15dc1932010-03-05 10:59:06 +0100493{
Jens Axboed72be542012-11-30 19:37:46 +0100494 if (td->flags & TD_F_PROFILE_OPS) {
495 struct prof_io_ops *ops = &td->prof_io_ops;
Jens Axboe7eb36572010-03-08 13:58:49 +0100496
Jens Axboed72be542012-11-30 19:37:46 +0100497 if (ops->fill_io_u_size)
Jens Axboe6aca9b32013-07-25 12:45:26 -0600498 return ops->fill_io_u_size(td, io_u, is_random);
Jens Axboed72be542012-11-30 19:37:46 +0100499 }
Jens Axboe15dc1932010-03-05 10:59:06 +0100500
Jens Axboe6aca9b32013-07-25 12:45:26 -0600501 return __get_next_buflen(td, io_u, is_random);
Jens Axboe15dc1932010-03-05 10:59:06 +0100502}
503
Jens Axboeafe24a52007-03-16 20:27:27 +0100504static void set_rwmix_bytes(struct thread_data *td)
505{
Jens Axboeafe24a52007-03-16 20:27:27 +0100506 unsigned int diff;
507
508 /*
509 * we do time or byte based switch. this is needed because
510 * buffered writes may issue a lot quicker than they complete,
511 * whereas reads do not.
512 */
Jens Axboee47f7992007-03-21 14:05:39 +0100513 diff = td->o.rwmix[td->rwmix_ddir ^ 1];
Jens Axboe04c540d2008-05-28 10:35:26 +0200514 td->rwmix_issues = (td->io_issues[td->rwmix_ddir] * diff) / 100;
Jens Axboee47f7992007-03-21 14:05:39 +0100515}
516
517static inline enum fio_ddir get_rand_ddir(struct thread_data *td)
518{
519 unsigned int v;
Jens Axboe1294c3e2011-05-11 08:15:18 +0200520 unsigned long r;
Jens Axboee47f7992007-03-21 14:05:39 +0100521
Jens Axboe4c07ad82011-03-28 09:51:09 +0200522 if (td->o.use_os_rand) {
523 r = os_random_long(&td->rwmix_state);
524 v = 1 + (int) (100.0 * (r / (OS_RAND_MAX + 1.0)));
525 } else {
526 r = __rand(&td->__rwmix_state);
527 v = 1 + (int) (100.0 * (r / (FRAND_MAX + 1.0)));
528 }
529
Jens Axboe04c540d2008-05-28 10:35:26 +0200530 if (v <= td->o.rwmix[DDIR_READ])
Jens Axboee47f7992007-03-21 14:05:39 +0100531 return DDIR_READ;
532
533 return DDIR_WRITE;
Jens Axboeafe24a52007-03-16 20:27:27 +0100534}
535
Jens Axboe002e7182013-05-17 12:39:53 +0200536void io_u_quiesce(struct thread_data *td)
537{
538 /*
539 * We are going to sleep, ensure that we flush anything pending as
540 * not to skew our latency numbers.
541 *
542 * Changed to only monitor 'in flight' requests here instead of the
543 * td->cur_depth, b/c td->cur_depth does not accurately represent
544 * io's that have been actually submitted to an async engine,
545 * and cur_depth is meaningless for sync engines.
546 */
547 while (td->io_u_in_flight) {
548 int fio_unused ret;
549
550 ret = io_u_queued_complete(td, 1, NULL);
551 }
552}
553
Jens Axboe581e7142009-06-09 12:47:16 +0200554static enum fio_ddir rate_ddir(struct thread_data *td, enum fio_ddir ddir)
555{
556 enum fio_ddir odir = ddir ^ 1;
557 struct timeval t;
558 long usec;
559
Jens Axboeff58fce2010-08-25 12:02:08 +0200560 assert(ddir_rw(ddir));
561
Jens Axboe315fcfe2013-02-08 19:05:25 +0100562 if (td->rate_pending_usleep[ddir] <= 0)
Jens Axboe581e7142009-06-09 12:47:16 +0200563 return ddir;
564
565 /*
566 * We have too much pending sleep in this direction. See if we
567 * should switch.
568 */
Jens Axboe315fcfe2013-02-08 19:05:25 +0100569 if (td_rw(td) && td->o.rwmix[odir]) {
Jens Axboe581e7142009-06-09 12:47:16 +0200570 /*
571 * Other direction does not have too much pending, switch
572 */
573 if (td->rate_pending_usleep[odir] < 100000)
574 return odir;
575
576 /*
577 * Both directions have pending sleep. Sleep the minimum time
578 * and deduct from both.
579 */
580 if (td->rate_pending_usleep[ddir] <=
581 td->rate_pending_usleep[odir]) {
582 usec = td->rate_pending_usleep[ddir];
583 } else {
584 usec = td->rate_pending_usleep[odir];
585 ddir = odir;
586 }
587 } else
588 usec = td->rate_pending_usleep[ddir];
589
Jens Axboe002e7182013-05-17 12:39:53 +0200590 io_u_quiesce(td);
Jens Axboe78c1eda2011-08-30 15:34:14 -0600591
Jens Axboe581e7142009-06-09 12:47:16 +0200592 fio_gettime(&t, NULL);
593 usec_sleep(td, usec);
594 usec = utime_since_now(&t);
595
596 td->rate_pending_usleep[ddir] -= usec;
597
598 odir = ddir ^ 1;
599 if (td_rw(td) && __should_check_rate(td, odir))
600 td->rate_pending_usleep[odir] -= usec;
Jens Axboe0b9d69e2009-09-11 22:29:54 +0200601
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200602 if (ddir_trim(ddir))
603 return ddir;
Jens Axboee0224c62013-02-07 19:55:24 +0100604
Jens Axboe581e7142009-06-09 12:47:16 +0200605 return ddir;
606}
607
Jens Axboe10ba5352006-10-20 11:39:27 +0200608/*
609 * Return the data direction for the next io_u. If the job is a
610 * mixed read/write workload, check the rwmix cycle and switch if
611 * necessary.
612 */
Jens Axboe1e97cce2006-12-05 11:44:16 +0100613static enum fio_ddir get_rw_ddir(struct thread_data *td)
Jens Axboe10ba5352006-10-20 11:39:27 +0200614{
Jens Axboe581e7142009-06-09 12:47:16 +0200615 enum fio_ddir ddir;
616
Jens Axboe5f9099e2009-06-16 22:40:26 +0200617 /*
618 * see if it's time to fsync
619 */
620 if (td->o.fsync_blocks &&
621 !(td->io_issues[DDIR_WRITE] % td->o.fsync_blocks) &&
622 td->io_issues[DDIR_WRITE] && should_fsync(td))
623 return DDIR_SYNC;
624
625 /*
626 * see if it's time to fdatasync
627 */
628 if (td->o.fdatasync_blocks &&
629 !(td->io_issues[DDIR_WRITE] % td->o.fdatasync_blocks) &&
630 td->io_issues[DDIR_WRITE] && should_fsync(td))
631 return DDIR_DATASYNC;
632
Jens Axboe44f29692010-03-09 20:09:44 +0100633 /*
634 * see if it's time to sync_file_range
635 */
636 if (td->sync_file_range_nr &&
637 !(td->io_issues[DDIR_WRITE] % td->sync_file_range_nr) &&
638 td->io_issues[DDIR_WRITE] && should_fsync(td))
639 return DDIR_SYNC_FILE_RANGE;
640
Jens Axboe10ba5352006-10-20 11:39:27 +0200641 if (td_rw(td)) {
Jens Axboe10ba5352006-10-20 11:39:27 +0200642 /*
643 * Check if it's time to seed a new data direction.
644 */
Jens Axboee4928662008-04-07 09:19:46 +0200645 if (td->io_issues[td->rwmix_ddir] >= td->rwmix_issues) {
Jens Axboee47f7992007-03-21 14:05:39 +0100646 /*
647 * Put a top limit on how many bytes we do for
648 * one data direction, to avoid overflowing the
649 * ranges too much
650 */
651 ddir = get_rand_ddir(td);
Jens Axboee47f7992007-03-21 14:05:39 +0100652
653 if (ddir != td->rwmix_ddir)
654 set_rwmix_bytes(td);
655
656 td->rwmix_ddir = ddir;
Jens Axboe10ba5352006-10-20 11:39:27 +0200657 }
Jens Axboe581e7142009-06-09 12:47:16 +0200658 ddir = td->rwmix_ddir;
Jens Axboe10ba5352006-10-20 11:39:27 +0200659 } else if (td_read(td))
Jens Axboe581e7142009-06-09 12:47:16 +0200660 ddir = DDIR_READ;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200661 else if (td_write(td))
Jens Axboe581e7142009-06-09 12:47:16 +0200662 ddir = DDIR_WRITE;
Shaohua Li6eaf09d2012-09-14 08:49:43 +0200663 else
664 ddir = DDIR_TRIM;
Jens Axboe581e7142009-06-09 12:47:16 +0200665
666 td->rwmix_ddir = rate_ddir(td, ddir);
667 return td->rwmix_ddir;
Jens Axboe10ba5352006-10-20 11:39:27 +0200668}
669
Jens Axboe1ef2b6b2010-10-08 15:07:01 +0200670static void set_rw_ddir(struct thread_data *td, struct io_u *io_u)
671{
Jens Axboebcd5abf2013-01-23 09:27:25 -0700672 io_u->ddir = io_u->acct_ddir = get_rw_ddir(td);
Jens Axboe1ef2b6b2010-10-08 15:07:01 +0200673
674 if (io_u->ddir == DDIR_WRITE && (td->io_ops->flags & FIO_BARRIER) &&
675 td->o.barrier_blocks &&
676 !(td->io_issues[DDIR_WRITE] % td->o.barrier_blocks) &&
677 td->io_issues[DDIR_WRITE])
678 io_u->flags |= IO_U_F_BARRIER;
679}
680
Jens Axboee8462bd2009-07-06 12:59:04 +0200681void put_file_log(struct thread_data *td, struct fio_file *f)
Jens Axboe60f2c652008-05-16 12:31:36 +0200682{
683 int ret = put_file(td, f);
684
685 if (ret)
686 td_verror(td, ret, "file close");
687}
688
Jens Axboe10ba5352006-10-20 11:39:27 +0200689void put_io_u(struct thread_data *td, struct io_u *io_u)
690{
Jens Axboee8462bd2009-07-06 12:59:04 +0200691 td_io_u_lock(td);
692
Steven Langd7ee2a72011-10-26 09:46:50 +0200693 if (io_u->file && !(io_u->flags & IO_U_F_FREE_DEF))
Jens Axboe60f2c652008-05-16 12:31:36 +0200694 put_file_log(td, io_u->file);
Jens Axboe10ba5352006-10-20 11:39:27 +0200695 io_u->file = NULL;
Steven Langd7ee2a72011-10-26 09:46:50 +0200696 io_u->flags &= ~IO_U_F_FREE_DEF;
697 io_u->flags |= IO_U_F_FREE;
698
Radha Ramachandran0c412142009-11-03 21:45:31 +0100699 if (io_u->flags & IO_U_F_IN_CUR_DEPTH)
700 td->cur_depth--;
Jens Axboe2ae0b202013-05-28 14:16:55 +0200701 io_u_qpush(&td->io_u_freelist, io_u);
Jens Axboee8462bd2009-07-06 12:59:04 +0200702 td_io_u_unlock(td);
703 td_io_u_free_notify(td);
Jens Axboe10ba5352006-10-20 11:39:27 +0200704}
705
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200706void clear_io_u(struct thread_data *td, struct io_u *io_u)
707{
708 io_u->flags &= ~IO_U_F_FLIGHT;
709 put_io_u(td, io_u);
710}
711
Jens Axboe755200a2007-02-19 13:08:12 +0100712void requeue_io_u(struct thread_data *td, struct io_u **io_u)
713{
714 struct io_u *__io_u = *io_u;
Jens Axboebcd5abf2013-01-23 09:27:25 -0700715 enum fio_ddir ddir = acct_ddir(__io_u);
Jens Axboe755200a2007-02-19 13:08:12 +0100716
Jens Axboe465221b2008-05-30 22:07:49 +0200717 dprint(FD_IO, "requeue %p\n", __io_u);
718
Jens Axboee8462bd2009-07-06 12:59:04 +0200719 td_io_u_lock(td);
720
Jens Axboe4d2e0f42007-02-24 13:31:57 +0100721 __io_u->flags |= IO_U_F_FREE;
Jens Axboebcd5abf2013-01-23 09:27:25 -0700722 if ((__io_u->flags & IO_U_F_FLIGHT) && ddir_rw(ddir))
723 td->io_issues[ddir]--;
Jens Axboe5ec10ea2008-03-06 15:42:00 +0100724
Jens Axboe4d2e0f42007-02-24 13:31:57 +0100725 __io_u->flags &= ~IO_U_F_FLIGHT;
Radha Ramachandran0c412142009-11-03 21:45:31 +0100726 if (__io_u->flags & IO_U_F_IN_CUR_DEPTH)
727 td->cur_depth--;
Jens Axboe2ae0b202013-05-28 14:16:55 +0200728
729 io_u_rpush(&td->io_u_requeues, __io_u);
Jens Axboee8462bd2009-07-06 12:59:04 +0200730 td_io_u_unlock(td);
Jens Axboe755200a2007-02-19 13:08:12 +0100731 *io_u = NULL;
732}
733
Jens Axboe9bf20612007-03-01 09:33:57 +0100734static int fill_io_u(struct thread_data *td, struct io_u *io_u)
Jens Axboe10ba5352006-10-20 11:39:27 +0200735{
Jens Axboe6aca9b32013-07-25 12:45:26 -0600736 unsigned int is_random;
737
Jens Axboeb4c5e1a2007-10-25 18:44:45 +0200738 if (td->io_ops->flags & FIO_NOIO)
739 goto out;
740
Jens Axboe1ef2b6b2010-10-08 15:07:01 +0200741 set_rw_ddir(td, io_u);
Jens Axboea00735e2006-11-03 08:58:08 +0100742
Jens Axboe87dc1ab2006-10-24 14:41:26 +0200743 /*
Jens Axboeff58fce2010-08-25 12:02:08 +0200744 * fsync() or fdatasync() or trim etc, we are done
Jens Axboe5f9099e2009-06-16 22:40:26 +0200745 */
Jens Axboeff58fce2010-08-25 12:02:08 +0200746 if (!ddir_rw(io_u->ddir))
Jens Axboe5f9099e2009-06-16 22:40:26 +0200747 goto out;
748
749 /*
Jens Axboe48f5abd2007-07-20 13:25:04 +0200750 * See if it's time to switch to a new zone
751 */
Jens Axboe13af05a2012-02-11 09:04:02 +0100752 if (td->zone_bytes >= td->o.zone_size && td->o.zone_skip) {
Jens Axboe48f5abd2007-07-20 13:25:04 +0200753 td->zone_bytes = 0;
Steven Noonaned335852012-01-31 13:58:00 +0100754 io_u->file->file_offset += td->o.zone_range + td->o.zone_skip;
755 io_u->file->last_pos = io_u->file->file_offset;
Jens Axboe48f5abd2007-07-20 13:25:04 +0200756 td->io_skip_bytes += td->o.zone_skip;
757 }
758
759 /*
Jens Axboec685b5b2007-02-10 20:02:28 +0100760 * No log, let the seq/rand engine retrieve the next buflen and
761 * position.
Jens Axboe10ba5352006-10-20 11:39:27 +0200762 */
Jens Axboe6aca9b32013-07-25 12:45:26 -0600763 if (get_next_offset(td, io_u, &is_random)) {
Jens Axboe2ba1c292008-02-01 13:16:38 +0100764 dprint(FD_IO, "io_u %p, failed getting offset\n", io_u);
Jens Axboebca4ed42007-02-12 05:13:23 +0100765 return 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +0100766 }
Jens Axboec685b5b2007-02-10 20:02:28 +0100767
Jens Axboe6aca9b32013-07-25 12:45:26 -0600768 io_u->buflen = get_next_buflen(td, io_u, is_random);
Jens Axboe2ba1c292008-02-01 13:16:38 +0100769 if (!io_u->buflen) {
770 dprint(FD_IO, "io_u %p, failed getting buflen\n", io_u);
Jens Axboebca4ed42007-02-12 05:13:23 +0100771 return 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +0100772 }
Jens Axboe10ba5352006-10-20 11:39:27 +0200773
Jens Axboe2ba1c292008-02-01 13:16:38 +0100774 if (io_u->offset + io_u->buflen > io_u->file->real_file_size) {
775 dprint(FD_IO, "io_u %p, offset too large\n", io_u);
Jens Axboe4b91ee82013-02-25 10:18:33 +0100776 dprint(FD_IO, " off=%llu/%lu > %llu\n",
777 (unsigned long long) io_u->offset, io_u->buflen,
778 (unsigned long long) io_u->file->real_file_size);
Jens Axboe6a5e6882007-07-26 10:47:51 +0200779 return 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +0100780 }
Jens Axboe6a5e6882007-07-26 10:47:51 +0200781
Jens Axboebca4ed42007-02-12 05:13:23 +0100782 /*
783 * mark entry before potentially trimming io_u
784 */
Jens Axboe303032a2008-03-26 10:11:10 +0100785 if (td_random(td) && file_randommap(td, io_u->file))
Jens Axboe9bf20612007-03-01 09:33:57 +0100786 mark_random_map(td, io_u);
Jens Axboe10ba5352006-10-20 11:39:27 +0200787
Jens Axboec38e9462007-03-27 08:48:48 +0200788out:
Jens Axboe2ba1c292008-02-01 13:16:38 +0100789 dprint_io_u(io_u, "fill_io_u");
Jens Axboed9d91e32008-01-31 13:25:42 +0100790 td->zone_bytes += io_u->buflen;
Jens Axboebca4ed42007-02-12 05:13:23 +0100791 return 0;
Jens Axboe10ba5352006-10-20 11:39:27 +0200792}
793
Jens Axboe838bc702008-05-22 13:08:23 +0200794static void __io_u_mark_map(unsigned int *map, unsigned int nr)
795{
Jens Axboe2b13e712011-01-19 14:04:16 -0700796 int idx = 0;
Jens Axboe838bc702008-05-22 13:08:23 +0200797
798 switch (nr) {
799 default:
Jens Axboe2b13e712011-01-19 14:04:16 -0700800 idx = 6;
Jens Axboe838bc702008-05-22 13:08:23 +0200801 break;
802 case 33 ... 64:
Jens Axboe2b13e712011-01-19 14:04:16 -0700803 idx = 5;
Jens Axboe838bc702008-05-22 13:08:23 +0200804 break;
805 case 17 ... 32:
Jens Axboe2b13e712011-01-19 14:04:16 -0700806 idx = 4;
Jens Axboe838bc702008-05-22 13:08:23 +0200807 break;
808 case 9 ... 16:
Jens Axboe2b13e712011-01-19 14:04:16 -0700809 idx = 3;
Jens Axboe838bc702008-05-22 13:08:23 +0200810 break;
811 case 5 ... 8:
Jens Axboe2b13e712011-01-19 14:04:16 -0700812 idx = 2;
Jens Axboe838bc702008-05-22 13:08:23 +0200813 break;
814 case 1 ... 4:
Jens Axboe2b13e712011-01-19 14:04:16 -0700815 idx = 1;
Jens Axboe838bc702008-05-22 13:08:23 +0200816 case 0:
817 break;
818 }
819
Jens Axboe2b13e712011-01-19 14:04:16 -0700820 map[idx]++;
Jens Axboe838bc702008-05-22 13:08:23 +0200821}
822
823void io_u_mark_submit(struct thread_data *td, unsigned int nr)
824{
825 __io_u_mark_map(td->ts.io_u_submit, nr);
826 td->ts.total_submit++;
827}
828
829void io_u_mark_complete(struct thread_data *td, unsigned int nr)
830{
831 __io_u_mark_map(td->ts.io_u_complete, nr);
832 td->ts.total_complete++;
833}
834
Jens Axboed8005752008-05-15 09:49:09 +0200835void io_u_mark_depth(struct thread_data *td, unsigned int nr)
Jens Axboe71619dc2007-01-13 23:56:33 +0100836{
Jens Axboe2b13e712011-01-19 14:04:16 -0700837 int idx = 0;
Jens Axboe71619dc2007-01-13 23:56:33 +0100838
839 switch (td->cur_depth) {
840 default:
Jens Axboe2b13e712011-01-19 14:04:16 -0700841 idx = 6;
Jens Axboea783e612007-06-19 09:50:28 +0200842 break;
Jens Axboe71619dc2007-01-13 23:56:33 +0100843 case 32 ... 63:
Jens Axboe2b13e712011-01-19 14:04:16 -0700844 idx = 5;
Jens Axboea783e612007-06-19 09:50:28 +0200845 break;
Jens Axboe71619dc2007-01-13 23:56:33 +0100846 case 16 ... 31:
Jens Axboe2b13e712011-01-19 14:04:16 -0700847 idx = 4;
Jens Axboea783e612007-06-19 09:50:28 +0200848 break;
Jens Axboe71619dc2007-01-13 23:56:33 +0100849 case 8 ... 15:
Jens Axboe2b13e712011-01-19 14:04:16 -0700850 idx = 3;
Jens Axboea783e612007-06-19 09:50:28 +0200851 break;
Jens Axboe71619dc2007-01-13 23:56:33 +0100852 case 4 ... 7:
Jens Axboe2b13e712011-01-19 14:04:16 -0700853 idx = 2;
Jens Axboea783e612007-06-19 09:50:28 +0200854 break;
Jens Axboe71619dc2007-01-13 23:56:33 +0100855 case 2 ... 3:
Jens Axboe2b13e712011-01-19 14:04:16 -0700856 idx = 1;
Jens Axboe71619dc2007-01-13 23:56:33 +0100857 case 1:
858 break;
859 }
860
Jens Axboe2b13e712011-01-19 14:04:16 -0700861 td->ts.io_u_map[idx] += nr;
Jens Axboe71619dc2007-01-13 23:56:33 +0100862}
863
Jens Axboe04a0fea2007-06-19 12:48:41 +0200864static void io_u_mark_lat_usec(struct thread_data *td, unsigned long usec)
865{
Jens Axboe2b13e712011-01-19 14:04:16 -0700866 int idx = 0;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200867
868 assert(usec < 1000);
869
870 switch (usec) {
871 case 750 ... 999:
Jens Axboe2b13e712011-01-19 14:04:16 -0700872 idx = 9;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200873 break;
874 case 500 ... 749:
Jens Axboe2b13e712011-01-19 14:04:16 -0700875 idx = 8;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200876 break;
877 case 250 ... 499:
Jens Axboe2b13e712011-01-19 14:04:16 -0700878 idx = 7;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200879 break;
880 case 100 ... 249:
Jens Axboe2b13e712011-01-19 14:04:16 -0700881 idx = 6;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200882 break;
883 case 50 ... 99:
Jens Axboe2b13e712011-01-19 14:04:16 -0700884 idx = 5;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200885 break;
886 case 20 ... 49:
Jens Axboe2b13e712011-01-19 14:04:16 -0700887 idx = 4;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200888 break;
889 case 10 ... 19:
Jens Axboe2b13e712011-01-19 14:04:16 -0700890 idx = 3;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200891 break;
892 case 4 ... 9:
Jens Axboe2b13e712011-01-19 14:04:16 -0700893 idx = 2;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200894 break;
895 case 2 ... 3:
Jens Axboe2b13e712011-01-19 14:04:16 -0700896 idx = 1;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200897 case 0 ... 1:
898 break;
899 }
900
Jens Axboe2b13e712011-01-19 14:04:16 -0700901 assert(idx < FIO_IO_U_LAT_U_NR);
902 td->ts.io_u_lat_u[idx]++;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200903}
904
905static void io_u_mark_lat_msec(struct thread_data *td, unsigned long msec)
Jens Axboeec118302007-02-17 04:38:20 +0100906{
Jens Axboe2b13e712011-01-19 14:04:16 -0700907 int idx = 0;
Jens Axboeec118302007-02-17 04:38:20 +0100908
909 switch (msec) {
910 default:
Jens Axboe2b13e712011-01-19 14:04:16 -0700911 idx = 11;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200912 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100913 case 1000 ... 1999:
Jens Axboe2b13e712011-01-19 14:04:16 -0700914 idx = 10;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200915 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100916 case 750 ... 999:
Jens Axboe2b13e712011-01-19 14:04:16 -0700917 idx = 9;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200918 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100919 case 500 ... 749:
Jens Axboe2b13e712011-01-19 14:04:16 -0700920 idx = 8;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200921 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100922 case 250 ... 499:
Jens Axboe2b13e712011-01-19 14:04:16 -0700923 idx = 7;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200924 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100925 case 100 ... 249:
Jens Axboe2b13e712011-01-19 14:04:16 -0700926 idx = 6;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200927 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100928 case 50 ... 99:
Jens Axboe2b13e712011-01-19 14:04:16 -0700929 idx = 5;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200930 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100931 case 20 ... 49:
Jens Axboe2b13e712011-01-19 14:04:16 -0700932 idx = 4;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200933 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100934 case 10 ... 19:
Jens Axboe2b13e712011-01-19 14:04:16 -0700935 idx = 3;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200936 break;
Jens Axboe8abdce62007-02-21 10:22:55 +0100937 case 4 ... 9:
Jens Axboe2b13e712011-01-19 14:04:16 -0700938 idx = 2;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200939 break;
Jens Axboeec118302007-02-17 04:38:20 +0100940 case 2 ... 3:
Jens Axboe2b13e712011-01-19 14:04:16 -0700941 idx = 1;
Jens Axboeec118302007-02-17 04:38:20 +0100942 case 0 ... 1:
943 break;
944 }
945
Jens Axboe2b13e712011-01-19 14:04:16 -0700946 assert(idx < FIO_IO_U_LAT_M_NR);
947 td->ts.io_u_lat_m[idx]++;
Jens Axboe04a0fea2007-06-19 12:48:41 +0200948}
949
950static void io_u_mark_latency(struct thread_data *td, unsigned long usec)
951{
952 if (usec < 1000)
953 io_u_mark_lat_usec(td, usec);
954 else
955 io_u_mark_lat_msec(td, usec / 1000);
Jens Axboeec118302007-02-17 04:38:20 +0100956}
957
Jens Axboe0aabe162007-02-23 08:45:55 +0100958/*
959 * Get next file to service by choosing one at random
960 */
Jens Axboe2cc52932009-06-09 14:14:20 +0200961static struct fio_file *get_next_file_rand(struct thread_data *td,
962 enum fio_file_flags goodf,
Jens Axboed6aed792009-06-03 08:41:15 +0200963 enum fio_file_flags badf)
Jens Axboe0aabe162007-02-23 08:45:55 +0100964{
Jens Axboe0aabe162007-02-23 08:45:55 +0100965 struct fio_file *f;
Jens Axboe1c178182007-03-13 13:25:18 +0100966 int fno;
Jens Axboe0aabe162007-02-23 08:45:55 +0100967
968 do {
Jens Axboe87b10672009-03-04 09:39:47 +0100969 int opened = 0;
Jens Axboe1294c3e2011-05-11 08:15:18 +0200970 unsigned long r;
Jens Axboe7c83c082007-03-01 10:04:15 +0100971
Jens Axboe4c07ad82011-03-28 09:51:09 +0200972 if (td->o.use_os_rand) {
973 r = os_random_long(&td->next_file_state);
974 fno = (unsigned int) ((double) td->o.nr_files
975 * (r / (OS_RAND_MAX + 1.0)));
976 } else {
977 r = __rand(&td->__next_file_state);
978 fno = (unsigned int) ((double) td->o.nr_files
979 * (r / (FRAND_MAX + 1.0)));
980 }
981
Jens Axboe126d65c2008-03-01 18:04:31 +0100982 f = td->files[fno];
Jens Axboed6aed792009-06-03 08:41:15 +0200983 if (fio_file_done(f))
Jens Axboe059e63c2007-03-27 20:34:47 +0200984 continue;
Jens Axboe1c178182007-03-13 13:25:18 +0100985
Jens Axboed6aed792009-06-03 08:41:15 +0200986 if (!fio_file_open(f)) {
Jens Axboe87b10672009-03-04 09:39:47 +0100987 int err;
988
Jens Axboe002fe732014-02-11 08:31:13 -0700989 if (td->nr_open_files >= td->o.open_files)
990 return ERR_PTR(-EBUSY);
991
Jens Axboe87b10672009-03-04 09:39:47 +0100992 err = td_io_open_file(td, f);
993 if (err)
994 continue;
995 opened = 1;
996 }
997
Jens Axboe2ba1c292008-02-01 13:16:38 +0100998 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf)) {
999 dprint(FD_FILE, "get_next_file_rand: %p\n", f);
Jens Axboe0aabe162007-02-23 08:45:55 +01001000 return f;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001001 }
Jens Axboe87b10672009-03-04 09:39:47 +01001002 if (opened)
1003 td_io_close_file(td, f);
Jens Axboe0aabe162007-02-23 08:45:55 +01001004 } while (1);
1005}
1006
1007/*
1008 * Get next file to service by doing round robin between all available ones
1009 */
Jens Axboe1c178182007-03-13 13:25:18 +01001010static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf,
1011 int badf)
Jens Axboe3d7c3912007-02-19 13:16:12 +01001012{
1013 unsigned int old_next_file = td->next_file;
1014 struct fio_file *f;
1015
1016 do {
Jens Axboe87b10672009-03-04 09:39:47 +01001017 int opened = 0;
1018
Jens Axboe126d65c2008-03-01 18:04:31 +01001019 f = td->files[td->next_file];
Jens Axboe3d7c3912007-02-19 13:16:12 +01001020
1021 td->next_file++;
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001022 if (td->next_file >= td->o.nr_files)
Jens Axboe3d7c3912007-02-19 13:16:12 +01001023 td->next_file = 0;
1024
Jens Axboe87b10672009-03-04 09:39:47 +01001025 dprint(FD_FILE, "trying file %s %x\n", f->file_name, f->flags);
Jens Axboed6aed792009-06-03 08:41:15 +02001026 if (fio_file_done(f)) {
Jens Axboed5ed68e2007-03-28 09:33:43 +02001027 f = NULL;
Jens Axboe059e63c2007-03-27 20:34:47 +02001028 continue;
Jens Axboed5ed68e2007-03-28 09:33:43 +02001029 }
Jens Axboe059e63c2007-03-27 20:34:47 +02001030
Jens Axboed6aed792009-06-03 08:41:15 +02001031 if (!fio_file_open(f)) {
Jens Axboe87b10672009-03-04 09:39:47 +01001032 int err;
1033
Jens Axboe002fe732014-02-11 08:31:13 -07001034 if (td->nr_open_files >= td->o.open_files)
1035 return ERR_PTR(-EBUSY);
1036
Jens Axboe87b10672009-03-04 09:39:47 +01001037 err = td_io_open_file(td, f);
Jens Axboeb5696bf2009-03-04 16:03:49 +01001038 if (err) {
1039 dprint(FD_FILE, "error %d on open of %s\n",
1040 err, f->file_name);
Jens Axboe87c27b42009-05-20 10:45:12 +02001041 f = NULL;
Jens Axboe87b10672009-03-04 09:39:47 +01001042 continue;
Jens Axboeb5696bf2009-03-04 16:03:49 +01001043 }
Jens Axboe87b10672009-03-04 09:39:47 +01001044 opened = 1;
1045 }
1046
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001047 dprint(FD_FILE, "goodf=%x, badf=%x, ff=%x\n", goodf, badf,
1048 f->flags);
Jens Axboe1c178182007-03-13 13:25:18 +01001049 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf))
Jens Axboe3d7c3912007-02-19 13:16:12 +01001050 break;
1051
Jens Axboe87b10672009-03-04 09:39:47 +01001052 if (opened)
1053 td_io_close_file(td, f);
1054
Jens Axboe3d7c3912007-02-19 13:16:12 +01001055 f = NULL;
1056 } while (td->next_file != old_next_file);
1057
Jens Axboe2ba1c292008-02-01 13:16:38 +01001058 dprint(FD_FILE, "get_next_file_rr: %p\n", f);
Jens Axboe3d7c3912007-02-19 13:16:12 +01001059 return f;
1060}
1061
Jens Axboe7eb36572010-03-08 13:58:49 +01001062static struct fio_file *__get_next_file(struct thread_data *td)
Jens Axboebdb4e2e2007-03-01 09:54:57 +01001063{
Jens Axboe1907dbc2007-03-12 11:44:28 +01001064 struct fio_file *f;
1065
Jens Axboe2dc1bbe2007-03-15 15:01:33 +01001066 assert(td->o.nr_files <= td->files_index);
Jens Axboe1c178182007-03-13 13:25:18 +01001067
Jens Axboeb5696bf2009-03-04 16:03:49 +01001068 if (td->nr_done_files >= td->o.nr_files) {
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001069 dprint(FD_FILE, "get_next_file: nr_open=%d, nr_done=%d,"
1070 " nr_files=%d\n", td->nr_open_files,
1071 td->nr_done_files,
1072 td->o.nr_files);
Jens Axboebdb4e2e2007-03-01 09:54:57 +01001073 return NULL;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001074 }
Jens Axboebdb4e2e2007-03-01 09:54:57 +01001075
Jens Axboe1907dbc2007-03-12 11:44:28 +01001076 f = td->file_service_file;
Jens Axboed6aed792009-06-03 08:41:15 +02001077 if (f && fio_file_open(f) && !fio_file_closing(f)) {
Jens Axboea086c252009-03-04 08:27:37 +01001078 if (td->o.file_service_type == FIO_FSERVICE_SEQ)
1079 goto out;
1080 if (td->file_service_left--)
1081 goto out;
1082 }
Jens Axboe1907dbc2007-03-12 11:44:28 +01001083
Jens Axboea086c252009-03-04 08:27:37 +01001084 if (td->o.file_service_type == FIO_FSERVICE_RR ||
1085 td->o.file_service_type == FIO_FSERVICE_SEQ)
Jens Axboed6aed792009-06-03 08:41:15 +02001086 f = get_next_file_rr(td, FIO_FILE_open, FIO_FILE_closing);
Jens Axboebdb4e2e2007-03-01 09:54:57 +01001087 else
Jens Axboed6aed792009-06-03 08:41:15 +02001088 f = get_next_file_rand(td, FIO_FILE_open, FIO_FILE_closing);
Jens Axboe1907dbc2007-03-12 11:44:28 +01001089
Jens Axboe002fe732014-02-11 08:31:13 -07001090 if (IS_ERR(f))
1091 return f;
1092
Jens Axboe1907dbc2007-03-12 11:44:28 +01001093 td->file_service_file = f;
1094 td->file_service_left = td->file_service_nr - 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001095out:
Jens Axboe683023e2009-03-04 08:41:31 +01001096 dprint(FD_FILE, "get_next_file: %p [%s]\n", f, f->file_name);
Jens Axboe1907dbc2007-03-12 11:44:28 +01001097 return f;
Jens Axboebdb4e2e2007-03-01 09:54:57 +01001098}
1099
Jens Axboe7eb36572010-03-08 13:58:49 +01001100static struct fio_file *get_next_file(struct thread_data *td)
1101{
Jens Axboed72be542012-11-30 19:37:46 +01001102 if (!(td->flags & TD_F_PROFILE_OPS)) {
1103 struct prof_io_ops *ops = &td->prof_io_ops;
Jens Axboe7eb36572010-03-08 13:58:49 +01001104
Jens Axboed72be542012-11-30 19:37:46 +01001105 if (ops->get_next_file)
1106 return ops->get_next_file(td);
1107 }
Jens Axboe7eb36572010-03-08 13:58:49 +01001108
1109 return __get_next_file(td);
1110}
1111
Jens Axboe002fe732014-02-11 08:31:13 -07001112static long set_io_u_file(struct thread_data *td, struct io_u *io_u)
Jens Axboe429f6672007-07-23 10:38:43 +02001113{
1114 struct fio_file *f;
1115
1116 do {
1117 f = get_next_file(td);
Jens Axboe002fe732014-02-11 08:31:13 -07001118 if (IS_ERR_OR_NULL(f))
1119 return PTR_ERR(f);
Jens Axboe429f6672007-07-23 10:38:43 +02001120
Jens Axboe429f6672007-07-23 10:38:43 +02001121 io_u->file = f;
1122 get_file(f);
1123
1124 if (!fill_io_u(td, io_u))
1125 break;
1126
Jens Axboeb5696bf2009-03-04 16:03:49 +01001127 put_file_log(td, f);
Jens Axboe429f6672007-07-23 10:38:43 +02001128 td_io_close_file(td, f);
Jens Axboeb5696bf2009-03-04 16:03:49 +01001129 io_u->file = NULL;
Jens Axboed6aed792009-06-03 08:41:15 +02001130 fio_file_set_done(f);
Jens Axboe429f6672007-07-23 10:38:43 +02001131 td->nr_done_files++;
Jens Axboe0b9d69e2009-09-11 22:29:54 +02001132 dprint(FD_FILE, "%s: is done (%d of %d)\n", f->file_name,
1133 td->nr_done_files, td->o.nr_files);
Jens Axboe429f6672007-07-23 10:38:43 +02001134 } while (1);
1135
1136 return 0;
1137}
1138
Jens Axboe3e260a42013-12-09 12:38:53 -07001139static void lat_fatal(struct thread_data *td, struct io_completion_data *icd,
1140 unsigned long tusec, unsigned long max_usec)
1141{
1142 if (!td->error)
1143 log_err("fio: latency of %lu usec exceeds specified max (%lu usec)\n", tusec, max_usec);
1144 td_verror(td, ETIMEDOUT, "max latency exceeded");
1145 icd->error = ETIMEDOUT;
1146}
1147
1148static void lat_new_cycle(struct thread_data *td)
1149{
1150 fio_gettime(&td->latency_ts, NULL);
1151 td->latency_ios = ddir_rw_sum(td->io_blocks);
1152 td->latency_failed = 0;
1153}
1154
1155/*
1156 * We had an IO outside the latency target. Reduce the queue depth. If we
1157 * are at QD=1, then it's time to give up.
1158 */
1159static int __lat_target_failed(struct thread_data *td)
1160{
1161 if (td->latency_qd == 1)
1162 return 1;
1163
1164 td->latency_qd_high = td->latency_qd;
1165 td->latency_qd = (td->latency_qd + td->latency_qd_low) / 2;
1166
1167 dprint(FD_RATE, "Ramped down: %d %d %d\n", td->latency_qd_low, td->latency_qd, td->latency_qd_high);
1168
1169 /*
1170 * When we ramp QD down, quiesce existing IO to prevent
1171 * a storm of ramp downs due to pending higher depth.
1172 */
1173 io_u_quiesce(td);
1174 lat_new_cycle(td);
1175 return 0;
1176}
1177
1178static int lat_target_failed(struct thread_data *td)
1179{
1180 if (td->o.latency_percentile.u.f == 100.0)
1181 return __lat_target_failed(td);
1182
1183 td->latency_failed++;
1184 return 0;
1185}
1186
1187void lat_target_init(struct thread_data *td)
1188{
1189 if (td->o.latency_target) {
1190 dprint(FD_RATE, "Latency target=%llu\n", td->o.latency_target);
1191 fio_gettime(&td->latency_ts, NULL);
1192 td->latency_qd = 1;
1193 td->latency_qd_high = td->o.iodepth;
1194 td->latency_qd_low = 1;
1195 td->latency_ios = ddir_rw_sum(td->io_blocks);
1196 } else
1197 td->latency_qd = td->o.iodepth;
1198}
1199
1200static void lat_target_success(struct thread_data *td)
1201{
1202 const unsigned int qd = td->latency_qd;
1203
1204 td->latency_qd_low = td->latency_qd;
1205
1206 /*
1207 * If we haven't failed yet, we double up to a failing value instead
1208 * of bisecting from highest possible queue depth. If we have set
1209 * a limit other than td->o.iodepth, bisect between that.
1210 */
1211 if (td->latency_qd_high != td->o.iodepth)
1212 td->latency_qd = (td->latency_qd + td->latency_qd_high) / 2;
1213 else
1214 td->latency_qd *= 2;
1215
1216 if (td->latency_qd > td->o.iodepth)
1217 td->latency_qd = td->o.iodepth;
1218
1219 dprint(FD_RATE, "Ramped up: %d %d %d\n", td->latency_qd_low, td->latency_qd, td->latency_qd_high);
1220 /*
1221 * Same as last one, we are done
1222 */
1223 if (td->latency_qd == qd)
1224 td->done = 1;
1225
1226 lat_new_cycle(td);
1227}
1228
1229/*
1230 * Check if we can bump the queue depth
1231 */
1232void lat_target_check(struct thread_data *td)
1233{
1234 uint64_t usec_window;
1235 uint64_t ios;
1236 double success_ios;
1237
1238 usec_window = utime_since_now(&td->latency_ts);
1239 if (usec_window < td->o.latency_window)
1240 return;
1241
1242 ios = ddir_rw_sum(td->io_blocks) - td->latency_ios;
1243 success_ios = (double) (ios - td->latency_failed) / (double) ios;
1244 success_ios *= 100.0;
1245
1246 dprint(FD_RATE, "Success rate: %.2f%% (target %.2f%%)\n", success_ios, td->o.latency_percentile.u.f);
1247
1248 if (success_ios >= td->o.latency_percentile.u.f)
1249 lat_target_success(td);
1250 else
1251 __lat_target_failed(td);
1252}
1253
1254/*
1255 * If latency target is enabled, we might be ramping up or down and not
1256 * using the full queue depth available.
1257 */
1258int queue_full(struct thread_data *td)
1259{
1260 const int qempty = io_u_qempty(&td->io_u_freelist);
1261
1262 if (qempty)
1263 return 1;
1264 if (!td->o.latency_target)
1265 return 0;
1266
1267 return td->cur_depth >= td->latency_qd;
1268}
Jens Axboe429f6672007-07-23 10:38:43 +02001269
Jens Axboe10ba5352006-10-20 11:39:27 +02001270struct io_u *__get_io_u(struct thread_data *td)
1271{
Jens Axboe2ae0b202013-05-28 14:16:55 +02001272 struct io_u *io_u;
Jens Axboe10ba5352006-10-20 11:39:27 +02001273
Jens Axboee8462bd2009-07-06 12:59:04 +02001274 td_io_u_lock(td);
1275
1276again:
Jens Axboe2ae0b202013-05-28 14:16:55 +02001277 if (!io_u_rempty(&td->io_u_requeues))
1278 io_u = io_u_rpop(&td->io_u_requeues);
Jens Axboe3e260a42013-12-09 12:38:53 -07001279 else if (!queue_full(td)) {
Jens Axboe2ae0b202013-05-28 14:16:55 +02001280 io_u = io_u_qpop(&td->io_u_freelist);
Jens Axboe10ba5352006-10-20 11:39:27 +02001281
Jens Axboe6040dab2006-10-24 19:38:15 +02001282 io_u->buflen = 0;
Jens Axboe10ba5352006-10-20 11:39:27 +02001283 io_u->resid = 0;
Jens Axboe755200a2007-02-19 13:08:12 +01001284 io_u->file = NULL;
Jens Axboed7762cf2007-02-23 12:34:57 +01001285 io_u->end_io = NULL;
Jens Axboe755200a2007-02-19 13:08:12 +01001286 }
1287
1288 if (io_u) {
Jens Axboe0c6e7512007-02-22 11:19:39 +01001289 assert(io_u->flags & IO_U_F_FREE);
Jens Axboe2ecc1b52009-11-04 20:58:09 +01001290 io_u->flags &= ~(IO_U_F_FREE | IO_U_F_FREE_DEF);
Jens Axboe1ef2b6b2010-10-08 15:07:01 +02001291 io_u->flags &= ~(IO_U_F_TRIMMED | IO_U_F_BARRIER);
Jens Axboe82af2a72012-03-13 13:45:58 +01001292 io_u->flags &= ~IO_U_F_VER_LIST;
Jens Axboe0c6e7512007-02-22 11:19:39 +01001293
Jens Axboe755200a2007-02-19 13:08:12 +01001294 io_u->error = 0;
Jens Axboebcd5abf2013-01-23 09:27:25 -07001295 io_u->acct_ddir = -1;
Jens Axboe10ba5352006-10-20 11:39:27 +02001296 td->cur_depth++;
Radha Ramachandran0c412142009-11-03 21:45:31 +01001297 io_u->flags |= IO_U_F_IN_CUR_DEPTH;
Jens Axboef9401282014-02-06 12:17:37 -07001298 io_u->ipo = NULL;
Jens Axboe1dec3e02010-03-19 10:33:39 +01001299 } else if (td->o.verify_async) {
1300 /*
1301 * We ran out, wait for async verify threads to finish and
1302 * return one
1303 */
1304 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1305 goto again;
Jens Axboe10ba5352006-10-20 11:39:27 +02001306 }
1307
Jens Axboee8462bd2009-07-06 12:59:04 +02001308 td_io_u_unlock(td);
Jens Axboe10ba5352006-10-20 11:39:27 +02001309 return io_u;
1310}
1311
Jens Axboe0d29de82010-09-01 13:54:15 +02001312static int check_get_trim(struct thread_data *td, struct io_u *io_u)
Jens Axboe10ba5352006-10-20 11:39:27 +02001313{
Jens Axboed72be542012-11-30 19:37:46 +01001314 if (!(td->flags & TD_F_TRIM_BACKLOG))
1315 return 0;
1316
1317 if (td->trim_entries) {
Jens Axboe0d29de82010-09-01 13:54:15 +02001318 int get_trim = 0;
Jens Axboe10ba5352006-10-20 11:39:27 +02001319
Jens Axboe0d29de82010-09-01 13:54:15 +02001320 if (td->trim_batch) {
1321 td->trim_batch--;
1322 get_trim = 1;
1323 } else if (!(td->io_hist_len % td->o.trim_backlog) &&
1324 td->last_ddir != DDIR_READ) {
1325 td->trim_batch = td->o.trim_batch;
1326 if (!td->trim_batch)
1327 td->trim_batch = td->o.trim_backlog;
1328 get_trim = 1;
1329 }
1330
1331 if (get_trim && !get_next_trim(td, io_u))
1332 return 1;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001333 }
Jens Axboe10ba5352006-10-20 11:39:27 +02001334
Jens Axboe0d29de82010-09-01 13:54:15 +02001335 return 0;
1336}
1337
1338static int check_get_verify(struct thread_data *td, struct io_u *io_u)
1339{
Jens Axboed72be542012-11-30 19:37:46 +01001340 if (!(td->flags & TD_F_VER_BACKLOG))
1341 return 0;
1342
1343 if (td->io_hist_len) {
Jens Axboe9e144182010-06-15 14:25:36 +02001344 int get_verify = 0;
1345
Jens Axboed1ece0c2012-03-07 09:32:58 +01001346 if (td->verify_batch)
Jens Axboe9e144182010-06-15 14:25:36 +02001347 get_verify = 1;
Jens Axboed1ece0c2012-03-07 09:32:58 +01001348 else if (!(td->io_hist_len % td->o.verify_backlog) &&
Jens Axboe9e144182010-06-15 14:25:36 +02001349 td->last_ddir != DDIR_READ) {
1350 td->verify_batch = td->o.verify_batch;
Jens Axboef8a75c92010-06-15 14:27:28 +02001351 if (!td->verify_batch)
1352 td->verify_batch = td->o.verify_backlog;
Jens Axboe9e144182010-06-15 14:25:36 +02001353 get_verify = 1;
1354 }
1355
Jens Axboed1ece0c2012-03-07 09:32:58 +01001356 if (get_verify && !get_next_verify(td, io_u)) {
1357 td->verify_batch--;
Jens Axboe0d29de82010-09-01 13:54:15 +02001358 return 1;
Jens Axboed1ece0c2012-03-07 09:32:58 +01001359 }
Jens Axboe9e144182010-06-15 14:25:36 +02001360 }
1361
Jens Axboe0d29de82010-09-01 13:54:15 +02001362 return 0;
1363}
1364
1365/*
Jens Axboede789762011-09-16 22:11:23 +02001366 * Fill offset and start time into the buffer content, to prevent too
Jens Axboe23f394d2011-09-16 22:45:27 +02001367 * easy compressible data for simple de-dupe attempts. Do this for every
1368 * 512b block in the range, since that should be the smallest block size
1369 * we can expect from a device.
Jens Axboede789762011-09-16 22:11:23 +02001370 */
1371static void small_content_scramble(struct io_u *io_u)
1372{
Jens Axboe23f394d2011-09-16 22:45:27 +02001373 unsigned int i, nr_blocks = io_u->buflen / 512;
Jens Axboe1ae83d42013-01-12 01:44:15 -07001374 uint64_t boffset;
Jens Axboe23f394d2011-09-16 22:45:27 +02001375 unsigned int offset;
1376 void *p, *end;
Jens Axboede789762011-09-16 22:11:23 +02001377
Jens Axboe23f394d2011-09-16 22:45:27 +02001378 if (!nr_blocks)
1379 return;
1380
1381 p = io_u->xfer_buf;
Jens Axboefba76ee2011-09-27 14:27:48 -06001382 boffset = io_u->offset;
Jens Axboe81f03662012-02-02 09:20:09 +01001383 io_u->buf_filled_len = 0;
Jens Axboefad82f72011-09-19 11:33:30 +02001384
Jens Axboe23f394d2011-09-16 22:45:27 +02001385 for (i = 0; i < nr_blocks; i++) {
1386 /*
1387 * Fill the byte offset into a "random" start offset of
1388 * the buffer, given by the product of the usec time
1389 * and the actual offset.
1390 */
Jens Axboefad82f72011-09-19 11:33:30 +02001391 offset = (io_u->start_time.tv_usec ^ boffset) & 511;
Jens Axboe1ae83d42013-01-12 01:44:15 -07001392 offset &= ~(sizeof(uint64_t) - 1);
1393 if (offset >= 512 - sizeof(uint64_t))
1394 offset -= sizeof(uint64_t);
Jens Axboefba76ee2011-09-27 14:27:48 -06001395 memcpy(p + offset, &boffset, sizeof(boffset));
Jens Axboe23f394d2011-09-16 22:45:27 +02001396
1397 end = p + 512 - sizeof(io_u->start_time);
1398 memcpy(end, &io_u->start_time, sizeof(io_u->start_time));
1399 p += 512;
Jens Axboefad82f72011-09-19 11:33:30 +02001400 boffset += 512;
Jens Axboe23f394d2011-09-16 22:45:27 +02001401 }
Jens Axboede789762011-09-16 22:11:23 +02001402}
1403
1404/*
Jens Axboe0d29de82010-09-01 13:54:15 +02001405 * Return an io_u to be processed. Gets a buflen and offset, sets direction,
1406 * etc. The returned io_u is fully ready to be prepped and submitted.
1407 */
1408struct io_u *get_io_u(struct thread_data *td)
1409{
1410 struct fio_file *f;
1411 struct io_u *io_u;
Jens Axboede789762011-09-16 22:11:23 +02001412 int do_scramble = 0;
Jens Axboe002fe732014-02-11 08:31:13 -07001413 long ret = 0;
Jens Axboe0d29de82010-09-01 13:54:15 +02001414
1415 io_u = __get_io_u(td);
1416 if (!io_u) {
1417 dprint(FD_IO, "__get_io_u failed\n");
1418 return NULL;
1419 }
1420
1421 if (check_get_verify(td, io_u))
1422 goto out;
1423 if (check_get_trim(td, io_u))
1424 goto out;
1425
Jens Axboe755200a2007-02-19 13:08:12 +01001426 /*
1427 * from a requeue, io_u already setup
1428 */
1429 if (io_u->file)
Jens Axboe77f392b2007-02-19 20:13:09 +01001430 goto out;
Jens Axboe755200a2007-02-19 13:08:12 +01001431
Jens Axboe429f6672007-07-23 10:38:43 +02001432 /*
1433 * If using an iolog, grab next piece if any available.
1434 */
Jens Axboed72be542012-11-30 19:37:46 +01001435 if (td->flags & TD_F_READ_IOLOG) {
Jens Axboe429f6672007-07-23 10:38:43 +02001436 if (read_iolog_get(td, io_u))
1437 goto err_put;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001438 } else if (set_io_u_file(td, io_u)) {
Jens Axboe002fe732014-02-11 08:31:13 -07001439 ret = -EBUSY;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001440 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
Jens Axboe429f6672007-07-23 10:38:43 +02001441 goto err_put;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001442 }
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001443
Jens Axboe429f6672007-07-23 10:38:43 +02001444 f = io_u->file;
Jens Axboe002fe732014-02-11 08:31:13 -07001445 if (!f) {
1446 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
1447 goto err_put;
1448 }
1449
Jens Axboed6aed792009-06-03 08:41:15 +02001450 assert(fio_file_open(f));
Jens Axboe97af62c2007-05-22 11:12:13 +02001451
Jens Axboeff58fce2010-08-25 12:02:08 +02001452 if (ddir_rw(io_u->ddir)) {
Jens Axboed0656a92008-02-01 18:33:23 +01001453 if (!io_u->buflen && !(td->io_ops->flags & FIO_NOIO)) {
Jens Axboe2ba1c292008-02-01 13:16:38 +01001454 dprint(FD_IO, "get_io_u: zero buflen on %p\n", io_u);
Jens Axboe429f6672007-07-23 10:38:43 +02001455 goto err_put;
Jens Axboe2ba1c292008-02-01 13:16:38 +01001456 }
Jens Axboe87dc1ab2006-10-24 14:41:26 +02001457
Jens Axboe38dad622010-07-20 14:46:00 -06001458 f->last_start = io_u->offset;
Jens Axboe36167d82007-02-18 05:41:31 +01001459 f->last_pos = io_u->offset + io_u->buflen;
Jens Axboe87dc1ab2006-10-24 14:41:26 +02001460
Jens Axboefd684182011-09-19 09:24:44 +02001461 if (io_u->ddir == DDIR_WRITE) {
Jens Axboed72be542012-11-30 19:37:46 +01001462 if (td->flags & TD_F_REFILL_BUFFERS) {
Jens Axboe9c426842012-03-02 21:02:12 +01001463 io_u_fill_buffer(td, io_u,
1464 io_u->xfer_buflen, io_u->xfer_buflen);
Jens Axboed72be542012-11-30 19:37:46 +01001465 } else if (td->flags & TD_F_SCRAMBLE_BUFFERS)
Jens Axboefd684182011-09-19 09:24:44 +02001466 do_scramble = 1;
Jens Axboed72be542012-11-30 19:37:46 +01001467 if (td->flags & TD_F_VER_NONE) {
Jens Axboe629f1d72012-03-09 19:02:01 +01001468 populate_verify_io_u(td, io_u);
1469 do_scramble = 0;
1470 }
Jens Axboefd684182011-09-19 09:24:44 +02001471 } else if (io_u->ddir == DDIR_READ) {
Radha Ramachandrancbe8d752010-07-14 08:36:07 +02001472 /*
1473 * Reset the buf_filled parameters so next time if the
1474 * buffer is used for writes it is refilled.
1475 */
Radha Ramachandrancbe8d752010-07-14 08:36:07 +02001476 io_u->buf_filled_len = 0;
1477 }
Jens Axboe10ba5352006-10-20 11:39:27 +02001478 }
1479
Jens Axboe165faf12007-02-07 11:30:37 +01001480 /*
1481 * Set io data pointers.
1482 */
Jens Axboecec6b552007-02-06 20:15:38 +01001483 io_u->xfer_buf = io_u->buf;
1484 io_u->xfer_buflen = io_u->buflen;
Jens Axboe5973caf2008-05-21 19:52:35 +02001485
Jens Axboe6ac7a332008-03-01 15:22:32 +01001486out:
Jens Axboe0d29de82010-09-01 13:54:15 +02001487 assert(io_u->file);
Jens Axboe429f6672007-07-23 10:38:43 +02001488 if (!td_io_prep(td, io_u)) {
Jens Axboe993bf482008-11-14 13:04:53 +01001489 if (!td->o.disable_slat)
1490 fio_gettime(&io_u->start_time, NULL);
Jens Axboede789762011-09-16 22:11:23 +02001491 if (do_scramble)
1492 small_content_scramble(io_u);
Jens Axboe429f6672007-07-23 10:38:43 +02001493 return io_u;
Jens Axboe36167d82007-02-18 05:41:31 +01001494 }
Jens Axboe429f6672007-07-23 10:38:43 +02001495err_put:
Jens Axboe2ba1c292008-02-01 13:16:38 +01001496 dprint(FD_IO, "get_io_u failed\n");
Jens Axboe429f6672007-07-23 10:38:43 +02001497 put_io_u(td, io_u);
Jens Axboe002fe732014-02-11 08:31:13 -07001498 return ERR_PTR(ret);
Jens Axboe10ba5352006-10-20 11:39:27 +02001499}
1500
Jens Axboe54517922007-03-05 10:06:06 +01001501void io_u_log_error(struct thread_data *td, struct io_u *io_u)
1502{
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001503 enum error_type_bit eb = td_error_type(io_u->ddir, io_u->error);
Jens Axboe825f8182010-08-25 10:47:18 +02001504 const char *msg[] = { "read", "write", "sync", "datasync",
1505 "sync_file_range", "wait", "trim" };
1506
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001507 if (td_non_fatal_error(td, eb, io_u->error) && !td->o.error_dump)
1508 return;
Jens Axboe54517922007-03-05 10:06:06 +01001509
1510 log_err("fio: io_u error");
1511
1512 if (io_u->file)
1513 log_err(" on file %s", io_u->file->file_name);
1514
1515 log_err(": %s\n", strerror(io_u->error));
1516
Jens Axboe5ec10ea2008-03-06 15:42:00 +01001517 log_err(" %s offset=%llu, buflen=%lu\n", msg[io_u->ddir],
1518 io_u->offset, io_u->xfer_buflen);
Jens Axboe54517922007-03-05 10:06:06 +01001519
1520 if (!td->error)
1521 td_verror(td, io_u->error, "io_u error");
1522}
1523
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001524static void account_io_completion(struct thread_data *td, struct io_u *io_u,
1525 struct io_completion_data *icd,
1526 const enum fio_ddir idx, unsigned int bytes)
1527{
Jens Axboe24d23ca2012-11-13 08:31:24 -07001528 unsigned long lusec = 0;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001529
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001530 if (!td->o.disable_clat || !td->o.disable_bw)
1531 lusec = utime_since(&io_u->issue_time, &icd->time);
1532
1533 if (!td->o.disable_lat) {
1534 unsigned long tusec;
1535
1536 tusec = utime_since(&io_u->start_time, &icd->time);
1537 add_lat_sample(td, idx, tusec, bytes);
Jens Axboe15501532012-10-24 16:37:45 +02001538
Jens Axboed4afedf2013-05-22 22:21:29 +02001539 if (td->flags & TD_F_PROFILE_OPS) {
1540 struct prof_io_ops *ops = &td->prof_io_ops;
1541
1542 if (ops->io_u_lat)
1543 icd->error = ops->io_u_lat(td, tusec);
1544 }
1545
Jens Axboe3e260a42013-12-09 12:38:53 -07001546 if (td->o.max_latency && tusec > td->o.max_latency)
1547 lat_fatal(td, icd, tusec, td->o.max_latency);
1548 if (td->o.latency_target && tusec > td->o.latency_target) {
1549 if (lat_target_failed(td))
1550 lat_fatal(td, icd, tusec, td->o.latency_target);
Jens Axboe15501532012-10-24 16:37:45 +02001551 }
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001552 }
1553
1554 if (!td->o.disable_clat) {
1555 add_clat_sample(td, idx, lusec, bytes);
1556 io_u_mark_latency(td, lusec);
1557 }
1558
1559 if (!td->o.disable_bw)
1560 add_bw_sample(td, idx, bytes, &icd->time);
1561
Erwan Velu9b7e6002013-08-02 16:39:40 +02001562 add_iops_sample(td, idx, bytes, &icd->time);
Jens Axboeddf24e42013-08-09 12:53:44 -06001563
1564 if (td->o.number_ios && !--td->o.number_ios)
1565 td->done = 1;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001566}
1567
Steven Lang1b8dbf22011-11-09 13:48:01 +01001568static long long usec_for_io(struct thread_data *td, enum fio_ddir ddir)
1569{
Jens Axboe1ae83d42013-01-12 01:44:15 -07001570 uint64_t secs, remainder, bps, bytes;
1571
Steven Lang1b8dbf22011-11-09 13:48:01 +01001572 bytes = td->this_io_bytes[ddir];
1573 bps = td->rate_bps[ddir];
1574 secs = bytes / bps;
1575 remainder = bytes % bps;
1576 return remainder * 1000000 / bps + secs * 1000000;
1577}
1578
Jens Axboe97601022007-02-18 12:47:29 +01001579static void io_completed(struct thread_data *td, struct io_u *io_u,
1580 struct io_completion_data *icd)
Jens Axboe10ba5352006-10-20 11:39:27 +02001581{
Jens Axboe44f29692010-03-09 20:09:44 +01001582 struct fio_file *f;
Jens Axboe10ba5352006-10-20 11:39:27 +02001583
Jens Axboe2ba1c292008-02-01 13:16:38 +01001584 dprint_io_u(io_u, "io complete");
1585
Jens Axboe2ecc1b52009-11-04 20:58:09 +01001586 td_io_u_lock(td);
Jens Axboe0c6e7512007-02-22 11:19:39 +01001587 assert(io_u->flags & IO_U_F_FLIGHT);
Jens Axboe38dad622010-07-20 14:46:00 -06001588 io_u->flags &= ~(IO_U_F_FLIGHT | IO_U_F_BUSY_OK);
Jens Axboef9401282014-02-06 12:17:37 -07001589
1590 /*
1591 * Mark IO ok to verify
1592 */
1593 if (io_u->ipo) {
1594 io_u->ipo->flags &= ~IP_F_IN_FLIGHT;
1595 write_barrier();
1596 }
1597
Jens Axboe2ecc1b52009-11-04 20:58:09 +01001598 td_io_u_unlock(td);
Jens Axboe0c6e7512007-02-22 11:19:39 +01001599
Jens Axboe5f9099e2009-06-16 22:40:26 +02001600 if (ddir_sync(io_u->ddir)) {
Jens Axboe87dc1ab2006-10-24 14:41:26 +02001601 td->last_was_sync = 1;
Jens Axboe44f29692010-03-09 20:09:44 +01001602 f = io_u->file;
1603 if (f) {
1604 f->first_write = -1ULL;
1605 f->last_write = -1ULL;
1606 }
Jens Axboe87dc1ab2006-10-24 14:41:26 +02001607 return;
1608 }
1609
1610 td->last_was_sync = 0;
Jens Axboe9e144182010-06-15 14:25:36 +02001611 td->last_ddir = io_u->ddir;
Jens Axboe87dc1ab2006-10-24 14:41:26 +02001612
Jens Axboeff58fce2010-08-25 12:02:08 +02001613 if (!io_u->error && ddir_rw(io_u->ddir)) {
Jens Axboe10ba5352006-10-20 11:39:27 +02001614 unsigned int bytes = io_u->buflen - io_u->resid;
Jens Axboe1e97cce2006-12-05 11:44:16 +01001615 const enum fio_ddir idx = io_u->ddir;
Radha Ramachandranba3e4e02009-12-09 22:31:44 +01001616 const enum fio_ddir odx = io_u->ddir ^ 1;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001617 int ret;
Jens Axboe10ba5352006-10-20 11:39:27 +02001618
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001619 td->io_blocks[idx]++;
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001620 td->this_io_blocks[idx]++;
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001621 td->io_bytes[idx] += bytes;
webeeae2fafc2012-03-23 13:41:41 +01001622
1623 if (!(io_u->flags & IO_U_F_VER_LIST))
1624 td->this_io_bytes[idx] += bytes;
Jens Axboe10ba5352006-10-20 11:39:27 +02001625
Jens Axboe44f29692010-03-09 20:09:44 +01001626 if (idx == DDIR_WRITE) {
1627 f = io_u->file;
1628 if (f) {
1629 if (f->first_write == -1ULL ||
1630 io_u->offset < f->first_write)
1631 f->first_write = io_u->offset;
1632 if (f->last_write == -1ULL ||
1633 ((io_u->offset + bytes) > f->last_write))
1634 f->last_write = io_u->offset + bytes;
1635 }
1636 }
1637
Steven Lang6b1190f2012-02-07 09:42:59 +01001638 if (ramp_time_over(td) && (td->runstate == TD_RUNNING ||
1639 td->runstate == TD_VERIFYING)) {
Jens Axboec8eeb9d2011-10-05 14:02:22 +02001640 account_io_completion(td, io_u, icd, idx, bytes);
Jens Axboe40e1a6f2009-06-11 10:55:39 +02001641
Jens Axboeb23b6a22009-06-11 22:06:23 +02001642 if (__should_check_rate(td, idx)) {
Radha Ramachandranba3e4e02009-12-09 22:31:44 +01001643 td->rate_pending_usleep[idx] =
Steven Lang1b8dbf22011-11-09 13:48:01 +01001644 (usec_for_io(td, idx) -
Radha Ramachandranba3e4e02009-12-09 22:31:44 +01001645 utime_since_now(&td->start));
Jens Axboeb23b6a22009-06-11 22:06:23 +02001646 }
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001647 if (idx != DDIR_TRIM && __should_check_rate(td, odx))
Radha Ramachandranba3e4e02009-12-09 22:31:44 +01001648 td->rate_pending_usleep[odx] =
Steven Lang1b8dbf22011-11-09 13:48:01 +01001649 (usec_for_io(td, odx) -
Radha Ramachandranba3e4e02009-12-09 22:31:44 +01001650 utime_since_now(&td->start));
Jens Axboe721938a2008-09-10 09:46:16 +02001651 }
Jens Axboe10ba5352006-10-20 11:39:27 +02001652
Jens Axboeb29ee5b2008-09-11 10:17:26 +02001653 icd->bytes_done[idx] += bytes;
Jens Axboe3af6ef32007-02-18 06:57:43 +01001654
Jens Axboed7762cf2007-02-23 12:34:57 +01001655 if (io_u->end_io) {
Jens Axboe36690c92007-03-26 10:23:34 +02001656 ret = io_u->end_io(td, io_u);
Jens Axboe3af6ef32007-02-18 06:57:43 +01001657 if (ret && !icd->error)
1658 icd->error = ret;
1659 }
Jens Axboeff58fce2010-08-25 12:02:08 +02001660 } else if (io_u->error) {
Jens Axboe10ba5352006-10-20 11:39:27 +02001661 icd->error = io_u->error;
Jens Axboe54517922007-03-05 10:06:06 +01001662 io_u_log_error(td, io_u);
1663 }
Dmitry Monakhov8b28bd42012-09-23 15:46:09 +04001664 if (icd->error) {
1665 enum error_type_bit eb = td_error_type(io_u->ddir, icd->error);
1666 if (!td_non_fatal_error(td, eb, icd->error))
1667 return;
Radha Ramachandranf2bba182009-06-15 08:40:16 +02001668 /*
1669 * If there is a non_fatal error, then add to the error count
1670 * and clear all the errors.
1671 */
1672 update_error_count(td, icd->error);
1673 td_clear_error(td);
1674 icd->error = 0;
1675 io_u->error = 0;
1676 }
Jens Axboe10ba5352006-10-20 11:39:27 +02001677}
1678
Jens Axboe9520ebb2008-10-16 21:03:27 +02001679static void init_icd(struct thread_data *td, struct io_completion_data *icd,
1680 int nr)
Jens Axboe36167d82007-02-18 05:41:31 +01001681{
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001682 int ddir;
Jens Axboe9520ebb2008-10-16 21:03:27 +02001683 if (!td->o.disable_clat || !td->o.disable_bw)
1684 fio_gettime(&icd->time, NULL);
Jens Axboe36167d82007-02-18 05:41:31 +01001685
Jens Axboe3af6ef32007-02-18 06:57:43 +01001686 icd->nr = nr;
1687
Jens Axboe36167d82007-02-18 05:41:31 +01001688 icd->error = 0;
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001689 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++)
1690 icd->bytes_done[ddir] = 0;
Jens Axboe36167d82007-02-18 05:41:31 +01001691}
1692
Jens Axboe97601022007-02-18 12:47:29 +01001693static void ios_completed(struct thread_data *td,
1694 struct io_completion_data *icd)
Jens Axboe10ba5352006-10-20 11:39:27 +02001695{
1696 struct io_u *io_u;
1697 int i;
1698
Jens Axboe10ba5352006-10-20 11:39:27 +02001699 for (i = 0; i < icd->nr; i++) {
1700 io_u = td->io_ops->event(td, i);
1701
1702 io_completed(td, io_u, icd);
Jens Axboee8462bd2009-07-06 12:59:04 +02001703
1704 if (!(io_u->flags & IO_U_F_FREE_DEF))
1705 put_io_u(td, io_u);
Jens Axboe10ba5352006-10-20 11:39:27 +02001706 }
1707}
Jens Axboe97601022007-02-18 12:47:29 +01001708
Jens Axboee7e6cfb2007-02-20 10:58:34 +01001709/*
1710 * Complete a single io_u for the sync engines.
1711 */
Jens Axboe581e7142009-06-09 12:47:16 +02001712int io_u_sync_complete(struct thread_data *td, struct io_u *io_u,
Jens Axboe100f49f2013-01-23 10:15:57 -07001713 uint64_t *bytes)
Jens Axboe97601022007-02-18 12:47:29 +01001714{
1715 struct io_completion_data icd;
1716
Jens Axboe9520ebb2008-10-16 21:03:27 +02001717 init_icd(td, &icd, 1);
Jens Axboe97601022007-02-18 12:47:29 +01001718 io_completed(td, io_u, &icd);
Jens Axboee8462bd2009-07-06 12:59:04 +02001719
1720 if (!(io_u->flags & IO_U_F_FREE_DEF))
1721 put_io_u(td, io_u);
Jens Axboe97601022007-02-18 12:47:29 +01001722
Jens Axboe581e7142009-06-09 12:47:16 +02001723 if (icd.error) {
1724 td_verror(td, icd.error, "io_u_sync_complete");
1725 return -1;
1726 }
Jens Axboe97601022007-02-18 12:47:29 +01001727
Jens Axboe581e7142009-06-09 12:47:16 +02001728 if (bytes) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001729 int ddir;
1730
1731 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++)
1732 bytes[ddir] += icd.bytes_done[ddir];
Jens Axboe581e7142009-06-09 12:47:16 +02001733 }
1734
1735 return 0;
Jens Axboe97601022007-02-18 12:47:29 +01001736}
1737
Jens Axboee7e6cfb2007-02-20 10:58:34 +01001738/*
1739 * Called to complete min_events number of io for the async engines.
1740 */
Jens Axboe581e7142009-06-09 12:47:16 +02001741int io_u_queued_complete(struct thread_data *td, int min_evts,
Jens Axboe100f49f2013-01-23 10:15:57 -07001742 uint64_t *bytes)
Jens Axboe97601022007-02-18 12:47:29 +01001743{
Jens Axboe97601022007-02-18 12:47:29 +01001744 struct io_completion_data icd;
Jens Axboe00de55e2007-02-20 10:45:57 +01001745 struct timespec *tvp = NULL;
Jens Axboe97601022007-02-18 12:47:29 +01001746 int ret;
Davide Libenzi4d06a332007-03-22 07:43:50 +01001747 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0, };
Jens Axboe97601022007-02-18 12:47:29 +01001748
Jens Axboe49504212008-06-05 09:03:30 +02001749 dprint(FD_IO, "io_u_queued_completed: min=%d\n", min_evts);
Jens Axboeb271fe62008-02-04 10:49:41 +01001750
Jens Axboe49504212008-06-05 09:03:30 +02001751 if (!min_evts)
Jens Axboe00de55e2007-02-20 10:45:57 +01001752 tvp = &ts;
Jens Axboe97601022007-02-18 12:47:29 +01001753
Jens Axboe49504212008-06-05 09:03:30 +02001754 ret = td_io_getevents(td, min_evts, td->o.iodepth_batch_complete, tvp);
Jens Axboe97601022007-02-18 12:47:29 +01001755 if (ret < 0) {
Jens Axboee1161c32007-02-22 19:36:48 +01001756 td_verror(td, -ret, "td_io_getevents");
Jens Axboe97601022007-02-18 12:47:29 +01001757 return ret;
1758 } else if (!ret)
1759 return ret;
1760
Jens Axboe9520ebb2008-10-16 21:03:27 +02001761 init_icd(td, &icd, ret);
Jens Axboe97601022007-02-18 12:47:29 +01001762 ios_completed(td, &icd);
Jens Axboe581e7142009-06-09 12:47:16 +02001763 if (icd.error) {
1764 td_verror(td, icd.error, "io_u_queued_complete");
1765 return -1;
1766 }
Jens Axboe97601022007-02-18 12:47:29 +01001767
Jens Axboe581e7142009-06-09 12:47:16 +02001768 if (bytes) {
Shaohua Li6eaf09d2012-09-14 08:49:43 +02001769 int ddir;
1770
1771 for (ddir = DDIR_READ; ddir < DDIR_RWDIR_CNT; ddir++)
1772 bytes[ddir] += icd.bytes_done[ddir];
Jens Axboe581e7142009-06-09 12:47:16 +02001773 }
1774
1775 return 0;
Jens Axboe97601022007-02-18 12:47:29 +01001776}
Jens Axboe7e77dd02007-02-20 10:57:34 +01001777
1778/*
1779 * Call when io_u is really queued, to update the submission latency.
1780 */
1781void io_u_queued(struct thread_data *td, struct io_u *io_u)
1782{
Jens Axboe9520ebb2008-10-16 21:03:27 +02001783 if (!td->o.disable_slat) {
1784 unsigned long slat_time;
Jens Axboe7e77dd02007-02-20 10:57:34 +01001785
Jens Axboe9520ebb2008-10-16 21:03:27 +02001786 slat_time = utime_since(&io_u->start_time, &io_u->issue_time);
Jens Axboe29a90dd2009-06-10 06:57:47 +02001787 add_slat_sample(td, io_u->ddir, slat_time, io_u->xfer_buflen);
Jens Axboe9520ebb2008-10-16 21:03:27 +02001788 }
Jens Axboe7e77dd02007-02-20 10:57:34 +01001789}
Jens Axboe433afcb2007-02-22 10:39:01 +01001790
Jens Axboecc86c392013-05-03 15:12:33 +02001791void fill_io_buffer(struct thread_data *td, void *buf, unsigned int min_write,
1792 unsigned int max_bs)
Jens Axboe5973caf2008-05-21 19:52:35 +02001793{
Jens Axboece35b1e2014-01-14 15:35:58 -07001794 if (td->o.buffer_pattern_bytes)
1795 fill_buffer_pattern(td, buf, max_bs);
1796 else if (!td->o.zero_buffers) {
Jens Axboe9c426842012-03-02 21:02:12 +01001797 unsigned int perc = td->o.compress_percentage;
1798
1799 if (perc) {
Jens Axboef97a43a2012-03-09 19:06:24 +01001800 unsigned int seg = min_write;
1801
1802 seg = min(min_write, td->o.compress_chunk);
Jens Axboecc86c392013-05-03 15:12:33 +02001803 if (!seg)
1804 seg = min_write;
1805
1806 fill_random_buf_percentage(&td->buf_state, buf,
Jens Axboef97a43a2012-03-09 19:06:24 +01001807 perc, seg, max_bs);
Jens Axboe9c426842012-03-02 21:02:12 +01001808 } else
Jens Axboecc86c392013-05-03 15:12:33 +02001809 fill_random_buf(&td->buf_state, buf, max_bs);
Jens Axboe9c426842012-03-02 21:02:12 +01001810 } else
Jens Axboecc86c392013-05-03 15:12:33 +02001811 memset(buf, 0, max_bs);
1812}
1813
1814/*
1815 * "randomly" fill the buffer contents
1816 */
1817void io_u_fill_buffer(struct thread_data *td, struct io_u *io_u,
1818 unsigned int min_write, unsigned int max_bs)
1819{
1820 io_u->buf_filled_len = 0;
1821 fill_io_buffer(td, io_u->buf, min_write, max_bs);
Jens Axboe5973caf2008-05-21 19:52:35 +02001822}