Fio 1.50.2
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 8f7982ad1f57dc4942402875740c902a2b24fe51..41e3633c24edb162ba629a8766389a91984db414 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -9,6 +9,7 @@
 enum fio_opt_type {
        FIO_OPT_INVALID = 0,
        FIO_OPT_STR,
+       FIO_OPT_STR_MULTI,
        FIO_OPT_STR_VAL,
        FIO_OPT_STR_VAL_TIME,
        FIO_OPT_STR_STORE,
@@ -26,6 +27,7 @@ struct value_pair {
        const char *ival;               /* string option */
        unsigned int oval;              /* output value */
        const char *help;               /* help text for sub option */
+       int or;                         /* OR value */
 };
 
 #define OPT_LEN_MAX    4096
@@ -50,7 +52,7 @@ struct fio_option {
        void *cb;                       /* callback */
        const char *help;               /* help text for option */
        const char *def;                /* default setting */
-       const struct value_pair posval[PARSE_MAX_VP];/* possible values */
+       struct value_pair posval[PARSE_MAX_VP];/* possible values */
        const char *parent;             /* parent option */
        int (*verify)(struct fio_option *, void *);
        const char *prof_name;          /* only valid for specific profile */