X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os%2Fos-freebsd.h;h=c55a7c315ca2efc2ab609f5d60019da0805f46b3;hp=0cb7ae5e5ca079380e20a514f1f0f1b9df3748c2;hb=35922a2138c5adc91a2b4b185b5d756900bde87d;hpb=ecc314ba7c5f02b7e90ac1dfbce1a74cd4e6d6fe diff --git a/os/os-freebsd.h b/os/os-freebsd.h index 0cb7ae5e..c55a7c31 100644 --- a/os/os-freebsd.h +++ b/os/os-freebsd.h @@ -1,20 +1,28 @@ #ifndef FIO_OS_FREEBSD_H #define FIO_OS_FREEBSD_H +#define FIO_OS os_freebsd + #include #include #include +#include +#include + +#include "../file.h" -#define FIO_HAVE_POSIXAIO #define FIO_HAVE_ODIRECT -#define FIO_HAVE_IOPRIO -#define FIO_HAVE_STRSEP #define FIO_USE_GENERIC_RAND +#define FIO_USE_GENERIC_INIT_RANDOM_STATE #define FIO_HAVE_CHARDEV_SIZE -#define FIO_HAVE_CLOCK_MONOTONIC +#define FIO_HAVE_GETTID #define OS_MAP_ANON MAP_ANON +#define fio_swap16(x) bswap16(x) +#define fio_swap32(x) bswap32(x) +#define fio_swap64(x) bswap64(x) + typedef off_t off64_t; static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) @@ -32,7 +40,7 @@ static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) static inline int chardev_size(struct fio_file *f, unsigned long long *bytes) { - return blockdev_size(f->fd, bytes); + return blockdev_size(f, bytes); } static inline int blockdev_invalidate_cache(struct fio_file *f) @@ -50,6 +58,14 @@ static inline unsigned long long os_phys_mem(void) return mem; } +static inline int gettid(void) +{ + long lwpid; + + thr_self(&lwpid); + return (int) lwpid; +} + #ifdef MADV_FREE #define FIO_MADV_FREE MADV_FREE #endif