X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=ioengine.h;h=c56bd5058222ab438f7039d20847254f900f0160;hp=389e95a560c0006671a2c2ee21f680d18dbe2e6e;hb=7e8ad197a8d219e2fc181c881143f11891e7d0d5;hpb=38dad62d5154ffaad445bd0231b271b9a46a5190 diff --git a/ioengine.h b/ioengine.h index 389e95a5..c56bd505 100644 --- a/ioengine.h +++ b/ioengine.h @@ -9,6 +9,8 @@ enum { IO_U_F_FREE_DEF = 1 << 2, IO_U_F_IN_CUR_DEPTH = 1 << 3, IO_U_F_BUSY_OK = 1 << 4, + IO_U_F_TRIMMED = 1 << 5, + IO_U_F_BARRIER = 1 << 6, }; /* @@ -30,6 +32,9 @@ struct io_u { #endif #ifdef FIO_HAVE_SOLARISAIO aio_result_t resultp; +#endif +#ifdef FIO_HAVE_BINJECT + struct b_user_cmd buc; #endif void *mmap_data; }; @@ -43,6 +48,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 @@ -120,8 +130,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 */ }; /*