filesetup: When terse_output is set, The 'laying out' message should not be displayed.
[fio.git] / os / os-linux.h
index 4c145a60e0ced61d13e6c04a5f8083f1947b8383..c0f5327637bae11d572aacd315f5b018f2aa6ec3 100644 (file)
@@ -27,8 +27,9 @@
 #define FIO_HAVE_BLKTRACE
 #define FIO_HAVE_STRSEP
 #define FIO_HAVE_FALLOCATE
+#define FIO_HAVE_POSIXAIO_FSYNC
 
-#define OS_MAP_ANON            (MAP_ANONYMOUS)
+#define OS_MAP_ANON            MAP_ANONYMOUS
 
 #ifndef CLOCK_MONOTONIC
 #define CLOCK_MONOTONIC 1
@@ -115,7 +116,7 @@ struct async_head_user;
 static inline struct syslet_uatom *
 async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
 {
-       return (void *) syscall(__NR_async_exec, atom, ahu);
+       return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
 }
 
 static inline long
@@ -229,6 +230,10 @@ static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
        return 0;
 }
 
+#ifdef O_NOATIME
 #define FIO_O_NOATIME  O_NOATIME
+#else
+#define FIO_O_NOATIME  0
+#endif
 
 #endif