Reduced minimum for option log_gz
authorStephen Bates <stephen.bates@pmcs.com>
Tue, 15 Sep 2015 21:37:53 +0000 (15:37 -0600)
committerStephen Bates <stephen.bates@pmcs.com>
Tue, 15 Sep 2015 21:37:53 +0000 (15:37 -0600)
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.

options.c

index 4798fbfe919d14afedba9e0bb6ece70043c557ba..1868dfdd0115ec9b2fae05a9b794a8f33f8cf5ab 100644 (file)
--- 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,