X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=io_u.c;h=4246edff0b2ffe19242dace14d4271ba851c7856;hb=0bcf41cdc22df;hp=58c23202bd3d20bb1eee1b4fbcf1731d9bf312ea;hpb=aef7b320ff2c5d4f61e37c5955536786910fe402;p=fio.git diff --git a/io_u.c b/io_u.c index 58c23202..4246edff 100644 --- a/io_u.c +++ b/io_u.c @@ -323,6 +323,17 @@ fetch: goto fetch; } +static void loop_cache_invalidate(struct thread_data *td, struct fio_file *f) +{ + struct thread_options *o = &td->o; + + if (o->invalidate_cache && !o->odirect) { + int fio_unused ret; + + ret = file_invalidate_cache(td, f); + } +} + static int get_next_rand_block(struct thread_data *td, struct fio_file *f, enum fio_ddir ddir, uint64_t *b) { @@ -334,6 +345,7 @@ static int get_next_rand_block(struct thread_data *td, struct fio_file *f, fio_file_reset(td, f); if (!get_next_rand_offset(td, f, ddir, b)) return 0; + loop_cache_invalidate(td, f); } dprint(FD_IO, "%s: rand offset failed, last=%llu, size=%llu\n", @@ -358,6 +370,8 @@ static int get_next_seq_offset(struct thread_data *td, struct fio_file *f, f->last_pos[ddir] = 0; else f->last_pos[ddir] = f->last_pos[ddir] - io_size; + + loop_cache_invalidate(td, f); } if (f->last_pos[ddir] < f->real_file_size) { @@ -1779,7 +1793,7 @@ static void account_io_completion(struct thread_data *td, struct io_u *io_u, if (td->parent) td = td->parent; - if (!td->o.stats) + if (!td->o.stats || td_ioengine_flagged(td, FIO_NOSTATS)) return; if (no_reduce)