X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.h;h=de9f6109fa1b474e72a1b60df667f99f7455735d;hp=3795afd5223d1595767973cfefc722c6a559e05e;hb=72242057a25b59d01b3d4e1343c94cc7ac354950;hpb=d4afedfd152cea890ffa7d45bf1664fb70218c45 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), };