The following changes since commit d4fc2f04e5fa3cbad31d04eefa39632a301a3d95: parser: fix overflowing integer type options (2012-09-24 14:32:26 +0200) are available in the git repository at: git://git.kernel.dk/fio.git master Dmitry Monakhov (1): backend: fix data direction flow check backend.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) --- Diff of recent changes: diff --git a/backend.c b/backend.c index 88623be..c31d22a 100644 --- a/backend.c +++ b/backend.c @@ -812,7 +812,7 @@ static int init_io_u(struct thread_data *td) td->orig_buffer_size = (unsigned long long) max_bs * (unsigned long long) max_units; - if ((td->io_ops->flags & FIO_NOIO) || !td_rw(td)) + if ((td->io_ops->flags & FIO_NOIO) || !(td_read(td) || td_write(td))) data_xfer = 0; if (td->o.mem_type == MEM_SHMHUGE || td->o.mem_type == MEM_MMAPHUGE) { -- 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