X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.h;h=9702d47c0a0764edecb0abed8f8d7587b4493f90;hp=50b65a237ab2299755c8e67033753374790381d1;hb=9a0ced5a97ae9fde87dae1a3d762b1bc090e8786;hpb=81c6b6cdd2f696528c423ff940a06efae8def583 diff --git a/options.h b/options.h index 50b65a23..9702d47c 100644 --- a/options.h +++ b/options.h @@ -18,6 +18,8 @@ void del_opt_posval(const char *, const char *); struct thread_data; void fio_options_free(struct thread_data *); +extern struct fio_option fio_options[FIO_MAX_OPTS]; + static inline int o_match(struct fio_option *o, const char *opt) { if (!strcmp(o->name, opt)) @@ -52,6 +54,7 @@ enum opt_category { __FIO_OPT_C_STAT, __FIO_OPT_C_LOG, __FIO_OPT_C_PROFILE, + __FIO_OPT_C_ENGINE, __FIO_OPT_C_NR, FIO_OPT_C_GENERAL = (1U << __FIO_OPT_C_GENERAL), @@ -60,6 +63,7 @@ enum opt_category { FIO_OPT_C_STAT = (1U << __FIO_OPT_C_STAT), FIO_OPT_C_LOG = (1U << __FIO_OPT_C_LOG), FIO_OPT_C_PROFILE = (1U << __FIO_OPT_C_PROFILE), + FIO_OPT_C_ENGINE = (1U << __FIO_OPT_C_ENGINE), FIO_OPT_C_INVALID = (1U << __FIO_OPT_C_NR), }; @@ -86,6 +90,9 @@ enum opt_category_group { __FIO_OPT_G_IO_BUF, __FIO_OPT_G_TIOBENCH, __FIO_OPT_G_ERR, + __FIO_OPT_G_E4DEFRAG, + __FIO_OPT_G_NETIO, + __FIO_OPT_G_LIBAIO, __FIO_OPT_G_NR, FIO_OPT_G_RATE = (1U << __FIO_OPT_G_RATE), @@ -110,7 +117,15 @@ enum opt_category_group { FIO_OPT_G_IO_BUF = (1U << __FIO_OPT_G_IO_BUF), FIO_OPT_G_TIOBENCH = (1U << __FIO_OPT_G_TIOBENCH), FIO_OPT_G_ERR = (1U << __FIO_OPT_G_ERR), + FIO_OPT_G_E4DEFRAG = (1U << __FIO_OPT_G_E4DEFRAG), + FIO_OPT_G_NETIO = (1U << __FIO_OPT_G_NETIO), + FIO_OPT_G_LIBAIO = (1U << __FIO_OPT_G_LIBAIO), FIO_OPT_G_INVALID = (1U << __FIO_OPT_G_NR), }; +extern struct opt_group *opt_group_from_mask(unsigned int *mask); +extern struct opt_group *opt_group_cat_from_mask(unsigned int *mask); +extern struct fio_option *fio_option_find(const char *name); +extern unsigned int fio_get_kb_base(void *); + #endif