Add directio support to Solaris
[fio.git] / os / os-solaris.h
index ae905169cc720a33b90c4f2a47abfd8a045f59dc..866e0c0e17b7dd5eefa741da991ca619dae69303 100644 (file)
@@ -1,15 +1,13 @@
 #ifndef FIO_OS_SOLARIS_H
 #define FIO_OS_SOLARIS_H
 
-#undef FIO_HAVE_LIBAIO
+#include <sys/types.h>
+#include <sys/fcntl.h>
+
 #define FIO_HAVE_POSIXAIO
 #define FIO_HAVE_SOLARISAIO
-#undef FIO_HAVE_FADVISE
-#undef FIO_HAVE_CPU_AFFINITY
-#undef FIO_HAVE_DISK_UTIL
-#undef FIO_HAVE_SGIO
-#undef FIO_HAVE_ODIRECT
 #define FIO_HAVE_FALLOCATE
+#define FIO_HAVE_POSIXAIO_FSYNC
 
 #define OS_MAP_ANON            (MAP_ANON)
 
@@ -56,4 +54,14 @@ static inline long os_random_long(os_random_state_t *rs)
        return val;
 }
 
+#define FIO_OS_DIRECTIO
+extern int directio(int, int);
+static inline int fio_set_odirect(int fd)
+{
+       if (directio(fd, DIRECTIO_ON) < 0)
+               return errno;
+
+       return 0;
+}
+
 #endif