Merge branch 'winfio'
[fio.git] / os / os-solaris.h
1 #ifndef FIO_OS_SOLARIS_H
2 #define FIO_OS_SOLARIS_H
3
4 #include <errno.h>
5 #include <malloc.h>
6 #include <sys/types.h>
7 #include <sys/fcntl.h>
8 #include <sys/pset.h>
9
10 #include "../file.h"
11
12 #define FIO_HAVE_POSIXAIO
13 #define FIO_HAVE_SOLARISAIO
14 #define FIO_HAVE_FALLOCATE
15 #define FIO_HAVE_POSIXAIO_FSYNC
16 #define FIO_HAVE_CPU_AFFINITY
17 #define FIO_HAVE_PSHARED_MUTEX
18 #define FIO_USE_GENERIC_BDEV_SIZE
19 #define FIO_HAVE_FDATASYNC
20 #define FIO_HAVE_CLOCK_MONOTONIC
21
22 #define OS_MAP_ANON             MAP_ANON
23 #define OS_RAND_MAX             2147483648UL
24
25 struct solaris_rand_seed {
26         unsigned short r[3];
27 };
28
29 typedef psetid_t os_cpu_mask_t;
30 typedef struct solaris_rand_seed os_random_state_t;
31
32 static inline int blockdev_invalidate_cache(struct fio_file fio_unused *f)
33 {
34         return EINVAL;
35 }
36
37 static inline unsigned long long os_phys_mem(void)
38 {
39         return 0;
40 }
41
42 static inline void os_random_seed(unsigned long seed, os_random_state_t *rs)
43 {
44         rs->r[0] = seed & 0xffff;
45         seed >>= 16;
46         rs->r[1] = seed & 0xffff;
47         seed >>= 16;
48         rs->r[2] = seed & 0xffff;
49         seed48(rs->r);
50 }
51
52 static inline long os_random_long(os_random_state_t *rs)
53 {
54         return nrand48(rs->r);
55 }
56
57 #define FIO_OS_DIRECTIO
58 extern int directio(int, int);
59 static inline int fio_set_odirect(int fd)
60 {
61         if (directio(fd, DIRECTIO_ON) < 0)
62                 return errno;
63
64         return 0;
65 }
66
67 /*
68  * pset binding hooks for fio
69  */
70 #define fio_setaffinity(pid, cpumask)           \
71         pset_bind((cpumask), P_PID, (pid), NULL)
72 #define fio_getaffinity(pid, ptr)       ({ 0; })
73
74 #define fio_cpu_clear(mask, cpu)        pset_assign(PS_NONE, (cpu), NULL)
75 #define fio_cpu_set(mask, cpu)          pset_assign(*(mask), (cpu), NULL)
76
77 static inline int fio_cpuset_init(os_cpu_mask_t *mask)
78 {
79         int ret;
80
81         if (pset_create(mask) < 0) {
82                 ret = errno;
83                 return -1;
84         }
85
86         return 0;
87 }
88
89 static inline int fio_cpuset_exit(os_cpu_mask_t *mask)
90 {
91         int ret;
92
93         if (pset_destroy(*mask) < 0) {
94                 ret = errno;
95                 return -1;
96         }
97
98         return 0;
99 }
100
101 /*
102  * Should be enough, not aware of what (if any) restrictions Solaris has
103  */
104 #define FIO_MAX_CPUS                    16384
105
106 #ifdef MADV_FREE
107 #define FIO_MADV_FREE   MADV_FREE
108 #endif
109
110 #endif