Add spinlocks
[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"
10ba535a 10
5945b9b4
JA
11/*
12 * Change this define to play with the timeout handling
13 */
14#undef FIO_USE_TIMEOUT
15
97601024
JA
16struct io_completion_data {
17 int nr; /* input */
97601024
JA
18
19 int error; /* output */
20 unsigned long bytes_done[2]; /* output */
21 struct timeval time; /* output */
22};
23
10ba535a
JA
24/*
25 * The ->file_map[] contains a map of blocks we have or have not done io
26 * to yet. Used to make sure we cover the entire range in a fair fashion.
27 */
aec2de20 28static int random_map_free(struct fio_file *f, const unsigned long long block)
10ba535a 29{
aec2de20
JA
30 unsigned int idx = RAND_MAP_IDX(f, block);
31 unsigned int bit = RAND_MAP_BIT(f, block);
10ba535a 32
84422acd
JA
33 dprint(FD_RANDOM, "free: b=%llu, idx=%u, bit=%u\n", block, idx, bit);
34
de605666 35 return (f->file_map[idx] & (1 << bit)) == 0;
10ba535a
JA
36}
37
df415585
JA
38/*
39 * Mark a given offset as used in the map.
40 */
9bf2061e 41static void mark_random_map(struct thread_data *td, struct io_u *io_u)
df415585 42{
2dc1bbeb 43 unsigned int min_bs = td->o.rw_min_bs;
9bf2061e 44 struct fio_file *f = io_u->file;
a00735e6 45 unsigned long long block;
3e3357b1 46 unsigned int blocks, nr_blocks;
df415585 47
b9c5b644 48 block = (io_u->offset - f->file_offset) / (unsigned long long) min_bs;
c685b5b2 49 nr_blocks = (io_u->buflen + min_bs - 1) / min_bs;
3e3357b1 50 blocks = 0;
c685b5b2 51
3e3357b1
JA
52 while (nr_blocks) {
53 unsigned int this_blocks, mask;
df415585
JA
54 unsigned int idx, bit;
55
1e3d53ac
JA
56 /*
57 * If we have a mixed random workload, we may
58 * encounter blocks we already did IO to.
59 */
8b113b4f
JA
60 if ((td->o.ddir_nr == 1) && !random_map_free(f, block)) {
61 if (!blocks)
62 blocks = 1;
df415585 63 break;
8b113b4f 64 }
df415585 65
aec2de20
JA
66 idx = RAND_MAP_IDX(f, block);
67 bit = RAND_MAP_BIT(f, block);
df415585 68
0032bf9f 69 fio_assert(td, idx < f->num_maps);
df415585 70
3e3357b1
JA
71 this_blocks = nr_blocks;
72 if (this_blocks + bit > BLOCKS_PER_MAP)
73 this_blocks = BLOCKS_PER_MAP - bit;
74
75 if (this_blocks == BLOCKS_PER_MAP)
76 mask = -1U;
77 else
78 mask = ((1U << this_blocks) - 1) << bit;
79
3e3357b1
JA
80 f->file_map[idx] |= mask;
81 nr_blocks -= this_blocks;
82 blocks += this_blocks;
c9dd34b2 83 block += this_blocks;
df415585
JA
84 }
85
a00735e6
JA
86 if ((blocks * min_bs) < io_u->buflen)
87 io_u->buflen = blocks * min_bs;
df415585
JA
88}
89
3e3357b1
JA
90static unsigned long long last_block(struct thread_data *td, struct fio_file *f,
91 enum fio_ddir ddir)
2ba1c290
JA
92{
93 unsigned long long max_blocks;
d9dd70f7 94 unsigned long long max_size;
2ba1c290 95
d9dd70f7
JA
96 /*
97 * Hmm, should we make sure that ->io_size <= ->real_file_size?
98 */
99 max_size = f->io_size;
100 if (max_size > f->real_file_size)
101 max_size = f->real_file_size;
102
103 max_blocks = max_size / (unsigned long long) td->o.min_bs[ddir];
2ba1c290
JA
104 if (!max_blocks)
105 return 0;
106
67778e88 107 return max_blocks;
2ba1c290
JA
108}
109
10ba535a
JA
110/*
111 * Return the next free block in the map.
112 */
113static int get_next_free_block(struct thread_data *td, struct fio_file *f,
4ba66134 114 enum fio_ddir ddir, unsigned long long *b)
10ba535a 115{
84422acd 116 unsigned long long min_bs = td->o.rw_min_bs;
10ba535a
JA
117 int i;
118
c685b5b2
JA
119 i = f->last_free_lookup;
120 *b = (i * BLOCKS_PER_MAP);
84422acd 121 while ((*b) * min_bs < f->real_file_size) {
de605666 122 if (f->file_map[i] != (unsigned int) -1) {
697a606c 123 *b += ffz(f->file_map[i]);
4ba66134 124 if (*b > last_block(td, f, ddir))
2ba1c290 125 break;
c685b5b2 126 f->last_free_lookup = i;
10ba535a
JA
127 return 0;
128 }
129
130 *b += BLOCKS_PER_MAP;
131 i++;
132 }
133
2ba1c290 134 dprint(FD_IO, "failed finding a free block\n");
10ba535a
JA
135 return 1;
136}
137
ec4015da 138static int get_next_rand_offset(struct thread_data *td, struct fio_file *f,
4ba66134 139 enum fio_ddir ddir, unsigned long long *b)
ec4015da 140{
84422acd 141 unsigned long long r;
ec4015da
JA
142 int loops = 5;
143
144 do {
145 r = os_random_long(&td->random_state);
84422acd 146 dprint(FD_RANDOM, "off rand %llu\n", r);
5ec10eaa 147 *b = (last_block(td, f, ddir) - 1)
dc873b6f 148 * (r / ((unsigned long long) OS_RAND_MAX + 1.0));
2ba1c290 149
43c63a78
JA
150 /*
151 * if we are not maintaining a random map, we are done.
152 */
303032ae 153 if (!file_randommap(td, f))
43c63a78
JA
154 return 0;
155
156 /*
84422acd 157 * calculate map offset and check if it's free
43c63a78 158 */
aec2de20 159 if (random_map_free(f, *b))
43c63a78
JA
160 return 0;
161
84422acd
JA
162 dprint(FD_RANDOM, "get_next_rand_offset: offset %llu busy\n",
163 *b);
43c63a78 164 } while (--loops);
ec4015da
JA
165
166 /*
43c63a78
JA
167 * we get here, if we didn't suceed in looking up a block. generate
168 * a random start offset into the filemap, and find the first free
169 * block from there.
ec4015da 170 */
43c63a78
JA
171 loops = 10;
172 do {
dc873b6f
JA
173 f->last_free_lookup = (f->num_maps - 1) *
174 (r / (OS_RAND_MAX + 1.0));
4ba66134 175 if (!get_next_free_block(td, f, ddir, b))
43c63a78 176 return 0;
ec4015da 177
43c63a78
JA
178 r = os_random_long(&td->random_state);
179 } while (--loops);
180
181 /*
182 * that didn't work either, try exhaustive search from the start
183 */
184 f->last_free_lookup = 0;
4ba66134 185 return get_next_free_block(td, f, ddir, b);
ec4015da
JA
186}
187
10ba535a
JA
188/*
189 * For random io, generate a random new block and see if it's used. Repeat
190 * until we find a free one. For sequential io, just return the end of
191 * the last io issued.
192 */
9bf2061e 193static int get_next_offset(struct thread_data *td, struct io_u *io_u)
10ba535a 194{
9bf2061e 195 struct fio_file *f = io_u->file;
ec4015da 196 unsigned long long b;
4ba66134 197 enum fio_ddir ddir = io_u->ddir;
10ba535a 198
ec4015da
JA
199 if (td_random(td) && (td->o.ddir_nr && !--td->ddir_nr)) {
200 td->ddir_nr = td->o.ddir_nr;
211097b2 201
4ba66134 202 if (get_next_rand_offset(td, f, ddir, &b))
bca4ed4d 203 return 1;
43063a1c 204 } else {
0c3d768a 205 if (f->last_pos >= f->real_file_size) {
4ba66134
JA
206 if (!td_random(td) ||
207 get_next_rand_offset(td, f, ddir, &b))
0c3d768a 208 return 1;
bcdedd0a 209 } else
4ba66134 210 b = (f->last_pos - f->file_offset) / td->o.min_bs[ddir];
43063a1c 211 }
10ba535a 212
009bd847
JA
213 io_u->offset = b * td->o.min_bs[ddir];
214 if (io_u->offset >= f->io_size) {
215 dprint(FD_IO, "get_next_offset: offset %llu >= io_size %llu\n",
216 io_u->offset, f->io_size);
217 return 1;
218 }
219
220 io_u->offset += f->file_offset;
2ba1c290
JA
221 if (io_u->offset >= f->real_file_size) {
222 dprint(FD_IO, "get_next_offset: offset %llu >= size %llu\n",
223 io_u->offset, f->real_file_size);
10ba535a 224 return 1;
2ba1c290 225 }
10ba535a
JA
226
227 return 0;
228}
229
f3059de1
JA
230static inline int is_power_of_2(unsigned int val)
231{
232 return (val != 0 && ((val & (val - 1)) == 0));
233}
234
9bf2061e 235static unsigned int get_next_buflen(struct thread_data *td, struct io_u *io_u)
10ba535a 236{
bca4ed4d 237 const int ddir = io_u->ddir;
fc4398fd 238 unsigned int buflen = buflen; /* silence dumb gcc warning */
f3059de1 239 unsigned int minbs, maxbs;
10ba535a
JA
240 long r;
241
f3059de1
JA
242 minbs = td->o.min_bs[ddir];
243 maxbs = td->o.max_bs[ddir];
244
245 if (minbs == maxbs)
246 buflen = minbs;
10ba535a
JA
247 else {
248 r = os_random_long(&td->bsrange_state);
5ec10eaa 249 if (!td->o.bssplit_nr) {
f3059de1
JA
250 buflen = 1 + (unsigned int) ((double) maxbs *
251 (r / (OS_RAND_MAX + 1.0)));
252 if (buflen < minbs)
253 buflen = minbs;
5ec10eaa 254 } else {
564ca972
JA
255 long perc = 0;
256 unsigned int i;
257
258 for (i = 0; i < td->o.bssplit_nr; i++) {
259 struct bssplit *bsp = &td->o.bssplit[i];
260
261 buflen = bsp->bs;
262 perc += bsp->perc;
f3059de1 263 if (r <= ((OS_RAND_MAX / 100L) * perc))
564ca972
JA
264 break;
265 }
266 }
f3059de1
JA
267 if (!td->o.bs_unaligned && is_power_of_2(minbs))
268 buflen = (buflen + minbs - 1) & ~(minbs - 1);
10ba535a
JA
269 }
270
4ba66134
JA
271 if (io_u->offset + buflen > io_u->file->real_file_size) {
272 dprint(FD_IO, "lower buflen %u -> %u (ddir=%d)\n", buflen,
f3059de1
JA
273 minbs, ddir);
274 buflen = minbs;
4ba66134 275 }
6a5e6884 276
10ba535a
JA
277 return buflen;
278}
279
afe24a5a
JA
280static void set_rwmix_bytes(struct thread_data *td)
281{
afe24a5a
JA
282 unsigned int diff;
283
284 /*
285 * we do time or byte based switch. this is needed because
286 * buffered writes may issue a lot quicker than they complete,
287 * whereas reads do not.
288 */
e47f799f 289 diff = td->o.rwmix[td->rwmix_ddir ^ 1];
04c540d9 290 td->rwmix_issues = (td->io_issues[td->rwmix_ddir] * diff) / 100;
e47f799f
JA
291}
292
293static inline enum fio_ddir get_rand_ddir(struct thread_data *td)
294{
295 unsigned int v;
296 long r;
297
298 r = os_random_long(&td->rwmix_state);
dc873b6f 299 v = 1 + (int) (100.0 * (r / (OS_RAND_MAX + 1.0)));
04c540d9 300 if (v <= td->o.rwmix[DDIR_READ])
e47f799f
JA
301 return DDIR_READ;
302
303 return DDIR_WRITE;
afe24a5a
JA
304}
305
10ba535a
JA
306/*
307 * Return the data direction for the next io_u. If the job is a
308 * mixed read/write workload, check the rwmix cycle and switch if
309 * necessary.
310 */
1e97cce9 311static enum fio_ddir get_rw_ddir(struct thread_data *td)
10ba535a
JA
312{
313 if (td_rw(td)) {
10ba535a
JA
314 /*
315 * Check if it's time to seed a new data direction.
316 */
e4928662 317 if (td->io_issues[td->rwmix_ddir] >= td->rwmix_issues) {
e47f799f 318 unsigned long long max_bytes;
5ec10eaa 319 enum fio_ddir ddir;
e47f799f
JA
320
321 /*
322 * Put a top limit on how many bytes we do for
323 * one data direction, to avoid overflowing the
324 * ranges too much
325 */
326 ddir = get_rand_ddir(td);
327 max_bytes = td->this_io_bytes[ddir];
5ec10eaa
JA
328 if (max_bytes >=
329 (td->o.size * td->o.rwmix[ddir] / 100)) {
6162f524 330 if (!td->rw_end_set[ddir]) {
38d77cae 331 td->rw_end_set[ddir] = 1;
6162f524
JA
332 fio_gettime(&td->rw_end[ddir], NULL);
333 }
e4928662 334
e47f799f 335 ddir ^= 1;
38d77cae 336 }
e47f799f
JA
337
338 if (ddir != td->rwmix_ddir)
339 set_rwmix_bytes(td);
340
341 td->rwmix_ddir = ddir;
10ba535a
JA
342 }
343 return td->rwmix_ddir;
344 } else if (td_read(td))
345 return DDIR_READ;
346 else
347 return DDIR_WRITE;
348}
349
60f2c658
JA
350static void put_file_log(struct thread_data *td, struct fio_file *f)
351{
352 int ret = put_file(td, f);
353
354 if (ret)
355 td_verror(td, ret, "file close");
356}
357
10ba535a
JA
358void put_io_u(struct thread_data *td, struct io_u *io_u)
359{
0c6e7517
JA
360 assert((io_u->flags & IO_U_F_FREE) == 0);
361 io_u->flags |= IO_U_F_FREE;
362
60f2c658
JA
363 if (io_u->file)
364 put_file_log(td, io_u->file);
2dbdab7e 365
10ba535a 366 io_u->file = NULL;
01743ee1
JA
367 flist_del(&io_u->list);
368 flist_add(&io_u->list, &td->io_u_freelist);
10ba535a
JA
369 td->cur_depth--;
370}
371
755200a3
JA
372void requeue_io_u(struct thread_data *td, struct io_u **io_u)
373{
374 struct io_u *__io_u = *io_u;
375
465221b0
JA
376 dprint(FD_IO, "requeue %p\n", __io_u);
377
4d2e0f49 378 __io_u->flags |= IO_U_F_FREE;
e4f54adb
JA
379 if ((__io_u->flags & IO_U_F_FLIGHT) && (__io_u->ddir != DDIR_SYNC))
380 td->io_issues[__io_u->ddir]--;
5ec10eaa 381
4d2e0f49
JA
382 __io_u->flags &= ~IO_U_F_FLIGHT;
383
01743ee1
JA
384 flist_del(&__io_u->list);
385 flist_add_tail(&__io_u->list, &td->io_u_requeues);
755200a3
JA
386 td->cur_depth--;
387 *io_u = NULL;
388}
389
9bf2061e 390static int fill_io_u(struct thread_data *td, struct io_u *io_u)
10ba535a 391{
b4c5e1ac
JA
392 if (td->io_ops->flags & FIO_NOIO)
393 goto out;
394
87dc1ab1
JA
395 /*
396 * see if it's time to sync
397 */
2dc1bbeb
JA
398 if (td->o.fsync_blocks &&
399 !(td->io_issues[DDIR_WRITE] % td->o.fsync_blocks) &&
400 td->io_issues[DDIR_WRITE] && should_fsync(td)) {
87dc1ab1 401 io_u->ddir = DDIR_SYNC;
c38e9468 402 goto out;
87dc1ab1
JA
403 }
404
a00735e6
JA
405 io_u->ddir = get_rw_ddir(td);
406
48f5abd3
JA
407 /*
408 * See if it's time to switch to a new zone
409 */
410 if (td->zone_bytes >= td->o.zone_size) {
411 td->zone_bytes = 0;
412 io_u->file->last_pos += td->o.zone_skip;
413 td->io_skip_bytes += td->o.zone_skip;
414 }
415
10ba535a 416 /*
c685b5b2
JA
417 * No log, let the seq/rand engine retrieve the next buflen and
418 * position.
10ba535a 419 */
2ba1c290
JA
420 if (get_next_offset(td, io_u)) {
421 dprint(FD_IO, "io_u %p, failed getting offset\n", io_u);
bca4ed4d 422 return 1;
2ba1c290 423 }
10ba535a 424
9bf2061e 425 io_u->buflen = get_next_buflen(td, io_u);
2ba1c290
JA
426 if (!io_u->buflen) {
427 dprint(FD_IO, "io_u %p, failed getting buflen\n", io_u);
bca4ed4d 428 return 1;
2ba1c290 429 }
bca4ed4d 430
2ba1c290
JA
431 if (io_u->offset + io_u->buflen > io_u->file->real_file_size) {
432 dprint(FD_IO, "io_u %p, offset too large\n", io_u);
4ba66134
JA
433 dprint(FD_IO, " off=%llu/%lu > %llu\n", io_u->offset,
434 io_u->buflen, io_u->file->real_file_size);
6a5e6884 435 return 1;
2ba1c290 436 }
6a5e6884 437
bca4ed4d
JA
438 /*
439 * mark entry before potentially trimming io_u
440 */
303032ae 441 if (td_random(td) && file_randommap(td, io_u->file))
9bf2061e 442 mark_random_map(td, io_u);
bca4ed4d
JA
443
444 /*
445 * If using a write iolog, store this entry.
446 */
c38e9468 447out:
2ba1c290 448 dprint_io_u(io_u, "fill_io_u");
d9d91e39 449 td->zone_bytes += io_u->buflen;
f29b25a3 450 log_io_u(td, io_u);
bca4ed4d 451 return 0;
10ba535a
JA
452}
453
838bc709
JA
454static void __io_u_mark_map(unsigned int *map, unsigned int nr)
455{
456 int index = 0;
457
458 switch (nr) {
459 default:
460 index = 6;
461 break;
462 case 33 ... 64:
463 index = 5;
464 break;
465 case 17 ... 32:
466 index = 4;
467 break;
468 case 9 ... 16:
469 index = 3;
470 break;
471 case 5 ... 8:
472 index = 2;
473 break;
474 case 1 ... 4:
475 index = 1;
476 case 0:
477 break;
478 }
479
480 map[index]++;
481}
482
483void io_u_mark_submit(struct thread_data *td, unsigned int nr)
484{
485 __io_u_mark_map(td->ts.io_u_submit, nr);
486 td->ts.total_submit++;
487}
488
489void io_u_mark_complete(struct thread_data *td, unsigned int nr)
490{
491 __io_u_mark_map(td->ts.io_u_complete, nr);
492 td->ts.total_complete++;
493}
494
d8005759 495void io_u_mark_depth(struct thread_data *td, unsigned int nr)
71619dc2
JA
496{
497 int index = 0;
498
499 switch (td->cur_depth) {
500 default:
a783e61a
JA
501 index = 6;
502 break;
71619dc2 503 case 32 ... 63:
a783e61a
JA
504 index = 5;
505 break;
71619dc2 506 case 16 ... 31:
a783e61a
JA
507 index = 4;
508 break;
71619dc2 509 case 8 ... 15:
a783e61a
JA
510 index = 3;
511 break;
71619dc2 512 case 4 ... 7:
a783e61a
JA
513 index = 2;
514 break;
71619dc2 515 case 2 ... 3:
a783e61a 516 index = 1;
71619dc2
JA
517 case 1:
518 break;
519 }
520
3bec7ae0 521 td->ts.io_u_map[index] += nr;
71619dc2
JA
522}
523
04a0feae
JA
524static void io_u_mark_lat_usec(struct thread_data *td, unsigned long usec)
525{
526 int index = 0;
527
528 assert(usec < 1000);
529
530 switch (usec) {
531 case 750 ... 999:
532 index = 9;
533 break;
534 case 500 ... 749:
535 index = 8;
536 break;
537 case 250 ... 499:
538 index = 7;
539 break;
540 case 100 ... 249:
541 index = 6;
542 break;
543 case 50 ... 99:
544 index = 5;
545 break;
546 case 20 ... 49:
547 index = 4;
548 break;
549 case 10 ... 19:
550 index = 3;
551 break;
552 case 4 ... 9:
553 index = 2;
554 break;
555 case 2 ... 3:
556 index = 1;
557 case 0 ... 1:
558 break;
559 }
560
561 assert(index < FIO_IO_U_LAT_U_NR);
562 td->ts.io_u_lat_u[index]++;
563}
564
565static void io_u_mark_lat_msec(struct thread_data *td, unsigned long msec)
ec118304
JA
566{
567 int index = 0;
568
569 switch (msec) {
570 default:
04a0feae
JA
571 index = 11;
572 break;
8abdce66 573 case 1000 ... 1999:
04a0feae
JA
574 index = 10;
575 break;
8abdce66 576 case 750 ... 999:
04a0feae
JA
577 index = 9;
578 break;
8abdce66 579 case 500 ... 749:
04a0feae
JA
580 index = 8;
581 break;
8abdce66 582 case 250 ... 499:
04a0feae
JA
583 index = 7;
584 break;
8abdce66 585 case 100 ... 249:
04a0feae
JA
586 index = 6;
587 break;
8abdce66 588 case 50 ... 99:
04a0feae
JA
589 index = 5;
590 break;
8abdce66 591 case 20 ... 49:
04a0feae
JA
592 index = 4;
593 break;
8abdce66 594 case 10 ... 19:
04a0feae
JA
595 index = 3;
596 break;
8abdce66 597 case 4 ... 9:
04a0feae
JA
598 index = 2;
599 break;
ec118304 600 case 2 ... 3:
04a0feae 601 index = 1;
ec118304
JA
602 case 0 ... 1:
603 break;
604 }
605
04a0feae
JA
606 assert(index < FIO_IO_U_LAT_M_NR);
607 td->ts.io_u_lat_m[index]++;
608}
609
610static void io_u_mark_latency(struct thread_data *td, unsigned long usec)
611{
612 if (usec < 1000)
613 io_u_mark_lat_usec(td, usec);
614 else
615 io_u_mark_lat_msec(td, usec / 1000);
ec118304
JA
616}
617
0aabe160
JA
618/*
619 * Get next file to service by choosing one at random
620 */
1c178180
JA
621static struct fio_file *get_next_file_rand(struct thread_data *td, int goodf,
622 int badf)
0aabe160 623{
0aabe160 624 struct fio_file *f;
1c178180 625 int fno;
0aabe160
JA
626
627 do {
7c83c089
JA
628 long r = os_random_long(&td->next_file_state);
629
5ec10eaa 630 fno = (unsigned int) ((double) td->o.nr_files
dc873b6f 631 * (r / (OS_RAND_MAX + 1.0)));
126d65c6 632 f = td->files[fno];
059e63c0
JA
633 if (f->flags & FIO_FILE_DONE)
634 continue;
1c178180 635
2ba1c290
JA
636 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf)) {
637 dprint(FD_FILE, "get_next_file_rand: %p\n", f);
0aabe160 638 return f;
2ba1c290 639 }
0aabe160
JA
640 } while (1);
641}
642
643/*
644 * Get next file to service by doing round robin between all available ones
645 */
1c178180
JA
646static struct fio_file *get_next_file_rr(struct thread_data *td, int goodf,
647 int badf)
3d7c391d
JA
648{
649 unsigned int old_next_file = td->next_file;
650 struct fio_file *f;
651
652 do {
126d65c6 653 f = td->files[td->next_file];
3d7c391d
JA
654
655 td->next_file++;
2dc1bbeb 656 if (td->next_file >= td->o.nr_files)
3d7c391d
JA
657 td->next_file = 0;
658
d5ed68ea
JA
659 if (f->flags & FIO_FILE_DONE) {
660 f = NULL;
059e63c0 661 continue;
d5ed68ea 662 }
059e63c0 663
1c178180 664 if ((!goodf || (f->flags & goodf)) && !(f->flags & badf))
3d7c391d
JA
665 break;
666
667 f = NULL;
668 } while (td->next_file != old_next_file);
669
2ba1c290 670 dprint(FD_FILE, "get_next_file_rr: %p\n", f);
3d7c391d
JA
671 return f;
672}
673
bdb4e2e9
JA
674static struct fio_file *get_next_file(struct thread_data *td)
675{
1907dbc6
JA
676 struct fio_file *f;
677
2dc1bbeb 678 assert(td->o.nr_files <= td->files_index);
1c178180 679
2ba1c290 680 if (!td->nr_open_files || td->nr_done_files >= td->o.nr_files) {
5ec10eaa
JA
681 dprint(FD_FILE, "get_next_file: nr_open=%d, nr_done=%d,"
682 " nr_files=%d\n", td->nr_open_files,
683 td->nr_done_files,
684 td->o.nr_files);
bdb4e2e9 685 return NULL;
2ba1c290 686 }
bdb4e2e9 687
1907dbc6 688 f = td->file_service_file;
f11bd94d 689 if (f && (f->flags & FIO_FILE_OPEN) && td->file_service_left--)
2ba1c290 690 goto out;
1907dbc6 691
2dc1bbeb 692 if (td->o.file_service_type == FIO_FSERVICE_RR)
1c178180 693 f = get_next_file_rr(td, FIO_FILE_OPEN, FIO_FILE_CLOSING);
bdb4e2e9 694 else
1c178180 695 f = get_next_file_rand(td, FIO_FILE_OPEN, FIO_FILE_CLOSING);
1907dbc6
JA
696
697 td->file_service_file = f;
698 td->file_service_left = td->file_service_nr - 1;
2ba1c290
JA
699out:
700 dprint(FD_FILE, "get_next_file: %p\n", f);
1907dbc6 701 return f;
bdb4e2e9
JA
702}
703
1c178180
JA
704static struct fio_file *find_next_new_file(struct thread_data *td)
705{
706 struct fio_file *f;
707
1020a139
JA
708 if (!td->nr_open_files || td->nr_done_files >= td->o.nr_files)
709 return NULL;
710
2dc1bbeb 711 if (td->o.file_service_type == FIO_FSERVICE_RR)
1c178180
JA
712 f = get_next_file_rr(td, 0, FIO_FILE_OPEN);
713 else
714 f = get_next_file_rand(td, 0, FIO_FILE_OPEN);
715
716 return f;
717}
718
429f6675
JA
719static int set_io_u_file(struct thread_data *td, struct io_u *io_u)
720{
721 struct fio_file *f;
722
723 do {
724 f = get_next_file(td);
725 if (!f)
726 return 1;
727
728set_file:
729 io_u->file = f;
730 get_file(f);
731
732 if (!fill_io_u(td, io_u))
733 break;
734
009bd847
JA
735 /*
736 * optimization to prevent close/open of the same file. This
737 * way we preserve queueing etc.
738 */
739 if (td->o.nr_files == 1 && td->o.time_based) {
60f2c658 740 put_file_log(td, f);
009bd847
JA
741 fio_file_reset(f);
742 goto set_file;
743 }
744
429f6675
JA
745 /*
746 * td_io_close() does a put_file() as well, so no need to
747 * do that here.
748 */
749 io_u->file = NULL;
750 td_io_close_file(td, f);
751 f->flags |= FIO_FILE_DONE;
752 td->nr_done_files++;
753
754 /*
755 * probably not the right place to do this, but see
756 * if we need to open a new file
757 */
758 if (td->nr_open_files < td->o.open_files &&
759 td->o.open_files != td->o.nr_files) {
760 f = find_next_new_file(td);
761
762 if (!f || td_io_open_file(td, f))
763 return 1;
764
765 goto set_file;
766 }
767 } while (1);
768
769 return 0;
770}
771
772
10ba535a
JA
773struct io_u *__get_io_u(struct thread_data *td)
774{
775 struct io_u *io_u = NULL;
776
01743ee1
JA
777 if (!flist_empty(&td->io_u_requeues))
778 io_u = flist_entry(td->io_u_requeues.next, struct io_u, list);
755200a3 779 else if (!queue_full(td)) {
01743ee1 780 io_u = flist_entry(td->io_u_freelist.next, struct io_u, list);
10ba535a 781
6040dabc 782 io_u->buflen = 0;
10ba535a 783 io_u->resid = 0;
755200a3 784 io_u->file = NULL;
d7762cf8 785 io_u->end_io = NULL;
755200a3
JA
786 }
787
788 if (io_u) {
0c6e7517
JA
789 assert(io_u->flags & IO_U_F_FREE);
790 io_u->flags &= ~IO_U_F_FREE;
791
755200a3 792 io_u->error = 0;
01743ee1
JA
793 flist_del(&io_u->list);
794 flist_add(&io_u->list, &td->io_u_busylist);
10ba535a
JA
795 td->cur_depth++;
796 }
797
798 return io_u;
799}
800
801/*
802 * Return an io_u to be processed. Gets a buflen and offset, sets direction,
803 * etc. The returned io_u is fully ready to be prepped and submitted.
804 */
3d7c391d 805struct io_u *get_io_u(struct thread_data *td)
10ba535a 806{
3d7c391d 807 struct fio_file *f;
10ba535a
JA
808 struct io_u *io_u;
809
810 io_u = __get_io_u(td);
2ba1c290
JA
811 if (!io_u) {
812 dprint(FD_IO, "__get_io_u failed\n");
10ba535a 813 return NULL;
2ba1c290 814 }
10ba535a 815
755200a3
JA
816 /*
817 * from a requeue, io_u already setup
818 */
819 if (io_u->file)
77f392bf 820 goto out;
755200a3 821
429f6675
JA
822 /*
823 * If using an iolog, grab next piece if any available.
824 */
825 if (td->o.read_iolog_file) {
826 if (read_iolog_get(td, io_u))
827 goto err_put;
2ba1c290
JA
828 } else if (set_io_u_file(td, io_u)) {
829 dprint(FD_IO, "io_u %p, setting file failed\n", io_u);
429f6675 830 goto err_put;
2ba1c290 831 }
5ec10eaa 832
429f6675
JA
833 f = io_u->file;
834 assert(f->flags & FIO_FILE_OPEN);
97af62ce 835
87dc1ab1 836 if (io_u->ddir != DDIR_SYNC) {
d0656a93 837 if (!io_u->buflen && !(td->io_ops->flags & FIO_NOIO)) {
2ba1c290 838 dprint(FD_IO, "get_io_u: zero buflen on %p\n", io_u);
429f6675 839 goto err_put;
2ba1c290 840 }
10ba535a 841
36167d82 842 f->last_pos = io_u->offset + io_u->buflen;
10ba535a 843
2dc1bbeb 844 if (td->o.verify != VERIFY_NONE)
87dc1ab1 845 populate_verify_io_u(td, io_u);
e4dad9c6
JA
846 else if (td->o.refill_buffers && io_u->ddir == DDIR_WRITE)
847 io_u_fill_buffer(td, io_u, io_u->xfer_buflen);
87dc1ab1 848 }
10ba535a 849
165faf16
JA
850 /*
851 * Set io data pointers.
852 */
d460eb31 853 io_u->endpos = io_u->offset + io_u->buflen;
cec6b55d
JA
854 io_u->xfer_buf = io_u->buf;
855 io_u->xfer_buflen = io_u->buflen;
5973cafb 856
6ac7a331 857out:
429f6675
JA
858 if (!td_io_prep(td, io_u)) {
859 fio_gettime(&io_u->start_time, NULL);
860 return io_u;
36167d82 861 }
429f6675 862err_put:
2ba1c290 863 dprint(FD_IO, "get_io_u failed\n");
429f6675
JA
864 put_io_u(td, io_u);
865 return NULL;
10ba535a
JA
866}
867
5451792e
JA
868void io_u_log_error(struct thread_data *td, struct io_u *io_u)
869{
870 const char *msg[] = { "read", "write", "sync" };
871
872 log_err("fio: io_u error");
873
874 if (io_u->file)
875 log_err(" on file %s", io_u->file->file_name);
876
877 log_err(": %s\n", strerror(io_u->error));
878
5ec10eaa
JA
879 log_err(" %s offset=%llu, buflen=%lu\n", msg[io_u->ddir],
880 io_u->offset, io_u->xfer_buflen);
5451792e
JA
881
882 if (!td->error)
883 td_verror(td, io_u->error, "io_u error");
884}
885
97601024
JA
886static void io_completed(struct thread_data *td, struct io_u *io_u,
887 struct io_completion_data *icd)
10ba535a 888{
d85f5118 889 unsigned long usec;
10ba535a 890
2ba1c290
JA
891 dprint_io_u(io_u, "io complete");
892
0c6e7517
JA
893 assert(io_u->flags & IO_U_F_FLIGHT);
894 io_u->flags &= ~IO_U_F_FLIGHT;
895
87dc1ab1
JA
896 if (io_u->ddir == DDIR_SYNC) {
897 td->last_was_sync = 1;
898 return;
899 }
900
901 td->last_was_sync = 0;
902
10ba535a
JA
903 if (!io_u->error) {
904 unsigned int bytes = io_u->buflen - io_u->resid;
1e97cce9 905 const enum fio_ddir idx = io_u->ddir;
3af6ef39 906 int ret;
10ba535a
JA
907
908 td->io_blocks[idx]++;
909 td->io_bytes[idx] += bytes;
10ba535a
JA
910 td->this_io_bytes[idx] += bytes;
911
d85f5118 912 usec = utime_since(&io_u->issue_time, &icd->time);
10ba535a 913
d85f5118 914 add_clat_sample(td, idx, usec);
02bcaa8c 915 add_bw_sample(td, idx, &icd->time);
04a0feae 916 io_u_mark_latency(td, usec);
10ba535a 917
660a1cb5 918 if (td_write(td) && idx == DDIR_WRITE &&
8670579e 919 td->o.do_verify &&
41128405 920 td->o.verify != VERIFY_NONE)
10ba535a
JA
921 log_io_piece(td, io_u);
922
923 icd->bytes_done[idx] += bytes;
3af6ef39 924
d7762cf8 925 if (io_u->end_io) {
36690c9b 926 ret = io_u->end_io(td, io_u);
3af6ef39
JA
927 if (ret && !icd->error)
928 icd->error = ret;
929 }
5451792e 930 } else {
10ba535a 931 icd->error = io_u->error;
5451792e
JA
932 io_u_log_error(td, io_u);
933 }
10ba535a
JA
934}
935
d7762cf8 936static void init_icd(struct io_completion_data *icd, int nr)
10ba535a 937{
02bcaa8c
JA
938 fio_gettime(&icd->time, NULL);
939
3af6ef39
JA
940 icd->nr = nr;
941
10ba535a
JA
942 icd->error = 0;
943 icd->bytes_done[0] = icd->bytes_done[1] = 0;
36167d82
JA
944}
945
97601024
JA
946static void ios_completed(struct thread_data *td,
947 struct io_completion_data *icd)
36167d82
JA
948{
949 struct io_u *io_u;
950 int i;
951
10ba535a
JA
952 for (i = 0; i < icd->nr; i++) {
953 io_u = td->io_ops->event(td, i);
954
955 io_completed(td, io_u, icd);
956 put_io_u(td, io_u);
957 }
958}
97601024 959
e7e6cfb4
JA
960/*
961 * Complete a single io_u for the sync engines.
962 */
d7762cf8 963long io_u_sync_complete(struct thread_data *td, struct io_u *io_u)
97601024
JA
964{
965 struct io_completion_data icd;
966
d7762cf8 967 init_icd(&icd, 1);
97601024
JA
968 io_completed(td, io_u, &icd);
969 put_io_u(td, io_u);
970
971 if (!icd.error)
972 return icd.bytes_done[0] + icd.bytes_done[1];
973
37e974a5 974 td_verror(td, icd.error, "io_u_sync_complete");
97601024
JA
975 return -1;
976}
977
e7e6cfb4
JA
978/*
979 * Called to complete min_events number of io for the async engines.
980 */
4950421a 981long io_u_queued_complete(struct thread_data *td, int min_evts)
97601024 982{
97601024 983 struct io_completion_data icd;
00de55ef 984 struct timespec *tvp = NULL;
97601024 985 int ret;
4d06a338 986 struct timespec ts = { .tv_sec = 0, .tv_nsec = 0, };
97601024 987
4950421a 988 dprint(FD_IO, "io_u_queued_completed: min=%d\n", min_evts);
b271fe62 989
4950421a 990 if (!min_evts)
00de55ef 991 tvp = &ts;
97601024 992
4950421a 993 ret = td_io_getevents(td, min_evts, td->o.iodepth_batch_complete, tvp);
97601024 994 if (ret < 0) {
e1161c32 995 td_verror(td, -ret, "td_io_getevents");
97601024
JA
996 return ret;
997 } else if (!ret)
998 return ret;
999
d7762cf8 1000 init_icd(&icd, ret);
97601024
JA
1001 ios_completed(td, &icd);
1002 if (!icd.error)
1003 return icd.bytes_done[0] + icd.bytes_done[1];
1004
37e974a5 1005 td_verror(td, icd.error, "io_u_queued_complete");
97601024
JA
1006 return -1;
1007}
7e77dd02
JA
1008
1009/*
1010 * Call when io_u is really queued, to update the submission latency.
1011 */
1012void io_u_queued(struct thread_data *td, struct io_u *io_u)
1013{
1014 unsigned long slat_time;
1015
d85f5118 1016 slat_time = utime_since(&io_u->start_time, &io_u->issue_time);
7e77dd02
JA
1017 add_slat_sample(td, io_u->ddir, slat_time);
1018}
433afcb4 1019
5973cafb
JA
1020/*
1021 * "randomly" fill the buffer contents
1022 */
1023void io_u_fill_buffer(struct thread_data *td, struct io_u *io_u,
1024 unsigned int max_bs)
1025{
1026 long *ptr = io_u->buf;
1027
1028 if (!td->o.zero_buffers) {
1029 while ((void *) ptr - io_u->buf < max_bs) {
1030 *ptr = rand() * GOLDEN_RATIO_PRIME;
1031 ptr++;
1032 }
1033 } else
1034 memset(ptr, 0, max_bs);
1035}
1036
55bc9728 1037#ifdef FIO_USE_TIMEOUT
433afcb4
JA
1038void io_u_set_timeout(struct thread_data *td)
1039{
1040 assert(td->cur_depth);
1041
1042 td->timer.it_interval.tv_sec = 0;
1043 td->timer.it_interval.tv_usec = 0;
1044 td->timer.it_value.tv_sec = IO_U_TIMEOUT + IO_U_TIMEOUT_INC;
1045 td->timer.it_value.tv_usec = 0;
1046 setitimer(ITIMER_REAL, &td->timer, NULL);
1047 fio_gettime(&td->timeout_end, NULL);
1048}
5945b9b4
JA
1049
1050static void io_u_dump(struct io_u *io_u)
1051{
1052 unsigned long t_start = mtime_since_now(&io_u->start_time);
1053 unsigned long t_issue = mtime_since_now(&io_u->issue_time);
1054
1055 log_err("io_u=%p, t_start=%lu, t_issue=%lu\n", io_u, t_start, t_issue);
5ec10eaa
JA
1056 log_err(" buf=%p/%p, len=%lu/%lu, offset=%llu\n", io_u->buf,
1057 io_u->xfer_buf, io_u->buflen,
1058 io_u->xfer_buflen,
1059 io_u->offset);
5945b9b4
JA
1060 log_err(" ddir=%d, fname=%s\n", io_u->ddir, io_u->file->file_name);
1061}
55bc9728
JA
1062#else
1063void io_u_set_timeout(struct thread_data fio_unused *td)
1064{
1065}
1066#endif
433afcb4 1067
55bc9728 1068#ifdef FIO_USE_TIMEOUT
433afcb4
JA
1069static void io_u_timeout_handler(int fio_unused sig)
1070{
1071 struct thread_data *td, *__td;
1072 pid_t pid = getpid();
01743ee1 1073 struct flist_head *entry;
5945b9b4 1074 struct io_u *io_u;
433afcb4
JA
1075 int i;
1076
1077 log_err("fio: io_u timeout\n");
1078
1079 /*
1080 * TLS would be nice...
1081 */
1082 td = NULL;
1083 for_each_td(__td, i) {
1084 if (__td->pid == pid) {
1085 td = __td;
1086 break;
1087 }
1088 }
1089
1090 if (!td) {
1091 log_err("fio: io_u timeout, can't find job\n");
1092 exit(1);
1093 }
1094
1095 if (!td->cur_depth) {
1096 log_err("fio: timeout without pending work?\n");
1097 return;
1098 }
1099
15506d09 1100 log_err("fio: io_u timeout: job=%s, pid=%d\n", td->o.name, td->pid);
5945b9b4 1101
01743ee1
JA
1102 flist_for_each(entry, &td->io_u_busylist) {
1103 io_u = flist_entry(entry, struct io_u, list);
5945b9b4
JA
1104
1105 io_u_dump(io_u);
1106 }
1107
1108 td_verror(td, ETIMEDOUT, "io_u timeout");
433afcb4
JA
1109 exit(1);
1110}
55bc9728 1111#endif
433afcb4
JA
1112
1113void io_u_init_timeout(void)
1114{
55bc9728 1115#ifdef FIO_USE_TIMEOUT
433afcb4 1116 signal(SIGALRM, io_u_timeout_handler);
55bc9728 1117#endif
433afcb4 1118}