Show md5 as first verify function
authorJens Axboe <jens.axboe@oracle.com>
Fri, 27 Jul 2007 13:42:00 +0000 (15:42 +0200)
committerJens Axboe <jens.axboe@oracle.com>
Fri, 27 Jul 2007 13:42:00 +0000 (15:42 +0200)
It's probably the best/fastest choice.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
options.c

index 8c27d46183379cd0f1fb9e5691f7d48436525fb8..3bf0d24728a276c09557d9d7f21e4b0d4ccfc1d0 100644 (file)
--- 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,