Improve handling of nr_files != open_files
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 465053ac675372e8c9a854af4cb7edba974b1b73..0fbf6ce8b45d2efa68cf4b892b1af71e6ac00462 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -775,9 +775,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)) {                  \