X-Git-Url: https://git.kernel.dk/?a=blobdiff_plain;ds=sidebyside;f=options.h;h=de9f6109fa1b474e72a1b60df667f99f7455735d;hb=da27a4bf0f9753fcc9da7b63f1be482fc0349907;hp=3795afd5223d1595767973cfefc722c6a559e05e;hpb=d4afedfd152cea890ffa7d45bf1664fb70218c45;p=fio.git diff --git a/options.h b/options.h index 3795afd5..de9f6109 100644 --- a/options.h +++ b/options.h @@ -17,6 +17,8 @@ void add_opt_posval(const char *, const char *, const char *); void del_opt_posval(const char *, const char *); struct thread_data; void fio_options_free(struct thread_data *); +char *get_name_idx(char *, int); +int set_name_idx(char *, char *, int); extern struct fio_option fio_options[FIO_MAX_OPTS]; @@ -94,6 +96,8 @@ enum opt_category_group { __FIO_OPT_G_NETIO, __FIO_OPT_G_LIBAIO, __FIO_OPT_G_ACT, + __FIO_OPT_G_LATPROF, + __FIO_OPT_G_RBD, __FIO_OPT_G_NR, FIO_OPT_G_RATE = (1U << __FIO_OPT_G_RATE), @@ -122,6 +126,8 @@ enum opt_category_group { FIO_OPT_G_NETIO = (1U << __FIO_OPT_G_NETIO), FIO_OPT_G_LIBAIO = (1U << __FIO_OPT_G_LIBAIO), FIO_OPT_G_ACT = (1U << __FIO_OPT_G_ACT), + FIO_OPT_G_LATPROF = (1U << __FIO_OPT_G_LATPROF), + FIO_OPT_G_RBD = (1U << __FIO_OPT_G_RBD), FIO_OPT_G_INVALID = (1U << __FIO_OPT_G_NR), };