Add real blockdev_size() for FreeBSD
[fio.git] / os / os-freebsd.h
CommitLineData
ebac4655
JA
1#ifndef FIO_OS_FREEBSD_H
2#define FIO_OS_FREEBSD_H
3
690dec6e 4#include <errno.h>
5c4e1dbc 5#include <sys/sysctl.h>
aa5e69b2 6#include <sys/disk.h>
5c4e1dbc 7
ebac4655 8#define FIO_HAVE_POSIXAIO
2c0ecd28 9#define FIO_HAVE_ODIRECT
53531370 10#define FIO_USE_GENERIC_RAND
ebac4655 11
dc873b6f 12#define OS_MAP_ANON MAP_ANON
ebac4655 13
907249cf
JA
14typedef off_t off64_t;
15
aa5e69b2
JA
16static inline int blockdev_size(int fd, unsigned long long *bytes)
17{
18 off_t size;
19
20 if (!ioctl(fd, DIOCGMEDIASIZE, &size)) {
21 *bytes = size;
22 return 0;
23 }
24
25 return errno;
26}
27
e5b401d4
JA
28static inline int blockdev_invalidate_cache(int fd)
29{
30 return EINVAL;
ebac4655
JA
31}
32
32cd46a0
JA
33static inline unsigned long long os_phys_mem(void)
34{
35 int mib[2] = { CTL_HW, HW_PHYSMEM };
36 unsigned long long mem;
37 size_t len = sizeof(mem);
38
39 sysctl(mib, 2, &mem, &len, NULL, 0);
40 return mem;
41}
42
a1c58075
JA
43#ifdef MADV_FREE
44#define FIO_MADV_FREE MADV_FREE
45#endif
46
ebac4655 47#endif