Add possibility to make sequential IO "holed"
[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"
10ba535a 13
97601024
JA
14struct io_completion_data {
15 int nr; /* input */
97601024
JA
16
17 int error; /* output */
18 unsigned long bytes_done[2]; /* output */
19 struct timeval time; /* output */
20};
21
10ba535a
JA
22/*
23 * The ->file_map[] contains a map of blocks we have or have not done io
24 * to yet. Used to make sure we cover the entire range in a fair fashion.
25 */
aec2de20 26static int random_map_free(struct fio_file *f, const unsigned long long block)
10ba535a 27{
aec2de20
JA
28 unsigned int idx = RAND_MAP_IDX(f, block);
29 unsigned int bit = RAND_MAP_BIT(f, block);
10ba535a 30
84422acd
JA
31 dprint(FD_RANDOM, "free: b=%llu, idx=%u, bit=%u\n", block, idx, bit);
32
0ce8b119 33 return (f->file_map[idx] & (1UL << bit)) == 0;
10ba535a
JA
34}
35
df415585
JA
36/*
37 * Mark a given offset as used in the map.
38 */
9bf2061e 39static void mark_random_map(struct thread_data *td, struct io_u *io_u)
df415585 40{
2dc1bbeb 41 unsigned int min_bs = td->o.rw_min_bs;
9bf2061e 42 struct fio_file *f = io_u->file;
a00735e6 43 unsigned long long block;
3e3357b1 44 unsigned int blocks, nr_blocks;
38dad62d 45 int busy_check;
df415585 46
b9c5b644 47 block = (io_u->offset - f->file_offset) / (unsigned long long) min_bs;
c685b5b2 48 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
3e3357b1 49 blocks = 0;
38dad62d 50 busy_check = !(io_u->flags & IO_U_F_BUSY_OK);
c685b5b2 51
3e3357b1 52 while (nr_blocks) {
df415585 53 unsigned int idx, bit;
0ce8b119 54 unsigned long mask, this_blocks;
df415585 55
1e3d53ac
JA
56 /*
57 * If we have a mixed random workload, we may
58 * encounter blocks we already did IO to.
59 */
38dad62d
JA
60 if (!busy_check) {
61 blocks = nr_blocks;
62 break;
63 }
5736c10d 64 if ((td->o.ddir_seq_nr == 1) && !random_map_free(f, block))
df415585
JA
65 break;
66
aec2de20
JA
67 idx = RAND_MAP_IDX(f, block);
68 bit = RAND_MAP_BIT(f, block);
df415585 69
0032bf9f 70 fio_assert(td, idx < f->num_maps);
df415585 71
3e3357b1
JA
72 this_blocks = nr_blocks;
73 if (this_blocks + bit > BLOCKS_PER_MAP)
74 this_blocks = BLOCKS_PER_MAP - bit;
75
da3758bf
JA
76 do {
77 if (this_blocks == BLOCKS_PER_MAP)
0ce8b119 78 mask = -1UL;
da3758bf 79 else
0ce8b119 80 mask = ((1UL << this_blocks) - 1) << bit;
da3758bf
JA
81
82 if (!(f->file_map[idx] & mask))
83 break;
84
85 this_blocks--;
86 } while (this_blocks);
87
88 if (!this_blocks)
89 break;
3e3357b1 90
3e3357b1
JA
91 f->file_map[idx] |= mask;
92 nr_blocks -= this_blocks;
93 blocks += this_blocks;
c9dd34b2 94 block += this_blocks;
df415585
JA
95 }
96
a00735e6
JA
97 if ((blocks * min_bs) < io_u->buflen)
98 io_u->buflen = blocks * min_bs;
df415585
JA
99}
100
3e3357b1
JA
101static unsigned long long last_block(struct thread_data *td, struct fio_file *f,
102 enum fio_ddir ddir)
2ba1c290
JA
103{
104 unsigned long long max_blocks;
d9dd70f7 105 unsigned long long max_size;
2ba1c290 106
ff58fced
JA
107 assert(ddir_rw(ddir));
108
d9dd70f7
JA
109 /*
110 * Hmm, should we make sure that ->io_size <= ->real_file_size?
111 */
112 max_size = f->io_size;
113 if (max_size > f->real_file_size)
114 max_size = f->real_file_size;
115
2b7a01d0 116 max_blocks = max_size / (unsigned long long) td->o.ba[ddir];
2ba1c290
JA
117 if (!max_blocks)
118 return 0;
119
67778e88 120 return max_blocks;
2ba1c290
JA
121}
122
10ba535a
JA
123/*
124 * Return the next free block in the map.
125 */
126static int get_next_free_block(struct thread_data *td, struct fio_file *f,
4ba66134 127 enum fio_ddir ddir, unsigned long long *b)
10ba535a 128{
0ce8b119 129 unsigned long long block, min_bs = td->o.rw_min_bs, lastb;
10ba535a
JA
130 int i;
131
5e0baa7f
JA
132 lastb = last_block(td, f, ddir);
133 if (!lastb)
134 return 1;
135
c685b5b2 136 i = f->last_free_lookup;
0ce8b119
JA
137 block = i * BLOCKS_PER_MAP;
138 while (block * min_bs < f->real_file_size &&
139 block * min_bs < f->io_size) {
140 if (f->file_map[i] != -1UL) {
141 block += ffz(f->file_map[i]);
142 if (block > lastb)
2ba1c290 143 break;
c685b5b2 144 f->last_free_lookup = i;
0ce8b119 145 *b = block;
10ba535a
JA
146 return 0;
147 }
148
0ce8b119 149 block += BLOCKS_PER_MAP;
10ba535a
JA
150 i++;
151 }
152
2ba1c290 153 dprint(FD_IO, "failed finding a free block\n");
10ba535a
JA
154 return 1;
155}
156
ec4015da 157static int get_next_rand_offset(struct thread_data *td, struct fio_file *f,
4ba66134 158 enum fio_ddir ddir, unsigned long long *b)
ec4015da 159{
5e0baa7f 160 unsigned long long r, lastb;
ec4015da
JA
161 int loops = 5;
162
5e0baa7f
JA
163 lastb = last_block(td, f, ddir);
164 if (!lastb)
165 return 1;
166
0ce8b119
JA
167 if (f->failed_rands >= 200)
168 goto ffz;
169
ec4015da 170 do {
2615cc4b
JA
171 if (td->o.use_os_rand) {
172 r = os_random_long(&td->random_state);
173 *b = (lastb - 1) * (r / ((unsigned long long) OS_RAND_MAX + 1.0));
174 } else {
175 r = __rand(&td->__random_state);
176 *b = (lastb - 1) * (r / ((unsigned long long) FRAND_MAX + 1.0));
177 }
178
84422acd 179 dprint(FD_RANDOM, "off rand %llu\n", r);
2615cc4b 180
2ba1c290 181
43c63a78
JA
182 /*
183 * if we are not maintaining a random map, we are done.
184 */
303032ae 185 if (!file_randommap(td, f))
0ce8b119 186 goto ret_good;
43c63a78
JA
187
188 /*
84422acd 189 * calculate map offset and check if it's free
43c63a78 190 */
aec2de20 191 if (random_map_free(f, *b))
0ce8b119 192 goto ret_good;
43c63a78 193
84422acd
JA
194 dprint(FD_RANDOM, "get_next_rand_offset: offset %llu busy\n",
195 *b);
43c63a78 196 } while (--loops);
ec4015da 197
0ce8b119
JA
198 if (!f->failed_rands++)
199 f->last_free_lookup = 0;
200
ec4015da 201 /*
43c63a78
JA
202 * we get here, if we didn't suceed in looking up a block. generate
203 * a random start offset into the filemap, and find the first free
204 * block from there.
ec4015da 205 */
43c63a78
JA
206 loops = 10;
207 do {
dc873b6f
JA
208 f->last_free_lookup = (f->num_maps - 1) *
209 (r / (OS_RAND_MAX + 1.0));
4ba66134 210 if (!get_next_free_block(td, f, ddir, b))
0ce8b119 211 goto ret;
ec4015da 212
d1cea521
JA
213 if (td->o.use_os_rand)
214 r = os_random_long(&td->random_state);
215 else
216 r = __rand(&td->__random_state);
43c63a78
JA
217 } while (--loops);
218
219 /*
220 * that didn't work either, try exhaustive search from the start
221 */
222 f->last_free_lookup = 0;
0ce8b119
JA
223ffz:
224 if (!get_next_free_block(td, f, ddir, b))
225 return 0;
226 f->last_free_lookup = 0;
4ba66134 227 return get_next_free_block(td, f, ddir, b);
0ce8b119
JA
228ret_good:
229 f->failed_rands = 0;
230ret:
231 return 0;
ec4015da
JA
232}
233
38dad62d
JA
234static int get_next_rand_block(struct thread_data *td, struct fio_file *f,
235 enum fio_ddir ddir, unsigned long long *b)
236{
237 if (get_next_rand_offset(td, f, ddir, b)) {
238 dprint(FD_IO, "%s: rand offset failed, last=%llu, size=%llu\n",
239 f->file_name, f->last_pos, f->real_file_size);
240 return 1;
241 }
242
243 return 0;
244}
245
246static int get_next_seq_block(struct thread_data *td, struct fio_file *f,
247 enum fio_ddir ddir, unsigned long long *b)
248{
ff58fced
JA
249 assert(ddir_rw(ddir));
250
38dad62d 251 if (f->last_pos < f->real_file_size) {
059b0802
JA
252 unsigned long long pos = f->last_pos - f->file_offset;
253
254 if (pos)
255 pos += td->o.ddir_seq_add;
256
257 *b = pos / td->o.min_bs[ddir];
38dad62d
JA
258 return 0;
259 }
260
261 return 1;
262}
263
264static int get_next_block(struct thread_data *td, struct io_u *io_u,
265 enum fio_ddir ddir, int rw_seq, unsigned long long *b)
266{
267 struct fio_file *f = io_u->file;
268 int ret;
269
ff58fced
JA
270 assert(ddir_rw(ddir));
271
38dad62d
JA
272 if (rw_seq) {
273 if (td_random(td))
274 ret = get_next_rand_block(td, f, ddir, b);
275 else
276 ret = get_next_seq_block(td, f, ddir, b);
277 } else {
278 io_u->flags |= IO_U_F_BUSY_OK;
279
280 if (td->o.rw_seq == RW_SEQ_SEQ) {
281 ret = get_next_seq_block(td, f, ddir, b);
282 if (ret)
283 ret = get_next_rand_block(td, f, ddir, b);
284 } else if (td->o.rw_seq == RW_SEQ_IDENT) {
285 if (f->last_start != -1ULL)
0508320e
DN
286 *b = (f->last_start - f->file_offset)
287 / td->o.min_bs[ddir];
38dad62d
JA
288 else
289 *b = 0;
290 ret = 0;
291 } else {
292 log_err("fio: unknown rw_seq=%d\n", td->o.rw_seq);
293 ret = 1;
294 }
295 }
296
297 return ret;
298}
299
10ba535a
JA
300/*
301 * For random io, generate a random new block and see if it's used. Repeat
302 * until we find a free one. For sequential io, just return the end of
303 * the last io issued.
304 */
15dc1934 305static int __get_next_offset(struct thread_data *td, struct io_u *io_u)
10ba535a 306{
9bf2061e 307 struct fio_file *f = io_u->file;
ec4015da 308 unsigned long long b;
4ba66134 309 enum fio_ddir ddir = io_u->ddir;
38dad62d 310 int rw_seq_hit = 0;
10ba535a 311
ff58fced
JA
312 assert(ddir_rw(ddir));
313
38dad62d
JA
314 if (td->o.ddir_seq_nr && !--td->ddir_seq_nr) {
315 rw_seq_hit = 1;
5736c10d 316 td->ddir_seq_nr = td->o.ddir_seq_nr;
38dad62d 317 }
211097b2 318
0508320e 319 if (get_next_block(td, io_u, ddir, rw_seq_hit, &b))
38dad62d 320 return 1;
10ba535a 321
2b7a01d0 322 io_u->offset = b * td->o.ba[ddir];
009bd847
JA
323 if (io_u->offset >= f->io_size) {
324 dprint(FD_IO, "get_next_offset: offset %llu >= io_size %llu\n",
325 io_u->offset, f->io_size);
326 return 1;
327 }
328
329 io_u->offset += f->file_offset;
2ba1c290
JA
330 if (io_u->offset >= f->real_file_size) {
331 dprint(FD_IO, "get_next_offset: offset %llu >= size %llu\n",
332 io_u->offset, f->real_file_size);
10ba535a 333 return 1;
2ba1c290 334 }
10ba535a
JA
335
336 return 0;
337}
338
15dc1934
JA
339static int get_next_offset(struct thread_data *td, struct io_u *io_u)
340{
7eb36574
JA
341 struct prof_io_ops *ops = &td->prof_io_ops;
342
343 if (ops->fill_io_u_off)
344 return ops->fill_io_u_off(td, io_u);
15dc1934
JA
345
346 return __get_next_offset(td, io_u);
347}
348
79944128
JA
349static inline int io_u_fits(struct thread_data *td, struct io_u *io_u,
350 unsigned int buflen)
351{
352 struct fio_file *f = io_u->file;
353
354 return io_u->offset + buflen <= f->io_size + td->o.start_offset;
355}
356
15dc1934 357static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u)
10ba535a 358{
bca4ed4d 359 const int ddir = io_u->ddir;
f3f552b9 360 unsigned int uninitialized_var(buflen);
f3059de1 361 unsigned int minbs, maxbs;
1294c3ec 362 unsigned long r, rand_max;
10ba535a 363
ff58fced
JA
364 assert(ddir_rw(ddir));
365
f3059de1
JA
366 minbs = td->o.min_bs[ddir];
367 maxbs = td->o.max_bs[ddir];
368
79944128
JA
369 if (minbs == maxbs)
370 return minbs;
371
4c07ad86
JA
372 if (td->o.use_os_rand)
373 rand_max = OS_RAND_MAX;
374 else
375 rand_max = FRAND_MAX;
376
79944128 377 do {
4c07ad86
JA
378 if (td->o.use_os_rand)
379 r = os_random_long(&td->bsrange_state);
380 else
381 r = __rand(&td->__bsrange_state);
382
720e84ad 383 if (!td->o.bssplit_nr[ddir]) {
f3059de1 384 buflen = 1 + (unsigned int) ((double) maxbs *
4c07ad86 385 (r / (rand_max + 1.0)));
f3059de1
JA
386 if (buflen < minbs)
387 buflen = minbs;
5ec10eaa 388 } else {
564ca972
JA
389 long perc = 0;
390 unsigned int i;
391
720e84ad
JA
392 for (i = 0; i < td->o.bssplit_nr[ddir]; i++) {
393 struct bssplit *bsp = &td->o.bssplit[ddir][i];
564ca972
JA
394
395 buflen = bsp->bs;
396 perc += bsp->perc;
79944128
JA
397 if ((r <= ((rand_max / 100L) * perc)) &&
398 io_u_fits(td, io_u, buflen))
564ca972
JA
399 break;
400 }
401 }
79944128 402
f3059de1
JA
403 if (!td->o.bs_unaligned && is_power_of_2(minbs))
404 buflen = (buflen + minbs - 1) & ~(minbs - 1);
10ba535a 405
79944128 406 } while (!io_u_fits(td, io_u, buflen));
6a5e6884 407
10ba535a
JA
408 return buflen;
409}
410
15dc1934
JA
411static unsigned int get_next_buflen(struct thread_data *td, struct io_u *io_u)
412{
7eb36574
JA
413 struct prof_io_ops *ops = &td->prof_io_ops;
414
415 if (ops->fill_io_u_size)
416 return ops->fill_io_u_size(td, io_u);
15dc1934
JA
417
418 return __get_next_buflen(td, io_u);
419}
420
afe24a5a
JA
421static void set_rwmix_bytes(struct thread_data *td)
422{
afe24a5a
JA
423 unsigned int diff;
424
425 /*
426 * we do time or byte based switch. this is needed because
427 * buffered writes may issue a lot quicker than they complete,
428 * whereas reads do not.
429 */
e47f799f 430 diff = td->o.rwmix[td->rwmix_ddir ^ 1];
04c540d9 431 td->rwmix_issues = (td->io_issues[td->rwmix_ddir] * diff) / 100;
e47f799f
JA
432}
433
434static inline enum fio_ddir get_rand_ddir(struct thread_data *td)
435{
436 unsigned int v;
1294c3ec 437 unsigned long r;
e47f799f 438
4c07ad86
JA
439 if (td->o.use_os_rand) {
440 r = os_random_long(&td->rwmix_state);
441 v = 1 + (int) (100.0 * (r / (OS_RAND_MAX + 1.0)));
442 } else {
443 r = __rand(&td->__rwmix_state);
444 v = 1 + (int) (100.0 * (r / (FRAND_MAX + 1.0)));
445 }
446
04c540d9 447 if (v <= td->o.rwmix[DDIR_READ])
e47f799f
JA
448 return DDIR_READ;
449
450 return DDIR_WRITE;
afe24a5a
JA
451}
452
581e7141
JA
453static enum fio_ddir rate_ddir(struct thread_data *td, enum fio_ddir ddir)
454{
455 enum fio_ddir odir = ddir ^ 1;
456 struct timeval t;
457 long usec;
458
ff58fced
JA
459 assert(ddir_rw(ddir));
460
581e7141
JA
461 if (td->rate_pending_usleep[ddir] <= 0)
462 return ddir;
463
464 /*
465 * We have too much pending sleep in this direction. See if we
466 * should switch.
467 */
468 if (td_rw(td)) {
469 /*
470 * Other direction does not have too much pending, switch
471 */
472 if (td->rate_pending_usleep[odir] < 100000)
473 return odir;
474
475 /*
476 * Both directions have pending sleep. Sleep the minimum time
477 * and deduct from both.
478 */
479 if (td->rate_pending_usleep[ddir] <=
480 td->rate_pending_usleep[odir]) {
481 usec = td->rate_pending_usleep[ddir];
482 } else {
483 usec = td->rate_pending_usleep[odir];
484 ddir = odir;
485 }
486 } else
487 usec = td->rate_pending_usleep[ddir];
488
489 fio_gettime(&t, NULL);
490 usec_sleep(td, usec);
491 usec = utime_since_now(&t);
492
493 td->rate_pending_usleep[ddir] -= usec;
494
495 odir = ddir ^ 1;
496 if (td_rw(td) && __should_check_rate(td, odir))
497 td->rate_pending_usleep[odir] -= usec;
0b9d69ec 498
581e7141
JA
499 return ddir;
500}
501
10ba535a
JA
502/*
503 * Return the data direction for the next io_u. If the job is a
504 * mixed read/write workload, check the rwmix cycle and switch if
505 * necessary.
506 */
1e97cce9 507static enum fio_ddir get_rw_ddir(struct thread_data *td)
10ba535a 508{
581e7141
JA
509 enum fio_ddir ddir;
510
5f9099ea
JA
511 /*
512 * see if it's time to fsync
513 */
514 if (td->o.fsync_blocks &&
515 !(td->io_issues[DDIR_WRITE] % td->o.fsync_blocks) &&
516 td->io_issues[DDIR_WRITE] && should_fsync(td))
517 return DDIR_SYNC;
518
519 /*
520 * see if it's time to fdatasync
521 */
522 if (td->o.fdatasync_blocks &&
523 !(td->io_issues[DDIR_WRITE] % td->o.fdatasync_blocks) &&
524 td->io_issues[DDIR_WRITE] && should_fsync(td))
525 return DDIR_DATASYNC;
526
44f29692
JA
527 /*
528 * see if it's time to sync_file_range
529 */
530 if (td->sync_file_range_nr &&
531 !(td->io_issues[DDIR_WRITE] % td->sync_file_range_nr) &&
532 td->io_issues[DDIR_WRITE] && should_fsync(td))
533 return DDIR_SYNC_FILE_RANGE;
534
10ba535a 535 if (td_rw(td)) {
10ba535a
JA
536 /*
537 * Check if it's time to seed a new data direction.
538 */
e4928662 539 if (td->io_issues[td->rwmix_ddir] >= td->rwmix_issues) {
e47f799f
JA
540 /*
541 * Put a top limit on how many bytes we do for
542 * one data direction, to avoid overflowing the
543 * ranges too much
544 */
545 ddir = get_rand_ddir(td);
e47f799f
JA
546
547 if (ddir != td->rwmix_ddir)
548 set_rwmix_bytes(td);
549
550 td->rwmix_ddir = ddir;
10ba535a 551 }
581e7141 552 ddir = td->rwmix_ddir;
10ba535a 553 } else if (td_read(td))
581e7141 554 ddir = DDIR_READ;
10ba535a 555 else
581e7141
JA
556 ddir = DDIR_WRITE;
557
558 td->rwmix_ddir = rate_ddir(td, ddir);
559 return td->rwmix_ddir;
10ba535a
JA
560}
561
1ef2b6be
JA
562static void set_rw_ddir(struct thread_data *td, struct io_u *io_u)
563{
564 io_u->ddir = get_rw_ddir(td);
565
566 if (io_u->ddir == DDIR_WRITE && (td->io_ops->flags & FIO_BARRIER) &&
567 td->o.barrier_blocks &&
568 !(td->io_issues[DDIR_WRITE] % td->o.barrier_blocks) &&
569 td->io_issues[DDIR_WRITE])
570 io_u->flags |= IO_U_F_BARRIER;
571}
572
e8462bd8 573void put_file_log(struct thread_data *td, struct fio_file *f)
60f2c658
JA
574{
575 int ret = put_file(td, f);
576
577 if (ret)
578 td_verror(td, ret, "file close");
579}
580
10ba535a
JA
581void put_io_u(struct thread_data *td, struct io_u *io_u)
582{
e8462bd8
JA
583 td_io_u_lock(td);
584
0c6e7517 585 io_u->flags |= IO_U_F_FREE;
e8462bd8 586 io_u->flags &= ~IO_U_F_FREE_DEF;
0c6e7517 587
60f2c658
JA
588 if (io_u->file)
589 put_file_log(td, io_u->file);
2dbdab7e 590
10ba535a 591 io_u->file = NULL;
0c41214f
RR
592 if (io_u->flags & IO_U_F_IN_CUR_DEPTH)
593 td->cur_depth--;
e8462bd8 594 flist_del_init(&io_u->list);
01743ee1 595 flist_add(&io_u->list, &td->io_u_freelist);
e8462bd8
JA
596 td_io_u_unlock(td);
597 td_io_u_free_notify(td);
10ba535a
JA
598}
599
f2bba182
RR
600void clear_io_u(struct thread_data *td, struct io_u *io_u)
601{
602 io_u->flags &= ~IO_U_F_FLIGHT;
603 put_io_u(td, io_u);
604}
605
755200a3
JA
606void requeue_io_u(struct thread_data *td, struct io_u **io_u)
607{
608 struct io_u *__io_u = *io_u;
609
465221b0
JA
610 dprint(FD_IO, "requeue %p\n", __io_u);
611
e8462bd8
JA
612 td_io_u_lock(td);
613
4d2e0f49 614 __io_u->flags |= IO_U_F_FREE;
ff58fced 615 if ((__io_u->flags & IO_U_F_FLIGHT) && ddir_rw(__io_u->ddir))
e4f54adb 616 td->io_issues[__io_u->ddir]--;
5ec10eaa 617
4d2e0f49 618 __io_u->flags &= ~IO_U_F_FLIGHT;
0c41214f
RR
619 if (__io_u->flags & IO_U_F_IN_CUR_DEPTH)
620 td->cur_depth--;
01743ee1
JA
621 flist_del(&__io_u->list);
622 flist_add_tail(&__io_u->list, &td->io_u_requeues);
e8462bd8 623 td_io_u_unlock(td);
755200a3
JA
624 *io_u = NULL;
625}
626
9bf2061e 627static int fill_io_u(struct thread_data *td, struct io_u *io_u)
10ba535a 628{
b4c5e1ac
JA
629 if (td->io_ops->flags & FIO_NOIO)
630 goto out;
631
1ef2b6be 632 set_rw_ddir(td, io_u);
5f9099ea 633
87dc1ab1 634 /*
ff58fced 635 * fsync() or fdatasync() or trim etc, we are done
87dc1ab1 636 */
ff58fced 637 if (!ddir_rw(io_u->ddir))
c38e9468 638 goto out;
a00735e6 639
48f5abd3
JA
640 /*
641 * See if it's time to switch to a new zone
642 */
643 if (td->zone_bytes >= td->o.zone_size) {
644 td->zone_bytes = 0;
645 io_u->file->last_pos += td->o.zone_skip;
646 td->io_skip_bytes += td->o.zone_skip;
647 }
648
10ba535a 649 /*
c685b5b2
JA
650 * No log, let the seq/rand engine retrieve the next buflen and
651 * position.
10ba535a 652 */
2ba1c290
JA
653 if (get_next_offset(td, io_u)) {
654 dprint(FD_IO, "io_u %p, failed getting offset\n", io_u);
bca4ed4d 655 return 1;
2ba1c290 656 }
10ba535a 657
9bf2061e 658 io_u->buflen = get_next_buflen(td, io_u);
2ba1c290
JA
659 if (!io_u->buflen) {
660 dprint(FD_IO, "io_u %p, failed getting buflen\n", io_u);
bca4ed4d 661 return 1;
2ba1c290 662 }
bca4ed4d 663
2ba1c290
JA
664 if (io_u->offset + io_u->buflen > io_u->file->real_file_size) {
665 dprint(FD_IO, "io_u %p, offset too large\n", io_u);
4ba66134
JA
666 dprint(FD_IO, " off=%llu/%lu > %llu\n", io_u->offset,
667 io_u->buflen, io_u->file->real_file_size);
6a5e6884 668 return 1;
2ba1c290 669 }
6a5e6884 670
bca4ed4d
JA
671 /*
672 * mark entry before potentially trimming io_u
673 */
303032ae 674 if (td_random(td) && file_randommap(td, io_u->file))
9bf2061e 675 mark_random_map(td, io_u);
bca4ed4d
JA
676
677 /*
678 * If using a write iolog, store this entry.
679 */
c38e9468 680out:
2ba1c290 681 dprint_io_u(io_u, "fill_io_u");
d9d91e39 682 td->zone_bytes += io_u->buflen;
f29b25a3 683 log_io_u(td, io_u);
bca4ed4d 684 return 0;
10ba535a
JA
685}
686
838bc709
JA
687static void __io_u_mark_map(unsigned int *map, unsigned int nr)
688{
2b13e716 689 int idx = 0;
838bc709
JA
690
691 switch (nr) {
692 default:
2b13e716 693 idx = 6;
838bc709
JA
694 break;
695 case 33 ... 64:
2b13e716 696 idx = 5;
838bc709
JA
697 break;
698 case 17 ... 32:
2b13e716 699 idx = 4;
838bc709
JA
700 break;
701 case 9 ... 16:
2b13e716 702 idx = 3;
838bc709
JA
703 break;
704 case 5 ... 8:
2b13e716 705 idx = 2;
838bc709
JA
706 break;
707 case 1 ... 4:
2b13e716 708 idx = 1;
838bc709
JA
709 case 0:
710 break;
711 }
712
2b13e716 713 map[idx]++;
838bc709
JA
714}
715
716void io_u_mark_submit(struct thread_data *td, unsigned int nr)
717{
718 __io_u_mark_map(td->ts.io_u_submit, nr);
719 td->ts.total_submit++;
720}
721
722void io_u_mark_complete(struct thread_data *td, unsigned int nr)
723{
724 __io_u_mark_map(td->ts.io_u_complete, nr);
725 td->ts.total_complete++;
726}
727
d8005759 728void io_u_mark_depth(struct thread_data *td, unsigned int nr)
71619dc2 729{
2b13e716 730 int idx = 0;
71619dc2
JA
731
732 switch (td->cur_depth) {
733 default:
2b13e716 734 idx = 6;
a783e61a 735 break;
71619dc2 736 case 32 ... 63:
2b13e716 737 idx = 5;
a783e61a 738 break;
71619dc2 739 case 16 ... 31:
2b13e716 740 idx = 4;
a783e61a 741 break;
71619dc2 742 case 8 ... 15:
2b13e716 743 idx = 3;
a783e61a 744 break;
71619dc2 745 case 4 ... 7:
2b13e716 746 idx = 2;
a783e61a 747 break;
71619dc2 748 case 2 ... 3:
2b13e716 749 idx = 1;
71619dc2
JA
750 case 1:
751 break;
752 }
753
2b13e716 754 td->ts.io_u_map[idx] += nr;
71619dc2
JA
755}
756
04a0feae
JA
757static void io_u_mark_lat_usec(struct thread_data *td, unsigned long usec)
758{
2b13e716 759 int idx = 0;
04a0feae
JA
760
761 assert(usec < 1000);
762
763 switch (usec) {
764 case 750 ... 999:
2b13e716 765 idx = 9;
04a0feae
JA
766 break;
767 case 500 ... 749:
2b13e716 768 idx = 8;
04a0feae
JA
769 break;
770 case 250 ... 499:
2b13e716 771 idx = 7;
04a0feae
JA
772 break;
773 case 100 ... 249:
2b13e716 774 idx = 6;
04a0feae
JA
775 break;
776 case 50 ... 99:
2b13e716 777 idx = 5;
04a0feae
JA
778 break;
779 case 20 ... 49:
2b13e716 780 idx = 4;
04a0feae
JA
781 break;
782 case 10 ... 19:
2b13e716 783 idx = 3;
04a0feae
JA
784 break;
785 case 4 ... 9:
2b13e716 786 idx = 2;
04a0feae
JA
787 break;
788 case 2 ... 3:
2b13e716 789 idx = 1;
04a0feae
JA
790 case 0 ... 1:
791 break;
792 }
793
2b13e716
JA
794 assert(idx < FIO_IO_U_LAT_U_NR);
795 td->ts.io_u_lat_u[idx]++;
04a0feae
JA
796}
797
798static void io_u_mark_lat_msec(struct thread_data *td, unsigned long msec)
ec118304 799{
2b13e716 800 int idx = 0;
ec118304
JA
801
802 switch (msec) {
803 default:
2b13e716 804 idx = 11;
04a0feae 805 break;
8abdce66 806 case 1000 ... 1999:
2b13e716 807 idx = 10;
04a0feae 808 break;
8abdce66 809 case 750 ... 999:
2b13e716 810 idx = 9;
04a0feae 811 break;
8abdce66 812 case 500 ... 749:
2b13e716 813 idx = 8;
04a0feae 814 break;
8abdce66 815 case 250 ... 499:
2b13e716 816 idx = 7;
04a0feae 817 break;
8abdce66 818 case 100 ... 249:
2b13e716 819 idx = 6;
04a0feae 820 break;
8abdce66 821 case 50 ... 99:
2b13e716 822 idx = 5;
04a0feae 823 break;
8abdce66 824 case 20 ... 49:
2b13e716 825 idx = 4;
04a0feae 826 break;
8abdce66 827 case 10 ... 19:
2b13e716 828 idx = 3;
04a0feae 829 break;
8abdce66 830 case 4 ... 9:
2b13e716 831 idx = 2;
04a0feae 832 break;
ec118304 833 case 2 ... 3:
2b13e716 834 idx = 1;
ec118304
JA
835 case 0 ... 1:
836 break;
837 }
838
2b13e716
JA
839 assert(idx < FIO_IO_U_LAT_M_NR);
840 td->ts.io_u_lat_m[idx]++;
04a0feae
JA
841}
842
843static void io_u_mark_latency(struct thread_data *td, unsigned long usec)
844{
845 if (usec < 1000)
846 io_u_mark_lat_usec(td, usec);
847 else
848 io_u_mark_lat_msec(td, usec / 1000);
ec118304
JA
849}
850
0aabe160
JA
851/*
852 * Get next file to service by choosing one at random
853 */
2cc52930
JA
854static struct fio_file *get_next_file_rand(struct thread_data *td,
855 enum fio_file_flags goodf,
d6aed795 856 enum fio_file_flags badf)
0aabe160 857{
0aabe160 858 struct fio_file *f;
1c178180 859 int fno;
0aabe160
JA
860
861 do {
87b10676 862 int opened = 0;
1294c3ec 863 unsigned long r;
4c07ad86
JA
864
865 if (td->o.use_os_rand) {
866 r = os_random_long(&td->next_file_state);
867 fno = (unsigned int) ((double) td->o.nr_files
868 * (r / (OS_RAND_MAX + 1.0)));
869 } else {
870 r = __rand(&td->__next_file_state);
871 fno = (unsigned int) ((double) td->o.nr_files
872 * (r / (FRAND_MAX + 1.0)));
873 }
7c83c089 874
126d65c6 875 f = td->files[fno];
d6aed795 876 if (fio_file_done(f))
059e63c0 877 continue;
1c178180 878
d6aed795 879 if (!fio_file_open(f)) {
87b10676
JA
880 int err;
881
882 err = td_io_open_file(td, f);
883 if (err)
884 continue;
885 opened = 1;
886 }
887
2ba1c290
JA
888 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf)) {
889 dprint(FD_FILE, "get_next_file_rand: %p\n", f);
0aabe160 890 return f;
2ba1c290 891 }
87b10676
JA
892 if (opened)
893 td_io_close_file(td, f);
0aabe160
JA
894 } while (1);
895}
896
897/*
898 * Get next file to service by doing round robin between all available ones
899 */
1c178180
JA
900static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf,
901 int badf)
3d7c391d
JA
902{
903 unsigned int old_next_file = td->next_file;
904 struct fio_file *f;
905
906 do {
87b10676
JA
907 int opened = 0;
908
126d65c6 909 f = td->files[td->next_file];
3d7c391d
JA
910
911 td->next_file++;
2dc1bbeb 912 if (td->next_file >= td->o.nr_files)
3d7c391d
JA
913 td->next_file = 0;
914
87b10676 915 dprint(FD_FILE, "trying file %s %x\n", f->file_name, f->flags);
d6aed795 916 if (fio_file_done(f)) {
d5ed68ea 917 f = NULL;
059e63c0 918 continue;
d5ed68ea 919 }
059e63c0 920
d6aed795 921 if (!fio_file_open(f)) {
87b10676
JA
922 int err;
923
924 err = td_io_open_file(td, f);
b5696bfc
JA
925 if (err) {
926 dprint(FD_FILE, "error %d on open of %s\n",
927 err, f->file_name);
87c27b45 928 f = NULL;
87b10676 929 continue;
b5696bfc 930 }
87b10676
JA
931 opened = 1;
932 }
933
0b9d69ec
JA
934 dprint(FD_FILE, "goodf=%x, badf=%x, ff=%x\n", goodf, badf,
935 f->flags);
1c178180 936 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf))
3d7c391d
JA
937 break;
938
87b10676
JA
939 if (opened)
940 td_io_close_file(td, f);
941
3d7c391d
JA
942 f = NULL;
943 } while (td->next_file != old_next_file);
944
2ba1c290 945 dprint(FD_FILE, "get_next_file_rr: %p\n", f);
3d7c391d
JA
946 return f;
947}
948
7eb36574 949static struct fio_file *__get_next_file(struct thread_data *td)
bdb4e2e9 950{
1907dbc6
JA
951 struct fio_file *f;
952
2dc1bbeb 953 assert(td->o.nr_files <= td->files_index);
1c178180 954
b5696bfc 955 if (td->nr_done_files >= td->o.nr_files) {
5ec10eaa
JA
956 dprint(FD_FILE, "get_next_file: nr_open=%d, nr_done=%d,"
957 " nr_files=%d\n", td->nr_open_files,
958 td->nr_done_files,
959 td->o.nr_files);
bdb4e2e9 960 return NULL;
2ba1c290 961 }
bdb4e2e9 962
1907dbc6 963 f = td->file_service_file;
d6aed795 964 if (f && fio_file_open(f) && !fio_file_closing(f)) {
a086c257
JA
965 if (td->o.file_service_type == FIO_FSERVICE_SEQ)
966 goto out;
967 if (td->file_service_left--)
968 goto out;
969 }
1907dbc6 970
a086c257
JA
971 if (td->o.file_service_type == FIO_FSERVICE_RR ||
972 td->o.file_service_type == FIO_FSERVICE_SEQ)
d6aed795 973 f = get_next_file_rr(td, FIO_FILE_open, FIO_FILE_closing);
bdb4e2e9 974 else
d6aed795 975 f = get_next_file_rand(td, FIO_FILE_open, FIO_FILE_closing);
1907dbc6
JA
976
977 td->file_service_file = f;
978 td->file_service_left = td->file_service_nr - 1;
2ba1c290 979out:
683023e8 980 dprint(FD_FILE, "get_next_file: %p [%s]\n", f, f->file_name);
1907dbc6 981 return f;
bdb4e2e9
JA
982}
983
7eb36574
JA
984static struct fio_file *get_next_file(struct thread_data *td)
985{
986 struct prof_io_ops *ops = &td->prof_io_ops;
987
988 if (ops->get_next_file)
989 return ops->get_next_file(td);
990
991 return __get_next_file(td);
992}
993
429f6675
JA
994static int set_io_u_file(struct thread_data *td, struct io_u *io_u)
995{
996 struct fio_file *f;
997
998 do {
999 f = get_next_file(td);
1000 if (!f)
1001 return 1;
1002
429f6675
JA
1003 io_u->file = f;
1004 get_file(f);
1005
1006 if (!fill_io_u(td, io_u))
1007 break;
1008
b5696bfc 1009 put_file_log(td, f);
429f6675 1010 td_io_close_file(td, f);
b5696bfc 1011 io_u->file = NULL;
d6aed795 1012 fio_file_set_done(f);
429f6675 1013 td->nr_done_files++;
0b9d69ec
JA
1014 dprint(FD_FILE, "%s: is done (%d of %d)\n", f->file_name,
1015 td->nr_done_files, td->o.nr_files);
429f6675
JA
1016 } while (1);
1017
1018 return 0;
1019}
1020
1021
10ba535a
JA
1022struct io_u *__get_io_u(struct thread_data *td)
1023{
1024 struct io_u *io_u = NULL;
1025
e8462bd8
JA
1026 td_io_u_lock(td);
1027
1028again:
01743ee1
JA
1029 if (!flist_empty(&td->io_u_requeues))
1030 io_u = flist_entry(td->io_u_requeues.next, struct io_u, list);
755200a3 1031 else if (!queue_full(td)) {
01743ee1 1032 io_u = flist_entry(td->io_u_freelist.next, struct io_u, list);
10ba535a 1033
6040dabc 1034 io_u->buflen = 0;
10ba535a 1035 io_u->resid = 0;
755200a3 1036 io_u->file = NULL;
d7762cf8 1037 io_u->end_io = NULL;
755200a3
JA
1038 }
1039
1040 if (io_u) {
0c6e7517 1041 assert(io_u->flags & IO_U_F_FREE);
2ecc1b57 1042 io_u->flags &= ~(IO_U_F_FREE | IO_U_F_FREE_DEF);
1ef2b6be 1043 io_u->flags &= ~(IO_U_F_TRIMMED | IO_U_F_BARRIER);
0c6e7517 1044
755200a3 1045 io_u->error = 0;
01743ee1
JA
1046 flist_del(&io_u->list);
1047 flist_add(&io_u->list, &td->io_u_busylist);
10ba535a 1048 td->cur_depth++;
0c41214f 1049 io_u->flags |= IO_U_F_IN_CUR_DEPTH;
1dec3e07
JA
1050 } else if (td->o.verify_async) {
1051 /*
1052 * We ran out, wait for async verify threads to finish and
1053 * return one
1054 */
1055 pthread_cond_wait(&td->free_cond, &td->io_u_lock);
1056 goto again;
10ba535a
JA
1057 }
1058
e8462bd8 1059 td_io_u_unlock(td);
10ba535a
JA
1060 return io_u;
1061}
1062
0d29de83 1063static int check_get_trim(struct thread_data *td, struct io_u *io_u)
10ba535a 1064{
0d29de83
JA
1065 if (td->o.trim_backlog && td->trim_entries) {
1066 int get_trim = 0;
10ba535a 1067
0d29de83
JA
1068 if (td->trim_batch) {
1069 td->trim_batch--;
1070 get_trim = 1;
1071 } else if (!(td->io_hist_len % td->o.trim_backlog) &&
1072 td->last_ddir != DDIR_READ) {
1073 td->trim_batch = td->o.trim_batch;
1074 if (!td->trim_batch)
1075 td->trim_batch = td->o.trim_backlog;
1076 get_trim = 1;
1077 }
1078
1079 if (get_trim && !get_next_trim(td, io_u))
1080 return 1;
2ba1c290 1081 }
10ba535a 1082
0d29de83
JA
1083 return 0;
1084}
1085
1086static int check_get_verify(struct thread_data *td, struct io_u *io_u)
1087{
9e144189
JA
1088 if (td->o.verify_backlog && td->io_hist_len) {
1089 int get_verify = 0;
1090
1091 if (td->verify_batch) {
1092 td->verify_batch--;
1093 get_verify = 1;
1094 } else if (!(td->io_hist_len % td->o.verify_backlog) &&
1095 td->last_ddir != DDIR_READ) {
1096 td->verify_batch = td->o.verify_batch;
f8a75c99
JA
1097 if (!td->verify_batch)
1098 td->verify_batch = td->o.verify_backlog;
9e144189
JA
1099 get_verify = 1;
1100 }
1101
1102 if (get_verify && !get_next_verify(td, io_u))
0d29de83 1103 return 1;
9e144189
JA
1104 }
1105
0d29de83
JA
1106 return 0;
1107}
1108
1109/*
1110 * Return an io_u to be processed. Gets a buflen and offset, sets direction,
1111 * etc. The returned io_u is fully ready to be prepped and submitted.
1112 */
1113struct io_u *get_io_u(struct thread_data *td)
1114{
1115 struct fio_file *f;
1116 struct io_u *io_u;
1117
1118 io_u = __get_io_u(td);
1119 if (!io_u) {
1120 dprint(FD_IO, "__get_io_u failed\n");
1121 return NULL;
1122 }
1123
1124 if (check_get_verify(td, io_u))
1125 goto out;
1126 if (check_get_trim(td, io_u))
1127 goto out;
1128
755200a3
JA
1129 /*
1130 * from a requeue, io_u already setup
1131 */
1132 if (io_u->file)
77f392bf 1133 goto out;
755200a3 1134
429f6675
JA
1135 /*
1136 * If using an iolog, grab next piece if any available.
1137 */
1138 if (td->o.read_iolog_file) {
1139 if (read_iolog_get(td, io_u))
1140 goto err_put;
2ba1c290
JA
1141 } else if (set_io_u_file(td, io_u)) {
1142 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
429f6675 1143 goto err_put;
2ba1c290 1144 }
5ec10eaa 1145
429f6675 1146 f = io_u->file;
d6aed795 1147 assert(fio_file_open(f));
97af62ce 1148
ff58fced 1149 if (ddir_rw(io_u->ddir)) {
d0656a93 1150 if (!io_u->buflen && !(td->io_ops->flags & FIO_NOIO)) {
2ba1c290 1151 dprint(FD_IO, "get_io_u: zero buflen on %p\n", io_u);
429f6675 1152 goto err_put;
2ba1c290 1153 }
10ba535a 1154
38dad62d 1155 f->last_start = io_u->offset;
36167d82 1156 f->last_pos = io_u->offset + io_u->buflen;
10ba535a 1157
c311cd2a 1158 if (td->o.verify != VERIFY_NONE && io_u->ddir == DDIR_WRITE)
87dc1ab1 1159 populate_verify_io_u(td, io_u);
e4dad9c6
JA
1160 else if (td->o.refill_buffers && io_u->ddir == DDIR_WRITE)
1161 io_u_fill_buffer(td, io_u, io_u->xfer_buflen);
cbe8d756
RR
1162 else if (io_u->ddir == DDIR_READ) {
1163 /*
1164 * Reset the buf_filled parameters so next time if the
1165 * buffer is used for writes it is refilled.
1166 */
cbe8d756
RR
1167 io_u->buf_filled_len = 0;
1168 }
87dc1ab1 1169 }
10ba535a 1170
165faf16
JA
1171 /*
1172 * Set io data pointers.
1173 */
cec6b55d
JA
1174 io_u->xfer_buf = io_u->buf;
1175 io_u->xfer_buflen = io_u->buflen;
5973cafb 1176
6ac7a331 1177out:
0d29de83 1178 assert(io_u->file);
429f6675 1179 if (!td_io_prep(td, io_u)) {
993bf48b
JA
1180 if (!td->o.disable_slat)
1181 fio_gettime(&io_u->start_time, NULL);
429f6675 1182 return io_u;
36167d82 1183 }
429f6675 1184err_put:
2ba1c290 1185 dprint(FD_IO, "get_io_u failed\n");
429f6675
JA
1186 put_io_u(td, io_u);
1187 return NULL;
10ba535a
JA
1188}
1189
5451792e
JA
1190void io_u_log_error(struct thread_data *td, struct io_u *io_u)
1191{
825f818e
JA
1192 const char *msg[] = { "read", "write", "sync", "datasync",
1193 "sync_file_range", "wait", "trim" };
1194
1195
5451792e
JA
1196
1197 log_err("fio: io_u error");
1198
1199 if (io_u->file)
1200 log_err(" on file %s", io_u->file->file_name);
1201
1202 log_err(": %s\n", strerror(io_u->error));
1203
5ec10eaa
JA
1204 log_err(" %s offset=%llu, buflen=%lu\n", msg[io_u->ddir],
1205 io_u->offset, io_u->xfer_buflen);
5451792e
JA
1206
1207 if (!td->error)
1208 td_verror(td, io_u->error, "io_u error");
1209}
1210
97601024
JA
1211static void io_completed(struct thread_data *td, struct io_u *io_u,
1212 struct io_completion_data *icd)
10ba535a 1213{
dbad30b0
JA
1214 /*
1215 * Older gcc's are too dumb to realize that usec is always used
1216 * initialized, silence that warning.
1217 */
1218 unsigned long uninitialized_var(usec);
44f29692 1219 struct fio_file *f;
10ba535a 1220
2ba1c290
JA
1221 dprint_io_u(io_u, "io complete");
1222
2ecc1b57 1223 td_io_u_lock(td);
0c6e7517 1224 assert(io_u->flags & IO_U_F_FLIGHT);
38dad62d 1225 io_u->flags &= ~(IO_U_F_FLIGHT | IO_U_F_BUSY_OK);
2ecc1b57 1226 td_io_u_unlock(td);
0c6e7517 1227
5f9099ea 1228 if (ddir_sync(io_u->ddir)) {
87dc1ab1 1229 td->last_was_sync = 1;
44f29692
JA
1230 f = io_u->file;
1231 if (f) {
1232 f->first_write = -1ULL;
1233 f->last_write = -1ULL;
1234 }
87dc1ab1
JA
1235 return;
1236 }
1237
1238 td->last_was_sync = 0;
9e144189 1239 td->last_ddir = io_u->ddir;
87dc1ab1 1240
ff58fced 1241 if (!io_u->error && ddir_rw(io_u->ddir)) {
10ba535a 1242 unsigned int bytes = io_u->buflen - io_u->resid;
1e97cce9 1243 const enum fio_ddir idx = io_u->ddir;
ba3e4e0c 1244 const enum fio_ddir odx = io_u->ddir ^ 1;
b29ee5b3 1245 int ret;
10ba535a 1246
b29ee5b3
JA
1247 td->io_blocks[idx]++;
1248 td->io_bytes[idx] += bytes;
1249 td->this_io_bytes[idx] += bytes;
10ba535a 1250
44f29692
JA
1251 if (idx == DDIR_WRITE) {
1252 f = io_u->file;
1253 if (f) {
1254 if (f->first_write == -1ULL ||
1255 io_u->offset < f->first_write)
1256 f->first_write = io_u->offset;
1257 if (f->last_write == -1ULL ||
1258 ((io_u->offset + bytes) > f->last_write))
1259 f->last_write = io_u->offset + bytes;
1260 }
1261 }
1262
b29ee5b3 1263 if (ramp_time_over(td)) {
40e1a6f0 1264 unsigned long uninitialized_var(lusec);
40e1a6f0
JA
1265
1266 if (!td->o.disable_clat || !td->o.disable_bw)
1267 lusec = utime_since(&io_u->issue_time,
1268 &icd->time);
02af0988
JA
1269 if (!td->o.disable_lat) {
1270 unsigned long tusec;
721938ae 1271
02af0988
JA
1272 tusec = utime_since(&io_u->start_time,
1273 &icd->time);
1274 add_lat_sample(td, idx, tusec, bytes);
1275 }
9520ebb9 1276 if (!td->o.disable_clat) {
01a1caa5 1277 add_clat_sample(td, idx, lusec, bytes);
40e1a6f0 1278 io_u_mark_latency(td, lusec);
9520ebb9
JA
1279 }
1280 if (!td->o.disable_bw)
306ddc97 1281 add_bw_sample(td, idx, bytes, &icd->time);
b23b6a2f 1282 if (__should_check_rate(td, idx)) {
ba3e4e0c
RR
1283 td->rate_pending_usleep[idx] =
1284 ((td->this_io_bytes[idx] *
1285 td->rate_nsec_cycle[idx]) / 1000 -
1286 utime_since_now(&td->start));
b23b6a2f 1287 }
581e7141 1288 if (__should_check_rate(td, idx ^ 1))
ba3e4e0c
RR
1289 td->rate_pending_usleep[odx] =
1290 ((td->this_io_bytes[odx] *
1291 td->rate_nsec_cycle[odx]) / 1000 -
1292 utime_since_now(&td->start));
721938ae 1293 }
10ba535a 1294
660a1cb5 1295 if (td_write(td) && idx == DDIR_WRITE &&
8670579e 1296 td->o.do_verify &&
41128405 1297 td->o.verify != VERIFY_NONE)
10ba535a
JA
1298 log_io_piece(td, io_u);
1299
b29ee5b3 1300 icd->bytes_done[idx] += bytes;
3af6ef39 1301
d7762cf8 1302 if (io_u->end_io) {
36690c9b 1303 ret = io_u->end_io(td, io_u);
3af6ef39
JA
1304 if (ret && !icd->error)
1305 icd->error = ret;
1306 }
ff58fced 1307 } else if (io_u->error) {
10ba535a 1308 icd->error = io_u->error;
5451792e
JA
1309 io_u_log_error(td, io_u);
1310 }
f2bba182
RR
1311 if (td->o.continue_on_error && icd->error &&
1312 td_non_fatal_error(icd->error)) {
1313 /*
1314 * If there is a non_fatal error, then add to the error count
1315 * and clear all the errors.
1316 */
1317 update_error_count(td, icd->error);
1318 td_clear_error(td);
1319 icd->error = 0;
1320 io_u->error = 0;
1321 }
10ba535a
JA
1322}
1323
9520ebb9
JA
1324static void init_icd(struct thread_data *td, struct io_completion_data *icd,
1325 int nr)
10ba535a 1326{
9520ebb9
JA
1327 if (!td->o.disable_clat || !td->o.disable_bw)
1328 fio_gettime(&icd->time, NULL);
02bcaa8c 1329
3af6ef39
JA
1330 icd->nr = nr;
1331
10ba535a
JA
1332 icd->error = 0;
1333 icd->bytes_done[0] = icd->bytes_done[1] = 0;
36167d82
JA
1334}
1335
97601024
JA
1336static void ios_completed(struct thread_data *td,
1337 struct io_completion_data *icd)
36167d82
JA
1338{
1339 struct io_u *io_u;
1340 int i;
1341
10ba535a
JA
1342 for (i = 0; i < icd->nr; i++) {
1343 io_u = td->io_ops->event(td, i);
1344
1345 io_completed(td, io_u, icd);
e8462bd8
JA
1346
1347 if (!(io_u->flags & IO_U_F_FREE_DEF))
1348 put_io_u(td, io_u);
10ba535a
JA
1349 }
1350}
97601024 1351
e7e6cfb4
JA
1352/*
1353 * Complete a single io_u for the sync engines.
1354 */
581e7141
JA
1355int io_u_sync_complete(struct thread_data *td, struct io_u *io_u,
1356 unsigned long *bytes)
97601024
JA
1357{
1358 struct io_completion_data icd;
1359
9520ebb9 1360 init_icd(td, &icd, 1);
97601024 1361 io_completed(td, io_u, &icd);
e8462bd8
JA
1362
1363 if (!(io_u->flags & IO_U_F_FREE_DEF))
1364 put_io_u(td, io_u);
97601024 1365
581e7141
JA
1366 if (icd.error) {
1367 td_verror(td, icd.error, "io_u_sync_complete");
1368 return -1;
1369 }
97601024 1370
581e7141
JA
1371 if (bytes) {
1372 bytes[0] += icd.bytes_done[0];
1373 bytes[1] += icd.bytes_done[1];
1374 }
1375
1376 return 0;
97601024
JA
1377}
1378
e7e6cfb4
JA
1379/*
1380 * Called to complete min_events number of io for the async engines.
1381 */
581e7141
JA
1382int io_u_queued_complete(struct thread_data *td, int min_evts,
1383 unsigned long *bytes)
97601024 1384{
97601024 1385 struct io_completion_data icd;
00de55ef 1386 struct timespec *tvp = NULL;
97601024 1387 int ret;
4d06a338 1388 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0, };
97601024 1389
4950421a 1390 dprint(FD_IO, "io_u_queued_completed: min=%d\n", min_evts);
b271fe62 1391
4950421a 1392 if (!min_evts)
00de55ef 1393 tvp = &ts;
97601024 1394
4950421a 1395 ret = td_io_getevents(td, min_evts, td->o.iodepth_batch_complete, tvp);
97601024 1396 if (ret < 0) {
e1161c32 1397 td_verror(td, -ret, "td_io_getevents");
97601024
JA
1398 return ret;
1399 } else if (!ret)
1400 return ret;
1401
9520ebb9 1402 init_icd(td, &icd, ret);
97601024 1403 ios_completed(td, &icd);
581e7141
JA
1404 if (icd.error) {
1405 td_verror(td, icd.error, "io_u_queued_complete");
1406 return -1;
1407 }
97601024 1408
581e7141
JA
1409 if (bytes) {
1410 bytes[0] += icd.bytes_done[0];
1411 bytes[1] += icd.bytes_done[1];
1412 }
1413
1414 return 0;
97601024 1415}
7e77dd02
JA
1416
1417/*
1418 * Call when io_u is really queued, to update the submission latency.
1419 */
1420void io_u_queued(struct thread_data *td, struct io_u *io_u)
1421{
9520ebb9
JA
1422 if (!td->o.disable_slat) {
1423 unsigned long slat_time;
7e77dd02 1424
9520ebb9 1425 slat_time = utime_since(&io_u->start_time, &io_u->issue_time);
29a90ddb 1426 add_slat_sample(td, io_u->ddir, slat_time, io_u->xfer_buflen);
9520ebb9 1427 }
7e77dd02 1428}
433afcb4 1429
5973cafb
JA
1430/*
1431 * "randomly" fill the buffer contents
1432 */
1433void io_u_fill_buffer(struct thread_data *td, struct io_u *io_u,
1434 unsigned int max_bs)
1435{
e84b371e
JA
1436 io_u->buf_filled_len = 0;
1437
637ef8d9
JA
1438 if (!td->o.zero_buffers)
1439 fill_random_buf(io_u->buf, max_bs);
1440 else
1441 memset(io_u->buf, 0, max_bs);
5973cafb 1442}