gfio: hide graph if all values are zero
[fio.git] / options.h
index 256bf60e6fe6f50129551faa1c6cdcc0017e41a8..ae51cb3e9b2127d75383126bbc74cf12fd4d3c0e 100644 (file)
--- a/options.h
+++ b/options.h
@@ -72,6 +72,18 @@ enum opt_category_group {
        __FIO_OPT_G_IOLOG,
        __FIO_OPT_G_IO_DEPTH,
        __FIO_OPT_G_IO_FLOW,
+       __FIO_OPT_G_DESC,
+       __FIO_OPT_G_FILENAME,
+       __FIO_OPT_G_IO_BASIC,
+       __FIO_OPT_G_CGROUP,
+       __FIO_OPT_G_RUNTIME,
+       __FIO_OPT_G_PROCESS,
+       __FIO_OPT_G_CRED,
+       __FIO_OPT_G_CLOCK,
+       __FIO_OPT_G_IO_TYPE,
+       __FIO_OPT_G_THINKTIME,
+       __FIO_OPT_G_RANDOM,
+       __FIO_OPT_G_IO_BUF,
        __FIO_OPT_G_NR,
 
        FIO_OPT_G_RATE          = (1U << __FIO_OPT_G_RATE),
@@ -82,10 +94,23 @@ enum opt_category_group {
        FIO_OPT_G_IOLOG         = (1U << __FIO_OPT_G_IOLOG),
        FIO_OPT_G_IO_DEPTH      = (1U << __FIO_OPT_G_IO_DEPTH),
        FIO_OPT_G_IO_FLOW       = (1U << __FIO_OPT_G_IO_FLOW),
+       FIO_OPT_G_DESC          = (1U << __FIO_OPT_G_DESC),
+       FIO_OPT_G_FILENAME      = (1U << __FIO_OPT_G_FILENAME),
+       FIO_OPT_G_IO_BASIC      = (1U << __FIO_OPT_G_IO_BASIC),
+       FIO_OPT_G_CGROUP        = (1U << __FIO_OPT_G_CGROUP),
+       FIO_OPT_G_RUNTIME       = (1U << __FIO_OPT_G_RUNTIME),
+       FIO_OPT_G_PROCESS       = (1U << __FIO_OPT_G_PROCESS),
+       FIO_OPT_G_CRED          = (1U << __FIO_OPT_G_CRED),
+       FIO_OPT_G_CLOCK         = (1U << __FIO_OPT_G_CLOCK),
+       FIO_OPT_G_IO_TYPE       = (1U << __FIO_OPT_G_IO_TYPE),
+       FIO_OPT_G_THINKTIME     = (1U << __FIO_OPT_G_THINKTIME),
+       FIO_OPT_G_RANDOM        = (1U << __FIO_OPT_G_RANDOM),
+       FIO_OPT_G_IO_BUF        = (1U << __FIO_OPT_G_IO_BUF),
        FIO_OPT_G_INVALID       = (1U << __FIO_OPT_G_NR),
 };
 
 extern struct opt_group *opt_group_from_mask(unsigned int *mask);
 extern struct opt_group *opt_group_cat_from_mask(unsigned int *mask);
+extern struct fio_option *fio_option_find(const char *name);
 
 #endif