X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=ioengine.h;h=044c4da1a150af8ce239cd0bc57ca14a75ef0c6a;hb=4e5b8fb8e2d989789e18b31f9aed969c8fa43cdb;hp=7a3c08fd7891c48d600c333342d5ad6c5ec65892;hpb=1ef2b6be973eded12827990ae1a9eb28b7b20be7;p=fio.git diff --git a/ioengine.h b/ioengine.h index 7a3c08fd..044c4da1 100644 --- a/ioengine.h +++ b/ioengine.h @@ -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 @@ -125,9 +133,10 @@ enum fio_ioengine_flags { FIO_NODISKUTIL = 1 << 4, /* diskutil can't handle filename */ FIO_UNIDIR = 1 << 5, /* engine is uni-directional */ FIO_NOIO = 1 << 6, /* thread does only pseudo IO */ - FIO_SIGQUIT = 1 << 7, /* needs SIGQUIT to exit */ + FIO_SIGTERM = 1 << 7, /* needs SIGTERM to exit */ FIO_PIPEIO = 1 << 8, /* input/output no seekable */ FIO_BARRIER = 1 << 9, /* engine supports barriers */ + FIO_MEMALIGN = 1 << 10, /* engine wants aligned memory */ }; /*