X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=ioengine.h;h=be74b66fd65c8770e715c717617f97e94385f41d;hp=48a042bdcb6dc81c64fb9da5ed75c8ce203e69fc;hb=8a3220572e1016ea011bd9dcf61a5bfb731c1a43;hpb=03e20d687566753b90383571e5e152c5142bdffd diff --git a/ioengine.h b/ioengine.h index 48a042bd..be74b66f 100644 --- a/ioengine.h +++ b/ioengine.h @@ -1,7 +1,7 @@ #ifndef FIO_IOENGINE_H #define FIO_IOENGINE_H -#define FIO_IOOPS_VERSION 12 +#define FIO_IOOPS_VERSION 13 enum { IO_U_F_FREE = 1 << 0, @@ -22,7 +22,7 @@ struct io_u { struct iocb iocb; #endif #ifdef FIO_HAVE_POSIXAIO - struct aiocb aiocb; + os_aiocb_t aiocb; #endif #ifdef FIO_HAVE_SGIO struct sg_io_hdr hdr; @@ -35,6 +35,9 @@ struct io_u { #endif #ifdef FIO_HAVE_BINJECT struct b_user_cmd buc; +#endif +#ifdef FIO_HAVE_RDMA + struct ibv_mr *mr; #endif void *mmap_data; }; @@ -48,6 +51,11 @@ struct io_u { unsigned long buflen; unsigned long long offset; + /* + * Initial seed for generating the buffer contents + */ + unsigned long rand_seed; + /* * IO engine state, may be different from above when we get * partial transfers / residual data counts @@ -113,6 +121,8 @@ struct ioengine_ops { int (*open_file)(struct thread_data *, struct fio_file *); int (*close_file)(struct thread_data *, struct fio_file *); int (*get_file_size)(struct thread_data *, struct fio_file *); + int option_struct_size; + struct fio_option *options; void *data; void *dlhandle; }; @@ -147,8 +157,11 @@ extern int __must_check td_io_get_file_size(struct thread_data *, struct fio_fil extern struct ioengine_ops *load_ioengine(struct thread_data *, const char *); extern void register_ioengine(struct ioengine_ops *); extern void unregister_ioengine(struct ioengine_ops *); +extern void free_ioengine(struct thread_data *); extern void close_ioengine(struct thread_data *); +extern int fio_show_ioengine_help(const char *engine); + /* * io unit handling */