Fio 3.15
[fio.git] / engines / glusterfs_async.c
CommitLineData
cc47f094 1/*
2 * glusterfs engine
3 *
4 * IO engine using Glusterfs's gfapi async interface
5 *
6 */
7#include "gfapi.h"
88db2717 8#define NOT_YET 1
cc47f094 9struct fio_gf_iou {
10 struct io_u *io_u;
11 int io_complete;
12};
13
14static struct io_u *fio_gf_event(struct thread_data *td, int event)
15{
565e784d 16 struct gf_data *gf_data = td->io_ops_data;
8859391b 17
cc47f094 18 dprint(FD_IO, "%s\n", __FUNCTION__);
19 return gf_data->aio_events[event];
20}
21
22static int fio_gf_getevents(struct thread_data *td, unsigned int min,
1f440ece 23 unsigned int max, const struct timespec *t)
cc47f094 24{
565e784d 25 struct gf_data *g = td->io_ops_data;
cc47f094 26 unsigned int events = 0;
27 struct io_u *io_u;
8859391b 28 int i;
cc47f094 29
30 dprint(FD_IO, "%s\n", __FUNCTION__);
31 do {
32 io_u_qiter(&td->io_u_all, io_u, i) {
8859391b
JA
33 struct fio_gf_iou *io;
34
cc47f094 35 if (!(io_u->flags & IO_U_F_FLIGHT))
36 continue;
37
8859391b
JA
38 io = io_u->engine_data;
39 if (io->io_complete) {
cc47f094 40 io->io_complete = 0;
41 g->aio_events[events] = io_u;
42 events++;
88db2717 43
b29c813f
JA
44 if (events >= max)
45 break;
cc47f094 46 }
47
48 }
49 if (events < min)
6fa14b99 50 usleep(100);
cc47f094 51 else
52 break;
53
54 } while (1);
55
56 return events;
57}
58
88db2717 59static void fio_gf_io_u_free(struct thread_data *td, struct io_u *io_u)
cc47f094 60{
88db2717 61 struct fio_gf_iou *io = io_u->engine_data;
62
63 if (io) {
8859391b 64 if (io->io_complete)
b29c813f 65 log_err("incomplete IO found.\n");
88db2717 66 io_u->engine_data = NULL;
67 free(io);
68 }
69}
cc47f094 70
88db2717 71static int fio_gf_io_u_init(struct thread_data *td, struct io_u *io_u)
72{
04e9eb82 73 struct fio_gf_iou *io;
88db2717 74 dprint(FD_FILE, "%s\n", __FUNCTION__);
04e9eb82 75
76 io = malloc(sizeof(struct fio_gf_iou));
77 if (!io) {
78 td_verror(td, errno, "malloc");
79 return 1;
80 }
81 io->io_complete = 0;
82 io->io_u = io_u;
83 io_u->engine_data = io;
cc47f094 84 return 0;
85}
86
ce4d13ca
JA
87#if defined(CONFIG_GF_NEW_API)
88static void gf_async_cb(glfs_fd_t * fd, ssize_t ret, struct glfs_stat *prestat,
89 struct glfs_stat *poststat, void *data)
90#else
b29c813f 91static void gf_async_cb(glfs_fd_t * fd, ssize_t ret, void *data)
ce4d13ca 92#endif
cc47f094 93{
8859391b
JA
94 struct io_u *io_u = data;
95 struct fio_gf_iou *iou = io_u->engine_data;
cc47f094 96
f6149216 97 dprint(FD_IO, "%s ret %zd\n", __FUNCTION__, ret);
b29c813f 98 iou->io_complete = 1;
cc47f094 99}
100
d3b07186
BVA
101static enum fio_q_status fio_gf_async_queue(struct thread_data fio_unused * td,
102 struct io_u *io_u)
cc47f094 103{
565e784d 104 struct gf_data *g = td->io_ops_data;
8859391b 105 int r;
cc47f094 106
8859391b 107 dprint(FD_IO, "%s op %s\n", __FUNCTION__, io_ddir_name(io_u->ddir));
88db2717 108
cc47f094 109 fio_ro_check(td, io_u);
110
111 if (io_u->ddir == DDIR_READ)
b29c813f 112 r = glfs_pread_async(g->fd, io_u->xfer_buf, io_u->xfer_buflen,
8859391b 113 io_u->offset, 0, gf_async_cb, io_u);
cc47f094 114 else if (io_u->ddir == DDIR_WRITE)
b29c813f 115 r = glfs_pwrite_async(g->fd, io_u->xfer_buf, io_u->xfer_buflen,
8859391b 116 io_u->offset, 0, gf_async_cb, io_u);
6876c98c
JA
117#if defined(CONFIG_GF_TRIM)
118 else if (io_u->ddir == DDIR_TRIM)
119 r = glfs_discard_async(g->fd, io_u->offset, io_u->xfer_buflen,
120 gf_async_cb, io_u);
121#endif
656955eb
JA
122 else if (io_u->ddir == DDIR_DATASYNC)
123 r = glfs_fdatasync_async(g->fd, gf_async_cb, io_u);
8859391b
JA
124 else if (io_u->ddir == DDIR_SYNC)
125 r = glfs_fsync_async(g->fd, gf_async_cb, io_u);
126 else
97068f80 127 r = EINVAL;
8859391b 128
b29c813f 129 if (r) {
8859391b 130 log_err("glfs queue failed.\n");
b29c813f
JA
131 io_u->error = r;
132 goto failed;
133 }
cc47f094 134 return FIO_Q_QUEUED;
135
136failed:
137 io_u->error = r;
138 td_verror(td, io_u->error, "xfer");
139 return FIO_Q_COMPLETED;
140}
141
a89ba4b1 142static int fio_gf_async_setup(struct thread_data *td)
88db2717 143{
8859391b
JA
144 struct gf_data *g;
145 int r;
7d4a8e7e 146
88db2717 147#if defined(NOT_YET)
7d4a8e7e 148 log_err("the async interface is still very experimental...\n");
88db2717 149#endif
b29c813f 150 r = fio_gf_setup(td);
8859391b 151 if (r)
b29c813f 152 return r;
8859391b 153
6fa14b99 154 td->o.use_thread = 1;
565e784d 155 g = td->io_ops_data;
8859391b 156 g->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *));
b29c813f
JA
157 if (!g->aio_events) {
158 r = -ENOMEM;
159 fio_gf_cleanup(td);
160 return r;
161 }
88db2717 162
b29c813f 163 return r;
88db2717 164}
165
cc47f094 166static struct ioengine_ops ioengine = {
b29c813f
JA
167 .name = "gfapi_async",
168 .version = FIO_IOOPS_VERSION,
169 .init = fio_gf_async_setup,
170 .cleanup = fio_gf_cleanup,
b29c813f
JA
171 .queue = fio_gf_async_queue,
172 .open_file = fio_gf_open_file,
173 .close_file = fio_gf_close_file,
38ef9c90 174 .unlink_file = fio_gf_unlink_file,
b29c813f
JA
175 .get_file_size = fio_gf_get_file_size,
176 .getevents = fio_gf_getevents,
177 .event = fio_gf_event,
178 .io_u_init = fio_gf_io_u_init,
179 .io_u_free = fio_gf_io_u_free,
180 .options = gfapi_options,
cc47f094 181 .option_struct_size = sizeof(struct gf_options),
b29c813f 182 .flags = FIO_DISKLESSIO,
cc47f094 183};
184
185static void fio_init fio_gf_register(void)
186{
b29c813f 187 register_ioengine(&ioengine);
cc47f094 188}
189
190static void fio_exit fio_gf_unregister(void)
191{
b29c813f 192 unregister_ioengine(&ioengine);
cc47f094 193}