From: Stephen Bates Date: Tue, 15 Sep 2015 21:37:53 +0000 (-0600) Subject: Reduced minimum for option log_gz X-Git-Tag: fio-2.2.11~33 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=9919b27b89410c4d3910b1e0515f94bd79d67061 Reduced minimum for option log_gz Reduced the permissable minimium for log_sz from 32MB to 1KB to avoid a latency log issue associated with the reallocation of the buffer logs. --- diff --git a/options.c b/options.c index 4798fbfe..1868dfdd 100644 --- a/options.c +++ b/options.c @@ -3177,7 +3177,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .type = FIO_OPT_INT, .off1 = td_var_offset(log_gz), .help = "Log in compressed chunks of this size", - .minval = 32 * 1024 * 1024ULL, + .minval = 1024ULL, .maxval = 512 * 1024 * 1024ULL, .category = FIO_OPT_C_LOG, .group = FIO_OPT_G_INVALID,