Add example network io job file
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 7374c258ab95a339cff8853707a567df2ad68422..1a71864fa12157715cdb2fd03567a5f1eb0808bc 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -16,6 +16,16 @@ 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 */
+};
+
+#define PARSE_MAX_VP   16
+
 /*
  * Option define
  */
@@ -33,7 +43,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 +67,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