X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=ioengine.h;h=c56bd5058222ab438f7039d20847254f900f0160;hb=0f805c00a7073293f4cceb041a6af0b9f388e6f8;hp=a0c7e2bc3e40f893d690435af6d3a5a39f2d9bbe;hpb=ca7e0ddb08fece35c95e9056ca877e0806f1e6ef;p=fio.git diff --git a/ioengine.h b/ioengine.h index a0c7e2bc..c56bd505 100644 --- a/ioengine.h +++ b/ioengine.h @@ -48,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 @@ -125,7 +130,7 @@ 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 */