gettime: even rounding, don't always round up
[fio.git] / ioengine.h
CommitLineData
dcefb588
JA
1#ifndef FIO_IOENGINE_H
2#define FIO_IOENGINE_H
3
36d80bc7 4#define FIO_IOOPS_VERSION 14
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,
38dad62d 11 IO_U_F_BUSY_OK = 1 << 4,
0d29de83 12 IO_U_F_TRIMMED = 1 << 5,
1ef2b6be 13 IO_U_F_BARRIER = 1 << 6,
82af2a7c 14 IO_U_F_VER_LIST = 1 << 7,
dcefb588
JA
15};
16
17/*
18 * The io unit
19 */
20struct io_u {
21 union {
22#ifdef FIO_HAVE_LIBAIO
23 struct iocb iocb;
24#endif
25#ifdef FIO_HAVE_POSIXAIO
e97c1442 26 os_aiocb_t aiocb;
dcefb588
JA
27#endif
28#ifdef FIO_HAVE_SGIO
29 struct sg_io_hdr hdr;
30#endif
31#ifdef FIO_HAVE_GUASI
32 guasi_req_t greq;
33#endif
34#ifdef FIO_HAVE_SOLARISAIO
35 aio_result_t resultp;
79a43187
JA
36#endif
37#ifdef FIO_HAVE_BINJECT
38 struct b_user_cmd buc;
21b8aee8 39#endif
40#ifdef FIO_HAVE_RDMA
41 struct ibv_mr *mr;
dcefb588
JA
42#endif
43 void *mmap_data;
44 };
45 struct timeval start_time;
46 struct timeval issue_time;
47
d72be545
JA
48 struct fio_file *file;
49 unsigned int flags;
50 enum fio_ddir ddir;
51
dcefb588
JA
52 /*
53 * Allocated/set buffer and length
54 */
dcefb588
JA
55 unsigned long buflen;
56 unsigned long long offset;
d72be545 57 void *buf;
dcefb588 58
7d9fb455
JA
59 /*
60 * Initial seed for generating the buffer contents
61 */
62 unsigned long rand_seed;
63
dcefb588
JA
64 /*
65 * IO engine state, may be different from above when we get
66 * partial transfers / residual data counts
67 */
68 void *xfer_buf;
69 unsigned long xfer_buflen;
70
95228507
JA
71 /*
72 * Parameter related to pre-filled buffers and
73 * their size to handle variable block sizes.
74 */
75 unsigned long buf_filled_len;
76
dcefb588
JA
77 unsigned int resid;
78 unsigned int error;
79
dcefb588
JA
80 /*
81 * io engine private data
82 */
83 union {
84 unsigned int index;
85 unsigned int seen;
86 void *engine_data;
87 };
88
dcefb588
JA
89 struct flist_head list;
90
91 /*
92 * Callback for io completion
93 */
94 int (*end_io)(struct thread_data *, struct io_u *);
95};
96
97/*
98 * io_ops->queue() return values
99 */
100enum {
101 FIO_Q_COMPLETED = 0, /* completed sync */
102 FIO_Q_QUEUED = 1, /* queued, will complete async */
103 FIO_Q_BUSY = 2, /* no more room, call ->commit() */
104};
105
106struct ioengine_ops {
107 struct flist_head list;
108 char name[16];
109 int version;
110 int flags;
111 int (*setup)(struct thread_data *);
112 int (*init)(struct thread_data *);
113 int (*prep)(struct thread_data *, struct io_u *);
114 int (*queue)(struct thread_data *, struct io_u *);
115 int (*commit)(struct thread_data *);
116 int (*getevents)(struct thread_data *, unsigned int, unsigned int, struct timespec *);
117 struct io_u *(*event)(struct thread_data *, int);
118 int (*cancel)(struct thread_data *, struct io_u *);
119 void (*cleanup)(struct thread_data *);
120 int (*open_file)(struct thread_data *, struct fio_file *);
121 int (*close_file)(struct thread_data *, struct fio_file *);
122 int (*get_file_size)(struct thread_data *, struct fio_file *);
36d80bc7 123 void (*terminate)(struct thread_data *);
c73ed246
JA
124 int (*io_u_init)(struct thread_data *, struct io_u *);
125 void (*io_u_free)(struct thread_data *, struct io_u *);
de890a1e
SL
126 int option_struct_size;
127 struct fio_option *options;
dcefb588
JA
128 void *data;
129 void *dlhandle;
130};
131
2b4f4abe
JA
132enum fio_ioengine_flags {
133 FIO_SYNCIO = 1 << 0, /* io engine has synchronous ->queue */
134 FIO_RAWIO = 1 << 1, /* some sort of direct/raw io */
135 FIO_DISKLESSIO = 1 << 2, /* no disk involved */
136 FIO_NOEXTEND = 1 << 3, /* engine can't extend file */
93bcfd20 137 FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */
2b4f4abe
JA
138 FIO_UNIDIR = 1 << 5, /* engine is uni-directional */
139 FIO_NOIO = 1 << 6, /* thread does only pseudo IO */
36d80bc7
JA
140 FIO_PIPEIO = 1 << 7, /* input/output no seekable */
141 FIO_BARRIER = 1 << 8, /* engine supports barriers */
142 FIO_MEMALIGN = 1 << 9, /* engine wants aligned memory */
2b4f4abe 143};
dcefb588
JA
144
145/*
146 * io engine entry points
147 */
148extern int __must_check td_io_init(struct thread_data *);
149extern int __must_check td_io_prep(struct thread_data *, struct io_u *);
150extern int __must_check td_io_queue(struct thread_data *, struct io_u *);
151extern int __must_check td_io_sync(struct thread_data *, struct fio_file *);
152extern int __must_check td_io_getevents(struct thread_data *, unsigned int, unsigned int, struct timespec *);
153extern int __must_check td_io_commit(struct thread_data *);
154extern int __must_check td_io_open_file(struct thread_data *, struct fio_file *);
155extern int td_io_close_file(struct thread_data *, struct fio_file *);
156extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_file *);
157
158extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *);
159extern void register_ioengine(struct ioengine_ops *);
160extern void unregister_ioengine(struct ioengine_ops *);
de890a1e 161extern void free_ioengine(struct thread_data *);
dcefb588
JA
162extern void close_ioengine(struct thread_data *);
163
de890a1e
SL
164extern int fio_show_ioengine_help(const char *engine);
165
dcefb588
JA
166/*
167 * io unit handling
168 */
169#define queue_full(td) flist_empty(&(td)->io_u_freelist)
170extern struct io_u *__get_io_u(struct thread_data *);
171extern struct io_u *get_io_u(struct thread_data *);
172extern void put_io_u(struct thread_data *, struct io_u *);
f2bba182 173extern void clear_io_u(struct thread_data *, struct io_u *);
dcefb588 174extern void requeue_io_u(struct thread_data *, struct io_u **);
581e7141
JA
175extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *, unsigned long *);
176extern int __must_check io_u_queued_complete(struct thread_data *, int, unsigned long *);
dcefb588
JA
177extern void io_u_queued(struct thread_data *, struct io_u *);
178extern void io_u_log_error(struct thread_data *, struct io_u *);
179extern void io_u_mark_depth(struct thread_data *, unsigned int);
9c42684e 180extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned int, unsigned int);
dcefb588
JA
181void io_u_mark_complete(struct thread_data *, unsigned int);
182void io_u_mark_submit(struct thread_data *, unsigned int);
183
0a28ecda 184int do_io_u_sync(struct thread_data *, struct io_u *);
a5f3027c 185int do_io_u_trim(struct thread_data *, struct io_u *);
44f29692 186
c592b9fe
JA
187#ifdef FIO_INC_DEBUG
188static inline void dprint_io_u(struct io_u *io_u, const char *p)
189{
190 struct fio_file *f = io_u->file;
191
192 dprint(FD_IO, "%s: io_u %p: off=%llu/len=%lu/ddir=%d", p, io_u,
193 (unsigned long long) io_u->offset,
194 io_u->buflen, io_u->ddir);
195 if (fio_debug & (1 << FD_IO)) {
196 if (f)
197 log_info("/%s", f->file_name);
198
199 log_info("\n");
200 }
201}
202#else
203#define dprint_io_u(io_u, p)
204#endif
205
dcefb588 206#endif