From: Jens Axboe Date: Wed, 10 Apr 2013 17:45:30 +0000 (+0200) Subject: tiobench: remove duplicate profile group X-Git-Tag: fio-2.1~73 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=0ed766f6299b2a2edf7dce4b1bf8ecb95963ae7b;p=fio.git tiobench: remove duplicate profile group Signed-off-by: Jens Axboe --- diff --git a/options.h b/options.h index 852ccae1..cd348862 100644 --- a/options.h +++ b/options.h @@ -91,7 +91,6 @@ enum opt_category_group { __FIO_OPT_G_E4DEFRAG, __FIO_OPT_G_NETIO, __FIO_OPT_G_LIBAIO, - __FIO_OPT_G_TIOPROF, __FIO_OPT_G_NR, FIO_OPT_G_RATE = (1U << __FIO_OPT_G_RATE), @@ -119,7 +118,6 @@ enum opt_category_group { FIO_OPT_G_E4DEFRAG = (1U << __FIO_OPT_G_E4DEFRAG), FIO_OPT_G_NETIO = (1U << __FIO_OPT_G_NETIO), FIO_OPT_G_LIBAIO = (1U << __FIO_OPT_G_LIBAIO), - FIO_OPT_G_TIOPROF = (1U << __FIO_OPT_G_TIOPROF), FIO_OPT_G_INVALID = (1U << __FIO_OPT_G_NR), }; diff --git a/profiles/tiobench.c b/profiles/tiobench.c index 8a05d51a..1e0d2efe 100644 --- a/profiles/tiobench.c +++ b/profiles/tiobench.c @@ -27,7 +27,7 @@ static struct fio_option options[] = { .roff1 = &size, .help = "Size in MB", .category = FIO_OPT_C_PROFILE, - .group = FIO_OPT_G_TIOPROF, + .group = FIO_OPT_G_TIOBENCH, }, { .name = "block", @@ -36,7 +36,7 @@ static struct fio_option options[] = { .help = "Block size in bytes", .def = "4k", .category = FIO_OPT_C_PROFILE, - .group = FIO_OPT_G_TIOPROF, + .group = FIO_OPT_G_TIOBENCH, }, { .name = "numruns", @@ -44,7 +44,7 @@ static struct fio_option options[] = { .roff1 = &loops, .help = "Number of runs", .category = FIO_OPT_C_PROFILE, - .group = FIO_OPT_G_TIOPROF, + .group = FIO_OPT_G_TIOBENCH, }, { .name = "dir", @@ -52,7 +52,7 @@ static struct fio_option options[] = { .roff1 = &dir, .help = "Test directory", .category = FIO_OPT_C_PROFILE, - .group = FIO_OPT_G_TIOPROF, + .group = FIO_OPT_G_TIOBENCH, }, { .name = "threads", @@ -60,7 +60,7 @@ static struct fio_option options[] = { .roff1 = &nthreads, .help = "Number of Threads", .category = FIO_OPT_C_PROFILE, - .group = FIO_OPT_G_TIOPROF, + .group = FIO_OPT_G_TIOBENCH, }, { .name = NULL,