Fixup handling of pthread_mutex*() error returns
[fio.git] / os / os-linux.h
CommitLineData
ebac4655
JA
1#ifndef FIO_OS_LINUX_H
2#define FIO_OS_LINUX_H
3
4#include <sys/ioctl.h>
8756e4d4 5#include <sys/uio.h>
3c39a379
JA
6#include <sys/syscall.h>
7#include <unistd.h>
97fbdfa1 8#include <fcntl.h>
ea421790 9#include <linux/unistd.h>
07e5b264
JA
10#include <linux/raw.h>
11#include <linux/major.h>
ebac4655 12
f3de88a7
JA
13#include "indirect.h"
14
ebac4655
JA
15#define FIO_HAVE_LIBAIO
16#define FIO_HAVE_POSIXAIO
17#define FIO_HAVE_FADVISE
18#define FIO_HAVE_CPU_AFFINITY
19#define FIO_HAVE_DISK_UTIL
20#define FIO_HAVE_SGIO
ba4f8923 21#define FIO_HAVE_IOPRIO
8756e4d4 22#define FIO_HAVE_SPLICE
22f78b32 23#define FIO_HAVE_IOSCHED_SWITCH
2c0ecd28 24#define FIO_HAVE_ODIRECT
74b025b0 25#define FIO_HAVE_HUGETLB
07e5b264 26#define FIO_HAVE_RAWBIND
5e62c22a 27#define FIO_HAVE_BLKTRACE
5921e80c 28#define FIO_HAVE_STRSEP
fffca02d 29#define FIO_HAVE_FALLOCATE
207cb0f0 30#define FIO_HAVE_POSIXAIO_FSYNC
b6959b55 31
dc873b6f 32#define OS_MAP_ANON MAP_ANONYMOUS
ebac4655 33
4d8947de
SL
34#ifndef CLOCK_MONOTONIC
35#define CLOCK_MONOTONIC 1
36#endif
37
ebac4655 38typedef cpu_set_t os_cpu_mask_t;
4e78e405 39
6dfd46b9 40typedef struct drand48_data os_random_state_t;
ebac4655
JA
41
42/*
43 * we want fadvise64 really, but it's so tangled... later
44 */
4d8947de 45#ifdef FIO_HAVE_FADVISE
ebac4655
JA
46#define fadvise(fd, off, len, advice) \
47 posix_fadvise((fd), (off_t)(off), (len), (advice))
4d8947de 48#endif
ebac4655 49
c8f025f8
JA
50/*
51 * If you are on an ancient glibc (2.3.2), then define GLIBC_2_3_2 if you want
52 * the affinity helpers to work.
53 */
54#ifndef GLIBC_2_3_2
ebac4655 55#define fio_setaffinity(td) \
2dc1bbeb 56 sched_setaffinity((td)->pid, sizeof((td)->o.cpumask), &(td)->o.cpumask)
ebac4655
JA
57#define fio_getaffinity(pid, ptr) \
58 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
c8f025f8
JA
59#else
60#define fio_setaffinity(td) \
61 sched_setaffinity((td)->pid, &(td)->o.cpumask)
62#define fio_getaffinity(pid, ptr) \
63 sched_getaffinity((pid), (ptr))
64#endif
be4ecfdf
JA
65
66#define fio_cpu_clear(mask, cpu) CPU_CLR((cpu), (mask))
6d459ee7 67#define fio_cpu_set(mask, cpu) CPU_SET((cpu), (mask))
d2ce18b5
JA
68
69static inline int fio_cpuset_init(os_cpu_mask_t *mask)
70{
71 CPU_ZERO(mask);
72 return 0;
73}
74
75static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
76{
77 return 0;
78}
6d459ee7
JA
79
80#define FIO_MAX_CPUS CPU_SETSIZE
4d8947de 81
ebac4655
JA
82static inline int ioprio_set(int which, int who, int ioprio)
83{
84 return syscall(__NR_ioprio_set, which, who, ioprio);
85}
86
97fbdfa1
JA
87/*
88 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
89 * aren't either.
90 */
91#ifndef SPLICE_F_MOVE
92#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
93#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
94 /* we may still block on the fd we splice */
95 /* from/to, of course */
96#define SPLICE_F_MORE (0x04) /* expect more data */
97#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
8756e4d4
JA
98
99static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
495ee9b6 100 size_t len, unsigned int flags)
8756e4d4 101{
97fbdfa1 102 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
8756e4d4
JA
103}
104
105static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
106{
97fbdfa1 107 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
8756e4d4
JA
108}
109
110static inline int vmsplice(int fd, const struct iovec *iov,
111 unsigned long nr_segs, unsigned int flags)
112{
97fbdfa1 113 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
8756e4d4 114}
97fbdfa1 115#endif
8756e4d4 116
3feedc60
JA
117#define SPLICE_DEF_SIZE (64*1024)
118
b6959b55 119#ifdef FIO_HAVE_SYSLET
bf0dc8fa
IM
120
121struct syslet_uatom;
122struct async_head_user;
123
a4f4fdd7
JA
124/*
125 * syslet stuff
126 */
bf0dc8fa
IM
127static inline struct syslet_uatom *
128async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
a4f4fdd7 129{
2b52511f 130 return (struct syslet_uatom *) syscall(__NR_async_exec, atom, ahu);
a4f4fdd7
JA
131}
132
bf0dc8fa
IM
133static inline long
134async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
135 struct async_head_user *ahu)
a4f4fdd7 136{
bf0dc8fa
IM
137 return syscall(__NR_async_wait, min_wait_events,
138 user_ring_idx, ahu);
a4f4fdd7
JA
139}
140
7756b0d0 141static inline long async_thread(void *event, struct async_head_user *ahu)
a4f4fdd7 142{
7756b0d0 143 return syscall(__NR_async_thread, event, ahu);
a4f4fdd7
JA
144}
145
146static inline long umem_add(unsigned long *uptr, unsigned long inc)
147{
148 return syscall(__NR_umem_add, uptr, inc);
149}
b6959b55 150#endif /* FIO_HAVE_SYSLET */
a4f4fdd7 151
6cefbe33
JA
152enum {
153 IOPRIO_CLASS_NONE,
154 IOPRIO_CLASS_RT,
155 IOPRIO_CLASS_BE,
156 IOPRIO_CLASS_IDLE,
157};
158
ebac4655
JA
159enum {
160 IOPRIO_WHO_PROCESS = 1,
161 IOPRIO_WHO_PGRP,
162 IOPRIO_WHO_USER,
163};
164
6cefbe33 165#define IOPRIO_BITS 16
ebac4655
JA
166#define IOPRIO_CLASS_SHIFT 13
167
168#ifndef BLKGETSIZE64
169#define BLKGETSIZE64 _IOR(0x12,114,size_t)
170#endif
171
e5b401d4
JA
172#ifndef BLKFLSBUF
173#define BLKFLSBUF _IO(0x12,97)
174#endif
175
176static inline int blockdev_invalidate_cache(int fd)
177{
a16211bb 178 return ioctl(fd, BLKFLSBUF);
e5b401d4
JA
179}
180
9104f874 181static inline int blockdev_size(int fd, unsigned long long *bytes)
ebac4655
JA
182{
183 if (!ioctl(fd, BLKGETSIZE64, bytes))
184 return 0;
185
186 return errno;
187}
188
32cd46a0
JA
189static inline unsigned long long os_phys_mem(void)
190{
191 long pagesize, pages;
192
193 pagesize = sysconf(_SC_PAGESIZE);
194 pages = sysconf(_SC_PHYS_PAGES);
195 if (pages == -1 || pagesize == -1)
196 return 0;
197
198 return (unsigned long long) pages * (unsigned long long) pagesize;
199}
200
6dfd46b9
JA
201static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
202{
203 srand48_r(seed, rs);
204}
205
206static inline long os_random_long(os_random_state_t *rs)
207{
208 long val;
209
210 lrand48_r(rs, &val);
211 return val;
212}
213
8cc7afa9 214static inline int fio_lookup_raw(dev_t dev, int *majdev, int *mindev)
07e5b264
JA
215{
216 struct raw_config_request rq;
217 int fd;
218
219 if (major(dev) != RAW_MAJOR)
8cc7afa9 220 return 1;
07e5b264
JA
221
222 /*
223 * we should be able to find /dev/rawctl or /dev/raw/rawctl
224 */
225 fd = open("/dev/rawctl", O_RDONLY);
226 if (fd < 0) {
227 fd = open("/dev/raw/rawctl", O_RDONLY);
228 if (fd < 0)
8cc7afa9 229 return 1;
07e5b264
JA
230 }
231
232 rq.raw_minor = minor(dev);
233 if (ioctl(fd, RAW_GETBIND, &rq) < 0) {
234 close(fd);
8cc7afa9 235 return 1;
07e5b264
JA
236 }
237
238 close(fd);
239 *majdev = rq.block_major;
240 *mindev = rq.block_minor;
8cc7afa9 241 return 0;
07e5b264
JA
242}
243
5b6f5c66 244#ifdef O_NOATIME
5921e80c 245#define FIO_O_NOATIME O_NOATIME
5b6f5c66
JA
246#else
247#define FIO_O_NOATIME 0
248#endif
5921e80c 249
ebac4655 250#endif