X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;f=options.c;h=534233bdbc297251d040f605a84b37d21d1b51be;hb=9916f60af6e7b1ca05a1568d22d4010d08130fd6;hp=20b64648004e3cf54d0c28b0939d3722ba305981;hpb=59b0754458f601779fac99f4f9dc95d54e1ab976;p=fio.git diff --git a/options.c b/options.c index 20b64648..534233bd 100644 --- a/options.c +++ b/options.c @@ -3318,6 +3318,30 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .category = FIO_OPT_C_IO, .group = FIO_OPT_G_INVALID, }, + { + .name = "zone_reset_threshold", + .lname = "Zone reset threshold", + .help = "Zoned block device reset threshold", + .type = FIO_OPT_FLOAT_LIST, + .maxlen = 1, + .off1 = offsetof(struct thread_options, zrt), + .minfp = 0, + .maxfp = 1, + .category = FIO_OPT_C_IO, + .group = FIO_OPT_G_ZONE, + }, + { + .name = "zone_reset_frequency", + .lname = "Zone reset frequency", + .help = "Zoned block device zone reset frequency in HZ", + .type = FIO_OPT_FLOAT_LIST, + .maxlen = 1, + .off1 = offsetof(struct thread_options, zrf), + .minfp = 0, + .maxfp = 1, + .category = FIO_OPT_C_IO, + .group = FIO_OPT_G_ZONE, + }, { .name = "lockmem", .lname = "Lock memory",