Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 1 | #ifndef FIO_OS_H |
| 2 | #define FIO_OS_H |
| 3 | |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 4 | #include <sys/types.h> |
Bruce Cran | 203913e | 2011-10-18 12:20:56 +0200 | [diff] [blame] | 5 | #include <sys/socket.h> |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 6 | #include <fcntl.h> |
Bruce Cran | 03e20d6 | 2011-01-02 20:14:54 +0100 | [diff] [blame] | 7 | #include <pthread.h> |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 8 | #include <unistd.h> |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 9 | #include <stdlib.h> |
Jens Axboe | a14ca44 | 2009-12-20 22:24:10 +0100 | [diff] [blame] | 10 | |
Jens Axboe | 836fcc0 | 2013-01-24 09:08:45 -0700 | [diff] [blame] | 11 | #include "../arch/arch.h" |
| 12 | |
Jens Axboe | cca8464 | 2011-10-07 12:47:57 +0200 | [diff] [blame] | 13 | enum { |
| 14 | os_linux = 1, |
| 15 | os_aix, |
| 16 | os_freebsd, |
| 17 | os_hpux, |
| 18 | os_mac, |
| 19 | os_netbsd, |
John | 3cd4c66 | 2013-12-29 19:20:35 -0700 | [diff] [blame] | 20 | os_openbsd, |
Jens Axboe | cca8464 | 2011-10-07 12:47:57 +0200 | [diff] [blame] | 21 | os_solaris, |
| 22 | os_windows, |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 23 | os_android, |
Jens Axboe | cca8464 | 2011-10-07 12:47:57 +0200 | [diff] [blame] | 24 | |
| 25 | os_nr, |
| 26 | }; |
| 27 | |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 28 | #if defined(__ANDROID__) |
| 29 | #include "os-android.h" |
| 30 | #elif defined(__linux__) |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 31 | #include "os-linux.h" |
| 32 | #elif defined(__FreeBSD__) |
| 33 | #include "os-freebsd.h" |
John | 3cd4c66 | 2013-12-29 19:20:35 -0700 | [diff] [blame] | 34 | #elif defined(__OpenBSD__) |
| 35 | #include "os-openbsd.h" |
YAMAMOTO Takashi | 7452440 | 2010-05-12 15:06:46 +0200 | [diff] [blame] | 36 | #elif defined(__NetBSD__) |
| 37 | #include "os-netbsd.h" |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 38 | #elif defined(__sun__) |
| 39 | #include "os-solaris.h" |
Jens Axboe | 2afd826 | 2009-12-14 23:08:42 +0100 | [diff] [blame] | 40 | #elif defined(__APPLE__) |
| 41 | #include "os-mac.h" |
Cigy Cyriac | bf2e821 | 2010-08-10 19:51:11 -0400 | [diff] [blame] | 42 | #elif defined(_AIX) |
| 43 | #include "os-aix.h" |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 44 | #elif defined(__hpux) |
| 45 | #include "os-hpux.h" |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 46 | #elif defined(WIN32) |
Bruce Cran | 03e20d6 | 2011-01-02 20:14:54 +0100 | [diff] [blame] | 47 | #include "os-windows.h" |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 48 | #else |
| 49 | #error "unsupported os" |
| 50 | #endif |
| 51 | |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 52 | #ifdef CONFIG_POSIXAIO |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 53 | #include <aio.h> |
Jens Axboe | e97c144 | 2011-09-21 09:38:01 +0200 | [diff] [blame] | 54 | #ifndef FIO_OS_HAVE_AIOCB_TYPEDEF |
| 55 | typedef struct aiocb os_aiocb_t; |
| 56 | #endif |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 57 | #endif |
| 58 | |
| 59 | #ifdef FIO_HAVE_SGIO |
| 60 | #include <linux/fs.h> |
| 61 | #include <scsi/sg.h> |
| 62 | #endif |
| 63 | |
Jens Axboe | 4feafb1 | 2013-01-24 23:07:55 -0700 | [diff] [blame] | 64 | #ifndef CONFIG_STRSEP |
Jens Axboe | 00fb3c8 | 2008-05-30 22:17:45 +0200 | [diff] [blame] | 65 | #include "../lib/strsep.h" |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 66 | #endif |
| 67 | |
Jens Axboe | 8e239ca | 2010-08-11 10:29:12 -0400 | [diff] [blame] | 68 | #ifdef MSG_DONTWAIT |
| 69 | #define OS_MSG_DONTWAIT MSG_DONTWAIT |
| 70 | #endif |
| 71 | |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 72 | #ifndef POSIX_FADV_DONTNEED |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 73 | #define POSIX_FADV_DONTNEED (0) |
| 74 | #define POSIX_FADV_SEQUENTIAL (0) |
| 75 | #define POSIX_FADV_RANDOM (0) |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 76 | #endif |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 77 | |
| 78 | #ifndef FIO_HAVE_CPU_AFFINITY |
Jens Axboe | e8462bd | 2009-07-06 12:59:04 +0200 | [diff] [blame] | 79 | #define fio_setaffinity(pid, mask) (0) |
Jens Axboe | be4ecfd | 2008-12-08 14:10:52 +0100 | [diff] [blame] | 80 | #define fio_getaffinity(pid, mask) do { } while (0) |
| 81 | #define fio_cpu_clear(mask, cpu) do { } while (0) |
Jens Axboe | 85daf2c | 2009-01-05 09:40:13 +0100 | [diff] [blame] | 82 | #define fio_cpuset_exit(mask) (-1) |
Jens Axboe | c2acfba | 2014-02-27 15:52:02 -0800 | [diff] [blame] | 83 | #define fio_cpus_split(mask, cpu) (0) |
YAMAMOTO Takashi | 7452440 | 2010-05-12 15:06:46 +0200 | [diff] [blame] | 84 | typedef unsigned long os_cpu_mask_t; |
Jens Axboe | c2acfba | 2014-02-27 15:52:02 -0800 | [diff] [blame] | 85 | #else |
| 86 | extern int fio_cpus_split(os_cpu_mask_t *mask, unsigned int cpu); |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 87 | #endif |
| 88 | |
| 89 | #ifndef FIO_HAVE_IOPRIO |
Jens Axboe | 28727df | 2012-03-29 08:33:15 +0200 | [diff] [blame] | 90 | #define ioprio_set(which, who, prioclass, prio) (0) |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 91 | #endif |
| 92 | |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 93 | #ifndef FIO_HAVE_ODIRECT |
Jens Axboe | 7d42476 | 2006-06-08 13:26:31 +0200 | [diff] [blame] | 94 | #define OS_O_DIRECT 0 |
| 95 | #else |
| 96 | #define OS_O_DIRECT O_DIRECT |
Jens Axboe | 2c0ecd2 | 2006-06-08 13:25:41 +0200 | [diff] [blame] | 97 | #endif |
| 98 | |
Chris Mason | d01612f | 2013-11-15 15:52:58 -0700 | [diff] [blame] | 99 | #ifdef OS_O_ATOMIC |
| 100 | #define FIO_O_ATOMIC OS_O_ATOMIC |
| 101 | #else |
| 102 | #define FIO_O_ATOMIC 0 |
| 103 | #endif |
| 104 | |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 105 | #ifndef FIO_HAVE_HUGETLB |
| 106 | #define SHM_HUGETLB 0 |
Jens Axboe | d6dc02f | 2012-11-20 13:39:59 +0100 | [diff] [blame] | 107 | #define MAP_HUGETLB 0 |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 108 | #ifndef FIO_HUGE_PAGE |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 109 | #define FIO_HUGE_PAGE 0 |
Shawn Lewis | 4d8947d | 2007-07-25 07:51:58 +0200 | [diff] [blame] | 110 | #endif |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 111 | #else |
Jens Axboe | cb25df6 | 2007-03-23 08:23:30 +0100 | [diff] [blame] | 112 | #ifndef FIO_HUGE_PAGE |
Jens Axboe | ee0e0a7 | 2007-03-19 10:50:47 +0100 | [diff] [blame] | 113 | #define FIO_HUGE_PAGE 4194304 |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 114 | #endif |
Jens Axboe | cb25df6 | 2007-03-23 08:23:30 +0100 | [diff] [blame] | 115 | #endif |
Jens Axboe | 74b025b | 2006-12-19 15:18:14 +0100 | [diff] [blame] | 116 | |
Jens Axboe | 39b9356 | 2012-11-27 08:27:50 +0100 | [diff] [blame] | 117 | #ifndef FIO_HAVE_MMAP_HUGE |
| 118 | #define MAP_HUGETLB 0 |
| 119 | #endif |
| 120 | |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 121 | #ifndef FIO_O_NOATIME |
| 122 | #define FIO_O_NOATIME 0 |
| 123 | #endif |
| 124 | |
Jens Axboe | dc873b6 | 2008-06-04 20:13:04 +0200 | [diff] [blame] | 125 | #ifndef OS_RAND_MAX |
| 126 | #define OS_RAND_MAX RAND_MAX |
| 127 | #endif |
| 128 | |
Jens Axboe | 07e5b26 | 2007-04-02 14:46:07 +0200 | [diff] [blame] | 129 | #ifndef FIO_HAVE_RAWBIND |
Jens Axboe | 8cc7afa | 2007-04-17 09:06:43 +0200 | [diff] [blame] | 130 | #define fio_lookup_raw(dev, majdev, mindev) 1 |
Jens Axboe | 07e5b26 | 2007-04-02 14:46:07 +0200 | [diff] [blame] | 131 | #endif |
| 132 | |
Jens Axboe | 58483fa | 2011-01-19 11:09:58 -0700 | [diff] [blame] | 133 | #ifndef FIO_PREFERRED_ENGINE |
| 134 | #define FIO_PREFERRED_ENGINE "sync" |
| 135 | #endif |
| 136 | |
Bruce Cran | b9fd788 | 2012-02-20 17:01:46 +0000 | [diff] [blame] | 137 | #ifndef FIO_OS_PATH_SEPARATOR |
| 138 | #define FIO_OS_PATH_SEPARATOR "/" |
| 139 | #endif |
| 140 | |
Bruce Cran | 16de1bf | 2012-02-20 17:07:32 +0000 | [diff] [blame] | 141 | #ifndef FIO_PREFERRED_CLOCK_SOURCE |
Bruce Cran | 86e5341 | 2013-02-02 20:54:36 +0000 | [diff] [blame] | 142 | #ifdef CONFIG_CLOCK_GETTIME |
Bruce Cran | 16de1bf | 2012-02-20 17:07:32 +0000 | [diff] [blame] | 143 | #define FIO_PREFERRED_CLOCK_SOURCE CS_CGETTIME |
Bruce Cran | 86e5341 | 2013-02-02 20:54:36 +0000 | [diff] [blame] | 144 | #else |
| 145 | #define FIO_PREFERRED_CLOCK_SOURCE CS_GTOD |
| 146 | #endif |
Bruce Cran | 16de1bf | 2012-02-20 17:07:32 +0000 | [diff] [blame] | 147 | #endif |
| 148 | |
Jens Axboe | fca7035 | 2011-07-06 20:12:54 +0200 | [diff] [blame] | 149 | #ifndef FIO_MAX_JOBS |
| 150 | #define FIO_MAX_JOBS 2048 |
| 151 | #endif |
| 152 | |
Jens Axboe | 67bf982 | 2013-01-10 11:23:19 +0100 | [diff] [blame] | 153 | #ifndef CONFIG_SOCKLEN_T |
| 154 | typedef unsigned int socklen_t; |
Jens Axboe | 5ba13ea | 2011-10-04 23:50:28 +0200 | [diff] [blame] | 155 | #endif |
| 156 | |
Saurabh De | 45054cb | 2012-10-09 14:46:24 -0600 | [diff] [blame] | 157 | #ifndef FIO_OS_HAS_CTIME_R |
Jens Axboe | 1f81991 | 2013-01-23 17:21:41 -0700 | [diff] [blame] | 158 | #define os_ctime_r(x, y, z) (void) ctime_r((x), (y)) |
Saurabh De | 45054cb | 2012-10-09 14:46:24 -0600 | [diff] [blame] | 159 | #endif |
| 160 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 161 | #ifdef FIO_USE_GENERIC_SWAP |
Jens Axboe | 9677bec | 2011-10-04 16:02:51 +0200 | [diff] [blame] | 162 | static inline uint16_t fio_swap16(uint16_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 163 | { |
| 164 | return (val << 8) | (val >> 8); |
| 165 | } |
| 166 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 167 | static inline uint32_t fio_swap32(uint32_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 168 | { |
| 169 | val = ((val & 0xff00ff00UL) >> 8) | ((val & 0x00ff00ffUL) << 8); |
| 170 | |
| 171 | return (val >> 16) | (val << 16); |
| 172 | } |
| 173 | |
Jens Axboe | 901ebe1 | 2011-10-04 23:31:00 +0200 | [diff] [blame] | 174 | static inline uint64_t fio_swap64(uint64_t val) |
Jens Axboe | 232f9b7 | 2011-10-04 14:45:20 +0200 | [diff] [blame] | 175 | { |
| 176 | val = ((val & 0xff00ff00ff00ff00ULL) >> 8) | |
| 177 | ((val & 0x00ff00ff00ff00ffULL) << 8); |
| 178 | val = ((val & 0xffff0000ffff0000ULL) >> 16) | |
| 179 | ((val & 0x0000ffff0000ffffULL) << 16); |
| 180 | |
| 181 | return (val >> 32) | (val << 32); |
| 182 | } |
| 183 | #endif |
| 184 | |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 185 | #ifndef FIO_HAVE_BYTEORDER_FUNCS |
Jens Axboe | 0dcebdf | 2013-01-23 15:42:16 -0700 | [diff] [blame] | 186 | #ifdef CONFIG_LITTLE_ENDIAN |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 187 | #define __le16_to_cpu(x) (x) |
| 188 | #define __le32_to_cpu(x) (x) |
| 189 | #define __le64_to_cpu(x) (x) |
| 190 | #define __cpu_to_le16(x) (x) |
| 191 | #define __cpu_to_le32(x) (x) |
| 192 | #define __cpu_to_le64(x) (x) |
| 193 | #else |
| 194 | #define __le16_to_cpu(x) fio_swap16(x) |
| 195 | #define __le32_to_cpu(x) fio_swap32(x) |
| 196 | #define __le64_to_cpu(x) fio_swap64(x) |
| 197 | #define __cpu_to_le16(x) fio_swap16(x) |
| 198 | #define __cpu_to_le32(x) fio_swap32(x) |
| 199 | #define __cpu_to_le64(x) fio_swap64(x) |
| 200 | #endif |
Aaron Carroll | ec5c6b1 | 2012-11-21 10:39:00 +0100 | [diff] [blame] | 201 | #endif /* FIO_HAVE_BYTEORDER_FUNCS */ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 202 | |
Daniel Gollub | 0bbe46e | 2014-05-01 14:07:04 +0200 | [diff] [blame] | 203 | #ifdef FIO_INTERNAL |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 204 | #define le16_to_cpu(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 205 | __le16_to_cpu(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 206 | }) |
| 207 | #define le32_to_cpu(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 208 | __le32_to_cpu(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 209 | }) |
| 210 | #define le64_to_cpu(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 211 | __le64_to_cpu(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 212 | }) |
Daniel Gollub | 0bbe46e | 2014-05-01 14:07:04 +0200 | [diff] [blame] | 213 | #endif |
| 214 | |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 215 | #define cpu_to_le16(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 216 | __cpu_to_le16(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 217 | }) |
| 218 | #define cpu_to_le32(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 219 | __cpu_to_le32(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 220 | }) |
| 221 | #define cpu_to_le64(val) ({ \ |
Sébastien Bouchex Bellomié | c46fda9 | 2014-03-11 08:54:27 -0600 | [diff] [blame] | 222 | __cpu_to_le64(val); \ |
Jens Axboe | 8111092 | 2011-10-05 12:40:49 +0200 | [diff] [blame] | 223 | }) |
| 224 | |
Jens Axboe | 5e62c22 | 2007-05-22 13:27:30 +0200 | [diff] [blame] | 225 | #ifndef FIO_HAVE_BLKTRACE |
Jens Axboe | d95b34a | 2013-11-21 09:55:49 -0700 | [diff] [blame] | 226 | static inline int is_blktrace(const char *fname, int *need_swap) |
Jens Axboe | 5e62c22 | 2007-05-22 13:27:30 +0200 | [diff] [blame] | 227 | { |
| 228 | return 0; |
| 229 | } |
Jens Axboe | 5921e80 | 2008-05-30 15:02:38 +0200 | [diff] [blame] | 230 | struct thread_data; |
Jens Axboe | d95b34a | 2013-11-21 09:55:49 -0700 | [diff] [blame] | 231 | static inline int load_blktrace(struct thread_data *td, const char *fname, |
| 232 | int need_swap) |
Jens Axboe | 5e62c22 | 2007-05-22 13:27:30 +0200 | [diff] [blame] | 233 | { |
| 234 | return 1; |
| 235 | } |
| 236 | #endif |
| 237 | |
Jens Axboe | eb7ccf3 | 2009-04-29 09:48:04 +0200 | [diff] [blame] | 238 | #define FIO_DEF_CL_SIZE 128 |
| 239 | |
| 240 | static inline int os_cache_line_size(void) |
| 241 | { |
| 242 | #ifdef FIO_HAVE_CL_SIZE |
| 243 | int ret = arch_cache_line_size(); |
| 244 | |
| 245 | if (ret <= 0) |
| 246 | return FIO_DEF_CL_SIZE; |
| 247 | |
| 248 | return ret; |
| 249 | #else |
| 250 | return FIO_DEF_CL_SIZE; |
| 251 | #endif |
| 252 | } |
| 253 | |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 254 | #ifdef FIO_USE_GENERIC_BDEV_SIZE |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 255 | static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes) |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 256 | { |
Jens Axboe | 3b2e146 | 2009-12-15 08:58:10 +0100 | [diff] [blame] | 257 | off_t end; |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 258 | |
Jens Axboe | 3b2e146 | 2009-12-15 08:58:10 +0100 | [diff] [blame] | 259 | *bytes = 0; |
| 260 | |
Bruce Cran | ecc314b | 2011-01-04 10:59:30 +0100 | [diff] [blame] | 261 | end = lseek(f->fd, 0, SEEK_END); |
Jens Axboe | 792d551 | 2009-09-22 17:12:29 +0200 | [diff] [blame] | 262 | if (end < 0) |
| 263 | return errno; |
| 264 | |
| 265 | *bytes = end; |
| 266 | return 0; |
| 267 | } |
| 268 | #endif |
| 269 | |
Jens Axboe | 5353137 | 2009-12-15 10:28:37 +0100 | [diff] [blame] | 270 | #ifdef FIO_USE_GENERIC_RAND |
| 271 | typedef unsigned int os_random_state_t; |
| 272 | |
| 273 | static inline void os_random_seed(unsigned long seed, os_random_state_t *rs) |
| 274 | { |
| 275 | srand(seed); |
| 276 | } |
| 277 | |
| 278 | static inline long os_random_long(os_random_state_t *rs) |
| 279 | { |
| 280 | long val; |
| 281 | |
| 282 | val = rand_r(rs); |
| 283 | return val; |
| 284 | } |
| 285 | #endif |
| 286 | |
Bruce Cran | 93bcfd2 | 2012-02-20 20:18:19 +0100 | [diff] [blame] | 287 | #ifdef FIO_USE_GENERIC_INIT_RANDOM_STATE |
| 288 | extern void td_fill_rand_seeds(struct thread_data *td); |
| 289 | /* |
| 290 | * Initialize the various random states we need (random io, block size ranges, |
| 291 | * read/write mix, etc). |
| 292 | */ |
| 293 | static inline int init_random_state(struct thread_data *td, unsigned long *rand_seeds, int size) |
| 294 | { |
| 295 | int fd; |
| 296 | |
| 297 | fd = open("/dev/urandom", O_RDONLY); |
| 298 | if (fd == -1) { |
| 299 | return 1; |
| 300 | } |
| 301 | |
| 302 | if (read(fd, rand_seeds, size) < size) { |
| 303 | close(fd); |
| 304 | return 1; |
| 305 | } |
| 306 | |
| 307 | close(fd); |
| 308 | td_fill_rand_seeds(td); |
| 309 | return 0; |
| 310 | } |
| 311 | #endif |
| 312 | |
Jens Axboe | 2e3bd4c | 2010-05-17 12:29:57 +0200 | [diff] [blame] | 313 | #ifndef FIO_HAVE_FS_STAT |
| 314 | static inline unsigned long long get_fs_size(const char *path) |
| 315 | { |
| 316 | return 0; |
| 317 | } |
| 318 | #endif |
| 319 | |
Jens Axboe | c00a228 | 2011-07-08 20:56:06 +0200 | [diff] [blame] | 320 | #ifndef FIO_HAVE_CPU_ONLINE_SYSCONF |
| 321 | static inline unsigned int cpus_online(void) |
| 322 | { |
| 323 | return sysconf(_SC_NPROCESSORS_ONLN); |
| 324 | } |
| 325 | #endif |
| 326 | |
Daniel Gollub | 7221da3 | 2014-05-01 14:07:01 +0200 | [diff] [blame] | 327 | #ifndef CPU_COUNT |
Jens Axboe | 6cf71c2 | 2014-03-05 15:49:54 -0700 | [diff] [blame] | 328 | #ifdef FIO_HAVE_CPU_AFFINITY |
| 329 | static inline int CPU_COUNT(os_cpu_mask_t *mask) |
| 330 | { |
| 331 | int max_cpus = cpus_online(); |
| 332 | int nr_cpus, i; |
| 333 | |
| 334 | for (i = 0, nr_cpus = 0; i < max_cpus; i++) |
| 335 | if (fio_cpu_isset(mask, i)) |
| 336 | nr_cpus++; |
| 337 | |
| 338 | return nr_cpus; |
| 339 | } |
| 340 | #endif |
| 341 | #endif |
| 342 | |
Jens Axboe | 47f767c | 2011-07-12 21:17:49 +0200 | [diff] [blame] | 343 | #ifndef FIO_HAVE_GETTID |
| 344 | static inline int gettid(void) |
| 345 | { |
| 346 | return getpid(); |
| 347 | } |
| 348 | #endif |
| 349 | |
Jens Axboe | ebac465 | 2005-12-08 15:25:21 +0100 | [diff] [blame] | 350 | #endif |