X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=parse.h;h=7374c258ab95a339cff8853707a567df2ad68422;hp=2d4b55ec30999b932e9f3823981ba171191869a2;hb=e4dd8a093ce7f13094460feead61d83c0c04f0ce;hpb=63f29372bc1bd69b66816c96d88b9c0bd8f3d8b9 diff --git a/parse.h b/parse.h index 2d4b55ec..7374c258 100644 --- 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 */