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