Don't require 'all' argument to --cmdhelp to dump all options
authorJens Axboe <jens.axboe@oracle.com>
Thu, 1 Mar 2007 09:44:12 +0000 (10:44 +0100)
committerJens Axboe <jens.axboe@oracle.com>
Thu, 1 Mar 2007 09:44:12 +0000 (10:44 +0100)
If an argument isn't given, just dump all commands. This has the
downside that one MUST use --cmdhelp=option to get option help,
where as before --cmdhelp option worked as well.

Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
init.c
parse.c

diff --git a/init.c b/init.c
index c6837c9f91d3bea0db10d7a8a4a106bcf9268deb..194242439dc93b61b4126ce8a1a9fa3808b08980 100644 (file)
--- a/init.c
+++ b/init.c
@@ -581,7 +581,7 @@ static struct option long_options[FIO_JOB_OPTS + FIO_CMD_OPTS] = {
        },
        {
                .name           = "cmdhelp",
-               .has_arg        = required_argument,
+               .has_arg        = optional_argument,
                .val            = 'c',
        },
        {
diff --git a/parse.c b/parse.c
index d13a60331db7629b2cc3892fa357edd031d35b4a..ee7ddf29d4605cc29d6aaabdd43420ad868cfde1 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -439,7 +439,6 @@ int parse_option(const char *opt, struct fio_option *options, void *data)
 
 int show_cmd_help(struct fio_option *options, const char *name)
 {
-       int show_all = !strcmp(name, "all");
        const char *typehelp[] = {
                "string (opt=bla)",
                "string with possible k/m/g postfix (opt=4k)",
@@ -453,9 +452,16 @@ int show_cmd_help(struct fio_option *options, const char *name)
        };
        struct fio_option *o;
        int found = 0;
+       int show_all = 0;
+
+       if (!name || !strcmp(name, "all"))
+               show_all = 1;
 
        for (o = &options[0]; o->name; o++) {
-               int match = !strcmp(name, o->name);
+               int match = 0;
+
+               if (name && !strcmp(name, o->name))
+                       match = 1;
 
                if (show_all || match) {
                        found = 1;