X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=options.h;h=c6c2086e0a76286a87f44bbb469307ccdddc09e4;hp=96c81a17c8770be00fa0f01a6a94676378b6bfd6;hb=3ae0637148904b5c68cb95e749460e37e3502a9c;hpb=e2de69dac799a1eecac1b52085f908729591ef5a diff --git a/options.h b/options.h index 96c81a17..c6c2086e 100644 --- a/options.h +++ b/options.h @@ -1,18 +1,41 @@ #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; - const char *prof_name; - 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 *); + +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_ext_option(struct ext_option *); -void prune_profile_options(const char *); + return NULL; +} #endif