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