Merge branch 'master' of https://github.com/celestinechen/fio
[fio.git] / io_u.h
CommitLineData
8ef89e0b
TK
1#ifndef FIO_IO_U
2#define FIO_IO_U
3
4#include "compiler/compiler.h"
5#include "os/os.h"
8ef89e0b
TK
6#include "io_ddir.h"
7#include "debug.h"
8#include "file.h"
9#include "workqueue.h"
10
11#ifdef CONFIG_LIBAIO
12#include <libaio.h>
13#endif
8ef89e0b
TK
14
15enum {
16 IO_U_F_FREE = 1 << 0,
17 IO_U_F_FLIGHT = 1 << 1,
18 IO_U_F_NO_FILE_PUT = 1 << 2,
19 IO_U_F_IN_CUR_DEPTH = 1 << 3,
20 IO_U_F_BUSY_OK = 1 << 4,
21 IO_U_F_TRIMMED = 1 << 5,
22 IO_U_F_BARRIER = 1 << 6,
23 IO_U_F_VER_LIST = 1 << 7,
d08dbc03 24 IO_U_F_PATTERN_DONE = 1 << 8,
8ef89e0b
TK
25};
26
27/*
28 * The io unit
29 */
30struct io_u {
8b6a404c
VF
31 struct timespec start_time;
32 struct timespec issue_time;
8ef89e0b
TK
33
34 struct fio_file *file;
35 unsigned int flags;
36 enum fio_ddir ddir;
37
38 /*
39 * For replay workloads, we may want to account as a different
40 * IO type than what is being submitted.
41 */
42 enum fio_ddir acct_ddir;
43
44 /*
45 * Write generation
46 */
47 unsigned short numberio;
48
03ec570f
DLM
49 /*
50 * IO priority.
51 */
52 unsigned short ioprio;
f0547200 53 unsigned short clat_prio_index;
03ec570f 54
1a41b353
JA
55 /*
56 * number of trim ranges for this IO.
57 */
58 unsigned int number_trim;
59
8ef89e0b
TK
60 /*
61 * Allocated/set buffer and length
62 */
5fff9543 63 unsigned long long buflen;
4fff54cc
JA
64 unsigned long long offset; /* is really ->xfer_offset... */
65 unsigned long long verify_offset; /* is really ->offset */
8ef89e0b
TK
66 void *buf;
67
68 /*
69 * Initial seed for generating the buffer contents
70 */
71 uint64_t rand_seed;
72
73 /*
74 * IO engine state, may be different from above when we get
75 * partial transfers / residual data counts
76 */
77 void *xfer_buf;
5fff9543 78 unsigned long long xfer_buflen;
8ef89e0b
TK
79
80 /*
81 * Parameter related to pre-filled buffers and
82 * their size to handle variable block sizes.
83 */
5fff9543 84 unsigned long long buf_filled_len;
8ef89e0b
TK
85
86 struct io_piece *ipo;
87
daa89913 88 unsigned long long resid;
8ef89e0b
TK
89 unsigned int error;
90
91 /*
92 * io engine private data
93 */
94 union {
95 unsigned int index;
96 unsigned int seen;
8ef89e0b 97 };
519fb6da 98 void *engine_data;
8ef89e0b
TK
99
100 union {
101 struct flist_head verify_list;
102 struct workqueue_work work;
103 };
104
99952ca7 105 /*
d9ed3e63
DLM
106 * ZBD mode zbd_queue_io callback: called after engine->queue operation
107 * to advance a zone write pointer and eventually unlock the I/O zone.
108 * @q indicates the I/O queue status (busy, queued or completed).
109 * @success == true means that the I/O operation has been queued or
110 * completed successfully.
99952ca7 111 */
b2da58c4
SK
112 void (*zbd_queue_io)(struct thread_data *td, struct io_u *, int q,
113 bool success);
d9ed3e63
DLM
114
115 /*
116 * ZBD mode zbd_put_io callback: called in after completion of an I/O
117 * or commit of an async I/O to unlock the I/O target zone.
118 */
b2da58c4 119 void (*zbd_put_io)(struct thread_data *td, const struct io_u *);
99952ca7 120
8ef89e0b
TK
121 /*
122 * Callback for io completion
123 */
124 int (*end_io)(struct thread_data *, struct io_u **);
125
a7e8aae0
KB
126 uint32_t dtype;
127 uint32_t dspec;
128
8ef89e0b
TK
129 union {
130#ifdef CONFIG_LIBAIO
131 struct iocb iocb;
132#endif
133#ifdef CONFIG_POSIXAIO
134 os_aiocb_t aiocb;
135#endif
136#ifdef FIO_HAVE_SGIO
137 struct sg_io_hdr hdr;
138#endif
8ef89e0b
TK
139#ifdef CONFIG_SOLARISAIO
140 aio_result_t resultp;
141#endif
8ef89e0b
TK
142#ifdef CONFIG_RDMA
143 struct ibv_mr *mr;
144#endif
145 void *mmap_data;
146 };
147};
148
149/*
150 * io unit handling
151 */
152extern struct io_u *__get_io_u(struct thread_data *);
153extern struct io_u *get_io_u(struct thread_data *);
154extern void put_io_u(struct thread_data *, struct io_u *);
155extern void clear_io_u(struct thread_data *, struct io_u *);
156extern void requeue_io_u(struct thread_data *, struct io_u **);
157extern int __must_check io_u_sync_complete(struct thread_data *, struct io_u *);
158extern int __must_check io_u_queued_complete(struct thread_data *, int);
159extern void io_u_queued(struct thread_data *, struct io_u *);
160extern int io_u_quiesce(struct thread_data *);
161extern void io_u_log_error(struct thread_data *, struct io_u *);
162extern void io_u_mark_depth(struct thread_data *, unsigned int);
5fff9543
JF
163extern void fill_io_buffer(struct thread_data *, void *, unsigned long long, unsigned long long);
164extern void io_u_fill_buffer(struct thread_data *td, struct io_u *, unsigned long long, unsigned long long);
8ef89e0b
TK
165void io_u_mark_complete(struct thread_data *, unsigned int);
166void io_u_mark_submit(struct thread_data *, unsigned int);
167bool queue_full(const struct thread_data *);
168
169int do_io_u_sync(const struct thread_data *, struct io_u *);
67282020 170int do_io_u_trim(struct thread_data *, struct io_u *);
8ef89e0b
TK
171
172#ifdef FIO_INC_DEBUG
173static inline void dprint_io_u(struct io_u *io_u, const char *p)
174{
175 struct fio_file *f = io_u->file;
176
8ef89e0b 177 if (f)
5fff9543 178 dprint(FD_IO, "%s: io_u %p: off=0x%llx,len=0x%llx,ddir=%d,file=%s\n",
e5f9a813
RE
179 p, io_u,
180 (unsigned long long) io_u->offset,
181 io_u->buflen, io_u->ddir,
182 f->file_name);
183 else
5fff9543 184 dprint(FD_IO, "%s: io_u %p: off=0x%llx,len=0x%llx,ddir=%d\n",
e5f9a813
RE
185 p, io_u,
186 (unsigned long long) io_u->offset,
187 io_u->buflen, io_u->ddir);
8ef89e0b
TK
188}
189#else
190#define dprint_io_u(io_u, p)
191#endif
192
193static inline enum fio_ddir acct_ddir(struct io_u *io_u)
194{
195 if (io_u->acct_ddir != -1)
196 return io_u->acct_ddir;
197
198 return io_u->ddir;
199}
200
201#define io_u_clear(td, io_u, val) \
202 td_flags_clear((td), &(io_u->flags), (val))
203#define io_u_set(td, io_u, val) \
204 td_flags_set((td), &(io_u)->flags, (val))
205
206#endif