Obscure file randommap fix
[fio.git] / fio.h
diff --git a/fio.h b/fio.h
index 3e8b2d2a84b62d119279a3c3501afcaecd441c8f..0fbf6ce8b45d2efa68cf4b892b1af71e6ac00462 100644 (file)
--- a/fio.h
+++ b/fio.h
@@ -323,6 +323,7 @@ struct thread_data {
        int groupid;
        struct thread_stat ts;
        struct fio_file *files;
+       unsigned int files_index;
        unsigned int nr_files;
        unsigned int nr_open_files;
        unsigned int nr_normal_files;
@@ -774,7 +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)++)
+       for ((i) = 0, (f) = &(td)->files[0]; (i) < (td)->nr_files; (i)++, (f)++)
 
 #define fio_assert(td, cond)   do {    \
        if (!(cond)) {                  \