X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=parse.h;h=752da346d2aabbfc3c57280211b5086f1480c79e;hp=7374c258ab95a339cff8853707a567df2ad68422;hb=21bd2987dc5d82a18af485cd1e7841e94137fc0c;hpb=76a43db448f9fd5e9f1397428a433466d98e0d5d diff --git a/parse.h b/parse.h index 7374c258..752da346 100644 --- a/parse.h +++ b/parse.h @@ -16,6 +16,17 @@ enum fio_opt_type { FIO_OPT_STR_SET, }; +/* + * Match a possible value string with the integer option. + */ +struct value_pair { + const char *ival; /* string option */ + unsigned int oval; /* output value */ + const char *help; /* help text for sub option */ +}; + +#define PARSE_MAX_VP 16 + /* * Option define */ @@ -33,7 +44,7 @@ struct fio_option { void *cb; /* callback */ const char *help; /* help text for option */ const char *def; /* default setting */ - const char *posval[16]; /* possible values */ + const struct value_pair posval[PARSE_MAX_VP];/* possible values */ }; typedef int (str_cb_fn)(void *, char *); @@ -57,4 +68,11 @@ typedef int (fio_opt_str_set_fn)(void *); #define td_var(start, offset) ((void *) start + (offset)) +#ifndef min +#define min(a, b) ((a) < (b) ? (a) : (b)) +#endif +#ifndef max +#define max(a, b) ((a) > (b) ? (a) : (b)) +#endif + #endif