blob: 8ab217f40b407e0c628016d8794bd90ed5f1e6aa [file] [log] [blame]
Jens Axboea4f4fdd2007-02-14 01:16:39 +01001/*
2 * read/write() engine that uses syslet to be async
3 *
4 */
5#include <stdio.h>
6#include <stdlib.h>
7#include <unistd.h>
8#include <errno.h>
9#include <assert.h>
10
11#include "../fio.h"
12#include "../os.h"
13
14#ifdef FIO_HAVE_SYSLET
15
16struct syslet_data {
17 struct io_u **events;
18 unsigned int nr_events;
19
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010020 struct async_head_user ahu;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010021 struct syslet_uatom **ring;
Jens Axboe9ff9de62007-02-23 13:21:45 +010022
23 struct syslet_uatom *head, *tail;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010024};
25
Jens Axboe9ff9de62007-02-23 13:21:45 +010026static void fio_syslet_complete_atom(struct thread_data *td,
27 struct syslet_uatom *atom)
28{
29 struct syslet_data *sd = td->io_ops->data;
Jens Axboe5b38ee82007-02-26 10:44:22 +010030 struct syslet_uatom *last;
Jens Axboe9ff9de62007-02-23 13:21:45 +010031 struct io_u *io_u;
Jens Axboe9ff9de62007-02-23 13:21:45 +010032
33 /*
Jens Axboe5b38ee82007-02-26 10:44:22 +010034 * complete from the beginning of the sequence up to (and
35 * including) this atom
Jens Axboe9ff9de62007-02-23 13:21:45 +010036 */
Jens Axboe5b38ee82007-02-26 10:44:22 +010037 last = atom;
38 io_u = atom->private;
39 atom = io_u->req.head;
Jens Axboe9ff9de62007-02-23 13:21:45 +010040
41 /*
42 * now complete in right order
43 */
Jens Axboe5b38ee82007-02-26 10:44:22 +010044 do {
Jens Axboe9ff9de62007-02-23 13:21:45 +010045 long ret;
46
Jens Axboe9ff9de62007-02-23 13:21:45 +010047 io_u = atom->private;
48 ret = *atom->ret_ptr;
49 if (ret > 0)
50 io_u->resid = io_u->xfer_buflen - ret;
51 else if (ret < 0)
52 io_u->error = ret;
53
54 assert(sd->nr_events < td->iodepth);
55 sd->events[sd->nr_events++] = io_u;
Jens Axboe9ff9de62007-02-23 13:21:45 +010056
Jens Axboe5b38ee82007-02-26 10:44:22 +010057 if (atom == last)
58 break;
Jens Axboe9ff9de62007-02-23 13:21:45 +010059
Jens Axboe5b38ee82007-02-26 10:44:22 +010060 atom = atom->next;
61 } while (1);
62
63 assert(!last->next);
Jens Axboe9ff9de62007-02-23 13:21:45 +010064}
65
Jens Axboea4f4fdd2007-02-14 01:16:39 +010066/*
67 * Inspect the ring to see if we have completed events
68 */
69static void fio_syslet_complete(struct thread_data *td)
70{
71 struct syslet_data *sd = td->io_ops->data;
72
73 do {
74 struct syslet_uatom *atom;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010075
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010076 atom = sd->ring[sd->ahu.user_ring_idx];
Jens Axboea4f4fdd2007-02-14 01:16:39 +010077 if (!atom)
78 break;
79
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +010080 sd->ring[sd->ahu.user_ring_idx] = NULL;
81 if (++sd->ahu.user_ring_idx == td->iodepth)
82 sd->ahu.user_ring_idx = 0;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010083
Jens Axboe9ff9de62007-02-23 13:21:45 +010084 fio_syslet_complete_atom(td, atom);
Jens Axboea4f4fdd2007-02-14 01:16:39 +010085 } while (1);
86}
87
88static int fio_syslet_getevents(struct thread_data *td, int min,
89 int fio_unused max,
90 struct timespec fio_unused *t)
91{
92 struct syslet_data *sd = td->io_ops->data;
Jens Axboea4f4fdd2007-02-14 01:16:39 +010093 long ret;
94
95 do {
96 fio_syslet_complete(td);
97
98 /*
99 * do we have enough immediate completions?
100 */
101 if (sd->nr_events >= (unsigned int) min)
102 break;
103
104 /*
105 * OK, we need to wait for some events...
106 */
Jens Axboe9ff9de62007-02-23 13:21:45 +0100107 ret = async_wait(1, sd->ahu.user_ring_idx, &sd->ahu);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100108 if (ret < 0)
Jens Axboee49499f2007-02-22 11:08:52 +0100109 return -errno;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100110 } while (1);
111
112 ret = sd->nr_events;
113 sd->nr_events = 0;
114 return ret;
115}
116
117static struct io_u *fio_syslet_event(struct thread_data *td, int event)
118{
119 struct syslet_data *sd = td->io_ops->data;
120
121 return sd->events[event];
122}
123
124static void init_atom(struct syslet_uatom *atom, int nr, void *arg0,
Jens Axboea2e1b082007-02-14 08:06:19 +0100125 void *arg1, void *arg2, void *arg3, void *ret_ptr,
126 unsigned long flags, void *priv)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100127{
128 atom->flags = flags;
129 atom->nr = nr;
130 atom->ret_ptr = ret_ptr;
Jens Axboea2e1b082007-02-14 08:06:19 +0100131 atom->next = NULL;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100132 atom->arg_ptr[0] = arg0;
133 atom->arg_ptr[1] = arg1;
134 atom->arg_ptr[2] = arg2;
Jens Axboea2e1b082007-02-14 08:06:19 +0100135 atom->arg_ptr[3] = arg3;
136 atom->arg_ptr[4] = atom->arg_ptr[5] = NULL;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100137 atom->private = priv;
138}
139
140/*
141 * Use seek atom for sync
142 */
143static void fio_syslet_prep_sync(struct io_u *io_u, struct fio_file *f)
144{
Jens Axboea2e1b082007-02-14 08:06:19 +0100145 init_atom(&io_u->req.atom, __NR_fsync, &f->fd, NULL, NULL, NULL,
Jens Axboe7d44a742007-02-14 17:32:08 +0100146 &io_u->req.ret, 0, io_u);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100147}
148
149static void fio_syslet_prep_rw(struct io_u *io_u, struct fio_file *f)
150{
151 int nr;
152
153 /*
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100154 * prepare rw
155 */
156 if (io_u->ddir == DDIR_READ)
Jens Axboea2e1b082007-02-14 08:06:19 +0100157 nr = __NR_pread64;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100158 else
Jens Axboea2e1b082007-02-14 08:06:19 +0100159 nr = __NR_pwrite64;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100160
Jens Axboea2e1b082007-02-14 08:06:19 +0100161 init_atom(&io_u->req.atom, nr, &f->fd, &io_u->xfer_buf,
Jens Axboe7d44a742007-02-14 17:32:08 +0100162 &io_u->xfer_buflen, &io_u->offset, &io_u->req.ret, 0, io_u);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100163}
164
165static int fio_syslet_prep(struct thread_data fio_unused *td, struct io_u *io_u)
166{
167 struct fio_file *f = io_u->file;
168
169 if (io_u->ddir == DDIR_SYNC)
170 fio_syslet_prep_sync(io_u, f);
171 else
172 fio_syslet_prep_rw(io_u, f);
173
174 return 0;
175}
176
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100177static void cachemiss_thread_start(void)
178{
179 while (1)
Jens Axboe7756b0d2007-02-26 10:22:31 +0100180 async_thread(NULL, NULL);
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100181}
182
183#define THREAD_STACK_SIZE (16384)
184
185static unsigned long thread_stack_alloc()
186{
Jens Axboe5b38ee82007-02-26 10:44:22 +0100187 return (unsigned long) malloc(THREAD_STACK_SIZE) + THREAD_STACK_SIZE;
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100188}
189
Jens Axboea0a930e2007-02-27 19:47:13 +0100190static void fio_syslet_queued(struct thread_data *td, struct syslet_data *sd)
191{
192 struct syslet_uatom *atom;
193 struct timeval now;
194
195 fio_gettime(&now, NULL);
196
197 atom = sd->head;
198 while (atom) {
199 struct io_u *io_u = atom->private;
200
201 memcpy(&io_u->issue_time, &now, sizeof(now));
202 io_u_queued(td, io_u);
203 atom = atom->next;
204 }
205}
206
Jens Axboe9ff9de62007-02-23 13:21:45 +0100207static int fio_syslet_commit(struct thread_data *td)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100208{
209 struct syslet_data *sd = td->io_ops->data;
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100210 struct syslet_uatom *done;
Jens Axboe9ff9de62007-02-23 13:21:45 +0100211
212 if (!sd->head)
213 return 0;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100214
Jens Axboe5b38ee82007-02-26 10:44:22 +0100215 assert(!sd->tail->next);
216
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100217 if (!sd->ahu.new_thread_stack)
218 sd->ahu.new_thread_stack = thread_stack_alloc();
219
Jens Axboea0a930e2007-02-27 19:47:13 +0100220 fio_syslet_queued(td, sd);
221
Jens Axboe7d44a742007-02-14 17:32:08 +0100222 /*
223 * On sync completion, the atom is returned. So on NULL return
224 * it's queued asynchronously.
225 */
Jens Axboe9ff9de62007-02-23 13:21:45 +0100226 done = async_exec(sd->head, &sd->ahu);
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100227
Jens Axboe9ff9de62007-02-23 13:21:45 +0100228 sd->head = sd->tail = NULL;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100229
Jens Axboe9ff9de62007-02-23 13:21:45 +0100230 if (done)
231 fio_syslet_complete_atom(td, done);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100232
Jens Axboe9ff9de62007-02-23 13:21:45 +0100233 return 0;
234}
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100235
Jens Axboe9ff9de62007-02-23 13:21:45 +0100236static int fio_syslet_queue(struct thread_data *td, struct io_u *io_u)
237{
238 struct syslet_data *sd = td->io_ops->data;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100239
Jens Axboe9ff9de62007-02-23 13:21:45 +0100240 if (sd->tail) {
241 sd->tail->next = &io_u->req.atom;
242 sd->tail = &io_u->req.atom;
243 } else
244 sd->head = sd->tail = &io_u->req.atom;
245
Jens Axboe5b38ee82007-02-26 10:44:22 +0100246 io_u->req.head = sd->head;
Jens Axboe9ff9de62007-02-23 13:21:45 +0100247 return FIO_Q_QUEUED;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100248}
249
Jens Axboedb64e9b2007-02-14 02:10:59 +0100250static int async_head_init(struct syslet_data *sd, unsigned int depth)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100251{
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100252 unsigned long ring_size;
253
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100254 memset(&sd->ahu, 0, sizeof(struct async_head_user));
Jens Axboe2ca50be2007-02-14 08:31:15 +0100255
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100256 ring_size = sizeof(struct syslet_uatom *) * depth;
257 sd->ring = malloc(ring_size);
258 memset(sd->ring, 0, ring_size);
259
Ingo Molnarbf0dc8f2007-02-21 23:25:44 +0100260 sd->ahu.user_ring_idx = 0;
261 sd->ahu.completion_ring = sd->ring;
262 sd->ahu.ring_size_bytes = ring_size;
263 sd->ahu.head_stack = thread_stack_alloc();
Jens Axboe5b38ee82007-02-26 10:44:22 +0100264 sd->ahu.head_eip = (unsigned long) cachemiss_thread_start;
265 sd->ahu.new_thread_eip = (unsigned long) cachemiss_thread_start;
Jens Axboedb64e9b2007-02-14 02:10:59 +0100266
267 return 0;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100268}
269
Jens Axboe2ca50be2007-02-14 08:31:15 +0100270static void async_head_exit(struct syslet_data *sd)
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100271{
Jens Axboe7f059a72007-02-14 08:53:11 +0100272 free(sd->ring);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100273}
274
275static void fio_syslet_cleanup(struct thread_data *td)
276{
277 struct syslet_data *sd = td->io_ops->data;
278
279 if (sd) {
Jens Axboe2ca50be2007-02-14 08:31:15 +0100280 async_head_exit(sd);
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100281 free(sd->events);
282 free(sd);
283 td->io_ops->data = NULL;
284 }
285}
286
287static int fio_syslet_init(struct thread_data *td)
288{
289 struct syslet_data *sd;
290
Jens Axboedb64e9b2007-02-14 02:10:59 +0100291
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100292 sd = malloc(sizeof(*sd));
293 memset(sd, 0, sizeof(*sd));
294 sd->events = malloc(sizeof(struct io_u *) * td->iodepth);
295 memset(sd->events, 0, sizeof(struct io_u *) * td->iodepth);
Jens Axboedb64e9b2007-02-14 02:10:59 +0100296
297 /*
298 * This will handily fail for kernels where syslet isn't available
299 */
300 if (async_head_init(sd, td->iodepth)) {
301 free(sd->events);
302 free(sd);
303 return 1;
304 }
305
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100306 td->io_ops->data = sd;
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100307 return 0;
308}
309
310static struct ioengine_ops ioengine = {
311 .name = "syslet-rw",
312 .version = FIO_IOOPS_VERSION,
313 .init = fio_syslet_init,
314 .prep = fio_syslet_prep,
315 .queue = fio_syslet_queue,
Jens Axboe9ff9de62007-02-23 13:21:45 +0100316 .commit = fio_syslet_commit,
Jens Axboea4f4fdd2007-02-14 01:16:39 +0100317 .getevents = fio_syslet_getevents,
318 .event = fio_syslet_event,
319 .cleanup = fio_syslet_cleanup,
320};
321
322#else /* FIO_HAVE_SYSLET */
323
324/*
325 * When we have a proper configure system in place, we simply wont build
326 * and install this io engine. For now install a crippled version that
327 * just complains and fails to load.
328 */
329static int fio_syslet_init(struct thread_data fio_unused *td)
330{
331 fprintf(stderr, "fio: syslet not available\n");
332 return 1;
333}
334
335static struct ioengine_ops ioengine = {
336 .name = "syslet-rw",
337 .version = FIO_IOOPS_VERSION,
338 .init = fio_syslet_init,
339};
340
341#endif /* FIO_HAVE_SYSLET */
342
343static void fio_init fio_syslet_register(void)
344{
345 register_ioengine(&ioengine);
346}
347
348static void fio_exit fio_syslet_unregister(void)
349{
350 unregister_ioengine(&ioengine);
351}