X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=options.c;h=28a228c6fefbb5ec7bab60ef8afc225685f70609;hb=242c38db2cabd0f00bbe37a053c62da07ba345a4;hp=463b66dcd99ea85ddbeb265f5cb17959ab39a53b;hpb=207b18e4238f281bfe044bfbdc23755f96d33185;p=fio.git diff --git a/options.c b/options.c index 463b66dc..28a228c6 100644 --- a/options.c +++ b/options.c @@ -944,6 +944,10 @@ static struct fio_option options[FIO_MAX_OPTS] = { .oval = TD_DDIR_RW, .help = "Sequential read and write mix", }, + { .ival = "readwrite", + .oval = TD_DDIR_RW, + .help = "Sequential read and write mix", + }, { .ival = "randrw", .oval = TD_DDIR_RANDRW, .help = "Random read and write mix" @@ -1118,6 +1122,14 @@ static struct fio_option options[FIO_MAX_OPTS] = { .help = "Start IO from this offset", .def = "0", }, + { + .name = "offset_increment", + .type = FIO_OPT_STR_VAL, + .off1 = td_var_offset(offset_increment), + .help = "What is the increment from one offset to the next", + .parent = "offset", + .def = "0", + }, { .name = "bs", .alias = "blocksize", @@ -1872,6 +1884,13 @@ static struct fio_option options[FIO_MAX_OPTS] = { .help = "Create files when they are opened for IO", .def = "0", }, + { + .name = "create_only", + .type = FIO_OPT_BOOL, + .off1 = td_var_offset(create_only), + .help = "Only perform file creation phase", + .def = "0", + }, { .name = "pre_read", .type = FIO_OPT_BOOL,