[PATCH] Warn on conflicting read/write iolog
[fio.git] / os-linux.h
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 <asm/unistd.h>
9
10 #define FIO_HAVE_LIBAIO
11 #define FIO_HAVE_POSIXAIO
12 #define FIO_HAVE_FADVISE
13 #define FIO_HAVE_CPU_AFFINITY
14 #define FIO_HAVE_DISK_UTIL
15 #define FIO_HAVE_SGIO
16 #define FIO_HAVE_IOPRIO
17 #define FIO_HAVE_SPLICE
18 #define FIO_HAVE_IOSCHED_SWITCH
19
20 #define OS_MAP_ANON             (MAP_ANONYMOUS)
21
22 typedef cpu_set_t os_cpu_mask_t;
23 typedef struct drand48_data os_random_state_t;
24
25 /*
26  * we want fadvise64 really, but it's so tangled... later
27  */
28 #define fadvise(fd, off, len, advice)   \
29         posix_fadvise((fd), (off_t)(off), (len), (advice))
30
31 #define fio_setaffinity(td)             \
32         sched_setaffinity((td)->pid, sizeof((td)->cpumask), &(td)->cpumask)
33 #define fio_getaffinity(pid, ptr)       \
34         sched_getaffinity((pid), sizeof(cpu_set_t), (ptr))
35
36 static inline int ioprio_set(int which, int who, int ioprio)
37 {
38         return syscall(__NR_ioprio_set, which, who, ioprio);
39 }
40
41 static _syscall6(int, sys_splice, int, fdin, loff_t *, off_in, int, fdout, loff_t *, off_out, size_t, len, unsigned int, flags);
42 static _syscall4(int, sys_vmsplice, int, fd, const struct iovec *, iov, unsigned long, nr_segs, unsigned int, flags);
43 static _syscall4(int, sys_tee, int, fdin, int, fdout, size_t, len, unsigned int, flags);
44
45 static inline int splice(int fdin, loff_t *off_in, int fdout, loff_t *off_out,
46                          size_t len, unsigned long flags)
47 {
48         return sys_splice(fdin, off_in, fdout, off_out, len, flags);
49 }
50
51 static inline int tee(int fdin, int fdout, size_t len, unsigned int flags)
52 {
53         return sys_tee(fdin, fdout, len, flags);
54 }
55
56 static inline int vmsplice(int fd, const struct iovec *iov,
57                            unsigned long nr_segs, unsigned int flags)
58 {
59         return sys_vmsplice(fd, iov, nr_segs, flags);
60 }
61
62 #define SPLICE_F_MOVE   (0x01)  /* move pages instead of copying */
63 #define SPLICE_F_NONBLOCK (0x02) /* don't block on the pipe splicing (but */
64                                  /* we may still block on the fd we splice */
65                                  /* from/to, of course */
66 #define SPLICE_F_MORE   (0x04)  /* expect more data */
67 #define SPLICE_F_GIFT   (0x08)  /* pages passed in are a gift */
68
69 #define SPLICE_DEF_SIZE (64*1024)
70
71 enum {
72         IOPRIO_WHO_PROCESS = 1,
73         IOPRIO_WHO_PGRP,
74         IOPRIO_WHO_USER,
75 };
76
77 #define IOPRIO_CLASS_SHIFT      13
78
79 #ifndef BLKGETSIZE64
80 #define BLKGETSIZE64    _IOR(0x12,114,size_t)
81 #endif
82
83 static inline int blockdev_size(int fd, unsigned long long *bytes)
84 {
85         if (!ioctl(fd, BLKGETSIZE64, bytes))
86                 return 0;
87
88         return errno;
89 }
90
91 static inline unsigned long long os_phys_mem(void)
92 {
93         long pagesize, pages;
94
95         pagesize = sysconf(_SC_PAGESIZE);
96         pages = sysconf(_SC_PHYS_PAGES);
97         if (pages == -1 || pagesize == -1)
98                 return 0;
99
100         return (unsigned long long) pages * (unsigned long long) pagesize;
101 }
102
103 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
104 {
105         srand48_r(seed, rs);
106 }
107
108 static inline long os_random_long(os_random_state_t *rs)
109 {
110         long val;
111
112         lrand48_r(rs, &val);
113         return val;
114 }
115
116 static inline double os_random_double(os_random_state_t *rs)
117 {
118         double val;
119
120         drand48_r(rs, &val);
121         return val;
122 }
123
124 #endif