Add off64_t to FreeBSD
[fio.git] / os / os-freebsd.h
index 614296a4bc8744e8d4395a8abe9ef40eeb89f8d4..44b60606327ec1d28f1a974047bdac90c8805a1e 100644 (file)
@@ -1,23 +1,17 @@
 #ifndef FIO_OS_FREEBSD_H
 #define FIO_OS_FREEBSD_H
 
+#include <errno.h>
 #include <sys/sysctl.h>
 
 #define FIO_HAVE_POSIXAIO
 #define FIO_HAVE_ODIRECT
+#define FIO_USE_GENERIC_BDEV_SIZE
+#define FIO_USE_GENERIC_RAND
 
 #define OS_MAP_ANON            MAP_ANON
 
-typedef unsigned long os_cpu_mask_t;
-typedef unsigned int os_random_state_t;
-
-/*
- * FIXME
- */
-static inline int blockdev_size(int fd, unsigned long long *bytes)
-{
-       return EINVAL;
-}
+typedef off_t off64_t;
 
 static inline int blockdev_invalidate_cache(int fd)
 {
@@ -34,17 +28,8 @@ static inline unsigned long long os_phys_mem(void)
        return mem;
 }
 
-static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
-{
-       srand(seed);
-}
-
-static inline long os_random_long(os_random_state_t *rs)
-{
-       long val;
-
-       val = rand_r(rs);
-       return val;
-}
+#ifdef MADV_FREE
+#define FIO_MADV_FREE  MADV_FREE
+#endif
 
 #endif