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