blob: d5a0dc9c88d16c7b53e6d221b6cb9484e6a83e75 [file] [log] [blame]
Jens Axboedcefb582009-06-03 08:49:39 +02001#ifndef FIO_IOENGINE_H
2#define FIO_IOENGINE_H
3
Jens Axboe67bf9822013-01-10 11:23:19 +01004#ifdef CONFIG_LIBAIO
5#include <libaio.h>
6#endif
7#ifdef CONFIG_GUASI
8#include <guasi.h>
9#endif
10
Jens Axboebcd5abf2013-01-23 09:27:25 -070011#define FIO_IOOPS_VERSION 15
Jens Axboedcefb582009-06-03 08:49:39 +020012
13enum {
Radha Ramachandran0c412142009-11-03 21:45:31 +010014 IO_U_F_FREE = 1 << 0,
15 IO_U_F_FLIGHT = 1 << 1,
16 IO_U_F_FREE_DEF = 1 << 2,
17 IO_U_F_IN_CUR_DEPTH = 1 << 3,
Jens Axboe38dad622010-07-20 14:46:00 -060018 IO_U_F_BUSY_OK = 1 << 4,
Jens Axboe0d29de82010-09-01 13:54:15 +020019 IO_U_F_TRIMMED = 1 << 5,
Jens Axboe1ef2b6b2010-10-08 15:07:01 +020020 IO_U_F_BARRIER = 1 << 6,
Jens Axboe82af2a72012-03-13 13:45:58 +010021 IO_U_F_VER_LIST = 1 << 7,
Jens Axboedcefb582009-06-03 08:49:39 +020022};
23
24/*
25 * The io unit
26 */
27struct io_u {
28 union {
Jens Axboe67bf9822013-01-10 11:23:19 +010029#ifdef CONFIG_LIBAIO
Jens Axboedcefb582009-06-03 08:49:39 +020030 struct iocb iocb;
31#endif
Jens Axboe67bf9822013-01-10 11:23:19 +010032#ifdef CONFIG_POSIXAIO
Jens Axboee97c1442011-09-21 09:38:01 +020033 os_aiocb_t aiocb;
Jens Axboedcefb582009-06-03 08:49:39 +020034#endif
35#ifdef FIO_HAVE_SGIO
36 struct sg_io_hdr hdr;
37#endif
Jens Axboe67bf9822013-01-10 11:23:19 +010038#ifdef CONFIG_GUASI
Jens Axboedcefb582009-06-03 08:49:39 +020039 guasi_req_t greq;
40#endif
Jens Axboe67bf9822013-01-10 11:23:19 +010041#ifdef CONFIG_SOLARISAIO
Jens Axboedcefb582009-06-03 08:49:39 +020042 aio_result_t resultp;
43#endif
Jens Axboe79a43182010-09-07 13:28:58 +020044#ifdef FIO_HAVE_BINJECT
45 struct b_user_cmd buc;
46#endif
Jens Axboe67bf9822013-01-10 11:23:19 +010047#ifdef CONFIG_RDMA
ren yufei21b8aee2011-08-01 10:01:57 +020048 struct ibv_mr *mr;
49#endif
Jens Axboedcefb582009-06-03 08:49:39 +020050 void *mmap_data;
51 };
52 struct timeval start_time;
53 struct timeval issue_time;
54
Jens Axboed72be542012-11-30 19:37:46 +010055 struct fio_file *file;
56 unsigned int flags;
57 enum fio_ddir ddir;
58
Jens Axboedcefb582009-06-03 08:49:39 +020059 /*
Jens Axboebcd5abf2013-01-23 09:27:25 -070060 * For replay workloads, we may want to account as a different
61 * IO type than what is being submitted.
62 */
63 enum fio_ddir acct_ddir;
64
65 /*
Jens Axboedcefb582009-06-03 08:49:39 +020066 * Allocated/set buffer and length
67 */
Jens Axboedcefb582009-06-03 08:49:39 +020068 unsigned long buflen;
69 unsigned long long offset;
Jens Axboed72be542012-11-30 19:37:46 +010070 void *buf;
Jens Axboedcefb582009-06-03 08:49:39 +020071
72 /*
Jens Axboe7d9fb452011-01-11 22:16:49 +010073 * Initial seed for generating the buffer contents
74 */
75 unsigned long rand_seed;
76
77 /*
Jens Axboedcefb582009-06-03 08:49:39 +020078 * IO engine state, may be different from above when we get
79 * partial transfers / residual data counts
80 */
81 void *xfer_buf;
82 unsigned long xfer_buflen;
83
Jens Axboe95228502010-07-14 08:42:03 +020084 /*
85 * Parameter related to pre-filled buffers and
86 * their size to handle variable block sizes.
87 */
88 unsigned long buf_filled_len;
89
Jens Axboedcefb582009-06-03 08:49:39 +020090 unsigned int resid;
91 unsigned int error;
92
Jens Axboedcefb582009-06-03 08:49:39 +020093 /*
94 * io engine private data
95 */
96 union {
97 unsigned int index;
98 unsigned int seen;
99 void *engine_data;
100 };
101
Jens Axboedcefb582009-06-03 08:49:39 +0200102 struct flist_head list;
103
104 /*
105 * Callback for io completion
106 */
107 int (*end_io)(struct thread_data *, struct io_u *);
108};
109
110/*
111 * io_ops->queue() return values
112 */
113enum {
114 FIO_Q_COMPLETED = 0, /* completed sync */
115 FIO_Q_QUEUED = 1, /* queued, will complete async */
116 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
117};
118
119struct ioengine_ops {
120 struct flist_head list;
121 char name[16];
122 int version;
123 int flags;
124 int (*setup)(struct thread_data *);
125 int (*init)(struct thread_data *);
126 int (*prep)(struct thread_data *, struct io_u *);
127 int (*queue)(struct thread_data *, struct io_u *);
128 int (*commit)(struct thread_data *);
129 int (*getevents)(struct thread_data *, unsigned int, unsigned int, struct timespec *);
130 struct io_u *(*event)(struct thread_data *, int);
131 int (*cancel)(struct thread_data *, struct io_u *);
132 void (*cleanup)(struct thread_data *);
133 int (*open_file)(struct thread_data *, struct fio_file *);
134 int (*close_file)(struct thread_data *, struct fio_file *);
135 int (*get_file_size)(struct thread_data *, struct fio_file *);
Jens Axboe36d80bc2012-11-30 21:46:06 +0100136 void (*terminate)(struct thread_data *);
Jens Axboec73ed242012-12-06 20:30:38 +0100137 int (*io_u_init)(struct thread_data *, struct io_u *);
138 void (*io_u_free)(struct thread_data *, struct io_u *);
Steven Langde890a12011-11-09 14:03:34 +0100139 int option_struct_size;
140 struct fio_option *options;
Jens Axboedcefb582009-06-03 08:49:39 +0200141 void *data;
142 void *dlhandle;
143};
144
Jens Axboe2b4f4ab2009-06-03 08:50:36 +0200145enum fio_ioengine_flags {
146 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
147 FIO_RAWIO = 1 << 1, /* some sort of direct/raw io */
148 FIO_DISKLESSIO = 1 << 2, /* no disk involved */
149 FIO_NOEXTEND = 1 << 3, /* engine can't extend file */
Bruce Cran93bcfd22012-02-20 20:18:19 +0100150 FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */
Jens Axboe2b4f4ab2009-06-03 08:50:36 +0200151 FIO_UNIDIR = 1 << 5, /* engine is uni-directional */
152 FIO_NOIO = 1 << 6, /* thread does only pseudo IO */
Jens Axboe36d80bc2012-11-30 21:46:06 +0100153 FIO_PIPEIO = 1 << 7, /* input/output no seekable */
154 FIO_BARRIER = 1 << 8, /* engine supports barriers */
155 FIO_MEMALIGN = 1 << 9, /* engine wants aligned memory */
Jens Axboe2b4f4ab2009-06-03 08:50:36 +0200156};
Jens Axboedcefb582009-06-03 08:49:39 +0200157
158/*
159 * io engine entry points
160 */
161extern int __must_check td_io_init(struct thread_data *);
162extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
163extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
164extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
165extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, struct timespec *);
166extern int __must_check td_io_commit(struct thread_data *);
167extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
168extern int td_io_close_file(struct thread_data *, struct fio_file *);
169extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
170
171extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
172extern void register_ioengine(struct ioengine_ops *);
173extern void unregister_ioengine(struct ioengine_ops *);
Steven Langde890a12011-11-09 14:03:34 +0100174extern void free_ioengine(struct thread_data *);
Jens Axboedcefb582009-06-03 08:49:39 +0200175extern void close_ioengine(struct thread_data *);
176
Steven Langde890a12011-11-09 14:03:34 +0100177extern int fio_show_ioengine_help(const char *engine);
178
Jens Axboedcefb582009-06-03 08:49:39 +0200179/*
180 * io unit handling
181 */
182#define queue_full(td) flist_empty(&(td)->io_u_freelist)
183extern struct io_u *__get_io_u(struct thread_data *);
184extern struct io_u *get_io_u(struct thread_data *);
185extern void put_io_u(struct thread_data *, struct io_u *);
Radha Ramachandranf2bba182009-06-15 08:40:16 +0200186extern void clear_io_u(struct thread_data *, struct io_u *);
Jens Axboedcefb582009-06-03 08:49:39 +0200187extern void requeue_io_u(struct thread_data *, struct io_u **);
Jens Axboe581e7142009-06-09 12:47:16 +0200188extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *, unsigned long *);
189extern int __must_check io_u_queued_complete(struct thread_data *, int, unsigned long *);
Jens Axboedcefb582009-06-03 08:49:39 +0200190extern void io_u_queued(struct thread_data *, struct io_u *);
191extern void io_u_log_error(struct thread_data *, struct io_u *);
192extern void io_u_mark_depth(struct thread_data *, unsigned int);
Jens Axboe9c426842012-03-02 21:02:12 +0100193extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int, unsigned int);
Jens Axboedcefb582009-06-03 08:49:39 +0200194void io_u_mark_complete(struct thread_data *, unsigned int);
195void io_u_mark_submit(struct thread_data *, unsigned int);
196
Jens Axboe0a28ecd2010-03-09 21:40:38 +0100197int do_io_u_sync(struct thread_data *, struct io_u *);
Jens Axboea5f30272010-07-19 16:19:55 -0600198int do_io_u_trim(struct thread_data *, struct io_u *);
Jens Axboe44f29692010-03-09 20:09:44 +0100199
Jens Axboec592b9f2009-06-03 09:29:28 +0200200#ifdef FIO_INC_DEBUG
201static inline void dprint_io_u(struct io_u *io_u, const char *p)
202{
203 struct fio_file *f = io_u->file;
204
205 dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
206 (unsigned long long) io_u->offset,
207 io_u->buflen, io_u->ddir);
208 if (fio_debug & (1 << FD_IO)) {
209 if (f)
210 log_info("/%s", f->file_name);
211
212 log_info("\n");
213 }
214}
215#else
216#define dprint_io_u(io_u, p)
217#endif
218
Jens Axboebcd5abf2013-01-23 09:27:25 -0700219static inline enum fio_ddir acct_ddir(struct io_u *io_u)
220{
221 if (io_u->acct_ddir != -1)
222 return io_u->acct_ddir;
223
224 return io_u->ddir;
225}
226
Jens Axboedcefb582009-06-03 08:49:39 +0200227#endif