Fio 1.39-rc1
[fio.git] / ioengine.h
CommitLineData
dcefb588
JA
1#ifndef FIO_IOENGINE_H
2#define FIO_IOENGINE_H
3
44f29692 4#define FIO_IOOPS_VERSION 11
dcefb588
JA
5
6enum {
0c41214f
RR
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,
dcefb588
JA
11};
12
13/*
14 * The io unit
15 */
16struct 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 * IO engine state, may be different from above when we get
47 * partial transfers / residual data counts
48 */
49 void *xfer_buf;
50 unsigned long xfer_buflen;
51
52 unsigned int resid;
53 unsigned int error;
54
55 enum fio_ddir ddir;
56
57 /*
58 * io engine private data
59 */
60 union {
61 unsigned int index;
62 unsigned int seen;
63 void *engine_data;
64 };
65
66 unsigned int flags;
67
68 struct fio_file *file;
69
70 struct flist_head list;
71
72 /*
73 * Callback for io completion
74 */
75 int (*end_io)(struct thread_data *, struct io_u *);
76};
77
78/*
79 * io_ops->queue() return values
80 */
81enum {
82 FIO_Q_COMPLETED = 0, /* completed sync */
83 FIO_Q_QUEUED = 1, /* queued, will complete async */
84 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
85};
86
87struct ioengine_ops {
88 struct flist_head list;
89 char name[16];
90 int version;
91 int flags;
92 int (*setup)(struct thread_data *);
93 int (*init)(struct thread_data *);
94 int (*prep)(struct thread_data *, struct io_u *);
95 int (*queue)(struct thread_data *, struct io_u *);
96 int (*commit)(struct thread_data *);
97 int (*getevents)(struct thread_data *, unsigned int, unsigned int, struct timespec *);
98 struct io_u *(*event)(struct thread_data *, int);
99 int (*cancel)(struct thread_data *, struct io_u *);
100 void (*cleanup)(struct thread_data *);
101 int (*open_file)(struct thread_data *, struct fio_file *);
102 int (*close_file)(struct thread_data *, struct fio_file *);
103 int (*get_file_size)(struct thread_data *, struct fio_file *);
104 void *data;
105 void *dlhandle;
106};
107
2b4f4abe
JA
108enum fio_ioengine_flags {
109 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
110 FIO_RAWIO = 1 << 1, /* some sort of direct/raw io */
111 FIO_DISKLESSIO = 1 << 2, /* no disk involved */
112 FIO_NOEXTEND = 1 << 3, /* engine can't extend file */
113 FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */
114 FIO_UNIDIR = 1 << 5, /* engine is uni-directional */
115 FIO_NOIO = 1 << 6, /* thread does only pseudo IO */
116 FIO_SIGQUIT = 1 << 7, /* needs SIGQUIT to exit */
9c0d2241 117 FIO_PIPEIO = 1 << 8, /* input/output no seekable */
2b4f4abe 118};
dcefb588
JA
119
120/*
121 * io engine entry points
122 */
123extern int __must_check td_io_init(struct thread_data *);
124extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
125extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
126extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
127extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, struct timespec *);
128extern int __must_check td_io_commit(struct thread_data *);
129extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
130extern int td_io_close_file(struct thread_data *, struct fio_file *);
131extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
132
133extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
134extern void register_ioengine(struct ioengine_ops *);
135extern void unregister_ioengine(struct ioengine_ops *);
136extern void close_ioengine(struct thread_data *);
137
138/*
139 * io unit handling
140 */
141#define queue_full(td) flist_empty(&(td)->io_u_freelist)
142extern struct io_u *__get_io_u(struct thread_data *);
143extern struct io_u *get_io_u(struct thread_data *);
144extern void put_io_u(struct thread_data *, struct io_u *);
f2bba182 145extern void clear_io_u(struct thread_data *, struct io_u *);
dcefb588 146extern void requeue_io_u(struct thread_data *, struct io_u **);
581e7141
JA
147extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *, unsigned long *);
148extern int __must_check io_u_queued_complete(struct thread_data *, int, unsigned long *);
dcefb588
JA
149extern void io_u_queued(struct thread_data *, struct io_u *);
150extern void io_u_log_error(struct thread_data *, struct io_u *);
151extern void io_u_mark_depth(struct thread_data *, unsigned int);
152extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int);
153void io_u_mark_complete(struct thread_data *, unsigned int);
154void io_u_mark_submit(struct thread_data *, unsigned int);
155
0a28ecda 156int do_io_u_sync(struct thread_data *, struct io_u *);
44f29692 157
c592b9fe
JA
158#ifdef FIO_INC_DEBUG
159static inline void dprint_io_u(struct io_u *io_u, const char *p)
160{
161 struct fio_file *f = io_u->file;
162
163 dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
164 (unsigned long long) io_u->offset,
165 io_u->buflen, io_u->ddir);
166 if (fio_debug & (1 << FD_IO)) {
167 if (f)
168 log_info("/%s", f->file_name);
169
170 log_info("\n");
171 }
172}
173#else
174#define dprint_io_u(io_u, p)
175#endif
176
dcefb588 177#endif