Merge branch 'msys2' of https://github.com/sitsofe/fio into master
[fio.git] / os / os-dragonfly.h
... / ...
CommitLineData
1#ifndef FIO_OS_DRAGONFLY_H
2#define FIO_OS_DRAGONFLY_H
3
4#define FIO_OS os_dragonfly
5
6#include <errno.h>
7#include <unistd.h>
8#include <sys/endian.h>
9#include <sys/param.h>
10#include <sys/sysctl.h>
11#include <sys/statvfs.h>
12#include <sys/diskslice.h>
13#include <sys/usched.h>
14#include <sys/resource.h>
15
16/* API changed during "5.3 development" */
17#if __DragonFly_version < 500302
18#include <sys/ioctl_compat.h>
19#define DAIOCTRIM IOCTLTRIM
20#else
21#include <bus/cam/scsi/scsi_daio.h>
22#endif
23
24#include "../file.h"
25#include "../lib/types.h"
26
27#define FIO_HAVE_ODIRECT
28#define FIO_USE_GENERIC_INIT_RANDOM_STATE
29#define FIO_HAVE_FS_STAT
30#define FIO_HAVE_TRIM
31#define FIO_HAVE_CHARDEV_SIZE
32#define FIO_HAVE_GETTID
33#define FIO_HAVE_CPU_AFFINITY
34#define FIO_HAVE_IOPRIO
35#define FIO_HAVE_SHM_ATTACH_REMOVED
36
37#define OS_MAP_ANON MAP_ANON
38
39#ifndef PTHREAD_STACK_MIN
40#define PTHREAD_STACK_MIN 4096
41#endif
42
43#define fio_swap16(x) bswap16(x)
44#define fio_swap32(x) bswap32(x)
45#define fio_swap64(x) bswap64(x)
46
47/* This is supposed to equal (sizeof(cpumask_t)*8) */
48#define FIO_MAX_CPUS SMP_MAXCPU
49
50typedef cpumask_t os_cpu_mask_t;
51
52/*
53 * These macros are copied from sys/cpu/x86_64/include/types.h.
54 * It's okay to copy from arch dependent header because x86_64 is the only
55 * supported arch, and no other arch is going to be supported any time soon.
56 *
57 * These are supposed to be able to be included from userspace by defining
58 * _KERNEL_STRUCTURES, however this scheme is badly broken that enabling it
59 * causes compile-time conflicts with other headers. Although the current
60 * upstream code no longer requires _KERNEL_STRUCTURES, they should be kept
61 * here for compatibility with older versions.
62 */
63#ifndef CPUMASK_SIMPLE
64#define CPUMASK_SIMPLE(cpu) ((uint64_t)1 << (cpu))
65#define CPUMASK_TESTBIT(val, i) ((val).ary[((i) >> 6) & 3] & \
66 CPUMASK_SIMPLE((i) & 63))
67#define CPUMASK_ORBIT(mask, i) ((mask).ary[((i) >> 6) & 3] |= \
68 CPUMASK_SIMPLE((i) & 63))
69#define CPUMASK_NANDBIT(mask, i) ((mask).ary[((i) >> 6) & 3] &= \
70 ~CPUMASK_SIMPLE((i) & 63))
71#define CPUMASK_ASSZERO(mask) do { \
72 (mask).ary[0] = 0; \
73 (mask).ary[1] = 0; \
74 (mask).ary[2] = 0; \
75 (mask).ary[3] = 0; \
76 } while(0)
77#endif
78
79/*
80 * Define USCHED_GET_CPUMASK as the macro didn't exist until release 4.5.
81 * usched_set(2) returns EINVAL if the kernel doesn't support it.
82 *
83 * Also note usched_set(2) works only for the current thread regardless of
84 * the command type. It doesn't work against another thread regardless of
85 * a caller's privilege. A caller would generally specify 0 for pid for the
86 * current thread though that's the only choice. See BUGS in usched_set(2).
87 */
88#ifndef USCHED_GET_CPUMASK
89#define USCHED_GET_CPUMASK 5
90#endif
91
92/* No CPU_COUNT(), but use the default function defined in os/os.h */
93#define fio_cpu_count(mask) CPU_COUNT((mask))
94
95static inline int fio_cpuset_init(os_cpu_mask_t *mask)
96{
97 CPUMASK_ASSZERO(*mask);
98 return 0;
99}
100
101static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
102{
103 return 0;
104}
105
106static inline void fio_cpu_clear(os_cpu_mask_t *mask, int cpu)
107{
108 CPUMASK_NANDBIT(*mask, cpu);
109}
110
111static inline void fio_cpu_set(os_cpu_mask_t *mask, int cpu)
112{
113 CPUMASK_ORBIT(*mask, cpu);
114}
115
116static inline bool fio_cpu_isset(os_cpu_mask_t *mask, int cpu)
117{
118 return CPUMASK_TESTBIT(*mask, cpu) != 0;
119}
120
121static inline int fio_setaffinity(int pid, os_cpu_mask_t mask)
122{
123 int i, firstcall = 1;
124
125 /* 0 for the current thread, see BUGS in usched_set(2) */
126 pid = 0;
127
128 for (i = 0; i < FIO_MAX_CPUS; i++) {
129 if (!CPUMASK_TESTBIT(mask, i))
130 continue;
131 if (firstcall) {
132 if (usched_set(pid, USCHED_SET_CPU, &i, sizeof(int)))
133 return -1;
134 firstcall = 0;
135 } else {
136 if (usched_set(pid, USCHED_ADD_CPU, &i, sizeof(int)))
137 return -1;
138 }
139 }
140
141 return 0;
142}
143
144static inline int fio_getaffinity(int pid, os_cpu_mask_t *mask)
145{
146 /* 0 for the current thread, see BUGS in usched_set(2) */
147 pid = 0;
148
149 if (usched_set(pid, USCHED_GET_CPUMASK, mask, sizeof(*mask)))
150 return -1;
151
152 return 0;
153}
154
155/* fio code is Linux based, so rename macros to Linux style */
156#define IOPRIO_WHO_PROCESS PRIO_PROCESS
157#define IOPRIO_WHO_PGRP PRIO_PGRP
158#define IOPRIO_WHO_USER PRIO_USER
159
160#define IOPRIO_MIN_PRIO 1 /* lowest priority */
161#define IOPRIO_MAX_PRIO 10 /* highest priority */
162
163/*
164 * Prototypes declared in sys/sys/resource.h are preventing from defining
165 * ioprio_set() with 4 arguments, so define fio's ioprio_set() as a macro.
166 * Note that there is no idea of class within ioprio_set(2) unlike Linux.
167 */
168#define ioprio_set(which, who, ioprio_class, ioprio) \
169 ioprio_set(which, who, ioprio)
170
171static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
172{
173 struct partinfo pi;
174
175 if (!ioctl(f->fd, DIOCGPART, &pi)) {
176 *bytes = (unsigned long long) pi.media_size;
177 return 0;
178 }
179
180 *bytes = 0;
181 return errno;
182}
183
184static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
185{
186 return blockdev_size(f, bytes);
187}
188
189static inline int blockdev_invalidate_cache(struct fio_file *f)
190{
191 return ENOTSUP;
192}
193
194static inline unsigned long long os_phys_mem(void)
195{
196 int mib[2] = { CTL_HW, HW_PHYSMEM };
197 uint64_t mem;
198 size_t len = sizeof(mem);
199
200 sysctl(mib, 2, &mem, &len, NULL, 0);
201 return mem;
202}
203
204#ifndef CONFIG_HAVE_GETTID
205static inline int gettid(void)
206{
207 return (int) lwp_gettid();
208}
209#endif
210
211static inline unsigned long long get_fs_free_size(const char *path)
212{
213 unsigned long long ret;
214 struct statvfs s;
215
216 if (statvfs(path, &s) < 0)
217 return -1ULL;
218
219 ret = s.f_frsize;
220 ret *= (unsigned long long) s.f_bfree;
221 return ret;
222}
223
224static inline int os_trim(struct fio_file *f, unsigned long long start,
225 unsigned long long len)
226{
227 off_t range[2];
228
229 range[0] = start;
230 range[1] = len;
231
232 if (!ioctl(f->fd, DAIOCTRIM, range))
233 return 0;
234
235 return errno;
236}
237
238#ifdef MADV_FREE
239#define FIO_MADV_FREE MADV_FREE
240#endif
241
242static inline int shm_attach_to_open_removed(void)
243{
244 int x;
245 size_t len = sizeof(x);
246
247 if (sysctlbyname("kern.ipc.shm_allow_removed", &x, &len, NULL, 0) < 0)
248 return 0;
249
250 return x > 0 ? 1 : 0;
251}
252
253#endif