blob: d3b2e931e8b754eaecfd06af87748225d5e168b9 [file] [log] [blame]
Jens Axboeebac4652005-12-08 15:25:21 +01001#ifndef FIO_OS_LINUX_H
2#define FIO_OS_LINUX_H
3
4#include <sys/ioctl.h>
Jens Axboe8756e4d2006-05-27 20:24:53 +02005#include <sys/uio.h>
Jens Axboe3c39a372006-06-06 20:56:12 +02006#include <sys/syscall.h>
7#include <unistd.h>
Jens Axboe97fbdfa2006-10-05 13:44:15 +02008#include <fcntl.h>
Jens Axboeea421792006-07-11 09:11:07 +02009#include <linux/unistd.h>
Jens Axboeebac4652005-12-08 15:25:21 +010010
11#define FIO_HAVE_LIBAIO
12#define FIO_HAVE_POSIXAIO
13#define FIO_HAVE_FADVISE
14#define FIO_HAVE_CPU_AFFINITY
15#define FIO_HAVE_DISK_UTIL
16#define FIO_HAVE_SGIO
Jens Axboeba4f8922006-01-26 13:45:54 -080017#define FIO_HAVE_IOPRIO
Jens Axboe8756e4d2006-05-27 20:24:53 +020018#define FIO_HAVE_SPLICE
Jens Axboe22f78b32006-06-07 11:30:07 +020019#define FIO_HAVE_IOSCHED_SWITCH
Jens Axboe2c0ecd22006-06-08 13:25:41 +020020#define FIO_HAVE_ODIRECT
Jens Axboe74b025b2006-12-19 15:18:14 +010021#define FIO_HAVE_HUGETLB
Jens Axboeb6959b52007-02-14 21:40:27 +000022
Jens Axboeebac4652005-12-08 15:25:21 +010023#define OS_MAP_ANON (MAP_ANONYMOUS)
24
25typedef cpu_set_t os_cpu_mask_t;
Jens Axboe6dfd46b2006-06-07 13:57:06 +020026typedef struct drand48_data os_random_state_t;
Jens Axboeebac4652005-12-08 15:25:21 +010027
28/*
29 * we want fadvise64 really, but it's so tangled... later
30 */
31#define fadvise(fd, off, len, advice) \
32 posix_fadvise((fd), (off_t)(off), (len), (advice))
33
34#define fio_setaffinity(td) \
35 sched_setaffinity((td)->pid, sizeof((td)->cpumask), &(td)->cpumask)
36#define fio_getaffinity(pid, ptr) \
37 sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
38
39static inline int ioprio_set(int which, int who, int ioprio)
40{
41 return syscall(__NR_ioprio_set, which, who, ioprio);
42}
43
Jens Axboe97fbdfa2006-10-05 13:44:15 +020044/*
45 * Just check for SPLICE_F_MOVE, if that isn't there, assume the others
46 * aren't either.
47 */
48#ifndef SPLICE_F_MOVE
Jens Axboe8756e4d2006-05-27 20:24:53 +020049#define SPLICE_F_MOVE (0x01) /* move pages instead of copying */
50#define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
51 /* we may still block on the fd we splice */
52 /* from/to, of course */
53#define SPLICE_F_MORE (0x04) /* expect more data */
54#define SPLICE_F_GIFT (0x08) /* pages passed in are a gift */
55
Jens Axboe97fbdfa2006-10-05 13:44:15 +020056static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
57 size_t len, unsigned long flags)
58{
59 return syscall(__NR_sys_splice, fdin, off_in, fdout, off_out, len, flags);
60}
61
62static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
63{
64 return syscall(__NR_sys_tee, fdin, fdout, len, flags);
65}
66
67static inline int vmsplice(int fd, const struct iovec *iov,
68 unsigned long nr_segs, unsigned int flags)
69{
70 return syscall(__NR_sys_vmsplice, fd, iov, nr_segs, flags);
71}
72#endif
73
Jens Axboe3feedc62006-05-28 20:13:51 +020074#define SPLICE_DEF_SIZE (64*1024)
75
Jens Axboeb6959b52007-02-14 21:40:27 +000076#ifdef FIO_HAVE_SYSLET
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010077
78struct syslet_uatom;
79struct async_head_user;
80
Jens Axboea4f4fdd2007-02-14 01:16:39 +010081/*
82 * syslet stuff
83 */
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010084static inline struct syslet_uatom *
85async_exec(struct syslet_uatom *atom, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +010086{
Jens Axboe1df341f2007-02-22 14:08:13 +010087 return (void *) syscall(__NR_async_exec, atom, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +010088}
89
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010090static inline long
91async_wait(unsigned long min_wait_events, unsigned long user_ring_idx,
92 struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +010093{
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010094 return syscall(__NR_async_wait, min_wait_events,
95 user_ring_idx, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +010096}
97
Jens Axboe7756b0d2007-02-26 10:22:31 +010098static inline long async_thread(void *event, struct async_head_user *ahu)
Jens Axboea4f4fdd2007-02-14 01:16:39 +010099{
Jens Axboe7756b0d2007-02-26 10:22:31 +0100100 return syscall(__NR_async_thread, event, ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100101}
102
103static inline long umem_add(unsigned long *uptr, unsigned long inc)
104{
105 return syscall(__NR_umem_add, uptr, inc);
106}
Jens Axboeb6959b52007-02-14 21:40:27 +0000107#endif /* FIO_HAVE_SYSLET */
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100108
Jens Axboeebac4652005-12-08 15:25:21 +0100109enum {
110 IOPRIO_WHO_PROCESS = 1,
111 IOPRIO_WHO_PGRP,
112 IOPRIO_WHO_USER,
113};
114
115#define IOPRIO_CLASS_SHIFT 13
116
117#ifndef BLKGETSIZE64
118#define BLKGETSIZE64 _IOR(0x12,114,size_t)
119#endif
120
Jens Axboee5b401d2006-10-18 16:03:40 +0200121#ifndef BLKFLSBUF
122#define BLKFLSBUF _IO(0x12,97)
123#endif
124
125static inline int blockdev_invalidate_cache(int fd)
126{
Jens Axboea16211b2007-03-15 11:35:33 +0100127 return ioctl(fd, BLKFLSBUF);
Jens Axboee5b401d2006-10-18 16:03:40 +0200128}
129
Jens Axboe9104f872005-12-28 23:50:45 +0100130static inline int blockdev_size(int fd, unsigned long long *bytes)
Jens Axboeebac4652005-12-08 15:25:21 +0100131{
132 if (!ioctl(fd, BLKGETSIZE64, bytes))
133 return 0;
134
135 return errno;
136}
137
Jens Axboe32cd46a2006-06-07 13:40:40 +0200138static inline unsigned long long os_phys_mem(void)
139{
140 long pagesize, pages;
141
142 pagesize = sysconf(_SC_PAGESIZE);
143 pages = sysconf(_SC_PHYS_PAGES);
144 if (pages == -1 || pagesize == -1)
145 return 0;
146
147 return (unsigned long long) pages * (unsigned long long) pagesize;
148}
149
Jens Axboe6dfd46b2006-06-07 13:57:06 +0200150static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
151{
152 srand48_r(seed, rs);
153}
154
155static inline long os_random_long(os_random_state_t *rs)
156{
157 long val;
158
159 lrand48_r(rs, &val);
160 return val;
161}
162
163static inline double os_random_double(os_random_state_t *rs)
164{
165 double val;
166
167 drand48_r(rs, &val);
168 return val;
169}
170
Jens Axboeebac4652005-12-08 15:25:21 +0100171#endif