fio patch: Windows netio fixes
[fio.git] / os / os-hpux.h
1 #ifndef FIO_OS_HPUX_H
2 #define FIO_OS_HPUX_H
3
4 #define FIO_OS  os_hpux
5
6 #include <errno.h>
7 #include <unistd.h>
8 #include <sys/ioctl.h>
9 #include <sys/fcntl.h>
10 #include <sys/fadvise.h>
11 #include <sys/mman.h>
12 #include <sys/mpctl.h>
13 #include <sys/diskio.h>
14 #include <sys/param.h>
15 #include <sys/pstat.h>
16 #include <time.h>
17 #include <aio.h>
18 #include <arm.h>
19
20 #include "../file.h"
21
22 #define FIO_HAVE_POSIXAIO
23 #define FIO_HAVE_ODIRECT
24 #define FIO_USE_GENERIC_RAND
25 #define FIO_USE_GENERIC_INIT_RANDOM_STATE
26 #define FIO_HAVE_CLOCK_MONOTONIC
27 #define FIO_HAVE_PSHARED_MUTEX
28 #define FIO_HAVE_FADVISE
29 #define FIO_HAVE_CHARDEV_SIZE
30 #define FIO_HAVE_FALLOCATE
31 #define FIO_HAVE_POSIXAIO_FSYNC
32 #define FIO_HAVE_FDATASYNC
33
34 #define OS_MAP_ANON             MAP_ANONYMOUS
35 #define OS_MSG_DONTWAIT         0
36
37 #define POSIX_MADV_DONTNEED     MADV_DONTNEED
38 #define POSIX_MADV_SEQUENTIAL   MADV_SEQUENTIAL
39 #define POSIX_MADV_RANDOM       MADV_RANDOM
40 #define posix_madvise(ptr, sz, hint)    madvise((ptr), (sz), (hint))
41
42 #ifndef CLOCK_MONOTONIC
43 #define CLOCK_MONOTONIC         CLOCK_REALTIME
44 #endif
45
46 #ifndef MSG_WAITALL
47 #define MSG_WAITALL     0x40
48 #endif
49
50 #ifdef LITTLE_ENDIAN
51 #define FIO_LITTLE_ENDIAN
52 #else
53 #define FIO_BIG_ENDIAN
54 #endif
55
56 #define FIO_USE_GENERIC_SWAP
57
58 #define FIO_OS_HAVE_AIOCB_TYPEDEF
59 typedef struct aiocb64 os_aiocb_t;
60
61 #define FIO_OS_HAVE_SOCKLEN_T
62 typedef int fio_socklen_t;
63
64 static inline int blockdev_invalidate_cache(struct fio_file *f)
65 {
66         return EINVAL;
67 }
68
69 static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
70 {
71         disk_describe_type_ext_t dext;
72
73         if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
74                 unsigned long long lba;
75
76                 lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
77                 *bytes = lba * dext.lgblksz;
78                 return 0;
79         }
80
81         *bytes = 0;
82         return errno;
83 }
84
85 static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
86 {
87         return blockdev_size(f, bytes);
88 }
89
90 static inline unsigned long long os_phys_mem(void)
91 {
92         unsigned long long ret;
93         struct pst_static pst;
94         union pstun pu;
95
96         pu.pst_static = &pst;
97         if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
98                 return 0;
99
100         ret = pst.physical_memory;
101         ret *= pst.page_size;
102         return ret;
103 }
104
105 #define FIO_HAVE_CPU_ONLINE_SYSCONF
106
107 static inline unsigned int cpus_online(void)
108 {
109         return mpctl(MPC_GETNUMSPUS, 0, NULL);
110 }
111
112 #endif