Fixup bad logging types
[fio.git] / options.h
index cd348862ba3e3c0cce0eacebca9b61c573e98c3b..9702d47c0a0764edecb0abed8f8d7587b4493f90 100644 (file)
--- 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))
@@ -121,4 +123,9 @@ enum opt_category_group {
        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