X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=os%2Fos-freebsd.h;h=2a7b7b327a83f6fb50eb7f1839108ca108b9e1ef;hp=1f114f8c49b38d10d53074ee3e183703d00ea30a;hb=e65a950ab73d7d91f267ad7f7b084d94e266fcb0;hpb=d9a7ba88af39b1047c9f8c077280932cd12cb58e diff --git a/os/os-freebsd.h b/os/os-freebsd.h index 1f114f8c..2a7b7b32 100644 --- a/os/os-freebsd.h +++ b/os/os-freebsd.h @@ -1,22 +1,38 @@ #ifndef FIO_OS_FREEBSD_H #define FIO_OS_FREEBSD_H +#define FIO_OS os_freebsd + #include #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_GETTID #define FIO_HAVE_CLOCK_MONOTONIC #define OS_MAP_ANON MAP_ANON +#if BYTE_ORDER == LITTLE_ENDIAN +#define FIO_LITTLE_ENDIAN +#else +#define FIO_BIG_ENDIAN +#endif + +#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) @@ -34,7 +50,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) @@ -52,6 +68,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