Steady state detection: enhance reporting of results, change memory allocation point
[fio.git] / options.h
... / ...
CommitLineData
1#ifndef FIO_OPTION_H
2#define FIO_OPTION_H
3
4#define FIO_MAX_OPTS 512
5
6#include <string.h>
7#include <inttypes.h>
8#include "parse.h"
9#include "flist.h"
10#include "lib/types.h"
11
12int add_option(struct fio_option *);
13void invalidate_profile_options(const char *);
14extern char *exec_profile;
15
16void add_opt_posval(const char *, const char *, const char *);
17void del_opt_posval(const char *, const char *);
18struct thread_data;
19void fio_options_free(struct thread_data *);
20char *get_name_idx(char *, int);
21int set_name_idx(char *, size_t, char *, int, bool);
22
23extern char client_sockaddr_str[]; /* used with --client option */
24
25extern struct fio_option fio_options[FIO_MAX_OPTS];
26
27extern bool __fio_option_is_set(struct thread_options *, unsigned int off);
28
29#define fio_option_is_set(__td, name) \
30({ \
31 const unsigned int off = offsetof(struct thread_options, name); \
32 bool __r = __fio_option_is_set((__td), off); \
33 __r; \
34})
35
36extern void fio_option_mark_set(struct thread_options *, struct fio_option *);
37
38static inline bool o_match(struct fio_option *o, const char *opt)
39{
40 if (!strcmp(o->name, opt))
41 return true;
42 else if (o->alias && !strcmp(o->alias, opt))
43 return true;
44
45 return false;
46}
47
48extern struct fio_option *find_option(struct fio_option *, const char *);
49extern struct fio_option *fio_option_find(const char *);
50extern unsigned int fio_get_kb_base(void *);
51
52#endif