blktrace: use for_each_file() instead of open coding the loop
[fio.git] / blktrace.c
index e195f7f1fdbf4dea9eff8b252b606273431027a1..dea1be4fad9f0b7594cb755eaafc9d5990d0dcf9 100644 (file)
@@ -418,10 +418,8 @@ int load_blktrace(struct thread_data *td, const char *filename)
                }
        } while (1);
 
                }
        } while (1);
 
-       for (i = 0; i < td->files_index; i++) {
-               f= td->files[i];
+       for_each_file(td, f, i)
                trace_add_open_close_event(td, f->fileno, FIO_LOG_CLOSE_FILE);
                trace_add_open_close_event(td, f->fileno, FIO_LOG_CLOSE_FILE);
-       }
 
        fifo_free(fifo);
        close(fd);
 
        fifo_free(fifo);
        close(fd);