Change .category of cpuio to FIO_OPT_C_ENGINE
[fio.git] / engines / posixaio.c
CommitLineData
2866c82d 1/*
da751ca9
JA
2 * posixaio engine
3 *
4 * IO engine that uses the posix defined aio interface.
2866c82d
JA
5 *
6 */
7#include <stdio.h>
8#include <stdlib.h>
9#include <unistd.h>
10#include <errno.h>
bc733f3b 11#include <fcntl.h>
5f350952
JA
12
13#include "../fio.h"
2866c82d
JA
14
15struct posixaio_data {
16 struct io_u **aio_events;
207cb0f0 17 unsigned int queued;
2866c82d
JA
18};
19
20static int fill_timespec(struct timespec *ts)
21{
5351f564
JA
22#ifdef CONFIG_CLOCK_GETTIME
23#ifdef CONFIG_CLOCK_MONOTONIC
24 clockid_t clk = CLOCK_MONOTONIC;
25#else
26 clockid_t clk = CLOCK_REALTIME;
27#endif
28 if (!clock_gettime(clk, ts))
2866c82d
JA
29 return 0;
30
31 perror("clock_gettime");
2866c82d 32 return 1;
5351f564
JA
33#else
34 struct timeval tv;
35
36 gettimeofday(&tv, NULL);
37 ts->tv_sec = tv.tv_sec;
38 ts->tv_nsec = tv.tv_usec * 1000;
39 return 0;
40#endif
2866c82d
JA
41}
42
43static unsigned long long ts_utime_since_now(struct timespec *t)
44{
45 long long sec, nsec;
46 struct timespec now;
47
48 if (fill_timespec(&now))
49 return 0;
50
51 sec = now.tv_sec - t->tv_sec;
52 nsec = now.tv_nsec - t->tv_nsec;
53 if (sec > 0 && nsec < 0) {
54 sec--;
55 nsec += 1000000000;
56 }
57
58 sec *= 1000000;
59 nsec /= 1000;
60 return sec + nsec;
61}
62
7a16dd02
JA
63static int fio_posixaio_cancel(struct thread_data fio_unused *td,
64 struct io_u *io_u)
2866c82d 65{
53cdc686
JA
66 struct fio_file *f = io_u->file;
67 int r = aio_cancel(f->fd, &io_u->aiocb);
2866c82d 68
2faf9ec8 69 if (r == AIO_ALLDONE || r == AIO_CANCELED)
2866c82d
JA
70 return 0;
71
72 return 1;
73}
74
7a16dd02
JA
75static int fio_posixaio_prep(struct thread_data fio_unused *td,
76 struct io_u *io_u)
2866c82d 77{
e97c1442 78 os_aiocb_t *aiocb = &io_u->aiocb;
53cdc686 79 struct fio_file *f = io_u->file;
2866c82d 80
53cdc686 81 aiocb->aio_fildes = f->fd;
cec6b55d
JA
82 aiocb->aio_buf = io_u->xfer_buf;
83 aiocb->aio_nbytes = io_u->xfer_buflen;
2866c82d 84 aiocb->aio_offset = io_u->offset;
9918be5a 85 aiocb->aio_sigevent.sigev_notify = SIGEV_NONE;
2866c82d
JA
86
87 io_u->seen = 0;
88 return 0;
89}
90
3c77037e
JA
91#define SUSPEND_ENTRIES 8
92
e7d2e616 93static int fio_posixaio_getevents(struct thread_data *td, unsigned int min,
1f440ece 94 unsigned int max, const struct timespec *t)
2866c82d 95{
565e784d 96 struct posixaio_data *pd = td->io_ops_data;
e97c1442 97 os_aiocb_t *suspend_list[SUSPEND_ENTRIES];
2866c82d 98 struct timespec start;
a3cc770d 99 int have_timeout = 0;
f8326424 100 int suspend_entries;
2ae0b204 101 struct io_u *io_u;
a3cc770d 102 unsigned int r;
2ae0b204 103 int i;
2866c82d
JA
104
105 if (t && !fill_timespec(&start))
106 have_timeout = 1;
5351f564
JA
107 else
108 memset(&start, 0, sizeof(start));
2866c82d
JA
109
110 r = 0;
111restart:
effe99e4 112 memset(suspend_list, 0, sizeof(suspend_list));
f8326424 113 suspend_entries = 0;
2ae0b204 114 io_u_qiter(&td->io_u_all, io_u, i) {
2866c82d
JA
115 int err;
116
2ae0b204 117 if (io_u->seen || !(io_u->flags & IO_U_F_FLIGHT))
2866c82d
JA
118 continue;
119
120 err = aio_error(&io_u->aiocb);
3c77037e
JA
121 if (err == EINPROGRESS) {
122 if (suspend_entries < SUSPEND_ENTRIES) {
123 suspend_list[suspend_entries] = &io_u->aiocb;
124 suspend_entries++;
125 }
3f344316 126 continue;
3c77037e 127 }
3f344316
JA
128
129 io_u->seen = 1;
207cb0f0 130 pd->queued--;
3f344316
JA
131 pd->aio_events[r++] = io_u;
132
133 if (err == ECANCELED)
134 io_u->resid = io_u->xfer_buflen;
135 else if (!err) {
136 ssize_t retval = aio_return(&io_u->aiocb);
137
138 io_u->resid = io_u->xfer_buflen - retval;
139 } else
140 io_u->error = err;
2866c82d
JA
141 }
142
143 if (r >= min)
144 return r;
145
146 if (have_timeout) {
147 unsigned long long usec;
148
149 usec = (t->tv_sec * 1000000) + (t->tv_nsec / 1000);
150 if (ts_utime_since_now(&start) > usec)
151 return r;
152 }
153
154 /*
3c77037e 155 * must have some in-flight, wait for at least one
2866c82d 156 */
e97c1442 157 aio_suspend((const os_aiocb_t * const *)suspend_list,
3c77037e 158 suspend_entries, t);
2866c82d
JA
159 goto restart;
160}
161
162static struct io_u *fio_posixaio_event(struct thread_data *td, int event)
163{
565e784d 164 struct posixaio_data *pd = td->io_ops_data;
2866c82d
JA
165
166 return pd->aio_events[event];
167}
168
03e20d68 169static int fio_posixaio_queue(struct thread_data *td,
2866c82d
JA
170 struct io_u *io_u)
171{
565e784d 172 struct posixaio_data *pd = td->io_ops_data;
e97c1442 173 os_aiocb_t *aiocb = &io_u->aiocb;
2866c82d
JA
174 int ret;
175
7101d9c2
JA
176 fio_ro_check(td, io_u);
177
2866c82d
JA
178 if (io_u->ddir == DDIR_READ)
179 ret = aio_read(aiocb);
87dc1ab1 180 else if (io_u->ddir == DDIR_WRITE)
2866c82d 181 ret = aio_write(aiocb);
a5f3027c
JA
182 else if (io_u->ddir == DDIR_TRIM) {
183 if (pd->queued)
184 return FIO_Q_BUSY;
185
186 do_io_u_trim(td, io_u);
187 return FIO_Q_COMPLETED;
188 } else {
67bf9823 189#ifdef CONFIG_POSIXAIO_FSYNC
87dc1ab1 190 ret = aio_fsync(O_SYNC, aiocb);
207cb0f0
JA
191#else
192 if (pd->queued)
193 return FIO_Q_BUSY;
194
f011531e 195 do_io_u_sync(td, io_u);
207cb0f0
JA
196 return FIO_Q_COMPLETED;
197#endif
198 }
4c057b34 199
95bcd815 200 if (ret) {
138c0e22 201 int aio_err = errno;
4c057b34 202
afa16407
JA
203 /*
204 * At least OSX has a very low limit on the number of pending
def1d8e3
JA
205 * IOs, so if it returns EAGAIN, we are out of resources
206 * to queue more. Just return FIO_Q_BUSY to naturally
207 * drop off at this depth.
afa16407 208 */
4c057b34 209 if (aio_err == EAGAIN)
afa16407
JA
210 return FIO_Q_BUSY;
211
4c057b34 212 io_u->error = aio_err;
e1161c32 213 td_verror(td, io_u->error, "xfer");
36167d82 214 return FIO_Q_COMPLETED;
95bcd815 215 }
36167d82 216
207cb0f0 217 pd->queued++;
36167d82 218 return FIO_Q_QUEUED;
2866c82d
JA
219}
220
221static void fio_posixaio_cleanup(struct thread_data *td)
222{
565e784d 223 struct posixaio_data *pd = td->io_ops_data;
2866c82d
JA
224
225 if (pd) {
226 free(pd->aio_events);
227 free(pd);
2866c82d
JA
228 }
229}
230
231static int fio_posixaio_init(struct thread_data *td)
232{
233 struct posixaio_data *pd = malloc(sizeof(*pd));
234
cb781c75 235 memset(pd, 0, sizeof(*pd));
2dc1bbeb
JA
236 pd->aio_events = malloc(td->o.iodepth * sizeof(struct io_u *));
237 memset(pd->aio_events, 0, td->o.iodepth * sizeof(struct io_u *));
2866c82d 238
565e784d 239 td->io_ops_data = pd;
2866c82d
JA
240 return 0;
241}
242
5f350952 243static struct ioengine_ops ioengine = {
2866c82d
JA
244 .name = "posixaio",
245 .version = FIO_IOOPS_VERSION,
246 .init = fio_posixaio_init,
247 .prep = fio_posixaio_prep,
248 .queue = fio_posixaio_queue,
249 .cancel = fio_posixaio_cancel,
250 .getevents = fio_posixaio_getevents,
251 .event = fio_posixaio_event,
252 .cleanup = fio_posixaio_cleanup,
b5af8293
JA
253 .open_file = generic_open_file,
254 .close_file = generic_close_file,
df9c26b1 255 .get_file_size = generic_get_file_size,
2866c82d 256};
34cfcdaf 257
5f350952
JA
258static void fio_init fio_posixaio_register(void)
259{
260 register_ioengine(&ioengine);
261}
262
263static void fio_exit fio_posixaio_unregister(void)
264{
265 unregister_ioengine(&ioengine);
266}