The following changes since commit ed7f3a07363d62c6d6147b0c568f87f079d241a8: stat: make add lat percentile functions inline (2021-11-25 09:03:10 -0700) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to fd1d8e0ab3dc852193037a3acebcf8b8bdbcd9c5: filesetup: create zbd_info before jumping to done label (2021-12-02 17:54:15 -0700) ---------------------------------------------------------------- Niklas Cassel (1): filesetup: create zbd_info before jumping to done label filesetup.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- Diff of recent changes: diff --git a/filesetup.c b/filesetup.c index 228e4fff..fb556d84 100644 --- a/filesetup.c +++ b/filesetup.c @@ -1119,9 +1119,6 @@ int setup_files(struct thread_data *td) if (err) goto err_out; - if (o->read_iolog_file) - goto done; - if (td->o.zone_mode == ZONE_MODE_ZBD) { err = zbd_init_files(td); if (err) @@ -1129,6 +1126,9 @@ int setup_files(struct thread_data *td) } zbd_recalc_options_with_zone_granularity(td); + if (o->read_iolog_file) + goto done; + /* * check sizes. if the files/devices do not exist and the size * isn't passed to fio, abort.