From fcca4b5848bddb59a38332bf54fcdcc197aa7fae Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Fri, 27 Jul 2007 15:42:00 +0200 Subject: [PATCH] Show md5 as first verify function It's probably the best/fastest choice. Signed-off-by: Jens Axboe --- options.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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, -- 2.25.1