From: Jens Axboe Date: Thu, 29 Dec 2016 16:07:29 +0000 (-0700) Subject: options: mark steadystate option parents X-Git-Tag: fio-2.17~49 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=915ca9807717762e288ded3eba0fe5fc82a2ddcd;p=fio.git options: mark steadystate option parents Signed-off-by: Jens Axboe --- diff --git a/options.c b/options.c index b81db231..d8b4012f 100644 --- a/options.c +++ b/options.c @@ -4321,6 +4321,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .name = "steadystate_duration", .lname = "Steady state duration", .alias = "ss_dur", + .parent = "steadystate", .type = FIO_OPT_STR_VAL_TIME, .off1 = offsetof(struct thread_options, ss_dur), .help = "Stop workload upon attaining steady state for specified duration", @@ -4334,6 +4335,7 @@ struct fio_option fio_options[FIO_MAX_OPTS] = { .name = "steadystate_ramp_time", .lname = "Steady state ramp time", .alias = "ss_ramp", + .parent = "steadystate", .type = FIO_OPT_STR_VAL_TIME, .off1 = offsetof(struct thread_options, ss_ramp_time), .help = "Delay before initiation of data collection for steady state job termination testing",