-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathglusterfs_async.c
193 lines (164 loc) · 4.13 KB
/
glusterfs_async.c
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
* glusterfs engine
*
* IO engine using Glusterfs's gfapi async interface
*
*/
#include "gfapi.h"
#define NOT_YET 1
struct fio_gf_iou {
struct io_u *io_u;
int io_complete;
};
static struct io_u *fio_gf_event(struct thread_data *td, int event)
{
struct gf_data *gf_data = td->io_ops_data;
dprint(FD_IO, "%s\n", __FUNCTION__);
return gf_data->aio_events[event];
}
static int fio_gf_getevents(struct thread_data *td, unsigned int min,
unsigned int max, const struct timespec *t)
{
struct gf_data *g = td->io_ops_data;
unsigned int events = 0;
struct io_u *io_u;
int i;
dprint(FD_IO, "%s\n", __FUNCTION__);
do {
io_u_qiter(&td->io_u_all, io_u, i) {
struct fio_gf_iou *io;
if (!(io_u->flags & IO_U_F_FLIGHT))
continue;
io = io_u->engine_data;
if (io->io_complete) {
io->io_complete = 0;
g->aio_events[events] = io_u;
events++;
if (events >= max)
break;
}
}
if (events < min)
usleep(100);
else
break;
} while (1);
return events;
}
static void fio_gf_io_u_free(struct thread_data *td, struct io_u *io_u)
{
struct fio_gf_iou *io = io_u->engine_data;
if (io) {
if (io->io_complete)
log_err("incomplete IO found.\n");
io_u->engine_data = NULL;
free(io);
}
}
static int fio_gf_io_u_init(struct thread_data *td, struct io_u *io_u)
{
struct fio_gf_iou *io;
dprint(FD_FILE, "%s\n", __FUNCTION__);
io = malloc(sizeof(struct fio_gf_iou));
if (!io) {
td_verror(td, errno, "malloc");
return 1;
}
io->io_complete = 0;
io->io_u = io_u;
io_u->engine_data = io;
return 0;
}
#if defined(CONFIG_GF_NEW_API)
static void gf_async_cb(glfs_fd_t * fd, ssize_t ret, struct glfs_stat *prestat,
struct glfs_stat *poststat, void *data)
#else
static void gf_async_cb(glfs_fd_t * fd, ssize_t ret, void *data)
#endif
{
struct io_u *io_u = data;
struct fio_gf_iou *iou = io_u->engine_data;
dprint(FD_IO, "%s ret %zd\n", __FUNCTION__, ret);
iou->io_complete = 1;
}
static enum fio_q_status fio_gf_async_queue(struct thread_data fio_unused * td,
struct io_u *io_u)
{
struct gf_data *g = td->io_ops_data;
int r;
dprint(FD_IO, "%s op %s\n", __FUNCTION__, io_ddir_name(io_u->ddir));
fio_ro_check(td, io_u);
if (io_u->ddir == DDIR_READ)
r = glfs_pread_async(g->fd, io_u->xfer_buf, io_u->xfer_buflen,
io_u->offset, 0, gf_async_cb, io_u);
else if (io_u->ddir == DDIR_WRITE)
r = glfs_pwrite_async(g->fd, io_u->xfer_buf, io_u->xfer_buflen,
io_u->offset, 0, gf_async_cb, io_u);
#if defined(CONFIG_GF_TRIM)
else if (io_u->ddir == DDIR_TRIM)
r = glfs_discard_async(g->fd, io_u->offset, io_u->xfer_buflen,
gf_async_cb, io_u);
#endif
else if (io_u->ddir == DDIR_DATASYNC)
r = glfs_fdatasync_async(g->fd, gf_async_cb, io_u);
else if (io_u->ddir == DDIR_SYNC)
r = glfs_fsync_async(g->fd, gf_async_cb, io_u);
else
r = EINVAL;
if (r) {
log_err("glfs queue failed.\n");
io_u->error = r;
goto failed;
}
return FIO_Q_QUEUED;
failed:
io_u->error = r;
td_verror(td, io_u->error, "xfer");
return FIO_Q_COMPLETED;
}
static int fio_gf_async_setup(struct thread_data *td)
{
struct gf_data *g;
int r;
#if defined(NOT_YET)
log_err("the async interface is still very experimental...\n");
#endif
r = fio_gf_setup(td);
if (r)
return r;
td->o.use_thread = 1;
g = td->io_ops_data;
g->aio_events = calloc(td->o.iodepth, sizeof(struct io_u *));
if (!g->aio_events) {
r = -ENOMEM;
fio_gf_cleanup(td);
return r;
}
return r;
}
static struct ioengine_ops ioengine = {
.name = "gfapi_async",
.version = FIO_IOOPS_VERSION,
.init = fio_gf_async_setup,
.cleanup = fio_gf_cleanup,
.queue = fio_gf_async_queue,
.open_file = fio_gf_open_file,
.close_file = fio_gf_close_file,
.unlink_file = fio_gf_unlink_file,
.get_file_size = fio_gf_get_file_size,
.getevents = fio_gf_getevents,
.event = fio_gf_event,
.io_u_init = fio_gf_io_u_init,
.io_u_free = fio_gf_io_u_free,
.options = gfapi_options,
.option_struct_size = sizeof(struct gf_options),
.flags = FIO_DISKLESSIO,
};
static void fio_init fio_gf_register(void)
{
register_ioengine(&ioengine);
}
static void fio_exit fio_gf_unregister(void)
{
unregister_ioengine(&ioengine);
}