blob: 5943938194cc71027556ae6d59f037e9ca0a5f6d [file] [log] [blame]
Jens Axboec00a2282011-07-08 20:56:06 +02001#ifndef FIO_OS_HPUX_H
2#define FIO_OS_HPUX_H
3
Jens Axboecca84642011-10-07 12:47:57 +02004#define FIO_OS os_hpux
5
Jens Axboec00a2282011-07-08 20:56:06 +02006#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>
Jens Axboe0ec15d62011-07-11 10:48:51 +020013#include <sys/diskio.h>
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020014#include <sys/param.h>
15#include <sys/pstat.h>
Jens Axboed48a9792011-07-09 08:54:26 +020016#include <time.h>
17#include <aio.h>
Jens Axboe6e675fc2011-10-04 13:56:06 +020018#include <arm.h>
Jens Axboec00a2282011-07-08 20:56:06 +020019
20#include "../file.h"
21
22#define FIO_HAVE_POSIXAIO
23#define FIO_HAVE_ODIRECT
24#define FIO_USE_GENERIC_RAND
25#define FIO_HAVE_CLOCK_MONOTONIC
26#define FIO_HAVE_PSHARED_MUTEX
27#define FIO_HAVE_FADVISE
Jens Axboe0ec15d62011-07-11 10:48:51 +020028#define FIO_HAVE_CHARDEV_SIZE
Jens Axboebaa66772011-07-11 10:56:32 +020029#define FIO_HAVE_FALLOCATE
30#define FIO_HAVE_POSIXAIO_FSYNC
Jens Axboe893b37c2011-07-11 14:43:26 +020031#define FIO_HAVE_FDATASYNC
Jens Axboec00a2282011-07-08 20:56:06 +020032
33#define OS_MAP_ANON MAP_ANONYMOUS
34#define OS_MSG_DONTWAIT 0
35
36#define POSIX_MADV_DONTNEED MADV_DONTNEED
37#define POSIX_MADV_SEQUENTIAL MADV_SEQUENTIAL
38#define POSIX_MADV_RANDOM MADV_RANDOM
39#define posix_madvise(ptr, sz, hint) madvise((ptr), (sz), (hint))
40
Jens Axboed48a9792011-07-09 08:54:26 +020041#ifndef CLOCK_MONOTONIC
42#define CLOCK_MONOTONIC CLOCK_REALTIME
43#endif
44
45#ifndef MSG_WAITALL
46#define MSG_WAITALL 0x40
47#endif
48
Jens Axboe6e675fc2011-10-04 13:56:06 +020049#ifdef LITTLE_ENDIAN
50#define FIO_LITTLE_ENDIAN
51#else
52#define FIO_BIG_ENDIAN
53#endif
54
Jens Axboe901ebe12011-10-04 23:31:00 +020055#define FIO_USE_GENERIC_SWAP
56
Jens Axboee97c1442011-09-21 09:38:01 +020057#define FIO_OS_HAVE_AIOCB_TYPEDEF
58typedef struct aiocb64 os_aiocb_t;
59
Jens Axboe5ba13ea2011-10-04 23:50:28 +020060#define FIO_OS_HAVE_SOCKLEN_T
61typedef int fio_socklen_t;
62
Jens Axboec00a2282011-07-08 20:56:06 +020063static inline int blockdev_invalidate_cache(struct fio_file *f)
64{
65 return EINVAL;
66}
67
68static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
69{
Jens Axboe0ec15d62011-07-11 10:48:51 +020070 disk_describe_type_ext_t dext;
Jens Axboec00a2282011-07-08 20:56:06 +020071
Jens Axboe0ec15d62011-07-11 10:48:51 +020072 if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
73 unsigned long long lba;
74
75 lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
76 *bytes = lba * dext.lgblksz;
Jens Axboec00a2282011-07-08 20:56:06 +020077 return 0;
78 }
79
Jens Axboe564e49f2011-07-08 21:10:30 +020080 *bytes = 0;
Jens Axboec00a2282011-07-08 20:56:06 +020081 return errno;
Jens Axboec00a2282011-07-08 20:56:06 +020082}
83
Jens Axboe0ec15d62011-07-11 10:48:51 +020084static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
85{
86 return blockdev_size(f, bytes);
87}
88
Jens Axboec00a2282011-07-08 20:56:06 +020089static inline unsigned long long os_phys_mem(void)
90{
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020091 unsigned long long ret;
92 struct pst_static pst;
93 union pstun pu;
Jens Axboec00a2282011-07-08 20:56:06 +020094
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020095 pu.pst_static = &pst;
96 if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
Jens Axboec00a2282011-07-08 20:56:06 +020097 return 0;
98
Jens Axboe8c9ca2e2011-07-11 10:25:35 +020099 ret = pst.physical_memory;
100 ret *= pst.page_size;
101 return ret;
Jens Axboec00a2282011-07-08 20:56:06 +0200102}
103
104#define FIO_HAVE_CPU_ONLINE_SYSCONF
105
106static inline unsigned int cpus_online(void)
107{
108 return mpctl(MPC_GETNUMSPUS, 0, NULL);
109}
110
111#endif