[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAO+b5-pXKeQ8zk367M4FNG5r6vUm6dOVBcNRaoJr+4i=kOy35A@mail.gmail.com>
Date: Tue, 12 Jul 2011 07:54:19 +0200
From: Bart Van Assche <bvanassche@....org>
To: Jim Cromie <jim.cromie@...il.com>
Cc: jbaron@...hat.com, linux-kernel@...r.kernel.org, joe@...ches.com,
gregkh@...e.de, gnb@...h.org
Subject: Re: [PATCH 03/21] dynamic_debug: process multiple commands on a line
On Mon, Jul 11, 2011 at 9:46 AM, Jim Cromie <jim.cromie@...il.com> wrote:
> Process multiple commands per line, separated by ';'. All commands are
> processed, independent of errors, allowing individual commands to fail,
> for example when a module is not installed. Last error code is returned.
> With this, extensive command sets can be given on the boot-line.
>
> Signed-off-by: Jim Cromie <jim.cromie@...il.com>
> ---
> lib/dynamic_debug.c | 30 ++++++++++++++++++++++++++++--
> 1 files changed, 28 insertions(+), 2 deletions(-)
>
> diff --git a/lib/dynamic_debug.c b/lib/dynamic_debug.c
> index 1597d5a..ae72402 100644
> --- a/lib/dynamic_debug.c
> +++ b/lib/dynamic_debug.c
> @@ -423,6 +423,32 @@ static int ddebug_exec_query(char *query_string)
> return 0;
> }
>
> +/* handle multiple queries, continue on error, return last error */
> +static int ddebug_exec_queries(char *query)
> +{
> + char *split;
> + int i, errs = 0, exitcode = 0, rc;
> +
> + for (i = 0; query; query = split, i++) {
> + split = strchr(query, ';');
> + if (split)
> + *split++ = '\0';
> +
> + if (verbose)
> + pr_info("query %d: \"%s\"\n", i, query);
> +
> + rc = ddebug_exec_query(query);
> + if (rc) {
> + errs++;
> + exitcode = rc;
> + }
> + }
> + if (verbose)
> + pr_info("processed %d queries, with %d errs\n", i, errs);
> +
> + return exitcode;
> +}
> +
Does the above mean that semicolon is considered a valid separator but
newline not ?
Bart.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists