filesetup: change random file init to be bool based
[fio.git] / io_u.c
CommitLineData
10ba535a
JA
1#include <unistd.h>
2#include <fcntl.h>
3#include <string.h>
4#include <signal.h>
5#include <time.h>
0c6e7517 6#include <assert.h>
10ba535a
JA
7
8#include "fio.h"
5973cafb 9#include "hash.h"
4f5af7b2 10#include "verify.h"
0d29de83 11#include "trim.h"
1fbbf72e 12#include "lib/rand.h"
7ebd796f 13#include "lib/axmap.h"
002fe734 14#include "err.h"
0f38bbef 15#include "lib/pow2.h"
4b157ac6 16#include "minmax.h"
10ba535a 17
97601024
JA
18struct io_completion_data {
19 int nr; /* input */
97601024
JA
20
21 int error; /* output */
100f49f1 22 uint64_t bytes_done[DDIR_RWDIR_CNT]; /* output */
8b6a404c 23 struct timespec time; /* output */
97601024
JA
24};
25
10ba535a 26/*
7ebd796f 27 * The ->io_axmap contains a map of blocks we have or have not done io
10ba535a
JA
28 * to yet. Used to make sure we cover the entire range in a fair fashion.
29 */
e39c0676 30static bool random_map_free(struct fio_file *f, const uint64_t block)
10ba535a 31{
7ebd796f 32 return !axmap_isset(f->io_axmap, block);
10ba535a
JA
33}
34
df415585
JA
35/*
36 * Mark a given offset as used in the map.
37 */
9bf2061e 38static void mark_random_map(struct thread_data *td, struct io_u *io_u)
df415585 39{
956e60ea 40 unsigned int min_bs = td->o.min_bs[io_u->ddir];
9bf2061e 41 struct fio_file *f = io_u->file;
51ede0b1 42 unsigned int nr_blocks;
1ae83d45 43 uint64_t block;
df415585 44
1ae83d45 45 block = (io_u->offset - f->file_offset) / (uint64_t) min_bs;
c685b5b2 46 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
df415585 47
2ab9e98b 48 if (!(io_u->flags & IO_U_F_BUSY_OK))
7ebd796f 49 nr_blocks = axmap_set_nr(f->io_axmap, block, nr_blocks);
df415585 50
51ede0b1
JA
51 if ((nr_blocks * min_bs) < io_u->buflen)
52 io_u->buflen = nr_blocks * min_bs;
df415585
JA
53}
54
74776733
JA
55static uint64_t last_block(struct thread_data *td, struct fio_file *f,
56 enum fio_ddir ddir)
2ba1c290 57{
74776733
JA
58 uint64_t max_blocks;
59 uint64_t max_size;
2ba1c290 60
ff58fced
JA
61 assert(ddir_rw(ddir));
62
d9dd70f7
JA
63 /*
64 * Hmm, should we make sure that ->io_size <= ->real_file_size?
79591fa9 65 * -> not for now since there is code assuming it could go either.
d9dd70f7
JA
66 */
67 max_size = f->io_size;
68 if (max_size > f->real_file_size)
69 max_size = f->real_file_size;
70
ed335855
SN
71 if (td->o.zone_range)
72 max_size = td->o.zone_range;
73
0412d12e
JE
74 if (td->o.min_bs[ddir] > td->o.ba[ddir])
75 max_size -= td->o.min_bs[ddir] - td->o.ba[ddir];
76
1ae83d45 77 max_blocks = max_size / (uint64_t) td->o.ba[ddir];
2ba1c290
JA
78 if (!max_blocks)
79 return 0;
80
67778e88 81 return max_blocks;
2ba1c290
JA
82}
83
1ae83d45
JA
84struct rand_off {
85 struct flist_head list;
86 uint64_t off;
87};
88
e25839d4 89static int __get_next_rand_offset(struct thread_data *td, struct fio_file *f,
e0a04ac1
JA
90 enum fio_ddir ddir, uint64_t *b,
91 uint64_t lastb)
ec4015da 92{
6f49f8bc 93 uint64_t r;
5e0baa7f 94
c3546b53
JA
95 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE ||
96 td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE64) {
6f49f8bc 97
d6b72507 98 r = __rand(&td->random_state);
8055e41d 99
4b91ee8f 100 dprint(FD_RANDOM, "off rand %llu\n", (unsigned long long) r);
8055e41d 101
e0a04ac1 102 *b = lastb * (r / (rand_max(&td->random_state) + 1.0));
51ede0b1 103 } else {
8055e41d 104 uint64_t off = 0;
43c63a78 105
967d1b63
JA
106 assert(fio_file_lfsr(f));
107
6f49f8bc 108 if (lfsr_next(&f->lfsr, &off))
8055e41d 109 return 1;
ec4015da 110
8055e41d
JA
111 *b = off;
112 }
0ce8b119 113
ec4015da 114 /*
51ede0b1 115 * if we are not maintaining a random map, we are done.
ec4015da 116 */
51ede0b1
JA
117 if (!file_randommap(td, f))
118 goto ret;
43c63a78
JA
119
120 /*
51ede0b1 121 * calculate map offset and check if it's free
43c63a78 122 */
51ede0b1
JA
123 if (random_map_free(f, *b))
124 goto ret;
125
4b91ee8f
JA
126 dprint(FD_RANDOM, "get_next_rand_offset: offset %llu busy\n",
127 (unsigned long long) *b);
51ede0b1 128
7ebd796f 129 *b = axmap_next_free(f->io_axmap, *b);
51ede0b1
JA
130 if (*b == (uint64_t) -1ULL)
131 return 1;
0ce8b119
JA
132ret:
133 return 0;
ec4015da
JA
134}
135
925fee33
JA
136static int __get_next_rand_offset_zipf(struct thread_data *td,
137 struct fio_file *f, enum fio_ddir ddir,
1ae83d45 138 uint64_t *b)
e25839d4 139{
9c6f6316 140 *b = zipf_next(&f->zipf);
e25839d4
JA
141 return 0;
142}
143
925fee33
JA
144static int __get_next_rand_offset_pareto(struct thread_data *td,
145 struct fio_file *f, enum fio_ddir ddir,
1ae83d45 146 uint64_t *b)
925fee33 147{
9c6f6316 148 *b = pareto_next(&f->zipf);
925fee33
JA
149 return 0;
150}
151
56d9fa4b
JA
152static int __get_next_rand_offset_gauss(struct thread_data *td,
153 struct fio_file *f, enum fio_ddir ddir,
154 uint64_t *b)
155{
156 *b = gauss_next(&f->gauss);
157 return 0;
158}
159
e0a04ac1
JA
160static int __get_next_rand_offset_zoned(struct thread_data *td,
161 struct fio_file *f, enum fio_ddir ddir,
162 uint64_t *b)
163{
164 unsigned int v, send, stotal;
165 uint64_t offset, lastb;
166 static int warned;
167 struct zone_split_index *zsi;
168
169 lastb = last_block(td, f, ddir);
170 if (!lastb)
171 return 1;
172
173 if (!td->o.zone_split_nr[ddir]) {
174bail:
175 return __get_next_rand_offset(td, f, ddir, b, lastb);
176 }
177
178 /*
179 * Generate a value, v, between 1 and 100, both inclusive
180 */
36dd3379 181 v = rand32_between(&td->zone_state, 1, 100);
e0a04ac1
JA
182
183 zsi = &td->zone_state_index[ddir][v - 1];
184 stotal = zsi->size_perc_prev;
185 send = zsi->size_perc;
186
187 /*
188 * Should never happen
189 */
190 if (send == -1U) {
191 if (!warned) {
192 log_err("fio: bug in zoned generation\n");
193 warned = 1;
194 }
195 goto bail;
196 }
197
198 /*
199 * 'send' is some percentage below or equal to 100 that
200 * marks the end of the current IO range. 'stotal' marks
201 * the start, in percent.
202 */
203 if (stotal)
204 offset = stotal * lastb / 100ULL;
205 else
206 offset = 0;
207
208 lastb = lastb * (send - stotal) / 100ULL;
209
210 /*
211 * Generate index from 0..send-of-lastb
212 */
213 if (__get_next_rand_offset(td, f, ddir, b, lastb) == 1)
214 return 1;
215
216 /*
217 * Add our start offset, if any
218 */
219 if (offset)
220 *b += offset;
221
222 return 0;
223}
56d9fa4b 224
1ae83d45
JA
225static int flist_cmp(void *data, struct flist_head *a, struct flist_head *b)
226{
227 struct rand_off *r1 = flist_entry(a, struct rand_off, list);
228 struct rand_off *r2 = flist_entry(b, struct rand_off, list);
229
230 return r1->off - r2->off;
231}
232
233static int get_off_from_method(struct thread_data *td, struct fio_file *f,
234 enum fio_ddir ddir, uint64_t *b)
e25839d4 235{
e0a04ac1
JA
236 if (td->o.random_distribution == FIO_RAND_DIST_RANDOM) {
237 uint64_t lastb;
238
239 lastb = last_block(td, f, ddir);
240 if (!lastb)
241 return 1;
242
243 return __get_next_rand_offset(td, f, ddir, b, lastb);
244 } else if (td->o.random_distribution == FIO_RAND_DIST_ZIPF)
e25839d4 245 return __get_next_rand_offset_zipf(td, f, ddir, b);
925fee33
JA
246 else if (td->o.random_distribution == FIO_RAND_DIST_PARETO)
247 return __get_next_rand_offset_pareto(td, f, ddir, b);
56d9fa4b
JA
248 else if (td->o.random_distribution == FIO_RAND_DIST_GAUSS)
249 return __get_next_rand_offset_gauss(td, f, ddir, b);
e0a04ac1
JA
250 else if (td->o.random_distribution == FIO_RAND_DIST_ZONED)
251 return __get_next_rand_offset_zoned(td, f, ddir, b);
e25839d4
JA
252
253 log_err("fio: unknown random distribution: %d\n", td->o.random_distribution);
254 return 1;
255}
256
bcd5abfa
JA
257/*
258 * Sort the reads for a verify phase in batches of verifysort_nr, if
259 * specified.
260 */
e39c0676 261static inline bool should_sort_io(struct thread_data *td)
bcd5abfa
JA
262{
263 if (!td->o.verifysort_nr || !td->o.do_verify)
e39c0676 264 return false;
bcd5abfa 265 if (!td_random(td))
e39c0676 266 return false;
bcd5abfa 267 if (td->runstate != TD_VERIFYING)
e39c0676 268 return false;
c3546b53
JA
269 if (td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE ||
270 td->o.random_generator == FIO_RAND_GEN_TAUSWORTHE64)
e39c0676 271 return false;
bcd5abfa 272
e39c0676 273 return true;
bcd5abfa
JA
274}
275
e39c0676 276static bool should_do_random(struct thread_data *td, enum fio_ddir ddir)
211c9b89
JA
277{
278 unsigned int v;
211c9b89 279
d9472271 280 if (td->o.perc_rand[ddir] == 100)
e39c0676 281 return true;
211c9b89 282
36dd3379 283 v = rand32_between(&td->seq_rand_state[ddir], 1, 100);
211c9b89 284
d9472271 285 return v <= td->o.perc_rand[ddir];
211c9b89
JA
286}
287
1ae83d45
JA
288static int get_next_rand_offset(struct thread_data *td, struct fio_file *f,
289 enum fio_ddir ddir, uint64_t *b)
290{
291 struct rand_off *r;
292 int i, ret = 1;
293
bcd5abfa 294 if (!should_sort_io(td))
1ae83d45
JA
295 return get_off_from_method(td, f, ddir, b);
296
297 if (!flist_empty(&td->next_rand_list)) {
1ae83d45 298fetch:
9342d5f8 299 r = flist_first_entry(&td->next_rand_list, struct rand_off, list);
1ae83d45
JA
300 flist_del(&r->list);
301 *b = r->off;
302 free(r);
303 return 0;
304 }
305
306 for (i = 0; i < td->o.verifysort_nr; i++) {
307 r = malloc(sizeof(*r));
308
309 ret = get_off_from_method(td, f, ddir, &r->off);
310 if (ret) {
311 free(r);
312 break;
313 }
314
315 flist_add(&r->list, &td->next_rand_list);
316 }
317
318 if (ret && !i)
319 return ret;
320
321 assert(!flist_empty(&td->next_rand_list));
322 flist_sort(NULL, &td->next_rand_list, flist_cmp);
323 goto fetch;
324}
325
0bcf41cd
JA
326static void loop_cache_invalidate(struct thread_data *td, struct fio_file *f)
327{
328 struct thread_options *o = &td->o;
329
330 if (o->invalidate_cache && !o->odirect) {
331 int fio_unused ret;
332
333 ret = file_invalidate_cache(td, f);
334 }
335}
336
38dad62d 337static int get_next_rand_block(struct thread_data *td, struct fio_file *f,
1ae83d45 338 enum fio_ddir ddir, uint64_t *b)
38dad62d 339{
c04e4661
DE
340 if (!get_next_rand_offset(td, f, ddir, b))
341 return 0;
342
8c07860d
JA
343 if (td->o.time_based ||
344 (td->o.file_service_type & __FIO_FSERVICE_NONUNIFORM)) {
33c48814 345 fio_file_reset(td, f);
c04e4661
DE
346 if (!get_next_rand_offset(td, f, ddir, b))
347 return 0;
0bcf41cd 348 loop_cache_invalidate(td, f);
38dad62d
JA
349 }
350
c04e4661 351 dprint(FD_IO, "%s: rand offset failed, last=%llu, size=%llu\n",
f1dfb668 352 f->file_name, (unsigned long long) f->last_pos[ddir],
4b91ee8f 353 (unsigned long long) f->real_file_size);
c04e4661 354 return 1;
38dad62d
JA
355}
356
37cf9e3c 357static int get_next_seq_offset(struct thread_data *td, struct fio_file *f,
1ae83d45 358 enum fio_ddir ddir, uint64_t *offset)
38dad62d 359{
ac002339
JA
360 struct thread_options *o = &td->o;
361
ff58fced
JA
362 assert(ddir_rw(ddir));
363
17373ce2
JA
364 /*
365 * If we reach the end for a time based run, reset us back to 0
366 * and invalidate the cache, if we need to.
367 */
f1dfb668 368 if (f->last_pos[ddir] >= f->io_size + get_start_offset(td, f) &&
19ddc35b 369 o->time_based) {
c89daa4a 370 f->last_pos[ddir] = f->file_offset;
0bcf41cd 371 loop_cache_invalidate(td, f);
19ddc35b 372 }
c04e4661 373
f1dfb668 374 if (f->last_pos[ddir] < f->real_file_size) {
1ae83d45 375 uint64_t pos;
059b0802 376
c22825bb
JA
377 if (f->last_pos[ddir] == f->file_offset && o->ddir_seq_add < 0) {
378 if (f->real_file_size > f->io_size)
379 f->last_pos[ddir] = f->io_size;
380 else
381 f->last_pos[ddir] = f->real_file_size;
382 }
a66da7a2 383
f1dfb668 384 pos = f->last_pos[ddir] - f->file_offset;
ac002339
JA
385 if (pos && o->ddir_seq_add) {
386 pos += o->ddir_seq_add;
387
388 /*
389 * If we reach beyond the end of the file
390 * with holed IO, wrap around to the
b0a84f48
JA
391 * beginning again. If we're doing backwards IO,
392 * wrap to the end.
ac002339 393 */
b0a84f48
JA
394 if (pos >= f->real_file_size) {
395 if (o->ddir_seq_add > 0)
396 pos = f->file_offset;
c22825bb
JA
397 else {
398 if (f->real_file_size > f->io_size)
399 pos = f->io_size;
400 else
401 pos = f->real_file_size;
402
403 pos += o->ddir_seq_add;
404 }
b0a84f48 405 }
ac002339 406 }
059b0802 407
37cf9e3c 408 *offset = pos;
38dad62d
JA
409 return 0;
410 }
411
412 return 1;
413}
414
415static int get_next_block(struct thread_data *td, struct io_u *io_u,
6aca9b3d
JA
416 enum fio_ddir ddir, int rw_seq,
417 unsigned int *is_random)
38dad62d
JA
418{
419 struct fio_file *f = io_u->file;
1ae83d45 420 uint64_t b, offset;
38dad62d
JA
421 int ret;
422
ff58fced
JA
423 assert(ddir_rw(ddir));
424
37cf9e3c
JA
425 b = offset = -1ULL;
426
38dad62d 427 if (rw_seq) {
211c9b89 428 if (td_random(td)) {
6aca9b3d 429 if (should_do_random(td, ddir)) {
211c9b89 430 ret = get_next_rand_block(td, f, ddir, &b);
6aca9b3d
JA
431 *is_random = 1;
432 } else {
433 *is_random = 0;
1651e431 434 io_u_set(td, io_u, IO_U_F_BUSY_OK);
211c9b89
JA
435 ret = get_next_seq_offset(td, f, ddir, &offset);
436 if (ret)
437 ret = get_next_rand_block(td, f, ddir, &b);
438 }
6aca9b3d
JA
439 } else {
440 *is_random = 0;
37cf9e3c 441 ret = get_next_seq_offset(td, f, ddir, &offset);
6aca9b3d 442 }
38dad62d 443 } else {
1651e431 444 io_u_set(td, io_u, IO_U_F_BUSY_OK);
6aca9b3d 445 *is_random = 0;
38dad62d
JA
446
447 if (td->o.rw_seq == RW_SEQ_SEQ) {
37cf9e3c 448 ret = get_next_seq_offset(td, f, ddir, &offset);
6aca9b3d 449 if (ret) {
37cf9e3c 450 ret = get_next_rand_block(td, f, ddir, &b);
6aca9b3d
JA
451 *is_random = 0;
452 }
38dad62d 453 } else if (td->o.rw_seq == RW_SEQ_IDENT) {
f1dfb668
JA
454 if (f->last_start[ddir] != -1ULL)
455 offset = f->last_start[ddir] - f->file_offset;
38dad62d 456 else
37cf9e3c 457 offset = 0;
38dad62d
JA
458 ret = 0;
459 } else {
460 log_err("fio: unknown rw_seq=%d\n", td->o.rw_seq);
461 ret = 1;
462 }
463 }
6d68b997 464
37cf9e3c
JA
465 if (!ret) {
466 if (offset != -1ULL)
467 io_u->offset = offset;
468 else if (b != -1ULL)
469 io_u->offset = b * td->o.ba[ddir];
470 else {
4e0a8fa2 471 log_err("fio: bug in offset generation: offset=%llu, b=%llu\n", (unsigned long long) offset, (unsigned long long) b);
37cf9e3c
JA
472 ret = 1;
473 }
474 }
475
38dad62d
JA
476 return ret;
477}
478
10ba535a
JA
479/*
480 * For random io, generate a random new block and see if it's used. Repeat
481 * until we find a free one. For sequential io, just return the end of
482 * the last io issued.
483 */
6aca9b3d
JA
484static int __get_next_offset(struct thread_data *td, struct io_u *io_u,
485 unsigned int *is_random)
10ba535a 486{
9bf2061e 487 struct fio_file *f = io_u->file;
4ba66134 488 enum fio_ddir ddir = io_u->ddir;
38dad62d 489 int rw_seq_hit = 0;
10ba535a 490
ff58fced
JA
491 assert(ddir_rw(ddir));
492
38dad62d
JA
493 if (td->o.ddir_seq_nr && !--td->ddir_seq_nr) {
494 rw_seq_hit = 1;
5736c10d 495 td->ddir_seq_nr = td->o.ddir_seq_nr;
38dad62d 496 }
211097b2 497
6aca9b3d 498 if (get_next_block(td, io_u, ddir, rw_seq_hit, is_random))
38dad62d 499 return 1;
10ba535a 500
009bd847
JA
501 if (io_u->offset >= f->io_size) {
502 dprint(FD_IO, "get_next_offset: offset %llu >= io_size %llu\n",
4b91ee8f
JA
503 (unsigned long long) io_u->offset,
504 (unsigned long long) f->io_size);
009bd847
JA
505 return 1;
506 }
507
508 io_u->offset += f->file_offset;
2ba1c290
JA
509 if (io_u->offset >= f->real_file_size) {
510 dprint(FD_IO, "get_next_offset: offset %llu >= size %llu\n",
4b91ee8f
JA
511 (unsigned long long) io_u->offset,
512 (unsigned long long) f->real_file_size);
10ba535a 513 return 1;
2ba1c290 514 }
10ba535a
JA
515
516 return 0;
517}
518
6aca9b3d
JA
519static int get_next_offset(struct thread_data *td, struct io_u *io_u,
520 unsigned int *is_random)
15dc1934 521{
d72be545
JA
522 if (td->flags & TD_F_PROFILE_OPS) {
523 struct prof_io_ops *ops = &td->prof_io_ops;
7eb36574 524
d72be545 525 if (ops->fill_io_u_off)
6aca9b3d 526 return ops->fill_io_u_off(td, io_u, is_random);
d72be545 527 }
15dc1934 528
6aca9b3d 529 return __get_next_offset(td, io_u, is_random);
15dc1934
JA
530}
531
e39c0676
JA
532static inline bool io_u_fits(struct thread_data *td, struct io_u *io_u,
533 unsigned int buflen)
79944128
JA
534{
535 struct fio_file *f = io_u->file;
536
bedc9dc2 537 return io_u->offset + buflen <= f->io_size + get_start_offset(td, f);
79944128
JA
538}
539
6aca9b3d
JA
540static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u,
541 unsigned int is_random)
10ba535a 542{
6aca9b3d 543 int ddir = io_u->ddir;
24d23ca7 544 unsigned int buflen = 0;
f3059de1 545 unsigned int minbs, maxbs;
3dd29f7c 546 uint64_t frand_max, r;
7c961359 547 bool power_2;
10ba535a 548
9ee1c647 549 assert(ddir_rw(ddir));
6aca9b3d
JA
550
551 if (td->o.bs_is_seq_rand)
552 ddir = is_random ? DDIR_WRITE: DDIR_READ;
ff58fced 553
f3059de1
JA
554 minbs = td->o.min_bs[ddir];
555 maxbs = td->o.max_bs[ddir];
556
79944128
JA
557 if (minbs == maxbs)
558 return minbs;
559
52c58027
JA
560 /*
561 * If we can't satisfy the min block size from here, then fail
562 */
563 if (!io_u_fits(td, io_u, minbs))
564 return 0;
565
2f282cec 566 frand_max = rand_max(&td->bsrange_state[ddir]);
79944128 567 do {
2f282cec 568 r = __rand(&td->bsrange_state[ddir]);
4c07ad86 569
720e84ad 570 if (!td->o.bssplit_nr[ddir]) {
f3059de1 571 buflen = 1 + (unsigned int) ((double) maxbs *
c3546b53 572 (r / (frand_max + 1.0)));
f3059de1
JA
573 if (buflen < minbs)
574 buflen = minbs;
5ec10eaa 575 } else {
3dd29f7c 576 long long perc = 0;
564ca972
JA
577 unsigned int i;
578
720e84ad
JA
579 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
580 struct bssplit *bsp = &td->o.bssplit[ddir][i];
564ca972
JA
581
582 buflen = bsp->bs;
583 perc += bsp->perc;
3dd29f7c
JA
584 if (!perc)
585 break;
586 if ((r / perc <= frand_max / 100ULL) &&
79944128 587 io_u_fits(td, io_u, buflen))
564ca972
JA
588 break;
589 }
590 }
79944128 591
17a6b702
PL
592 power_2 = is_power_of_2(minbs);
593 if (!td->o.bs_unaligned && power_2)
7c306bb1 594 buflen &= ~(minbs - 1);
17a6b702
PL
595 else if (!td->o.bs_unaligned && !power_2)
596 buflen -= buflen % minbs;
79944128 597 } while (!io_u_fits(td, io_u, buflen));
6a5e6884 598
10ba535a
JA
599 return buflen;
600}
601
6aca9b3d
JA
602static unsigned int get_next_buflen(struct thread_data *td, struct io_u *io_u,
603 unsigned int is_random)
15dc1934 604{
d72be545
JA
605 if (td->flags & TD_F_PROFILE_OPS) {
606 struct prof_io_ops *ops = &td->prof_io_ops;
7eb36574 607
d72be545 608 if (ops->fill_io_u_size)
6aca9b3d 609 return ops->fill_io_u_size(td, io_u, is_random);
d72be545 610 }
15dc1934 611
6aca9b3d 612 return __get_next_buflen(td, io_u, is_random);
15dc1934
JA
613}
614
afe24a5a
JA
615static void set_rwmix_bytes(struct thread_data *td)
616{
afe24a5a
JA
617 unsigned int diff;
618
619 /*
620 * we do time or byte based switch. this is needed because
621 * buffered writes may issue a lot quicker than they complete,
622 * whereas reads do not.
623 */
e47f799f 624 diff = td->o.rwmix[td->rwmix_ddir ^ 1];
04c540d9 625 td->rwmix_issues = (td->io_issues[td->rwmix_ddir] * diff) / 100;
e47f799f
JA
626}
627
628static inline enum fio_ddir get_rand_ddir(struct thread_data *td)
629{
630 unsigned int v;
e47f799f 631
36dd3379 632 v = rand32_between(&td->rwmix_state, 1, 100);
4c07ad86 633
04c540d9 634 if (v <= td->o.rwmix[DDIR_READ])
e47f799f
JA
635 return DDIR_READ;
636
637 return DDIR_WRITE;
afe24a5a
JA
638}
639
0d593542 640int io_u_quiesce(struct thread_data *td)
002e7183 641{
0d593542
JA
642 int completed = 0;
643
002e7183
JA
644 /*
645 * We are going to sleep, ensure that we flush anything pending as
646 * not to skew our latency numbers.
647 *
648 * Changed to only monitor 'in flight' requests here instead of the
649 * td->cur_depth, b/c td->cur_depth does not accurately represent
650 * io's that have been actually submitted to an async engine,
651 * and cur_depth is meaningless for sync engines.
652 */
9cc80b6d
JA
653 if (td->io_u_queued || td->cur_depth) {
654 int fio_unused ret;
655
656 ret = td_io_commit(td);
657 }
658
002e7183 659 while (td->io_u_in_flight) {
89fd0573 660 int ret;
002e7183 661
55312f9f 662 ret = io_u_queued_complete(td, 1);
0d593542
JA
663 if (ret > 0)
664 completed += ret;
002e7183 665 }
0d593542 666
6be06c46
JA
667 if (td->flags & TD_F_REGROW_LOGS)
668 regrow_logs(td);
669
0d593542 670 return completed;
002e7183
JA
671}
672
581e7141
JA
673static enum fio_ddir rate_ddir(struct thread_data *td, enum fio_ddir ddir)
674{
675 enum fio_ddir odir = ddir ^ 1;
b5407f8b 676 uint64_t usec;
90eff1c9 677 uint64_t now;
581e7141 678
ff58fced 679 assert(ddir_rw(ddir));
50a8ce86 680 now = utime_since_now(&td->start);
ff58fced 681
50a8ce86
D
682 /*
683 * if rate_next_io_time is in the past, need to catch up to rate
684 */
685 if (td->rate_next_io_time[ddir] <= now)
581e7141
JA
686 return ddir;
687
688 /*
50a8ce86 689 * We are ahead of rate in this direction. See if we
581e7141
JA
690 * should switch.
691 */
315fcfec 692 if (td_rw(td) && td->o.rwmix[odir]) {
581e7141 693 /*
50a8ce86 694 * Other direction is behind rate, switch
581e7141 695 */
50a8ce86 696 if (td->rate_next_io_time[odir] <= now)
581e7141
JA
697 return odir;
698
699 /*
50a8ce86
D
700 * Both directions are ahead of rate. sleep the min
701 * switch if necissary
581e7141 702 */
50a8ce86
D
703 if (td->rate_next_io_time[ddir] <=
704 td->rate_next_io_time[odir]) {
705 usec = td->rate_next_io_time[ddir] - now;
581e7141 706 } else {
50a8ce86 707 usec = td->rate_next_io_time[odir] - now;
581e7141
JA
708 ddir = odir;
709 }
710 } else
50a8ce86 711 usec = td->rate_next_io_time[ddir] - now;
581e7141 712
a9da8ab2
JA
713 if (td->o.io_submit_mode == IO_MODE_INLINE)
714 io_u_quiesce(td);
78c1eda5 715
9cc80b6d 716 usec = usec_sleep(td, usec);
581e7141 717
581e7141
JA
718 return ddir;
719}
720
10ba535a
JA
721/*
722 * Return the data direction for the next io_u. If the job is a
723 * mixed read/write workload, check the rwmix cycle and switch if
724 * necessary.
725 */
1e97cce9 726static enum fio_ddir get_rw_ddir(struct thread_data *td)
10ba535a 727{
581e7141
JA
728 enum fio_ddir ddir;
729
5f9099ea 730 /*
f6860972
TK
731 * See if it's time to fsync/fdatasync/sync_file_range first,
732 * and if not then move on to check regular I/Os.
5f9099ea 733 */
f6860972
TK
734 if (should_fsync(td)) {
735 if (td->o.fsync_blocks && td->io_issues[DDIR_WRITE] &&
736 !(td->io_issues[DDIR_WRITE] % td->o.fsync_blocks))
737 return DDIR_SYNC;
738
739 if (td->o.fdatasync_blocks && td->io_issues[DDIR_WRITE] &&
740 !(td->io_issues[DDIR_WRITE] % td->o.fdatasync_blocks))
741 return DDIR_DATASYNC;
742
743 if (td->sync_file_range_nr && td->io_issues[DDIR_WRITE] &&
744 !(td->io_issues[DDIR_WRITE] % td->sync_file_range_nr))
745 return DDIR_SYNC_FILE_RANGE;
746 }
44f29692 747
10ba535a 748 if (td_rw(td)) {
10ba535a
JA
749 /*
750 * Check if it's time to seed a new data direction.
751 */
e4928662 752 if (td->io_issues[td->rwmix_ddir] >= td->rwmix_issues) {
e47f799f
JA
753 /*
754 * Put a top limit on how many bytes we do for
755 * one data direction, to avoid overflowing the
756 * ranges too much
757 */
758 ddir = get_rand_ddir(td);
e47f799f
JA
759
760 if (ddir != td->rwmix_ddir)
761 set_rwmix_bytes(td);
762
763 td->rwmix_ddir = ddir;
10ba535a 764 }
581e7141 765 ddir = td->rwmix_ddir;
10ba535a 766 } else if (td_read(td))
581e7141 767 ddir = DDIR_READ;
6eaf09d6 768 else if (td_write(td))
581e7141 769 ddir = DDIR_WRITE;
5c8e84ca 770 else if (td_trim(td))
6eaf09d6 771 ddir = DDIR_TRIM;
5c8e84ca
TK
772 else
773 ddir = DDIR_INVAL;
581e7141
JA
774
775 td->rwmix_ddir = rate_ddir(td, ddir);
776 return td->rwmix_ddir;
10ba535a
JA
777}
778
1ef2b6be
JA
779static void set_rw_ddir(struct thread_data *td, struct io_u *io_u)
780{
0e4dd95c
DE
781 enum fio_ddir ddir = get_rw_ddir(td);
782
82a90686 783 if (td_trimwrite(td)) {
0e4dd95c
DE
784 struct fio_file *f = io_u->file;
785 if (f->last_pos[DDIR_WRITE] == f->last_pos[DDIR_TRIM])
786 ddir = DDIR_TRIM;
787 else
788 ddir = DDIR_WRITE;
789 }
790
791 io_u->ddir = io_u->acct_ddir = ddir;
1ef2b6be 792
9b87f09b 793 if (io_u->ddir == DDIR_WRITE && td_ioengine_flagged(td, FIO_BARRIER) &&
1ef2b6be
JA
794 td->o.barrier_blocks &&
795 !(td->io_issues[DDIR_WRITE] % td->o.barrier_blocks) &&
796 td->io_issues[DDIR_WRITE])
1651e431 797 io_u_set(td, io_u, IO_U_F_BARRIER);
1ef2b6be
JA
798}
799
e8462bd8 800void put_file_log(struct thread_data *td, struct fio_file *f)
60f2c658 801{
71b84caa 802 unsigned int ret = put_file(td, f);
60f2c658
JA
803
804 if (ret)
805 td_verror(td, ret, "file close");
806}
807
10ba535a
JA
808void put_io_u(struct thread_data *td, struct io_u *io_u)
809{
a9da8ab2
JA
810 if (td->parent)
811 td = td->parent;
812
e8462bd8
JA
813 td_io_u_lock(td);
814
f8b0bd10 815 if (io_u->file && !(io_u->flags & IO_U_F_NO_FILE_PUT))
60f2c658 816 put_file_log(td, io_u->file);
f8b0bd10 817
10ba535a 818 io_u->file = NULL;
1651e431 819 io_u_set(td, io_u, IO_U_F_FREE);
d7ee2a7d 820
a9da8ab2 821 if (io_u->flags & IO_U_F_IN_CUR_DEPTH) {
0c41214f 822 td->cur_depth--;
a9da8ab2
JA
823 assert(!(td->flags & TD_F_CHILD));
824 }
2ae0b204 825 io_u_qpush(&td->io_u_freelist, io_u);
e8462bd8
JA
826 td_io_u_unlock(td);
827 td_io_u_free_notify(td);
10ba535a
JA
828}
829
f2bba182
RR
830void clear_io_u(struct thread_data *td, struct io_u *io_u)
831{
1651e431 832 io_u_clear(td, io_u, IO_U_F_FLIGHT);
f2bba182
RR
833 put_io_u(td, io_u);
834}
835
755200a3
JA
836void requeue_io_u(struct thread_data *td, struct io_u **io_u)
837{
838 struct io_u *__io_u = *io_u;
bcd5abfa 839 enum fio_ddir ddir = acct_ddir(__io_u);
755200a3 840
465221b0
JA
841 dprint(FD_IO, "requeue %p\n", __io_u);
842
a9da8ab2
JA
843 if (td->parent)
844 td = td->parent;
845
e8462bd8
JA
846 td_io_u_lock(td);
847
1651e431 848 io_u_set(td, __io_u, IO_U_F_FREE);
bcd5abfa
JA
849 if ((__io_u->flags & IO_U_F_FLIGHT) && ddir_rw(ddir))
850 td->io_issues[ddir]--;
5ec10eaa 851
1651e431 852 io_u_clear(td, __io_u, IO_U_F_FLIGHT);
a9da8ab2 853 if (__io_u->flags & IO_U_F_IN_CUR_DEPTH) {
0c41214f 854 td->cur_depth--;
a9da8ab2
JA
855 assert(!(td->flags & TD_F_CHILD));
856 }
2ae0b204
JA
857
858 io_u_rpush(&td->io_u_requeues, __io_u);
e8462bd8 859 td_io_u_unlock(td);
a9da8ab2 860 td_io_u_free_notify(td);
755200a3
JA
861 *io_u = NULL;
862}
863
9bf2061e 864static int fill_io_u(struct thread_data *td, struct io_u *io_u)
10ba535a 865{
6aca9b3d
JA
866 unsigned int is_random;
867
9b87f09b 868 if (td_ioengine_flagged(td, FIO_NOIO))
b4c5e1ac
JA
869 goto out;
870
1ef2b6be 871 set_rw_ddir(td, io_u);
5f9099ea 872
87dc1ab1 873 /*
ff58fced 874 * fsync() or fdatasync() or trim etc, we are done
87dc1ab1 875 */
ff58fced 876 if (!ddir_rw(io_u->ddir))
c38e9468 877 goto out;
a00735e6 878
48f5abd3
JA
879 /*
880 * See if it's time to switch to a new zone
881 */
13af05ae 882 if (td->zone_bytes >= td->o.zone_size && td->o.zone_skip) {
4c8be5b1
JA
883 struct fio_file *f = io_u->file;
884
48f5abd3 885 td->zone_bytes = 0;
4c8be5b1
JA
886 f->file_offset += td->o.zone_range + td->o.zone_skip;
887
888 /*
889 * Wrap from the beginning, if we exceed the file size
890 */
891 if (f->file_offset >= f->real_file_size)
892 f->file_offset = f->real_file_size - f->file_offset;
f1dfb668 893 f->last_pos[io_u->ddir] = f->file_offset;
48f5abd3
JA
894 td->io_skip_bytes += td->o.zone_skip;
895 }
896
10ba535a 897 /*
c685b5b2
JA
898 * No log, let the seq/rand engine retrieve the next buflen and
899 * position.
10ba535a 900 */
6aca9b3d 901 if (get_next_offset(td, io_u, &is_random)) {
2ba1c290 902 dprint(FD_IO, "io_u %p, failed getting offset\n", io_u);
bca4ed4d 903 return 1;
2ba1c290 904 }
10ba535a 905
6aca9b3d 906 io_u->buflen = get_next_buflen(td, io_u, is_random);
2ba1c290
JA
907 if (!io_u->buflen) {
908 dprint(FD_IO, "io_u %p, failed getting buflen\n", io_u);
bca4ed4d 909 return 1;
2ba1c290 910 }
bca4ed4d 911
2ba1c290 912 if (io_u->offset + io_u->buflen > io_u->file->real_file_size) {
48366f3a
TK
913 dprint(FD_IO, "io_u %p, offset + buflen exceeds file size\n",
914 io_u);
915 dprint(FD_IO, " offset=%llu/buflen=%lu > %llu\n",
4b91ee8f
JA
916 (unsigned long long) io_u->offset, io_u->buflen,
917 (unsigned long long) io_u->file->real_file_size);
6a5e6884 918 return 1;
2ba1c290 919 }
6a5e6884 920
bca4ed4d
JA
921 /*
922 * mark entry before potentially trimming io_u
923 */
303032ae 924 if (td_random(td) && file_randommap(td, io_u->file))
9bf2061e 925 mark_random_map(td, io_u);
bca4ed4d 926
c38e9468 927out:
2ba1c290 928 dprint_io_u(io_u, "fill_io_u");
d9d91e39 929 td->zone_bytes += io_u->buflen;
bca4ed4d 930 return 0;
10ba535a
JA
931}
932
838bc709
JA
933static void __io_u_mark_map(unsigned int *map, unsigned int nr)
934{
2b13e716 935 int idx = 0;
838bc709
JA
936
937 switch (nr) {
938 default:
2b13e716 939 idx = 6;
838bc709
JA
940 break;
941 case 33 ... 64:
2b13e716 942 idx = 5;
838bc709
JA
943 break;
944 case 17 ... 32:
2b13e716 945 idx = 4;
838bc709
JA
946 break;
947 case 9 ... 16:
2b13e716 948 idx = 3;
838bc709
JA
949 break;
950 case 5 ... 8:
2b13e716 951 idx = 2;
838bc709
JA
952 break;
953 case 1 ... 4:
2b13e716 954 idx = 1;
838bc709
JA
955 case 0:
956 break;
957 }
958
2b13e716 959 map[idx]++;
838bc709
JA
960}
961
962void io_u_mark_submit(struct thread_data *td, unsigned int nr)
963{
964 __io_u_mark_map(td->ts.io_u_submit, nr);
965 td->ts.total_submit++;
966}
967
968void io_u_mark_complete(struct thread_data *td, unsigned int nr)
969{
970 __io_u_mark_map(td->ts.io_u_complete, nr);
971 td->ts.total_complete++;
972}
973
d8005759 974void io_u_mark_depth(struct thread_data *td, unsigned int nr)
71619dc2 975{
2b13e716 976 int idx = 0;
71619dc2
JA
977
978 switch (td->cur_depth) {
979 default:
2b13e716 980 idx = 6;
a783e61a 981 break;
71619dc2 982 case 32 ... 63:
2b13e716 983 idx = 5;
a783e61a 984 break;
71619dc2 985 case 16 ... 31:
2b13e716 986 idx = 4;
a783e61a 987 break;
71619dc2 988 case 8 ... 15:
2b13e716 989 idx = 3;
a783e61a 990 break;
71619dc2 991 case 4 ... 7:
2b13e716 992 idx = 2;
a783e61a 993 break;
71619dc2 994 case 2 ... 3:
2b13e716 995 idx = 1;
71619dc2
JA
996 case 1:
997 break;
998 }
999
2b13e716 1000 td->ts.io_u_map[idx] += nr;
71619dc2
JA
1001}
1002
d6bb626e 1003static void io_u_mark_lat_nsec(struct thread_data *td, unsigned long long nsec)
04a0feae 1004{
2b13e716 1005 int idx = 0;
04a0feae 1006
d6bb626e
VF
1007 assert(nsec < 1000);
1008
1009 switch (nsec) {
1010 case 750 ... 999:
1011 idx = 9;
1012 break;
1013 case 500 ... 749:
1014 idx = 8;
1015 break;
1016 case 250 ... 499:
1017 idx = 7;
1018 break;
1019 case 100 ... 249:
1020 idx = 6;
1021 break;
1022 case 50 ... 99:
1023 idx = 5;
1024 break;
1025 case 20 ... 49:
1026 idx = 4;
1027 break;
1028 case 10 ... 19:
1029 idx = 3;
1030 break;
1031 case 4 ... 9:
1032 idx = 2;
1033 break;
1034 case 2 ... 3:
1035 idx = 1;
1036 case 0 ... 1:
1037 break;
1038 }
1039
1040 assert(idx < FIO_IO_U_LAT_N_NR);
1041 td->ts.io_u_lat_n[idx]++;
1042}
1043
1044static void io_u_mark_lat_usec(struct thread_data *td, unsigned long long usec)
1045{
1046 int idx = 0;
1047
1048 assert(usec < 1000 && usec >= 1);
04a0feae
JA
1049
1050 switch (usec) {
1051 case 750 ... 999:
2b13e716 1052 idx = 9;
04a0feae
JA
1053 break;
1054 case 500 ... 749:
2b13e716 1055 idx = 8;
04a0feae
JA
1056 break;
1057 case 250 ... 499:
2b13e716 1058 idx = 7;
04a0feae
JA
1059 break;
1060 case 100 ... 249:
2b13e716 1061 idx = 6;
04a0feae
JA
1062 break;
1063 case 50 ... 99:
2b13e716 1064 idx = 5;
04a0feae
JA
1065 break;
1066 case 20 ... 49:
2b13e716 1067 idx = 4;
04a0feae
JA
1068 break;
1069 case 10 ... 19:
2b13e716 1070 idx = 3;
04a0feae
JA
1071 break;
1072 case 4 ... 9:
2b13e716 1073 idx = 2;
04a0feae
JA
1074 break;
1075 case 2 ... 3:
2b13e716 1076 idx = 1;
04a0feae
JA
1077 case 0 ... 1:
1078 break;
1079 }
1080
2b13e716
JA
1081 assert(idx < FIO_IO_U_LAT_U_NR);
1082 td->ts.io_u_lat_u[idx]++;
04a0feae
JA
1083}
1084
d6bb626e 1085static void io_u_mark_lat_msec(struct thread_data *td, unsigned long long msec)
ec118304 1086{
2b13e716 1087 int idx = 0;
ec118304 1088
d6bb626e
VF
1089 assert(msec >= 1);
1090
ec118304
JA
1091 switch (msec) {
1092 default:
2b13e716 1093 idx = 11;
04a0feae 1094 break;
8abdce66 1095 case 1000 ... 1999:
2b13e716 1096 idx = 10;
04a0feae 1097 break;
8abdce66 1098 case 750 ... 999:
2b13e716 1099 idx = 9;
04a0feae 1100 break;
8abdce66 1101 case 500 ... 749:
2b13e716 1102 idx = 8;
04a0feae 1103 break;
8abdce66 1104 case 250 ... 499:
2b13e716 1105 idx = 7;
04a0feae 1106 break;
8abdce66 1107 case 100 ... 249:
2b13e716 1108 idx = 6;
04a0feae 1109 break;
8abdce66 1110 case 50 ... 99:
2b13e716 1111 idx = 5;
04a0feae 1112 break;
8abdce66 1113 case 20 ... 49:
2b13e716 1114 idx = 4;
04a0feae 1115 break;
8abdce66 1116 case 10 ... 19:
2b13e716 1117 idx = 3;
04a0feae 1118 break;
8abdce66 1119 case 4 ... 9:
2b13e716 1120 idx = 2;
04a0feae 1121 break;
ec118304 1122 case 2 ... 3:
2b13e716 1123 idx = 1;
ec118304
JA
1124 case 0 ... 1:
1125 break;
1126 }
1127
2b13e716
JA
1128 assert(idx < FIO_IO_U_LAT_M_NR);
1129 td->ts.io_u_lat_m[idx]++;
04a0feae
JA
1130}
1131
d6bb626e 1132static void io_u_mark_latency(struct thread_data *td, unsigned long long nsec)
04a0feae 1133{
d6bb626e
VF
1134 if (nsec < 1000)
1135 io_u_mark_lat_nsec(td, nsec);
1136 else if (nsec < 1000000)
1137 io_u_mark_lat_usec(td, nsec / 1000);
04a0feae 1138 else
d6bb626e 1139 io_u_mark_lat_msec(td, nsec / 1000000);
ec118304
JA
1140}
1141
8c07860d
JA
1142static unsigned int __get_next_fileno_rand(struct thread_data *td)
1143{
1144 unsigned long fileno;
1145
1146 if (td->o.file_service_type == FIO_FSERVICE_RANDOM) {
1147 uint64_t frand_max = rand_max(&td->next_file_state);
1148 unsigned long r;
1149
1150 r = __rand(&td->next_file_state);
1151 return (unsigned int) ((double) td->o.nr_files
1152 * (r / (frand_max + 1.0)));
1153 }
1154
1155 if (td->o.file_service_type == FIO_FSERVICE_ZIPF)
1156 fileno = zipf_next(&td->next_file_zipf);
1157 else if (td->o.file_service_type == FIO_FSERVICE_PARETO)
1158 fileno = pareto_next(&td->next_file_zipf);
1159 else if (td->o.file_service_type == FIO_FSERVICE_GAUSS)
1160 fileno = gauss_next(&td->next_file_gauss);
1161 else {
1162 log_err("fio: bad file service type: %d\n", td->o.file_service_type);
1163 assert(0);
1164 return 0;
1165 }
1166
1167 return fileno >> FIO_FSERVICE_SHIFT;
1168}
1169
0aabe160
JA
1170/*
1171 * Get next file to service by choosing one at random
1172 */
2cc52930
JA
1173static struct fio_file *get_next_file_rand(struct thread_data *td,
1174 enum fio_file_flags goodf,
d6aed795 1175 enum fio_file_flags badf)
0aabe160 1176{
0aabe160 1177 struct fio_file *f;
1c178180 1178 int fno;
0aabe160
JA
1179
1180 do {
87b10676 1181 int opened = 0;
4c07ad86 1182
8c07860d 1183 fno = __get_next_fileno_rand(td);
7c83c089 1184
126d65c6 1185 f = td->files[fno];
d6aed795 1186 if (fio_file_done(f))
059e63c0 1187 continue;
1c178180 1188
d6aed795 1189 if (!fio_file_open(f)) {
87b10676
JA
1190 int err;
1191
002fe734
JA
1192 if (td->nr_open_files >= td->o.open_files)
1193 return ERR_PTR(-EBUSY);
1194
87b10676
JA
1195 err = td_io_open_file(td, f);
1196 if (err)
1197 continue;
1198 opened = 1;
1199 }
1200
2ba1c290
JA
1201 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf)) {
1202 dprint(FD_FILE, "get_next_file_rand: %p\n", f);
0aabe160 1203 return f;
2ba1c290 1204 }
87b10676
JA
1205 if (opened)
1206 td_io_close_file(td, f);
0aabe160
JA
1207 } while (1);
1208}
1209
1210/*
1211 * Get next file to service by doing round robin between all available ones
1212 */
1c178180
JA
1213static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf,
1214 int badf)
3d7c391d
JA
1215{
1216 unsigned int old_next_file = td->next_file;
1217 struct fio_file *f;
1218
1219 do {
87b10676
JA
1220 int opened = 0;
1221
126d65c6 1222 f = td->files[td->next_file];
3d7c391d
JA
1223
1224 td->next_file++;
2dc1bbeb 1225 if (td->next_file >= td->o.nr_files)
3d7c391d
JA
1226 td->next_file = 0;
1227
87b10676 1228 dprint(FD_FILE, "trying file %s %x\n", f->file_name, f->flags);
d6aed795 1229 if (fio_file_done(f)) {
d5ed68ea 1230 f = NULL;
059e63c0 1231 continue;
d5ed68ea 1232 }
059e63c0 1233
d6aed795 1234 if (!fio_file_open(f)) {
87b10676
JA
1235 int err;
1236
002fe734
JA
1237 if (td->nr_open_files >= td->o.open_files)
1238 return ERR_PTR(-EBUSY);
1239
87b10676 1240 err = td_io_open_file(td, f);
b5696bfc
JA
1241 if (err) {
1242 dprint(FD_FILE, "error %d on open of %s\n",
1243 err, f->file_name);
87c27b45 1244 f = NULL;
87b10676 1245 continue;
b5696bfc 1246 }
87b10676
JA
1247 opened = 1;
1248 }
1249
0b9d69ec
JA
1250 dprint(FD_FILE, "goodf=%x, badf=%x, ff=%x\n", goodf, badf,
1251 f->flags);
1c178180 1252 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf))
3d7c391d
JA
1253 break;
1254
87b10676
JA
1255 if (opened)
1256 td_io_close_file(td, f);
1257
3d7c391d
JA
1258 f = NULL;
1259 } while (td->next_file != old_next_file);
1260
2ba1c290 1261 dprint(FD_FILE, "get_next_file_rr: %p\n", f);
3d7c391d
JA
1262 return f;
1263}
1264
7eb36574 1265static struct fio_file *__get_next_file(struct thread_data *td)
bdb4e2e9 1266{
1907dbc6
JA
1267 struct fio_file *f;
1268
2dc1bbeb 1269 assert(td->o.nr_files <= td->files_index);
1c178180 1270
b5696bfc 1271 if (td->nr_done_files >= td->o.nr_files) {
5ec10eaa
JA
1272 dprint(FD_FILE, "get_next_file: nr_open=%d, nr_done=%d,"
1273 " nr_files=%d\n", td->nr_open_files,
1274 td->nr_done_files,
1275 td->o.nr_files);
bdb4e2e9 1276 return NULL;
2ba1c290 1277 }
bdb4e2e9 1278
1907dbc6 1279 f = td->file_service_file;
d6aed795 1280 if (f && fio_file_open(f) && !fio_file_closing(f)) {
a086c257
JA
1281 if (td->o.file_service_type == FIO_FSERVICE_SEQ)
1282 goto out;
1283 if (td->file_service_left--)
1284 goto out;
1285 }
1907dbc6 1286
a086c257
JA
1287 if (td->o.file_service_type == FIO_FSERVICE_RR ||
1288 td->o.file_service_type == FIO_FSERVICE_SEQ)
d6aed795 1289 f = get_next_file_rr(td, FIO_FILE_open, FIO_FILE_closing);
bdb4e2e9 1290 else
d6aed795 1291 f = get_next_file_rand(td, FIO_FILE_open, FIO_FILE_closing);
1907dbc6 1292
002fe734
JA
1293 if (IS_ERR(f))
1294 return f;
1295
1907dbc6
JA
1296 td->file_service_file = f;
1297 td->file_service_left = td->file_service_nr - 1;
2ba1c290 1298out:
0dac421f
JA
1299 if (f)
1300 dprint(FD_FILE, "get_next_file: %p [%s]\n", f, f->file_name);
1301 else
1302 dprint(FD_FILE, "get_next_file: NULL\n");
1907dbc6 1303 return f;
bdb4e2e9
JA
1304}
1305
7eb36574
JA
1306static struct fio_file *get_next_file(struct thread_data *td)
1307{
372d8962 1308 if (td->flags & TD_F_PROFILE_OPS) {
d72be545 1309 struct prof_io_ops *ops = &td->prof_io_ops;
7eb36574 1310
d72be545
JA
1311 if (ops->get_next_file)
1312 return ops->get_next_file(td);
1313 }
7eb36574
JA
1314
1315 return __get_next_file(td);
1316}
1317
002fe734 1318static long set_io_u_file(struct thread_data *td, struct io_u *io_u)
429f6675
JA
1319{
1320 struct fio_file *f;
1321
1322 do {
1323 f = get_next_file(td);
002fe734
JA
1324 if (IS_ERR_OR_NULL(f))
1325 return PTR_ERR(f);
429f6675 1326
429f6675
JA
1327 io_u->file = f;
1328 get_file(f);
1329
1330 if (!fill_io_u(td, io_u))
1331 break;
1332
b5696bfc 1333 put_file_log(td, f);
429f6675 1334 td_io_close_file(td, f);
b5696bfc 1335 io_u->file = NULL;
8c07860d
JA
1336 if (td->o.file_service_type & __FIO_FSERVICE_NONUNIFORM)
1337 fio_file_reset(td, f);
1338 else {
1339 fio_file_set_done(f);
1340 td->nr_done_files++;
1341 dprint(FD_FILE, "%s: is done (%d of %d)\n", f->file_name,
0b9d69ec 1342 td->nr_done_files, td->o.nr_files);
8c07860d 1343 }
429f6675
JA
1344 } while (1);
1345
1346 return 0;
1347}
1348
3e260a46
JA
1349static void lat_fatal(struct thread_data *td, struct io_completion_data *icd,
1350 unsigned long tusec, unsigned long max_usec)
1351{
1352 if (!td->error)
1353 log_err("fio: latency of %lu usec exceeds specified max (%lu usec)\n", tusec, max_usec);
1354 td_verror(td, ETIMEDOUT, "max latency exceeded");
1355 icd->error = ETIMEDOUT;
1356}
1357
1358static void lat_new_cycle(struct thread_data *td)
1359{
1360 fio_gettime(&td->latency_ts, NULL);
1361 td->latency_ios = ddir_rw_sum(td->io_blocks);
1362 td->latency_failed = 0;
1363}
1364
1365/*
1366 * We had an IO outside the latency target. Reduce the queue depth. If we
1367 * are at QD=1, then it's time to give up.
1368 */
e39c0676 1369static bool __lat_target_failed(struct thread_data *td)
3e260a46
JA
1370{
1371 if (td->latency_qd == 1)
e39c0676 1372 return true;
3e260a46
JA
1373
1374 td->latency_qd_high = td->latency_qd;
6bb58215
JA
1375
1376 if (td->latency_qd == td->latency_qd_low)
1377 td->latency_qd_low--;
1378
3e260a46
JA
1379 td->latency_qd = (td->latency_qd + td->latency_qd_low) / 2;
1380
1381 dprint(FD_RATE, "Ramped down: %d %d %d\n", td->latency_qd_low, td->latency_qd, td->latency_qd_high);
1382
1383 /*
1384 * When we ramp QD down, quiesce existing IO to prevent
1385 * a storm of ramp downs due to pending higher depth.
1386 */
1387 io_u_quiesce(td);
1388 lat_new_cycle(td);
e39c0676 1389 return false;
3e260a46
JA
1390}
1391
e39c0676 1392static bool lat_target_failed(struct thread_data *td)
3e260a46
JA
1393{
1394 if (td->o.latency_percentile.u.f == 100.0)
1395 return __lat_target_failed(td);
1396
1397 td->latency_failed++;
e39c0676 1398 return false;
3e260a46
JA
1399}
1400
1401void lat_target_init(struct thread_data *td)
1402{
6bb58215
JA
1403 td->latency_end_run = 0;
1404
3e260a46
JA
1405 if (td->o.latency_target) {
1406 dprint(FD_RATE, "Latency target=%llu\n", td->o.latency_target);
1407 fio_gettime(&td->latency_ts, NULL);
1408 td->latency_qd = 1;
1409 td->latency_qd_high = td->o.iodepth;
1410 td->latency_qd_low = 1;
1411 td->latency_ios = ddir_rw_sum(td->io_blocks);
1412 } else
1413 td->latency_qd = td->o.iodepth;
1414}
1415
6bb58215
JA
1416void lat_target_reset(struct thread_data *td)
1417{
1418 if (!td->latency_end_run)
1419 lat_target_init(td);
1420}
1421
3e260a46
JA
1422static void lat_target_success(struct thread_data *td)
1423{
1424 const unsigned int qd = td->latency_qd;
6bb58215 1425 struct thread_options *o = &td->o;
3e260a46
JA
1426
1427 td->latency_qd_low = td->latency_qd;
1428
1429 /*
1430 * If we haven't failed yet, we double up to a failing value instead
1431 * of bisecting from highest possible queue depth. If we have set
1432 * a limit other than td->o.iodepth, bisect between that.
1433 */
6bb58215 1434 if (td->latency_qd_high != o->iodepth)
3e260a46
JA
1435 td->latency_qd = (td->latency_qd + td->latency_qd_high) / 2;
1436 else
1437 td->latency_qd *= 2;
1438
6bb58215
JA
1439 if (td->latency_qd > o->iodepth)
1440 td->latency_qd = o->iodepth;
3e260a46
JA
1441
1442 dprint(FD_RATE, "Ramped up: %d %d %d\n", td->latency_qd_low, td->latency_qd, td->latency_qd_high);
6bb58215 1443
3e260a46 1444 /*
6bb58215
JA
1445 * Same as last one, we are done. Let it run a latency cycle, so
1446 * we get only the results from the targeted depth.
3e260a46 1447 */
6bb58215
JA
1448 if (td->latency_qd == qd) {
1449 if (td->latency_end_run) {
1450 dprint(FD_RATE, "We are done\n");
1451 td->done = 1;
1452 } else {
1453 dprint(FD_RATE, "Quiesce and final run\n");
1454 io_u_quiesce(td);
1455 td->latency_end_run = 1;
1456 reset_all_stats(td);
1457 reset_io_stats(td);
1458 }
1459 }
3e260a46
JA
1460
1461 lat_new_cycle(td);
1462}
1463
1464/*
1465 * Check if we can bump the queue depth
1466 */
1467void lat_target_check(struct thread_data *td)
1468{
1469 uint64_t usec_window;
1470 uint64_t ios;
1471 double success_ios;
1472
1473 usec_window = utime_since_now(&td->latency_ts);
1474 if (usec_window < td->o.latency_window)
1475 return;
1476
1477 ios = ddir_rw_sum(td->io_blocks) - td->latency_ios;
1478 success_ios = (double) (ios - td->latency_failed) / (double) ios;
1479 success_ios *= 100.0;
1480
1481 dprint(FD_RATE, "Success rate: %.2f%% (target %.2f%%)\n", success_ios, td->o.latency_percentile.u.f);
1482
1483 if (success_ios >= td->o.latency_percentile.u.f)
1484 lat_target_success(td);
1485 else
1486 __lat_target_failed(td);
1487}
1488
1489/*
1490 * If latency target is enabled, we might be ramping up or down and not
1491 * using the full queue depth available.
1492 */
e39c0676 1493bool queue_full(const struct thread_data *td)
3e260a46
JA
1494{
1495 const int qempty = io_u_qempty(&td->io_u_freelist);
1496
1497 if (qempty)
e39c0676 1498 return true;
3e260a46 1499 if (!td->o.latency_target)
e39c0676 1500 return false;
3e260a46
JA
1501
1502 return td->cur_depth >= td->latency_qd;
1503}
429f6675 1504
10ba535a
JA
1505struct io_u *__get_io_u(struct thread_data *td)
1506{
0cae66f6 1507 struct io_u *io_u = NULL;
10ba535a 1508
ca09be4b
JA
1509 if (td->stop_io)
1510 return NULL;
1511
e8462bd8
JA
1512 td_io_u_lock(td);
1513
1514again:
2ae0b204
JA
1515 if (!io_u_rempty(&td->io_u_requeues))
1516 io_u = io_u_rpop(&td->io_u_requeues);
3e260a46 1517 else if (!queue_full(td)) {
2ae0b204 1518 io_u = io_u_qpop(&td->io_u_freelist);
10ba535a 1519
225ba9e3 1520 io_u->file = NULL;
6040dabc 1521 io_u->buflen = 0;
10ba535a 1522 io_u->resid = 0;
d7762cf8 1523 io_u->end_io = NULL;
755200a3
JA
1524 }
1525
1526 if (io_u) {
0c6e7517 1527 assert(io_u->flags & IO_U_F_FREE);
1651e431 1528 io_u_clear(td, io_u, IO_U_F_FREE | IO_U_F_NO_FILE_PUT |
f8b0bd10
JA
1529 IO_U_F_TRIMMED | IO_U_F_BARRIER |
1530 IO_U_F_VER_LIST);
0c6e7517 1531
755200a3 1532 io_u->error = 0;
bcd5abfa 1533 io_u->acct_ddir = -1;
10ba535a 1534 td->cur_depth++;
a9da8ab2 1535 assert(!(td->flags & TD_F_CHILD));
1651e431 1536 io_u_set(td, io_u, IO_U_F_IN_CUR_DEPTH);
f9401285 1537 io_u->ipo = NULL;
a9da8ab2 1538 } else if (td_async_processing(td)) {
1dec3e07
JA
1539 /*
1540 * We ran out, wait for async verify threads to finish and
1541 * return one
1542 */
a9da8ab2
JA
1543 assert(!(td->flags & TD_F_CHILD));
1544 assert(!pthread_cond_wait(&td->free_cond, &td->io_u_lock));
1dec3e07 1545 goto again;
10ba535a
JA
1546 }
1547
e8462bd8 1548 td_io_u_unlock(td);
10ba535a
JA
1549 return io_u;
1550}
1551
e39c0676 1552static bool check_get_trim(struct thread_data *td, struct io_u *io_u)
10ba535a 1553{
d72be545 1554 if (!(td->flags & TD_F_TRIM_BACKLOG))
e39c0676 1555 return false;
d72be545
JA
1556
1557 if (td->trim_entries) {
0d29de83 1558 int get_trim = 0;
10ba535a 1559
0d29de83
JA
1560 if (td->trim_batch) {
1561 td->trim_batch--;
1562 get_trim = 1;
1563 } else if (!(td->io_hist_len % td->o.trim_backlog) &&
1564 td->last_ddir != DDIR_READ) {
1565 td->trim_batch = td->o.trim_batch;
1566 if (!td->trim_batch)
1567 td->trim_batch = td->o.trim_backlog;
1568 get_trim = 1;
1569 }
1570
917c64b3 1571 if (get_trim && get_next_trim(td, io_u))
e39c0676 1572 return true;
2ba1c290 1573 }
10ba535a 1574
e39c0676 1575 return false;
0d29de83
JA
1576}
1577
e39c0676 1578static bool check_get_verify(struct thread_data *td, struct io_u *io_u)
0d29de83 1579{
d72be545 1580 if (!(td->flags & TD_F_VER_BACKLOG))
e39c0676 1581 return false;
d72be545
JA
1582
1583 if (td->io_hist_len) {
9e144189
JA
1584 int get_verify = 0;
1585
d1ece0c7 1586 if (td->verify_batch)
9e144189 1587 get_verify = 1;
d1ece0c7 1588 else if (!(td->io_hist_len % td->o.verify_backlog) &&
9e144189
JA
1589 td->last_ddir != DDIR_READ) {
1590 td->verify_batch = td->o.verify_batch;
f8a75c99
JA
1591 if (!td->verify_batch)
1592 td->verify_batch = td->o.verify_backlog;
9e144189
JA
1593 get_verify = 1;
1594 }
1595
d1ece0c7
JA
1596 if (get_verify && !get_next_verify(td, io_u)) {
1597 td->verify_batch--;
e39c0676 1598 return true;
d1ece0c7 1599 }
9e144189
JA
1600 }
1601
e39c0676 1602 return false;
0d29de83
JA
1603}
1604
de789769
JA
1605/*
1606 * Fill offset and start time into the buffer content, to prevent too
23f394d5
JA
1607 * easy compressible data for simple de-dupe attempts. Do this for every
1608 * 512b block in the range, since that should be the smallest block size
1609 * we can expect from a device.
de789769
JA
1610 */
1611static void small_content_scramble(struct io_u *io_u)
1612{
23f394d5 1613 unsigned int i, nr_blocks = io_u->buflen / 512;
1ae83d45 1614 uint64_t boffset;
23f394d5 1615 unsigned int offset;
fe8d7fee 1616 char *p, *end;
de789769 1617
23f394d5
JA
1618 if (!nr_blocks)
1619 return;
1620
1621 p = io_u->xfer_buf;
fba76ee8 1622 boffset = io_u->offset;
81f0366c 1623 io_u->buf_filled_len = 0;
fad82f76 1624
23f394d5
JA
1625 for (i = 0; i < nr_blocks; i++) {
1626 /*
1627 * Fill the byte offset into a "random" start offset of
1628 * the buffer, given by the product of the usec time
1629 * and the actual offset.
1630 */
8b6a404c 1631 offset = ((io_u->start_time.tv_nsec/1000) ^ boffset) & 511;
1ae83d45
JA
1632 offset &= ~(sizeof(uint64_t) - 1);
1633 if (offset >= 512 - sizeof(uint64_t))
1634 offset -= sizeof(uint64_t);
fba76ee8 1635 memcpy(p + offset, &boffset, sizeof(boffset));
23f394d5
JA
1636
1637 end = p + 512 - sizeof(io_u->start_time);
1638 memcpy(end, &io_u->start_time, sizeof(io_u->start_time));
1639 p += 512;
fad82f76 1640 boffset += 512;
23f394d5 1641 }
de789769
JA
1642}
1643
0d29de83
JA
1644/*
1645 * Return an io_u to be processed. Gets a buflen and offset, sets direction,
1646 * etc. The returned io_u is fully ready to be prepped and submitted.
1647 */
1648struct io_u *get_io_u(struct thread_data *td)
1649{
1650 struct fio_file *f;
1651 struct io_u *io_u;
de789769 1652 int do_scramble = 0;
002fe734 1653 long ret = 0;
0d29de83
JA
1654
1655 io_u = __get_io_u(td);
1656 if (!io_u) {
1657 dprint(FD_IO, "__get_io_u failed\n");
1658 return NULL;
1659 }
1660
1661 if (check_get_verify(td, io_u))
1662 goto out;
1663 if (check_get_trim(td, io_u))
1664 goto out;
1665
755200a3
JA
1666 /*
1667 * from a requeue, io_u already setup
1668 */
1669 if (io_u->file)
77f392bf 1670 goto out;
755200a3 1671
429f6675
JA
1672 /*
1673 * If using an iolog, grab next piece if any available.
1674 */
d72be545 1675 if (td->flags & TD_F_READ_IOLOG) {
429f6675
JA
1676 if (read_iolog_get(td, io_u))
1677 goto err_put;
2ba1c290 1678 } else if (set_io_u_file(td, io_u)) {
002fe734 1679 ret = -EBUSY;
2ba1c290 1680 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
429f6675 1681 goto err_put;
2ba1c290 1682 }
5ec10eaa 1683
429f6675 1684 f = io_u->file;
002fe734
JA
1685 if (!f) {
1686 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
1687 goto err_put;
1688 }
1689
d6aed795 1690 assert(fio_file_open(f));
97af62ce 1691
ff58fced 1692 if (ddir_rw(io_u->ddir)) {
9b87f09b 1693 if (!io_u->buflen && !td_ioengine_flagged(td, FIO_NOIO)) {
2ba1c290 1694 dprint(FD_IO, "get_io_u: zero buflen on %p\n", io_u);
429f6675 1695 goto err_put;
2ba1c290 1696 }
10ba535a 1697
f1dfb668
JA
1698 f->last_start[io_u->ddir] = io_u->offset;
1699 f->last_pos[io_u->ddir] = io_u->offset + io_u->buflen;
10ba535a 1700
fd68418e 1701 if (io_u->ddir == DDIR_WRITE) {
d72be545 1702 if (td->flags & TD_F_REFILL_BUFFERS) {
9c42684e 1703 io_u_fill_buffer(td, io_u,
1066358a 1704 td->o.min_bs[DDIR_WRITE],
9e129577 1705 io_u->buflen);
ff441ae8 1706 } else if ((td->flags & TD_F_SCRAMBLE_BUFFERS) &&
bedc9dc2 1707 !(td->flags & TD_F_COMPRESS))
fd68418e 1708 do_scramble = 1;
d72be545 1709 if (td->flags & TD_F_VER_NONE) {
629f1d71
JA
1710 populate_verify_io_u(td, io_u);
1711 do_scramble = 0;
1712 }
fd68418e 1713 } else if (io_u->ddir == DDIR_READ) {
cbe8d756
RR
1714 /*
1715 * Reset the buf_filled parameters so next time if the
1716 * buffer is used for writes it is refilled.
1717 */
cbe8d756
RR
1718 io_u->buf_filled_len = 0;
1719 }
87dc1ab1 1720 }
10ba535a 1721
165faf16
JA
1722 /*
1723 * Set io data pointers.
1724 */
cec6b55d
JA
1725 io_u->xfer_buf = io_u->buf;
1726 io_u->xfer_buflen = io_u->buflen;
5973cafb 1727
6ac7a331 1728out:
0d29de83 1729 assert(io_u->file);
429f6675 1730 if (!td_io_prep(td, io_u)) {
3ecc8c67 1731 if (!td->o.disable_lat)
993bf48b 1732 fio_gettime(&io_u->start_time, NULL);
03553853 1733
de789769
JA
1734 if (do_scramble)
1735 small_content_scramble(io_u);
03553853 1736
429f6675 1737 return io_u;
36167d82 1738 }
429f6675 1739err_put:
2ba1c290 1740 dprint(FD_IO, "get_io_u failed\n");
429f6675 1741 put_io_u(td, io_u);
002fe734 1742 return ERR_PTR(ret);
10ba535a
JA
1743}
1744
a9da8ab2 1745static void __io_u_log_error(struct thread_data *td, struct io_u *io_u)
5451792e 1746{
8b28bd41 1747 enum error_type_bit eb = td_error_type(io_u->ddir, io_u->error);
825f818e 1748
8b28bd41
DM
1749 if (td_non_fatal_error(td, eb, io_u->error) && !td->o.error_dump)
1750 return;
5451792e 1751
709c8313
RE
1752 log_err("fio: io_u error%s%s: %s: %s offset=%llu, buflen=%lu\n",
1753 io_u->file ? " on file " : "",
1754 io_u->file ? io_u->file->file_name : "",
1755 strerror(io_u->error),
1756 io_ddir_name(io_u->ddir),
1757 io_u->offset, io_u->xfer_buflen);
5451792e 1758
5ad7be56
KD
1759 if (td->io_ops->errdetails) {
1760 char *err = td->io_ops->errdetails(io_u);
1761
1762 log_err("fio: %s\n", err);
1763 free(err);
1764 }
1765
5451792e
JA
1766 if (!td->error)
1767 td_verror(td, io_u->error, "io_u error");
1768}
1769
a9da8ab2
JA
1770void io_u_log_error(struct thread_data *td, struct io_u *io_u)
1771{
1772 __io_u_log_error(td, io_u);
1773 if (td->parent)
094e66cb 1774 __io_u_log_error(td->parent, io_u);
a9da8ab2
JA
1775}
1776
e39c0676 1777static inline bool gtod_reduce(struct thread_data *td)
aba6c951 1778{
3ecc8c67
JA
1779 return (td->o.disable_clat && td->o.disable_slat && td->o.disable_bw)
1780 || td->o.gtod_reduce;
aba6c951
JA
1781}
1782
c8eeb9df
JA
1783static void account_io_completion(struct thread_data *td, struct io_u *io_u,
1784 struct io_completion_data *icd,
1785 const enum fio_ddir idx, unsigned int bytes)
1786{
a9da8ab2 1787 const int no_reduce = !gtod_reduce(td);
d6bb626e 1788 unsigned long long llnsec = 0;
c8eeb9df 1789
75dc383e
JA
1790 if (td->parent)
1791 td = td->parent;
1792
132b1ee4 1793 if (!td->o.stats || td_ioengine_flagged(td, FIO_NOSTATS))
8243be59
JA
1794 return;
1795
a9da8ab2 1796 if (no_reduce)
d6bb626e 1797 llnsec = ntime_since(&io_u->issue_time, &icd->time);
c8eeb9df
JA
1798
1799 if (!td->o.disable_lat) {
d6bb626e 1800 unsigned long long tnsec;
c8eeb9df 1801
d6bb626e
VF
1802 tnsec = ntime_since(&io_u->start_time, &icd->time);
1803 add_lat_sample(td, idx, tnsec, bytes, io_u->offset);
15501535 1804
d4afedfd
JA
1805 if (td->flags & TD_F_PROFILE_OPS) {
1806 struct prof_io_ops *ops = &td->prof_io_ops;
1807
1808 if (ops->io_u_lat)
d6bb626e 1809 icd->error = ops->io_u_lat(td, tnsec/1000);
d4afedfd
JA
1810 }
1811
d6bb626e
VF
1812 if (td->o.max_latency && tnsec/1000 > td->o.max_latency)
1813 lat_fatal(td, icd, tnsec/1000, td->o.max_latency);
1814 if (td->o.latency_target && tnsec/1000 > td->o.latency_target) {
3e260a46 1815 if (lat_target_failed(td))
d6bb626e 1816 lat_fatal(td, icd, tnsec/1000, td->o.latency_target);
15501535 1817 }
c8eeb9df
JA
1818 }
1819
a47591e4
JA
1820 if (ddir_rw(idx)) {
1821 if (!td->o.disable_clat) {
d6bb626e
VF
1822 add_clat_sample(td, idx, llnsec, bytes, io_u->offset);
1823 io_u_mark_latency(td, llnsec);
a47591e4 1824 }
c8eeb9df 1825
a47591e4 1826 if (!td->o.disable_bw && per_unit_log(td->bw_log))
d6bb626e 1827 add_bw_sample(td, io_u, bytes, llnsec);
c8eeb9df 1828
a47591e4
JA
1829 if (no_reduce && per_unit_log(td->iops_log))
1830 add_iops_sample(td, io_u, bytes);
1831 }
66347cfa
DE
1832
1833 if (td->ts.nr_block_infos && io_u->ddir == DDIR_TRIM) {
1834 uint32_t *info = io_u_block_info(td, io_u);
1835 if (BLOCK_INFO_STATE(*info) < BLOCK_STATE_TRIM_FAILURE) {
1836 if (io_u->ddir == DDIR_TRIM) {
1837 *info = BLOCK_INFO(BLOCK_STATE_TRIMMED,
1838 BLOCK_INFO_TRIMS(*info) + 1);
1839 } else if (io_u->ddir == DDIR_WRITE) {
1840 *info = BLOCK_INFO_SET_STATE(BLOCK_STATE_WRITTEN,
1841 *info);
1842 }
1843 }
1844 }
c8eeb9df
JA
1845}
1846
94a6e1bb
JA
1847static void file_log_write_comp(const struct thread_data *td, struct fio_file *f,
1848 uint64_t offset, unsigned int bytes)
1849{
1850 int idx;
1851
639ad1ea
JA
1852 if (!f)
1853 return;
1854
94a6e1bb
JA
1855 if (f->first_write == -1ULL || offset < f->first_write)
1856 f->first_write = offset;
1857 if (f->last_write == -1ULL || ((offset + bytes) > f->last_write))
1858 f->last_write = offset + bytes;
1859
1860 if (!f->last_write_comp)
1861 return;
1862
1863 idx = f->last_write_idx++;
1864 f->last_write_comp[idx] = offset;
1865 if (f->last_write_idx == td->o.iodepth)
1866 f->last_write_idx = 0;
1867}
1868
f8b0bd10 1869static void io_completed(struct thread_data *td, struct io_u **io_u_ptr,
97601024 1870 struct io_completion_data *icd)
10ba535a 1871{
f8b0bd10
JA
1872 struct io_u *io_u = *io_u_ptr;
1873 enum fio_ddir ddir = io_u->ddir;
1874 struct fio_file *f = io_u->file;
10ba535a 1875
2ba1c290
JA
1876 dprint_io_u(io_u, "io complete");
1877
0c6e7517 1878 assert(io_u->flags & IO_U_F_FLIGHT);
1651e431 1879 io_u_clear(td, io_u, IO_U_F_FLIGHT | IO_U_F_BUSY_OK);
f9401285
JA
1880
1881 /*
1882 * Mark IO ok to verify
1883 */
1884 if (io_u->ipo) {
890b6656
JA
1885 /*
1886 * Remove errored entry from the verification list
1887 */
1888 if (io_u->error)
1889 unlog_io_piece(td, io_u);
1890 else {
1891 io_u->ipo->flags &= ~IP_F_IN_FLIGHT;
1892 write_barrier();
1893 }
f9401285
JA
1894 }
1895
f8b0bd10 1896 if (ddir_sync(ddir)) {
87dc1ab1 1897 td->last_was_sync = 1;
44f29692
JA
1898 if (f) {
1899 f->first_write = -1ULL;
1900 f->last_write = -1ULL;
1901 }
87dc1ab1
JA
1902 return;
1903 }
1904
1905 td->last_was_sync = 0;
f8b0bd10 1906 td->last_ddir = ddir;
87dc1ab1 1907
f8b0bd10 1908 if (!io_u->error && ddir_rw(ddir)) {
10ba535a 1909 unsigned int bytes = io_u->buflen - io_u->resid;
b29ee5b3 1910 int ret;
10ba535a 1911
f8b0bd10
JA
1912 td->io_blocks[ddir]++;
1913 td->this_io_blocks[ddir]++;
1914 td->io_bytes[ddir] += bytes;
ae2fafc8 1915
1916 if (!(io_u->flags & IO_U_F_VER_LIST))
f8b0bd10
JA
1917 td->this_io_bytes[ddir] += bytes;
1918
639ad1ea 1919 if (ddir == DDIR_WRITE)
94a6e1bb 1920 file_log_write_comp(td, f, io_u->offset, bytes);
44f29692 1921
6b1190fd 1922 if (ramp_time_over(td) && (td->runstate == TD_RUNNING ||
50a8ce86 1923 td->runstate == TD_VERIFYING))
f8b0bd10 1924 account_io_completion(td, io_u, icd, ddir, bytes);
40e1a6f0 1925
f8b0bd10 1926 icd->bytes_done[ddir] += bytes;
3af6ef39 1927
d7762cf8 1928 if (io_u->end_io) {
f8b0bd10
JA
1929 ret = io_u->end_io(td, io_u_ptr);
1930 io_u = *io_u_ptr;
3af6ef39
JA
1931 if (ret && !icd->error)
1932 icd->error = ret;
1933 }
ff58fced 1934 } else if (io_u->error) {
10ba535a 1935 icd->error = io_u->error;
5451792e
JA
1936 io_u_log_error(td, io_u);
1937 }
8b28bd41 1938 if (icd->error) {
f8b0bd10
JA
1939 enum error_type_bit eb = td_error_type(ddir, icd->error);
1940
8b28bd41
DM
1941 if (!td_non_fatal_error(td, eb, icd->error))
1942 return;
f8b0bd10 1943
f2bba182
RR
1944 /*
1945 * If there is a non_fatal error, then add to the error count
1946 * and clear all the errors.
1947 */
1948 update_error_count(td, icd->error);
1949 td_clear_error(td);
1950 icd->error = 0;
f8b0bd10
JA
1951 if (io_u)
1952 io_u->error = 0;
f2bba182 1953 }
10ba535a
JA
1954}
1955
9520ebb9
JA
1956static void init_icd(struct thread_data *td, struct io_completion_data *icd,
1957 int nr)
10ba535a 1958{
6eaf09d6 1959 int ddir;
aba6c951
JA
1960
1961 if (!gtod_reduce(td))
9520ebb9 1962 fio_gettime(&icd->time, NULL);
02bcaa8c 1963
3af6ef39
JA
1964 icd->nr = nr;
1965
10ba535a 1966 icd->error = 0;
c1f50f76 1967 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
6eaf09d6 1968 icd->bytes_done[ddir] = 0;
36167d82
JA
1969}
1970
97601024
JA
1971static void ios_completed(struct thread_data *td,
1972 struct io_completion_data *icd)
36167d82
JA
1973{
1974 struct io_u *io_u;
1975 int i;
1976
10ba535a
JA
1977 for (i = 0; i < icd->nr; i++) {
1978 io_u = td->io_ops->event(td, i);
1979
f8b0bd10 1980 io_completed(td, &io_u, icd);
e8462bd8 1981
f8b0bd10 1982 if (io_u)
e8462bd8 1983 put_io_u(td, io_u);
10ba535a
JA
1984 }
1985}
97601024 1986
e7e6cfb4
JA
1987/*
1988 * Complete a single io_u for the sync engines.
1989 */
55312f9f 1990int io_u_sync_complete(struct thread_data *td, struct io_u *io_u)
97601024
JA
1991{
1992 struct io_completion_data icd;
55312f9f 1993 int ddir;
97601024 1994
9520ebb9 1995 init_icd(td, &icd, 1);
f8b0bd10 1996 io_completed(td, &io_u, &icd);
e8462bd8 1997
f8b0bd10 1998 if (io_u)
e8462bd8 1999 put_io_u(td, io_u);
97601024 2000
581e7141
JA
2001 if (icd.error) {
2002 td_verror(td, icd.error, "io_u_sync_complete");
2003 return -1;
2004 }
97601024 2005
c1f50f76 2006 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
55312f9f 2007 td->bytes_done[ddir] += icd.bytes_done[ddir];
581e7141
JA
2008
2009 return 0;
97601024
JA
2010}
2011
e7e6cfb4
JA
2012/*
2013 * Called to complete min_events number of io for the async engines.
2014 */
55312f9f 2015int io_u_queued_complete(struct thread_data *td, int min_evts)
97601024 2016{
97601024 2017 struct io_completion_data icd;
00de55ef 2018 struct timespec *tvp = NULL;
55312f9f 2019 int ret, ddir;
4d06a338 2020 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0, };
97601024 2021
12bb8569 2022 dprint(FD_IO, "io_u_queued_complete: min=%d\n", min_evts);
b271fe62 2023
4950421a 2024 if (!min_evts)
00de55ef 2025 tvp = &ts;
5fb4b366
RE
2026 else if (min_evts > td->cur_depth)
2027 min_evts = td->cur_depth;
97601024 2028
82407585
RP
2029 /* No worries, td_io_getevents fixes min and max if they are
2030 * set incorrectly */
2031 ret = td_io_getevents(td, min_evts, td->o.iodepth_batch_complete_max, tvp);
97601024 2032 if (ret < 0) {
e1161c32 2033 td_verror(td, -ret, "td_io_getevents");
97601024
JA
2034 return ret;
2035 } else if (!ret)
2036 return ret;
2037
9520ebb9 2038 init_icd(td, &icd, ret);
97601024 2039 ios_completed(td, &icd);
581e7141
JA
2040 if (icd.error) {
2041 td_verror(td, icd.error, "io_u_queued_complete");
2042 return -1;
2043 }
97601024 2044
c1f50f76 2045 for (ddir = 0; ddir < DDIR_RWDIR_CNT; ddir++)
55312f9f 2046 td->bytes_done[ddir] += icd.bytes_done[ddir];
581e7141 2047
0d593542 2048 return ret;
97601024 2049}
7e77dd02
JA
2050
2051/*
2052 * Call when io_u is really queued, to update the submission latency.
2053 */
2054void io_u_queued(struct thread_data *td, struct io_u *io_u)
2055{
8243be59 2056 if (!td->o.disable_slat && ramp_time_over(td) && td->o.stats) {
9520ebb9 2057 unsigned long slat_time;
7e77dd02 2058
d6bb626e 2059 slat_time = ntime_since(&io_u->start_time, &io_u->issue_time);
75dc383e
JA
2060
2061 if (td->parent)
2062 td = td->parent;
2063
ae588852
JA
2064 add_slat_sample(td, io_u->ddir, slat_time, io_u->xfer_buflen,
2065 io_u->offset);
9520ebb9 2066 }
7e77dd02 2067}
433afcb4 2068
5c94b008
JA
2069/*
2070 * See if we should reuse the last seed, if dedupe is enabled
2071 */
9451b93e 2072static struct frand_state *get_buf_state(struct thread_data *td)
5c94b008
JA
2073{
2074 unsigned int v;
5c94b008
JA
2075
2076 if (!td->o.dedupe_percentage)
2077 return &td->buf_state;
732eedd0 2078 else if (td->o.dedupe_percentage == 100) {
9451b93e
JA
2079 frand_copy(&td->buf_state_prev, &td->buf_state);
2080 return &td->buf_state;
732eedd0 2081 }
5c94b008 2082
36dd3379 2083 v = rand32_between(&td->dedupe_state, 1, 100);
5c94b008
JA
2084
2085 if (v <= td->o.dedupe_percentage)
2086 return &td->buf_state_prev;
2087
2088 return &td->buf_state;
2089}
2090
9451b93e 2091static void save_buf_state(struct thread_data *td, struct frand_state *rs)
5c94b008 2092{
9451b93e
JA
2093 if (td->o.dedupe_percentage == 100)
2094 frand_copy(rs, &td->buf_state_prev);
2095 else if (rs == &td->buf_state)
5c94b008
JA
2096 frand_copy(&td->buf_state_prev, rs);
2097}
2098
cc86c395
JA
2099void fill_io_buffer(struct thread_data *td, void *buf, unsigned int min_write,
2100 unsigned int max_bs)
5973cafb 2101{
d1af2894
JA
2102 struct thread_options *o = &td->o;
2103
15600335
JA
2104 if (o->mem_type == MEM_CUDA_MALLOC)
2105 return;
03553853 2106
4eff3e57 2107 if (o->compress_percentage || o->dedupe_percentage) {
9c42684e 2108 unsigned int perc = td->o.compress_percentage;
5c94b008 2109 struct frand_state *rs;
1066358a 2110 unsigned int left = max_bs;
1e7f82e2 2111 unsigned int this_write;
5c94b008 2112
1066358a 2113 do {
9451b93e 2114 rs = get_buf_state(td);
9c42684e 2115
1066358a 2116 min_write = min(min_write, left);
f97a43a1 2117
1066358a 2118 if (perc) {
4b157ac6
JA
2119 this_write = min_not_zero(min_write,
2120 td->o.compress_chunk);
1e7f82e2
JA
2121
2122 fill_random_buf_percentage(rs, buf, perc,
2123 this_write, this_write,
2124 o->buffer_pattern,
2125 o->buffer_pattern_bytes);
2126 } else {
1066358a 2127 fill_random_buf(rs, buf, min_write);
1e7f82e2
JA
2128 this_write = min_write;
2129 }
1066358a 2130
1e7f82e2
JA
2131 buf += this_write;
2132 left -= this_write;
9451b93e 2133 save_buf_state(td, rs);
1066358a 2134 } while (left);
d1af2894
JA
2135 } else if (o->buffer_pattern_bytes)
2136 fill_buffer_pattern(td, buf, max_bs);
999d245e 2137 else if (o->zero_buffers)
cc86c395 2138 memset(buf, 0, max_bs);
999d245e 2139 else
9451b93e 2140 fill_random_buf(get_buf_state(td), buf, max_bs);
cc86c395
JA
2141}
2142
2143/*
2144 * "randomly" fill the buffer contents
2145 */
2146void io_u_fill_buffer(struct thread_data *td, struct io_u *io_u,
2147 unsigned int min_write, unsigned int max_bs)
2148{
2149 io_u->buf_filled_len = 0;
2150 fill_io_buffer(td, io_u->buf, min_write, max_bs);
5973cafb 2151}
e2c75fc4
TK
2152
2153static int do_sync_file_range(const struct thread_data *td,
2154 struct fio_file *f)
2155{
2156 off64_t offset, nbytes;
2157
2158 offset = f->first_write;
2159 nbytes = f->last_write - f->first_write;
2160
2161 if (!nbytes)
2162 return 0;
2163
2164 return sync_file_range(f->fd, offset, nbytes, td->o.sync_file_range);
2165}
2166
2167int do_io_u_sync(const struct thread_data *td, struct io_u *io_u)
2168{
2169 int ret;
2170
2171 if (io_u->ddir == DDIR_SYNC) {
2172 ret = fsync(io_u->file->fd);
2173 } else if (io_u->ddir == DDIR_DATASYNC) {
2174#ifdef CONFIG_FDATASYNC
2175 ret = fdatasync(io_u->file->fd);
2176#else
2177 ret = io_u->xfer_buflen;
2178 io_u->error = EINVAL;
2179#endif
2180 } else if (io_u->ddir == DDIR_SYNC_FILE_RANGE)
2181 ret = do_sync_file_range(td, io_u->file);
2182 else {
2183 ret = io_u->xfer_buflen;
2184 io_u->error = EINVAL;
2185 }
2186
2187 if (ret < 0)
2188 io_u->error = errno;
2189
2190 return ret;
2191}
2192
2193int do_io_u_trim(const struct thread_data *td, struct io_u *io_u)
2194{
2195#ifndef FIO_HAVE_TRIM
2196 io_u->error = EINVAL;
2197 return 0;
2198#else
2199 struct fio_file *f = io_u->file;
2200 int ret;
2201
496b1f9e 2202 ret = os_trim(f, io_u->offset, io_u->xfer_buflen);
e2c75fc4
TK
2203 if (!ret)
2204 return io_u->xfer_buflen;
2205
2206 io_u->error = ret;
2207 return 0;
2208#endif
2209}