[PATCH] Implement file syncing as data direction
[fio.git] / engines / fio-engine-libaio.c
1 /*
2  * native linux aio io engine
3  *
4  */
5 #include <stdio.h>
6 #include <stdlib.h>
7 #include <unistd.h>
8 #include <errno.h>
9 #include <assert.h>
10 #include "fio.h"
11 #include "os.h"
12
13 #define ev_to_iou(ev)   (struct io_u *) ((unsigned long) (ev)->obj)
14
15 struct libaio_data {
16         io_context_t aio_ctx;
17         struct io_event *aio_events;
18 };
19
20 static int fio_libaio_prep(struct thread_data fio_unused *td, struct io_u *io_u)
21 {
22         struct fio_file *f = io_u->file;
23
24         if (io_u->ddir == DDIR_READ)
25                 io_prep_pread(&io_u->iocb, f->fd, io_u->buf, io_u->buflen, io_u->offset);
26         else if (io_u->ddir == DDIR_WRITE)
27                 io_prep_pwrite(&io_u->iocb, f->fd, io_u->buf, io_u->buflen, io_u->offset);
28         else if (io_u->ddir == DDIR_SYNC)
29                 io_prep_fsync(&io_u->iocb, f->fd);
30         else
31                 return 1;
32
33         return 0;
34 }
35
36 static struct io_u *fio_libaio_event(struct thread_data *td, int event)
37 {
38         struct libaio_data *ld = td->io_ops->data;
39
40         return ev_to_iou(ld->aio_events + event);
41 }
42
43 static int fio_libaio_getevents(struct thread_data *td, int min, int max,
44                                 struct timespec *t)
45 {
46         struct libaio_data *ld = td->io_ops->data;
47         long r;
48
49         do {
50                 r = io_getevents(ld->aio_ctx, min, max, ld->aio_events, t);
51                 if (r == -EAGAIN) {
52                         usleep(100);
53                         continue;
54                 } else if (r == -EINTR)
55                         continue;
56                 else if (r != 0)
57                         break;
58         } while (1);
59
60         return (int) -r;
61 }
62
63 static int fio_libaio_queue(struct thread_data *td, struct io_u *io_u)
64 {
65         struct libaio_data *ld = td->io_ops->data;
66         struct iocb *iocb = &io_u->iocb;
67         long ret;
68
69         do {
70                 ret = io_submit(ld->aio_ctx, 1, &iocb);
71                 if (ret == 1)
72                         return 0;
73                 else if (ret == -EAGAIN || !ret)
74                         usleep(100);
75                 else if (ret == -EINTR)
76                         continue;
77                 else
78                         break;
79         } while (1);
80
81         assert(ret);
82
83         return (int) -ret;
84 }
85
86 static int fio_libaio_cancel(struct thread_data *td, struct io_u *io_u)
87 {
88         struct libaio_data *ld = td->io_ops->data;
89
90         return io_cancel(ld->aio_ctx, &io_u->iocb, ld->aio_events);
91 }
92
93 static void fio_libaio_cleanup(struct thread_data *td)
94 {
95         struct libaio_data *ld = td->io_ops->data;
96
97         if (ld) {
98                 io_destroy(ld->aio_ctx);
99                 if (ld->aio_events)
100                         free(ld->aio_events);
101
102                 free(ld);
103                 td->io_ops->data = NULL;
104         }
105 }
106
107 static int fio_libaio_init(struct thread_data *td)
108 {
109         struct libaio_data *ld = malloc(sizeof(*ld));
110
111         memset(ld, 0, sizeof(*ld));
112         if (io_queue_init(td->iodepth, &ld->aio_ctx)) {
113                 td_verror(td, errno);
114                 return 1;
115         }
116
117         ld->aio_events = malloc(td->iodepth * sizeof(struct io_event));
118         memset(ld->aio_events, 0, td->iodepth * sizeof(struct io_event));
119         td->io_ops->data = ld;
120         return 0;
121 }
122
123 struct ioengine_ops ioengine = {
124         .name           = "libaio",
125         .version        = FIO_IOOPS_VERSION,
126         .init           = fio_libaio_init,
127         .prep           = fio_libaio_prep,
128         .queue          = fio_libaio_queue,
129         .cancel         = fio_libaio_cancel,
130         .getevents      = fio_libaio_getevents,
131         .event          = fio_libaio_event,
132         .cleanup        = fio_libaio_cleanup,
133 };