X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.c;h=10e58dbad5caad8c56be621c2df57fe5e3e4ed29;hp=c9fb88625b5c2ac6754ff28bc4511c917057c74d;hb=38dad62d5154ffaad445bd0231b271b9a46a5190;hpb=5736c10dccc4124d99178b94e6759386420e5251 diff --git a/options.c b/options.c index c9fb8862..10e58dba 100644 --- a/options.c +++ b/options.c @@ -881,6 +881,24 @@ static struct fio_option options[FIO_MAX_OPTS] = { }, }, }, + { + .name = "rw_sequencer", + .type = FIO_OPT_STR, + .off1 = td_var_offset(rw_seq), + .help = "IO offset generator modifier", + .def = "sequential", + .posval = { + { .ival = "sequential", + .oval = RW_SEQ_SEQ, + .help = "Generate sequential offsets", + }, + { .ival = "identical", + .oval = RW_SEQ_IDENT, + .help = "Generate identical offsets", + }, + }, + }, + { .name = "ioengine", .type = FIO_OPT_STR_STORE,