Merge branch 'patch-1' of https://github.com/avlasov-mos-de/fio
[fio.git] / os / os-netbsd.h
... / ...
CommitLineData
1#ifndef FIO_OS_NETBSD_H
2#define FIO_OS_NETBSD_H
3
4#define FIO_OS os_netbsd
5
6#include <errno.h>
7#include <lwp.h>
8#include <sys/param.h>
9#include <sys/statvfs.h>
10#include <sys/ioctl.h>
11#include <sys/dkio.h>
12#include <sys/disklabel.h>
13#include <sys/endian.h>
14#include <sys/sysctl.h>
15
16/* XXX hack to avoid confilcts between rbtree.h and <sys/rbtree.h> */
17#undef rb_node
18#undef rb_left
19#undef rb_right
20
21#include "../file.h"
22
23#define FIO_HAVE_ODIRECT
24#define FIO_USE_GENERIC_INIT_RANDOM_STATE
25#define FIO_HAVE_FS_STAT
26#define FIO_HAVE_GETTID
27
28#define OS_MAP_ANON MAP_ANON
29
30#ifndef PTHREAD_STACK_MIN
31#define PTHREAD_STACK_MIN 4096
32#endif
33
34#define fio_swap16(x) bswap16(x)
35#define fio_swap32(x) bswap32(x)
36#define fio_swap64(x) bswap64(x)
37
38static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
39{
40 struct disklabel dl;
41
42 if (!ioctl(f->fd, DIOCGDINFO, &dl)) {
43 *bytes = ((unsigned long long)dl.d_secperunit) * dl.d_secsize;
44 return 0;
45 }
46
47 *bytes = 0;
48 return errno;
49}
50
51static inline int blockdev_invalidate_cache(struct fio_file *f)
52{
53 return ENOTSUP;
54}
55
56static inline unsigned long long os_phys_mem(void)
57{
58 int mib[2] = { CTL_HW, HW_PHYSMEM64 };
59 uint64_t mem;
60 size_t len = sizeof(mem);
61
62 sysctl(mib, 2, &mem, &len, NULL, 0);
63 return mem;
64}
65
66#ifndef CONFIG_HAVE_GETTID
67static inline int gettid(void)
68{
69 return (int) _lwp_self();
70}
71#endif
72
73static inline unsigned long long get_fs_free_size(const char *path)
74{
75 unsigned long long ret;
76 struct statvfs s;
77
78 if (statvfs(path, &s) < 0)
79 return -1ULL;
80
81 ret = s.f_frsize;
82 ret *= (unsigned long long) s.f_bfree;
83 return ret;
84}
85
86#ifdef MADV_FREE
87#define FIO_MADV_FREE MADV_FREE
88#endif
89
90#endif