From 5d3ea96a4ea88203cbdcc536eb538ca07cd771a9 Mon Sep 17 00:00:00 2001 From: Vincent Fu Date: Thu, 23 Dec 2021 16:08:09 -0500 Subject: [PATCH] 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 --- t/io_uring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.25.1