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