X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=fio.h;h=7db30909e563a3b51ab683bcd9ce9016e5001485;hp=465053ac675372e8c9a854af4cb7edba974b1b73;hb=ebb1415f729c123b8a13bcbd667bf4b4cc95b4d4;hpb=7b4e4fe5e6fa26f82f9169c18ec70c08d0805ca9 diff --git a/fio.h b/fio.h index 465053ac..7db30909 100644 --- a/fio.h +++ b/fio.h @@ -357,6 +357,7 @@ struct thread_data { unsigned int write_bw_log; unsigned int norandommap; unsigned int bs_unaligned; + unsigned int fsync_on_close; unsigned int bs[2]; unsigned int min_bs[2]; @@ -775,9 +776,7 @@ extern void close_ioengine(struct thread_data *); #define for_each_td(td, i) \ for ((i) = 0, (td) = &threads[0]; (i) < (int) thread_number; (i)++, (td)++) #define for_each_file(td, f, i) \ - for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->open_files; (i)++, (f)++) -#define for_all_files(td, f, i) \ - for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->files_index; (i)++, (f)++) + for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->nr_files; (i)++, (f)++) #define fio_assert(td, cond) do { \ if (!(cond)) { \