blob: 43098ad72d86fcc40d6d8c2860d7fa62722d3b6d [file] [log] [blame]
Jens Axboec00a2282011-07-08 20:56:06 +02001#ifndef FIO_OS_HPUX_H
2#define FIO_OS_HPUX_H
3
4#include <errno.h>
5#include <unistd.h>
6#include <sys/ioctl.h>
7#include <sys/fcntl.h>
8#include <sys/fadvise.h>
9#include <sys/mman.h>
10#include <sys/mpctl.h>
Jens Axboe0ec15d62011-07-11 10:48:51 +020011#include <sys/diskio.h>
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020012#include <sys/param.h>
13#include <sys/pstat.h>
Jens Axboed48a9792011-07-09 08:54:26 +020014#include <time.h>
15#include <aio.h>
Jens Axboe6e675fc2011-10-04 13:56:06 +020016#include <arm.h>
Jens Axboec00a2282011-07-08 20:56:06 +020017
18#include "../file.h"
19
20#define FIO_HAVE_POSIXAIO
21#define FIO_HAVE_ODIRECT
22#define FIO_USE_GENERIC_RAND
23#define FIO_HAVE_CLOCK_MONOTONIC
24#define FIO_HAVE_PSHARED_MUTEX
25#define FIO_HAVE_FADVISE
Jens Axboe0ec15d62011-07-11 10:48:51 +020026#define FIO_HAVE_CHARDEV_SIZE
Jens Axboebaa66772011-07-11 10:56:32 +020027#define FIO_HAVE_FALLOCATE
28#define FIO_HAVE_POSIXAIO_FSYNC
Jens Axboe893b37c2011-07-11 14:43:26 +020029#define FIO_HAVE_FDATASYNC
Jens Axboec00a2282011-07-08 20:56:06 +020030
31#define OS_MAP_ANON MAP_ANONYMOUS
32#define OS_MSG_DONTWAIT 0
33
34#define POSIX_MADV_DONTNEED MADV_DONTNEED
35#define POSIX_MADV_SEQUENTIAL MADV_SEQUENTIAL
36#define POSIX_MADV_RANDOM MADV_RANDOM
37#define posix_madvise(ptr, sz, hint) madvise((ptr), (sz), (hint))
38
Jens Axboed48a9792011-07-09 08:54:26 +020039#ifndef CLOCK_MONOTONIC
40#define CLOCK_MONOTONIC CLOCK_REALTIME
41#endif
42
43#ifndef MSG_WAITALL
44#define MSG_WAITALL 0x40
45#endif
46
Jens Axboe6e675fc2011-10-04 13:56:06 +020047#ifdef LITTLE_ENDIAN
48#define FIO_LITTLE_ENDIAN
49#else
50#define FIO_BIG_ENDIAN
51#endif
52
Jens Axboe901ebe12011-10-04 23:31:00 +020053#define FIO_USE_GENERIC_SWAP
54
Jens Axboee97c1442011-09-21 09:38:01 +020055#define FIO_OS_HAVE_AIOCB_TYPEDEF
56typedef struct aiocb64 os_aiocb_t;
57
Jens Axboec00a2282011-07-08 20:56:06 +020058static inline int blockdev_invalidate_cache(struct fio_file *f)
59{
60 return EINVAL;
61}
62
63static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
64{
Jens Axboe0ec15d62011-07-11 10:48:51 +020065 disk_describe_type_ext_t dext;
Jens Axboec00a2282011-07-08 20:56:06 +020066
Jens Axboe0ec15d62011-07-11 10:48:51 +020067 if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
68 unsigned long long lba;
69
70 lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
71 *bytes = lba * dext.lgblksz;
Jens Axboec00a2282011-07-08 20:56:06 +020072 return 0;
73 }
74
Jens Axboe564e49f2011-07-08 21:10:30 +020075 *bytes = 0;
Jens Axboec00a2282011-07-08 20:56:06 +020076 return errno;
Jens Axboec00a2282011-07-08 20:56:06 +020077}
78
Jens Axboe0ec15d62011-07-11 10:48:51 +020079static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
80{
81 return blockdev_size(f, bytes);
82}
83
Jens Axboec00a2282011-07-08 20:56:06 +020084static inline unsigned long long os_phys_mem(void)
85{
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020086 unsigned long long ret;
87 struct pst_static pst;
88 union pstun pu;
Jens Axboec00a2282011-07-08 20:56:06 +020089
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020090 pu.pst_static = &pst;
91 if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
Jens Axboec00a2282011-07-08 20:56:06 +020092 return 0;
93
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020094 ret = pst.physical_memory;
95 ret *= pst.page_size;
96 return ret;
Jens Axboec00a2282011-07-08 20:56:06 +020097}
98
99#define FIO_HAVE_CPU_ONLINE_SYSCONF
100
101static inline unsigned int cpus_online(void)
102{
103 return mpctl(MPC_GETNUMSPUS, 0, NULL);
104}
105
106#endif