The following changes since commit 0127c57b82cfef26149c04b1d785897a68a6dffa: smalloc: get rid of global lock (2015-11-09 19:38:15 -0700) are available in the git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to ced5db250347606cbd966d28cd193cc9f0880dff: Fix verification error with bsrange and split read/write phase (2015-11-10 18:13:40 -0700) ---------------------------------------------------------------- Jens Axboe (1): Fix verification error with bsrange and split read/write phase io_u.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- Diff of recent changes: diff --git a/io_u.c b/io_u.c index 6dda579..6b6b47d 100644 --- a/io_u.c +++ b/io_u.c @@ -488,7 +488,7 @@ static unsigned int __get_next_buflen(struct thread_data *td, struct io_u *io_u, } } - if (td->o.do_verify && td->o.verify != VERIFY_NONE) + if (td->o.verify != VERIFY_NONE) buflen = (buflen + td->o.verify_interval - 1) & ~(td->o.verify_interval - 1); -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html