Re: [PATCH 1/7] ftrace: Change filter/notrace set functions toreturn exit code

From: Steven Rostedt
Date: Wed Dec 21 2011 - 19:12:16 EST


On Wed, 2011-12-21 at 19:56 +0100, Jiri Olsa wrote:
> diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c
> index b79ab33..7eb702f 100644
> --- a/kernel/trace/ftrace.c
> +++ b/kernel/trace/ftrace.c
> @@ -2912,8 +2912,11 @@ ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
> mutex_lock(&ftrace_regex_lock);
> if (reset)
> ftrace_filter_reset(hash);
> - if (buf)
> - ftrace_match_records(hash, buf, len);
> + if (buf &&
> + !ftrace_match_records(hash, buf, len)) {

I'm fine with this patch, but the above line break is ugly. Put that on
one line, and it still is < 80 characters.

I could just take this patch and fix the above. No need to make a new
patch set for this one fix.

-- Steve

> + ret = -EINVAL;
> + goto out_regex_unlock;
> + }
>
> mutex_lock(&ftrace_lock);
> ret = ftrace_hash_move(ops, enable, orig_hash, hash);
> @@ -2923,6 +2926,7 @@ ftrace_set_regex(struct ftrace_ops *ops, unsigned char *buf, int len,
>
> mutex_unlock(&ftrace_lock);
>
> + out_regex_unlock:
> mutex_unlock(&ftrace_regex_lock);
>
> free_ftrace_hash(hash);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/