From: Jens Axboe Date: Thu, 26 Jul 2007 11:13:49 +0000 (+0200) Subject: Missed FIO_UNIDIR io ops flags on net engine X-Git-Tag: fio-1.17~48 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=dc372f07b450e3b4c758d7a7fdaaca6c21843398;hp=b67740d3620aee7c753987cdcf750fa28d871fcf Missed FIO_UNIDIR io ops flags on net engine Inadvertenly only set it on the netsplice engine, not net. Signed-off-by: Jens Axboe --- diff --git a/engines/net.c b/engines/net.c index 0cda953c..0adc0064 100644 --- a/engines/net.c +++ b/engines/net.c @@ -461,7 +461,7 @@ static struct ioengine_ops ioengine_rw = { .cleanup = fio_netio_cleanup, .open_file = fio_netio_open_file, .close_file = generic_close_file, - .flags = FIO_SYNCIO | FIO_DISKLESSIO, + .flags = FIO_SYNCIO | FIO_DISKLESSIO | FIO_UNIDIR, }; static struct ioengine_ops ioengine_splice = {