Merge branch 'master' of ssh://router/data/git/fio
[fio.git] / init.c
diff --git a/init.c b/init.c
index b9dee19bb2894a39d0000a56b013279087d4026f..7785e9e42649f9c509e1358c5c159edba43bad2f 100644 (file)
--- a/init.c
+++ b/init.c
@@ -20,7 +20,7 @@
 #include "filehash.h"
 #include "verify.h"
 
-static char fio_version_string[] = "fio 1.36-rc2";
+static char fio_version_string[] = "fio 1.37";
 
 #define FIO_RANDSEED           (0xb1899bedUL)
 
@@ -382,6 +382,17 @@ static int fixup_options(struct thread_data *td)
                                 " that isn't seekable. Pre-read disabled.\n");
        }
 
+#ifndef FIO_HAVE_FDATASYNC
+       if (td->o.fdatasync_blocks) {
+               log_info("fio: this platform does not support fdatasync()"
+                        " falling back to using fsync().  Use the 'fsync'"
+                        " option instead of 'fdatasync' to get rid of"
+                        " this warning\n");
+               td->o.fsync_blocks = td->o.fdatasync_blocks;
+               td->o.fdatasync_blocks = 0;
+       }
+#endif
+
        return 0;
 }
 
@@ -1024,7 +1035,7 @@ static int load_profile(const char *profile)
        int i, in_global = 1;
        char jobname[32];
 
-       dprint(FD_PARSE, "loading profile %s\n", profile);
+       dprint(FD_PARSE, "loading profile '%s'\n", profile);
 
        for (i = 0; i < PROFILE_END; i++) {
                if (!strcmp(profile, profiles[i]))
@@ -1032,7 +1043,7 @@ static int load_profile(const char *profile)
        }
 
        if (i == PROFILE_END) {
-               log_err("fio: unknown profile %s\n", profile);
+               log_err("fio: unknown profile '%s'\n", profile);
                return 1;
        }