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