X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.h;h=ed6b9c2da47a5699cb9b4d3f1808eba4b8ede019;hp=29bb7a162142ea0258d6b400301ae795e795fcaf;hb=498c92c27b475bcc0cb65e529fb02713bc1fb62c;hpb=9f988e2ebb3bff7087cc9681a54bd7f0d0e42140 diff --git a/options.h b/options.h index 29bb7a16..ed6b9c2d 100644 --- a/options.h +++ b/options.h @@ -1,16 +1,43 @@ #ifndef FIO_OPTION_H #define FIO_OPTION_H +#define FIO_MAX_OPTS 512 + +#include #include "parse.h" #include "flist.h" #define td_var_offset(var) ((size_t) &((struct thread_options *)0)->var) -struct ext_option { - struct flist_head list; - struct fio_option o; -}; +int add_option(struct fio_option *); +void invalidate_profile_options(const char *); +extern char *exec_profile; + +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 *); + +static inline int o_match(struct fio_option *o, const char *opt) +{ + if (!strcmp(o->name, opt)) + return 1; + else if (o->alias && !strcmp(o->alias, opt)) + return 1; + + return 0; +} + +static inline struct fio_option *find_option(struct fio_option *options, + const char *opt) +{ + struct fio_option *o; + + for (o = &options[0]; o->name; o++) + if (o_match(o, opt)) + return o; -void register_option(struct ext_option *); + return NULL; +} #endif