Merge branch 'master' of https://github.com/celestinechen/fio
[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>
8393ca93 9#include <fcntl.h>
c00a2289
JA
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 22#define FIO_HAVE_ODIRECT
93bcfd20 23#define FIO_USE_GENERIC_INIT_RANDOM_STATE
0ec15d6c 24#define FIO_HAVE_CHARDEV_SIZE
c00a2289
JA
25
26#define OS_MAP_ANON MAP_ANONYMOUS
27#define OS_MSG_DONTWAIT 0
28
29#define POSIX_MADV_DONTNEED MADV_DONTNEED
30#define POSIX_MADV_SEQUENTIAL MADV_SEQUENTIAL
31#define POSIX_MADV_RANDOM MADV_RANDOM
32#define posix_madvise(ptr, sz, hint) madvise((ptr), (sz), (hint))
33
d48a9799
JA
34#ifndef MSG_WAITALL
35#define MSG_WAITALL 0x40
36#endif
37
901ebe18
JA
38#define FIO_USE_GENERIC_SWAP
39
e97c1442 40#define FIO_OS_HAVE_AIOCB_TYPEDEF
e9d2a04d
TK
41
42#ifdef CONFIG_PTHREAD_GETAFFINITY
43#define FIO_HAVE_GET_THREAD_AFFINITY
44#define fio_get_thread_affinity(mask) \
45 pthread_getaffinity_np(pthread_self(), sizeof(mask), &(mask))
46#endif
47
e97c1442
JA
48typedef struct aiocb64 os_aiocb_t;
49
c00a2289
JA
50static inline int blockdev_invalidate_cache(struct fio_file *f)
51{
22de5d77 52 return ENOTSUP;
c00a2289
JA
53}
54
55static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
56{
0ec15d6c 57 disk_describe_type_ext_t dext;
c00a2289 58
0ec15d6c
JA
59 if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
60 unsigned long long lba;
61
62 lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
63 *bytes = lba * dext.lgblksz;
c00a2289
JA
64 return 0;
65 }
66
564e49f3 67 *bytes = 0;
c00a2289 68 return errno;
c00a2289
JA
69}
70
0ec15d6c
JA
71static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
72{
73 return blockdev_size(f, bytes);
74}
75
c00a2289
JA
76static inline unsigned long long os_phys_mem(void)
77{
8c9ca2e6
JA
78 unsigned long long ret;
79 struct pst_static pst;
80 union pstun pu;
c00a2289 81
8c9ca2e6
JA
82 pu.pst_static = &pst;
83 if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
c00a2289
JA
84 return 0;
85
8c9ca2e6
JA
86 ret = pst.physical_memory;
87 ret *= pst.page_size;
88 return ret;
c00a2289
JA
89}
90
40f61ec7 91#define FIO_HAVE_CPU_CONF_SYSCONF
c00a2289 92
40f61ec7 93static inline unsigned int cpus_configured(void)
c00a2289
JA
94{
95 return mpctl(MPC_GETNUMSPUS, 0, NULL);
96}
97
98#endif