From 3482263a88c18df1f2d475f426d947e266d22e10 Mon Sep 17 00:00:00 2001 From: Omar Sandoval Date: Wed, 1 Jun 2016 00:04:48 -0700 Subject: [PATCH 1/1] Fix iodepth_batch=0 The man page claims that iodepth_batch=0 falls back to whatever was specified for iodepth, but the enforced minimum of 1 means that 0 is not actually valid. Fixes: a2e6f8ac56a9 ("Make iodepth_batch=1 by default") Signed-off-by: Omar Sandoval Signed-off-by: Jens Axboe --- options.c | 1 - 1 file changed, 1 deletion(-) diff --git a/options.c b/options.c index 1b6ce25c..7a22fe4d 100644 --- a/options.c +++ b/options.c @@ -1678,7 +1678,6 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .help = "Number of IO buffers to submit in one go", .parent = "iodepth", .hide = 1, - .minval = 1, .interval = 1, .def = "1", .category = FIO_OPT_C_IO, -- 2.25.1