Get rid of mixed rw and verify warning
[fio.git] / init.c
diff --git a/init.c b/init.c
index 1cd0cae05e99109ae224c1e079563c0950e642d6..327a3c5edc6a78e171f9a2cdeb50613f75db2d01 100644 (file)
--- a/init.c
+++ b/init.c
@@ -22,7 +22,7 @@
 
 #include "lib/getopt.h"
 
-static char fio_version_string[] = "fio 1.50.2";
+static char fio_version_string[] = "fio 1.51";
 
 #define FIO_RANDSEED           (0xb1899bedUL)
 
@@ -376,12 +376,6 @@ static int fixup_options(struct thread_data *td)
                o->size = -1ULL;
 
        if (o->verify != VERIFY_NONE) {
-               if (td_rw(td)) {
-                       log_info("fio: mixed read/write workload with verify. "
-                               "May not work as expected, unless you "
-                               "pre-populated the file\n");
-                       ret = warnings_fatal;
-               }
                if (td_write(td) && o->do_verify && o->numjobs > 1) {
                        log_info("Multiple writers may overwrite blocks that "
                                "belong to other jobs. This can cause "