X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=options.c;h=394472a4dadf61512e6c49f8495f97f248b357f5;hb=3980127d55c6b1773274bc854aae4589aa3f785a;hp=b65def9a2adcc543526ce773c08f979411a96401;hpb=e01b22b8fe3f20376fe8fdc6f2c28cc3682d698e;p=fio.git diff --git a/options.c b/options.c index b65def9a..394472a4 100644 --- a/options.c +++ b/options.c @@ -931,6 +931,13 @@ static struct fio_option options[] = { .help = "Issue fsync for writes every given number of blocks", .def = "0", }, + { + .name = "fdatasync", + .type = FIO_OPT_INT, + .off1 = td_var_offset(fdatasync_blocks), + .help = "Issue fdatasync for writes every given number of blocks", + .def = "0", + }, { .name = "direct", .type = FIO_OPT_BOOL, @@ -1504,6 +1511,13 @@ static struct fio_option options[] = { .cb = str_gtod_cpu_cb, .help = "Setup dedicated gettimeofday() thread on this CPU", }, + { + .name = "continue_on_error", + .type = FIO_OPT_BOOL, + .off1 = td_var_offset(continue_on_error), + .help = "Continue on non-fatal errors during I/O", + .def = "0", + }, { .name = NULL, },