X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.c;h=9700110983cc6d04ff4ebc4e356fab10ef2e2cee;hp=fe890df026e733c64025e432910a93194a79d6b8;hb=cd98801fbed25dcc49f58cf1451af22f0455a6e6;hpb=d65db441ef2125374e98848cd36c7ba86e8afa12 diff --git a/options.c b/options.c index fe890df0..97001109 100644 --- a/options.c +++ b/options.c @@ -792,6 +792,16 @@ static struct fio_option options[] = { .def = "4k", .parent = "rw", }, + { + .name = "ba", + .alias = "blockalign", + .type = FIO_OPT_STR_VAL_INT, + .off1 = td_var_offset(ba[DDIR_READ]), + .off2 = td_var_offset(ba[DDIR_WRITE]), + .minval = 1, + .help = "IO block offset alignment", + .parent = "rw", + }, { .name = "bsrange", .alias = "blocksize_range", @@ -871,6 +881,10 @@ static struct fio_option options[] = { .oval = FIO_FSERVICE_RR, .help = "Round robin select files", }, + { .ival = "sequential", + .oval = FIO_FSERVICE_SEQ, + .help = "Finish one file before moving to the next", + }, }, .parent = "nrfiles", }, @@ -1285,6 +1299,13 @@ static struct fio_option options[] = { .help = "Fsync file after creation", .def = "1", }, + { + .name = "create_on_open", + .type = FIO_OPT_BOOL, + .off1 = td_var_offset(create_on_open), + .help = "Create files when they are opened for IO", + .def = "0", + }, { .name = "cpuload", .type = FIO_OPT_INT,