Reuse filled pattern
[fio.git] / ioengine.h
1 #ifndef FIO_IOENGINE_H
2 #define FIO_IOENGINE_H
3
4 #define FIO_IOOPS_VERSION       11
5
6 enum {
7         IO_U_F_FREE             = 1 << 0,
8         IO_U_F_FLIGHT           = 1 << 1,
9         IO_U_F_FREE_DEF         = 1 << 2,
10         IO_U_F_IN_CUR_DEPTH     = 1 << 3,
11 };
12
13 /*
14  * The io unit
15  */
16 struct io_u {
17         union {
18 #ifdef FIO_HAVE_LIBAIO
19                 struct iocb iocb;
20 #endif
21 #ifdef FIO_HAVE_POSIXAIO
22                 struct aiocb aiocb;
23 #endif
24 #ifdef FIO_HAVE_SGIO
25                 struct sg_io_hdr hdr;
26 #endif
27 #ifdef FIO_HAVE_GUASI
28                 guasi_req_t greq;
29 #endif
30 #ifdef FIO_HAVE_SOLARISAIO
31                 aio_result_t resultp;
32 #endif
33                 void *mmap_data;
34         };
35         struct timeval start_time;
36         struct timeval issue_time;
37
38         /*
39          * Allocated/set buffer and length
40          */
41         void *buf;
42         unsigned long buflen;
43         unsigned long long offset;
44
45         /*
46          * Parameters related to pre-filled buffers and
47          * their size to handle variable block sizes.
48          */
49         int buf_filled;
50         unsigned long buf_filled_len;
51
52         /*
53          * IO engine state, may be different from above when we get
54          * partial transfers / residual data counts
55          */
56         void *xfer_buf;
57         unsigned long xfer_buflen;
58
59         unsigned int resid;
60         unsigned int error;
61
62         enum fio_ddir ddir;
63
64         /*
65          * io engine private data
66          */
67         union {
68                 unsigned int index;
69                 unsigned int seen;
70                 void *engine_data;
71         };
72
73         unsigned int flags;
74
75         struct fio_file *file;
76
77         struct flist_head list;
78
79         /*
80          * Callback for io completion
81          */
82         int (*end_io)(struct thread_data *, struct io_u *);
83 };
84
85 /*
86  * io_ops->queue() return values
87  */
88 enum {
89         FIO_Q_COMPLETED = 0,            /* completed sync */
90         FIO_Q_QUEUED    = 1,            /* queued, will complete async */
91         FIO_Q_BUSY      = 2,            /* no more room, call ->commit() */
92 };
93
94 struct ioengine_ops {
95         struct flist_head list;
96         char name[16];
97         int version;
98         int flags;
99         int (*setup)(struct thread_data *);
100         int (*init)(struct thread_data *);
101         int (*prep)(struct thread_data *, struct io_u *);
102         int (*queue)(struct thread_data *, struct io_u *);
103         int (*commit)(struct thread_data *);
104         int (*getevents)(struct thread_data *, unsigned int, unsigned int, struct timespec *);
105         struct io_u *(*event)(struct thread_data *, int);
106         int (*cancel)(struct thread_data *, struct io_u *);
107         void (*cleanup)(struct thread_data *);
108         int (*open_file)(struct thread_data *, struct fio_file *);
109         int (*close_file)(struct thread_data *, struct fio_file *);
110         int (*get_file_size)(struct thread_data *, struct fio_file *);
111         void *data;
112         void *dlhandle;
113 };
114
115 enum fio_ioengine_flags {
116         FIO_SYNCIO      = 1 << 0,       /* io engine has synchronous ->queue */
117         FIO_RAWIO       = 1 << 1,       /* some sort of direct/raw io */
118         FIO_DISKLESSIO  = 1 << 2,       /* no disk involved */
119         FIO_NOEXTEND    = 1 << 3,       /* engine can't extend file */
120         FIO_NODISKUTIL  = 1 << 4,       /* diskutil can't handle filename */
121         FIO_UNIDIR      = 1 << 5,       /* engine is uni-directional */
122         FIO_NOIO        = 1 << 6,       /* thread does only pseudo IO */
123         FIO_SIGQUIT     = 1 << 7,       /* needs SIGQUIT to exit */
124         FIO_PIPEIO      = 1 << 8,       /* input/output no seekable */
125 };
126
127 /*
128  * io engine entry points
129  */
130 extern int __must_check td_io_init(struct thread_data *);
131 extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
132 extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
133 extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
134 extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, struct timespec *);
135 extern int __must_check td_io_commit(struct thread_data *);
136 extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
137 extern int td_io_close_file(struct thread_data *, struct fio_file *);
138 extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
139
140 extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
141 extern void register_ioengine(struct ioengine_ops *);
142 extern void unregister_ioengine(struct ioengine_ops *);
143 extern void close_ioengine(struct thread_data *);
144
145 /*
146  * io unit handling
147  */
148 #define queue_full(td)  flist_empty(&(td)->io_u_freelist)
149 extern struct io_u *__get_io_u(struct thread_data *);
150 extern struct io_u *get_io_u(struct thread_data *);
151 extern void put_io_u(struct thread_data *, struct io_u *);
152 extern void clear_io_u(struct thread_data *, struct io_u *);
153 extern void requeue_io_u(struct thread_data *, struct io_u **);
154 extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *, unsigned long *);
155 extern int __must_check io_u_queued_complete(struct thread_data *, int, unsigned long *);
156 extern void io_u_queued(struct thread_data *, struct io_u *);
157 extern void io_u_log_error(struct thread_data *, struct io_u *);
158 extern void io_u_mark_depth(struct thread_data *, unsigned int);
159 extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int);
160 void io_u_mark_complete(struct thread_data *, unsigned int);
161 void io_u_mark_submit(struct thread_data *, unsigned int);
162
163 int do_io_u_sync(struct thread_data *, struct io_u *);
164
165 #ifdef FIO_INC_DEBUG
166 static inline void dprint_io_u(struct io_u *io_u, const char *p)
167 {
168         struct fio_file *f = io_u->file;
169
170         dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
171                                         (unsigned long long) io_u->offset,
172                                         io_u->buflen, io_u->ddir);
173         if (fio_debug & (1 << FD_IO)) {
174                 if (f)
175                         log_info("/%s", f->file_name);
176
177                 log_info("\n");
178         }
179 }
180 #else
181 #define dprint_io_u(io_u, p)
182 #endif
183
184 #endif