forked from axboe/fio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
os-hpux.h
93 lines (72 loc) · 1.83 KB
/
os-hpux.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#ifndef FIO_OS_HPUX_H
#define FIO_OS_HPUX_H
#define FIO_OS os_hpux
#include <errno.h>
#include <unistd.h>
#include <sys/ioctl.h>
#include <sys/fcntl.h>
#include <sys/fadvise.h>
#include <sys/mman.h>
#include <sys/mpctl.h>
#include <sys/diskio.h>
#include <sys/param.h>
#include <sys/pstat.h>
#include <time.h>
#include <aio.h>
#include <arm.h>
#include "../file.h"
#define FIO_HAVE_ODIRECT
#define FIO_USE_GENERIC_RAND
#define FIO_USE_GENERIC_INIT_RANDOM_STATE
#define FIO_HAVE_PSHARED_MUTEX
#define FIO_HAVE_CHARDEV_SIZE
#define OS_MAP_ANON MAP_ANONYMOUS
#define OS_MSG_DONTWAIT 0
#define POSIX_MADV_DONTNEED MADV_DONTNEED
#define POSIX_MADV_SEQUENTIAL MADV_SEQUENTIAL
#define POSIX_MADV_RANDOM MADV_RANDOM
#define posix_madvise(ptr, sz, hint) madvise((ptr), (sz), (hint))
#ifndef MSG_WAITALL
#define MSG_WAITALL 0x40
#endif
#define FIO_USE_GENERIC_SWAP
#define FIO_OS_HAVE_AIOCB_TYPEDEF
typedef struct aiocb64 os_aiocb_t;
static inline int blockdev_invalidate_cache(struct fio_file *f)
{
return EINVAL;
}
static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
{
disk_describe_type_ext_t dext;
if (!ioctl(f->fd, DIOC_DESCRIBE_EXT, &dext)) {
unsigned long long lba;
lba = ((uint64_t) dext.maxsva_high << 32) | dext.maxsva_low;
*bytes = lba * dext.lgblksz;
return 0;
}
*bytes = 0;
return errno;
}
static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
{
return blockdev_size(f, bytes);
}
static inline unsigned long long os_phys_mem(void)
{
unsigned long long ret;
struct pst_static pst;
union pstun pu;
pu.pst_static = &pst;
if (pstat(PSTAT_STATIC, pu, sizeof(pst), 0, 0) == -1)
return 0;
ret = pst.physical_memory;
ret *= pst.page_size;
return ret;
}
#define FIO_HAVE_CPU_ONLINE_SYSCONF
static inline unsigned int cpus_online(void)
{
return mpctl(MPC_GETNUMSPUS, 0, NULL);
}
#endif