From: Jens Axboe Date: Tue, 25 Oct 2011 20:43:36 +0000 (+0200) Subject: Make verify_dump off by default X-Git-Tag: fio-1.99.10~2 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=ef71e317e6e1e96a4776610035cd67711603e1f8 Make verify_dump off by default It's a change of behaviour, so it should be off by default. Signed-off-by: Jens Axboe --- diff --git a/HOWTO b/HOWTO index ef8f9599..41edcf1a 100644 --- a/HOWTO +++ b/HOWTO @@ -981,7 +981,7 @@ verify_fatal=bool Normally fio will keep checking the entire contents verify_dump=bool If set, dump the contents of both the original data block and the data block we read off disk to files. This allows later analysis to inspect just what kind of data - corruption occurred. On by default. + corruption occurred. Off by default. verify_async=int Fio will normally verify IO inline from the submitting thread. This option takes an integer describing how many diff --git a/fio.1 b/fio.1 index 3b111225..aae76572 100644 --- a/fio.1 +++ b/fio.1 @@ -780,7 +780,7 @@ false. .BI verify_dump \fR=\fPbool If set, dump the contents of both the original data block and the data block we read off disk to files. This allows later analysis to inspect just what kind of -data corruption occurred. On by default. +data corruption occurred. Off by default. .TP .BI verify_async \fR=\fPint Fio will normally verify IO inline from the submitting thread. This option diff --git a/options.c b/options.c index 4207537e..bb46dc9d 100644 --- a/options.c +++ b/options.c @@ -1581,7 +1581,7 @@ static struct fio_option options[FIO_MAX_OPTS] = { .name = "verify_dump", .type = FIO_OPT_BOOL, .off1 = td_var_offset(verify_dump), - .def = "1", + .def = "0", .help = "Dump contents of good and bad blocks on failure", .parent = "verify", },