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