From: Peter Oberparleiter <oberpar@xxxxxxxxxxxxxxxxxx> Allow 0 as value for option compress_percentage which can be useful for certain deduplication and compression based storage back ends. Signed-off-by: Christian Ehrhardt <ehrhardt@xxxxxxxxxxxxxxxxxx> --- [diffstat] options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/options.c +++ b/options.c @@ -3072,7 +3072,7 @@ struct fio_option fio_options[FIO_MAX_OP .type = FIO_OPT_INT, .off1 = td_var_offset(compress_percentage), .maxval = 100, - .minval = 1, + .minval = 0, .help = "How compressible the buffer is (approximately)", .interval = 5, .category = FIO_OPT_C_IO, -- To unsubscribe from this list: send the line "unsubscribe fio" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html