From: Jens Axboe Date: Fri, 27 Jul 2007 13:42:00 +0000 (+0200) Subject: Show md5 as first verify function X-Git-Tag: fio-1.17~35 X-Git-Url: https://git.kernel.dk/?p=fio.git;a=commitdiff_plain;h=fcca4b5848bddb59a38332bf54fcdcc197aa7fae Show md5 as first verify function It's probably the best/fastest choice. Signed-off-by: Jens Axboe --- diff --git a/options.c b/options.c index 8c27d461..3bf0d247 100644 --- a/options.c +++ b/options.c @@ -569,6 +569,10 @@ static struct fio_option options[] = { .oval = VERIFY_NONE, .help = "Don't do IO verification", }, + { .ival = "md5", + .oval = VERIFY_MD5, + .help = "Use md5 checksums for verification", + }, { .ival = "crc64", .oval = VERIFY_CRC64, .help = "Use crc64 checksums for verification", @@ -585,10 +589,6 @@ static struct fio_option options[] = { .oval = VERIFY_CRC7, .help = "Use crc7 checksums for verification", }, - { .ival = "md5", - .oval = VERIFY_MD5, - .help = "Use md5 checksums for verification", - }, { .ival = "null", .oval = VERIFY_NULL,