Fix busy looping for io_u_queued_complete()
[fio.git] / parse.h
diff --git a/parse.h b/parse.h
index 2d4b55ec30999b932e9f3823981ba171191869a2..7374c258ab95a339cff8853707a567df2ad68422 100644 (file)
--- a/parse.h
+++ b/parse.h
@@ -21,6 +21,7 @@ enum fio_opt_type {
  */
 struct fio_option {
        const char *name;               /* option name */
+       const char *alias;              /* possible old allowed name */
        enum fio_opt_type type;         /* option type */
        unsigned int off1;              /* potential parameters */
        unsigned int off2;
@@ -28,6 +29,7 @@ struct fio_option {
        unsigned int off4;
        unsigned int maxval;            /* max and min value */
        int minval;
+       int neg;                        /* negate value stored */
        void *cb;                       /* callback */
        const char *help;               /* help text for option */
        const char *def;                /* default setting */