Add initial support for profile specific options
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 085de1a5face6410696d4ecab6d8e464e1a10416..5f602a37966e180a30feab7d9699d301e12e5d64 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -41,6 +41,7 @@ struct fio_option {
        unsigned int off2;
        unsigned int off3;
        unsigned int off4;
+       void *roff1, *roff2, *roff3, *roff4;
        unsigned int maxval;            /* max and min value */
        int minval;
        int neg;                        /* negate value stored */
@@ -58,7 +59,7 @@ typedef int (str_cb_fn)(void *, char *);
 extern int parse_option(const char *, struct fio_option *, struct flist_head *, void *);
 extern void sort_options(char **, struct fio_option *, int);
 extern int parse_cmd_option(const char *t, const char *l, struct fio_option *, struct flist_head *, void *);
-extern int show_cmd_help(struct fio_option *, const char *);
+extern int show_cmd_help(struct fio_option *, struct flist_head *, const char *);
 extern void fill_default_options(void *, struct fio_option *);
 extern void option_init(struct fio_option *);
 extern void options_init(struct fio_option *);