Windows: Update the EULA year and add more examples to the installer
[fio.git] / io_u.c
diff --git a/io_u.c b/io_u.c
index 428d4b7ff42adc54a397cfa6ed810edb0a2850f4..1daaf7bea48407c1e6b21f5143730a7c3d22ff97 100644 (file)
--- a/io_u.c
+++ b/io_u.c
@@ -576,10 +576,6 @@ static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u,
                        }
                }
 
-               if (td->o.verify != VERIFY_NONE)
-                       buflen = (buflen + td->o.verify_interval - 1) &
-                               ~(td->o.verify_interval - 1);
-
                if (!td->o.bs_unaligned && is_power_of_2(minbs))
                        buflen &= ~(minbs - 1);
 
@@ -653,6 +649,9 @@ int io_u_quiesce(struct thread_data *td)
                        completed += ret;
        }
 
+       if (td->flags & TD_F_REGROW_LOGS)
+               regrow_logs(td);
+
        return completed;
 }