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