options: move ioprio/ioprio_class into thread_options space
[fio.git] / os / os-linux.h
CommitLineData
ebac4655
JA
1#ifndef FIO_OS_LINUX_H
2#define FIO_OS_LINUX_H
3
cca84643
JA
4#define FIO_OS os_linux
5
ebac4655 6#include <sys/ioctl.h>
8756e4d4 7#include <sys/uio.h>
3c39a379 8#include <sys/syscall.h>
2e3bd4c2 9#include <sys/vfs.h>
3c39a379 10#include <unistd.h>
97fbdfa1 11#include <fcntl.h>
3c2d93ed 12#include <errno.h>
d09913c2 13#include <sched.h>
ea421790 14#include <linux/unistd.h>
07e5b264
JA
15#include <linux/raw.h>
16#include <linux/major.h>
610a730c 17#include <endian.h>
ebac4655 18
f3de88a7 19#include "indirect.h"
79a43187 20#include "binject.h"
e2e58886 21#include "../file.h"
f3de88a7 22
ebac4655
JA
23#define FIO_HAVE_LIBAIO
24#define FIO_HAVE_POSIXAIO
25#define FIO_HAVE_FADVISE
26#define FIO_HAVE_CPU_AFFINITY
27#define FIO_HAVE_DISK_UTIL
28#define FIO_HAVE_SGIO
ba4f8923 29#define FIO_HAVE_IOPRIO
8756e4d4 30#define FIO_HAVE_SPLICE
22f78b32 31#define FIO_HAVE_IOSCHED_SWITCH
2c0ecd28 32#define FIO_HAVE_ODIRECT
74b025b0 33#define FIO_HAVE_HUGETLB
07e5b264 34#define FIO_HAVE_RAWBIND
5e62c22a 35#define FIO_HAVE_BLKTRACE
5921e80c 36#define FIO_HAVE_STRSEP
207cb0f0 37#define FIO_HAVE_POSIXAIO_FSYNC
f356d01d 38#define FIO_HAVE_PSHARED_MUTEX
eb7ccf38 39#define FIO_HAVE_CL_SIZE
a696fa2a 40#define FIO_HAVE_CGROUPS
c36d16f5 41#define FIO_HAVE_FDATASYNC
2e3bd4c2 42#define FIO_HAVE_FS_STAT
a5f3027c 43#define FIO_HAVE_TRIM
79a43187 44#define FIO_HAVE_BINJECT
ecc314ba 45#define FIO_HAVE_CLOCK_MONOTONIC
47f767c1 46#define FIO_HAVE_GETTID
93bcfd20 47#define FIO_USE_GENERIC_INIT_RANDOM_STATE
b6959b55 48
804bb9a1
JA
49/*
50 * Can only enable this for newer glibcs, or the header and defines are
51 * missing
52 */
52ad4b94
JA
53#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 6
54#define FIO_HAVE_FALLOCATE
55#endif
78b269e3 56#if __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 8
804bb9a1
JA
57#define FIO_HAVE_LINUX_FALLOCATE
58#endif
59
093729f7
JA
60#ifdef SYNC_FILE_RANGE_WAIT_BEFORE
61#define FIO_HAVE_SYNC_FILE_RANGE
62#endif
63
dc873b6f 64#define OS_MAP_ANON MAP_ANONYMOUS
ebac4655 65
4d8947de
SL
66#ifndef CLOCK_MONOTONIC
67#define CLOCK_MONOTONIC 1
68#endif
69
ebac4655 70typedef cpu_set_t os_cpu_mask_t;
4e78e405 71
6dfd46b9 72typedef struct drand48_data os_random_state_t;
ebac4655
JA
73
74/*
75 * we want fadvise64 really, but it's so tangled... later
76 */
4d8947de 77#ifdef FIO_HAVE_FADVISE
ebac4655
JA
78#define fadvise(fd, off, len, advice) \
79 posix_fadvise((fd), (off_t)(off), (len), (advice))
4d8947de 80#endif
ebac4655 81
c8f025f8
JA
82/*
83 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
84 * the affinity helpers to work.
85 */
86#ifndef GLIBC_2_3_2
e8462bd8
JA
87#define fio_setaffinity(pid, cpumask) \
88 sched_setaffinity((pid), sizeof(cpumask), &(cpumask))
ebac4655
JA
89#define fio_getaffinity(pid, ptr) \
90 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
c8f025f8 91#else
e8462bd8
JA
92#define fio_setaffinity(pid, cpumask) \
93 sched_setaffinity((pid), &(cpumask))
c8f025f8
JA
94#define fio_getaffinity(pid, ptr) \
95 sched_getaffinity((pid), (ptr))
96#endif
be4ecfdf 97
1f4c0a4f
JA
98#define fio_cpu_clear(mask, cpu) (void) CPU_CLR((cpu), (mask))
99#define fio_cpu_set(mask, cpu) (void) CPU_SET((cpu), (mask))
d2ce18b5
JA
100
101static inline int fio_cpuset_init(os_cpu_mask_t *mask)
102{
103 CPU_ZERO(mask);
104 return 0;
105}
106
107static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
108{
109 return 0;
110}
6d459ee7
JA
111
112#define FIO_MAX_CPUS CPU_SETSIZE
4d8947de 113
28727df7
JA
114enum {
115 IOPRIO_CLASS_NONE,
116 IOPRIO_CLASS_RT,
117 IOPRIO_CLASS_BE,
118 IOPRIO_CLASS_IDLE,
119};
120
121enum {
122 IOPRIO_WHO_PROCESS = 1,
123 IOPRIO_WHO_PGRP,
124 IOPRIO_WHO_USER,
125};
126
127#define IOPRIO_BITS 16
128#define IOPRIO_CLASS_SHIFT 13
129
130static inline int ioprio_set(int which, int who, int ioprio_class, int ioprio)
ebac4655 131{
28727df7
JA
132 /*
133 * If no class is set, assume BE
134 */
135 if (!ioprio_class)
136 ioprio_class = IOPRIO_CLASS_BE;
137
138 ioprio |= ioprio_class << IOPRIO_CLASS_SHIFT;
ebac4655
JA
139 return syscall(__NR_ioprio_set, which, who, ioprio);
140}
141
47f767c1
JA
142static inline int gettid(void)
143{
144 return syscall(__NR_gettid);
145}
146
97fbdfa1
JA
147/*
148 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
149 * aren't either.
150 */
151#ifndef SPLICE_F_MOVE
152#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
153#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
154 /* we may still block on the fd we splice */
155 /* from/to, of course */
156#define SPLICE_F_MORE (0x04) /* expect more data */
157#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
8756e4d4
JA
158
159static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
495ee9b6 160 size_t len, unsigned int flags)
8756e4d4 161{
97fbdfa1 162 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
8756e4d4
JA
163}
164
165static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
166{
97fbdfa1 167 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
8756e4d4
JA
168}
169
170static inline int vmsplice(int fd, const struct iovec *iov,
171 unsigned long nr_segs, unsigned int flags)
172{
97fbdfa1 173 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
8756e4d4 174}
97fbdfa1 175#endif
8756e4d4 176
3feedc60
JA
177#define SPLICE_DEF_SIZE (64*1024)
178
b6959b55 179#ifdef FIO_HAVE_SYSLET
bf0dc8fa
IM
180
181struct syslet_uatom;
182struct async_head_user;
183
a4f4fdd7
JA
184/*
185 * syslet stuff
186 */
bf0dc8fa
IM
187static inline struct syslet_uatom *
188async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
a4f4fdd7 189{
2b52511f 190 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
a4f4fdd7
JA
191}
192
bf0dc8fa
IM
193static inline long
194async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
195 struct async_head_user *ahu)
a4f4fdd7 196{
bf0dc8fa
IM
197 return syscall(__NR_async_wait, min_wait_events,
198 user_ring_idx, ahu);
a4f4fdd7
JA
199}
200
7756b0d0 201static inline long async_thread(void *event, struct async_head_user *ahu)
a4f4fdd7 202{
7756b0d0 203 return syscall(__NR_async_thread, event, ahu);
a4f4fdd7
JA
204}
205
206static inline long umem_add(unsigned long *uptr, unsigned long inc)
207{
208 return syscall(__NR_umem_add, uptr, inc);
209}
b6959b55 210#endif /* FIO_HAVE_SYSLET */
a4f4fdd7 211
ebac4655
JA
212#ifndef BLKGETSIZE64
213#define BLKGETSIZE64 _IOR(0x12,114,size_t)
214#endif
215
e5b401d4
JA
216#ifndef BLKFLSBUF
217#define BLKFLSBUF _IO(0x12,97)
218#endif
219
a5f3027c
JA
220#ifndef BLKDISCARD
221#define BLKDISCARD _IO(0x12,119)
222#endif
223
e2e58886 224static inline int blockdev_invalidate_cache(struct fio_file *f)
e5b401d4 225{
ecc314ba 226 return ioctl(f->fd, BLKFLSBUF);
e5b401d4
JA
227}
228
ecc314ba 229static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
ebac4655 230{
ecc314ba 231 if (!ioctl(f->fd, BLKGETSIZE64, bytes))
ebac4655
JA
232 return 0;
233
234 return errno;
235}
236
32cd46a0
JA
237static inline unsigned long long os_phys_mem(void)
238{
239 long pagesize, pages;
240
241 pagesize = sysconf(_SC_PAGESIZE);
242 pages = sysconf(_SC_PHYS_PAGES);
243 if (pages == -1 || pagesize == -1)
244 return 0;
245
246 return (unsigned long long) pages * (unsigned long long) pagesize;
247}
248
6dfd46b9
JA
249static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
250{
251 srand48_r(seed, rs);
252}
253
254static inline long os_random_long(os_random_state_t *rs)
255{
256 long val;
257
258 lrand48_r(rs, &val);
259 return val;
260}
261
8cc7afa9 262static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
07e5b264
JA
263{
264 struct raw_config_request rq;
265 int fd;
266
267 if (major(dev) != RAW_MAJOR)
8cc7afa9 268 return 1;
07e5b264
JA
269
270 /*
271 * we should be able to find /dev/rawctl or /dev/raw/rawctl
272 */
273 fd = open("/dev/rawctl", O_RDONLY);
274 if (fd < 0) {
275 fd = open("/dev/raw/rawctl", O_RDONLY);
276 if (fd < 0)
8cc7afa9 277 return 1;
07e5b264
JA
278 }
279
280 rq.raw_minor = minor(dev);
281 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
282 close(fd);
8cc7afa9 283 return 1;
07e5b264
JA
284 }
285
286 close(fd);
287 *majdev = rq.block_major;
288 *mindev = rq.block_minor;
8cc7afa9 289 return 0;
07e5b264
JA
290}
291
5b6f5c66 292#ifdef O_NOATIME
5921e80c 293#define FIO_O_NOATIME O_NOATIME
5b6f5c66
JA
294#else
295#define FIO_O_NOATIME 0
296#endif
5921e80c 297
a1c58075
JA
298#ifdef MADV_REMOVE
299#define FIO_MADV_FREE MADV_REMOVE
300#endif
301
610a730c
JA
302#if __BYTE_ORDER == __LITTLE_ENDIAN
303#define FIO_LITTLE_ENDIAN
304#elif __BYTE_ORDER == __BIG_ENDIAN
305#define FIO_BIG_ENDIAN
306#else
307#error "Unknown endianness"
308#endif
309
ff245192
JA
310#define fio_swap16(x) __bswap_16(x)
311#define fio_swap32(x) __bswap_32(x)
312#define fio_swap64(x) __bswap_64(x)
313
eb7ccf38
JA
314#define CACHE_LINE_FILE \
315 "/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size"
316
317static inline int arch_cache_line_size(void)
318{
319 char size[32];
320 int fd, ret;
321
322 fd = open(CACHE_LINE_FILE, O_RDONLY);
323 if (fd < 0)
324 return -1;
325
326 ret = read(fd, size, sizeof(size));
ec76f15a
JA
327
328 close(fd);
329
eb7ccf38
JA
330 if (ret <= 0)
331 return -1;
ec76f15a
JA
332 else
333 return atoi(size);
eb7ccf38
JA
334}
335
2e3bd4c2
JA
336static inline unsigned long long get_fs_size(const char *path)
337{
338 unsigned long long ret;
339 struct statfs s;
340
341 if (statfs(path, &s) < 0)
342 return -1ULL;
343
344 ret = s.f_bsize;
345 ret *= (unsigned long long) s.f_bfree;
346 return ret;
347}
348
a5f3027c
JA
349static inline int os_trim(int fd, unsigned long long start,
350 unsigned long long len)
351{
352 uint64_t range[2];
353
354 range[0] = start;
355 range[1] = len;
356
357 if (!ioctl(fd, BLKDISCARD, range))
358 return 0;
359
360 return errno;
361}
362
ebac4655 363#endif