os/os-mac: kill unused code
[fio.git] / os / os-mac.h
CommitLineData
2afd826b
JA
1#ifndef FIO_OS_APPLE_H
2#define FIO_OS_APPLE_H
3
cca84643
JA
4#define FIO_OS os_mac
5
2afd826b 6#include <errno.h>
7e8ad197 7#include <fcntl.h>
c64646f0 8#include <sys/disk.h>
2afd826b 9#include <sys/sysctl.h>
9b836561
BC
10#include <sys/time.h>
11#include <unistd.h>
12#include <signal.h>
3dee087c 13#include <mach/mach_init.h>
ff245192
JA
14#include <machine/endian.h>
15#include <libkern/OSByteOrder.h>
2afd826b 16
e2e58886
JA
17#include "../file.h"
18
53531370 19#define FIO_USE_GENERIC_RAND
93bcfd20 20#define FIO_USE_GENERIC_INIT_RANDOM_STATE
e8d588e4 21#define FIO_HAVE_GETTID
b42ffd19 22#define FIO_HAVE_CHARDEV_SIZE
2afd826b
JA
23
24#define OS_MAP_ANON MAP_ANON
25
ff245192
JA
26#define fio_swap16(x) OSSwapInt16(x)
27#define fio_swap32(x) OSSwapInt32(x)
28#define fio_swap64(x) OSSwapInt64(x)
29
fca70358
JA
30/*
31 * OSX has a pitifully small shared memory segment by default,
32 * so default to a lower number of max jobs supported
33 */
34#define FIO_MAX_JOBS 128
35
331539ac 36typedef off_t off64_t;
2afd826b 37
9b836561 38typedef unsigned int clockid_t;
9b836561 39
7e8ad197
SN
40#define FIO_OS_DIRECTIO
41static inline int fio_set_odirect(int fd)
42{
43 if (fcntl(fd, F_NOCACHE, 1) == -1)
44 return errno;
45 return 0;
46}
47
c64646f0
SN
48static inline int blockdev_size(struct fio_file *f, unsigned long long *bytes)
49{
79d73100
JA
50 uint32_t block_size;
51 uint64_t block_count;
52
53 if (ioctl(f->fd, DKIOCGETBLOCKCOUNT, &block_count) == -1)
c64646f0 54 return errno;
79d73100 55 if (ioctl(f->fd, DKIOCGETBLOCKSIZE, &block_size) == -1)
c64646f0 56 return errno;
79d73100
JA
57
58 *bytes = block_size;
59 *bytes *= block_count;
60 return 0;
c64646f0
SN
61}
62
b42ffd19
JA
63static inline int chardev_size(struct fio_file *f, unsigned long long *bytes)
64{
65 /*
66 * Could be a raw block device, this is better than just assuming
67 * we can't get the size at all.
68 */
69 if (!blockdev_size(f, bytes))
70 return 0;
71
72 *bytes = -1ULL;
73 return 0;
74}
75
9b836561 76static inline int blockdev_invalidate_cache(struct fio_file *f)
2afd826b
JA
77{
78 return EINVAL;
79}
80
81static inline unsigned long long os_phys_mem(void)
82{
83 int mib[2] = { CTL_HW, HW_PHYSMEM };
84 unsigned long long mem;
85 size_t len = sizeof(mem);
86
87 sysctl(mib, 2, &mem, &len, NULL, 0);
88 return mem;
89}
e8d588e4
JA
90
91static inline int gettid(void)
92{
93 return mach_thread_self();
94}
5351f564
JA
95
96/*
97 * For some reason, there's no header definition for fdatasync(), even
98 * if it exists.
99 */
100extern int fdatasync(int fd);
101
2afd826b 102#endif