From: Vincent Fu Date: Thu, 23 Dec 2021 21:08:09 +0000 (-0500) Subject: t/io_uring: fix help defaults for aio and random_io X-Git-Tag: fio-3.30~105^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=5d3ea96a4ea88203cbdcc536eb538ca07cd771a9;p=fio.git t/io_uring: fix help defaults for aio and random_io The positions of the default values for aio and random_io were swapped in the help message. Put the default values in their proper positions. Signed-off-by: Vincent Fu --- diff --git a/t/io_uring.c b/t/io_uring.c index 755796dd..e8365a79 100644 --- a/t/io_uring.c +++ b/t/io_uring.c @@ -1095,7 +1095,7 @@ static void usage(char *argv, int status) " -a : Use legacy aio, default %d\n", argv, DEPTH, BATCH_SUBMIT, BATCH_COMPLETE, BS, polled, fixedbufs, dma_map, register_files, nthreads, !buffered, do_nop, - stats, runtime == 0 ? "unlimited" : runtime_str, aio, random_io); + stats, runtime == 0 ? "unlimited" : runtime_str, random_io, aio); exit(status); }