Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755239AbbGUO0G (ORCPT ); Tue, 21 Jul 2015 10:26:06 -0400 Received: from mga03.intel.com ([134.134.136.65]:30028 "EHLO mga03.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754360AbbGUO0E (ORCPT ); Tue, 21 Jul 2015 10:26:04 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,516,1432623600"; d="scan'208";a="527734212" Message-ID: <1437488760.22524.10.camel@tzanussi-mobl.amr.corp.intel.com> Subject: Re: [PATCH v9 02/22] tracing: Make ftrace_event_field checking functions available From: Tom Zanussi To: Masami Hiramatsu Cc: rostedt@goodmis.org, daniel.wagner@bmw-carit.de, namhyung@kernel.org, josh@joshtriplett.org, andi@firstfloor.org, linux-kernel@vger.kernel.org Date: Tue, 21 Jul 2015 09:26:00 -0500 In-Reply-To: <55AE192D.6020606@hitachi.com> References: <42c846bed4989ee48475e93aa6fa3bfb59f8e53e.1437066836.git.tom.zanussi@linux.intel.com> <55AE192D.6020606@hitachi.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.10.4 (3.10.4-4.fc20) Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2828 Lines: 82 On Tue, 2015-07-21 at 19:04 +0900, Masami Hiramatsu wrote: > On 2015/07/17 2:22, Tom Zanussi wrote: > > Make is_string_field() and is_function_field() accessible outside of > > trace_event_filters.c for other users of ftrace_event_fields. > > > > Signed-off-by: Tom Zanussi > Reviewed-by: Masami Hiramatsu > > BTW, is there any reason why we split this from caller-side change? > this short change can be merged into the patch which actual requires this. > I kept it separate because I thought it would be useful regardless of whether the rest of the hist triggers patchset got merged or not. So I'd rather keep it separate for that reason. Tom > Thanks, > > > --- > > kernel/trace/trace.h | 12 ++++++++++++ > > kernel/trace/trace_events_filter.c | 12 ------------ > > 2 files changed, 12 insertions(+), 12 deletions(-) > > > > diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h > > index 4c41fcd..891c5b0 100644 > > --- a/kernel/trace/trace.h > > +++ b/kernel/trace/trace.h > > @@ -1050,6 +1050,18 @@ struct filter_pred { > > unsigned short right; > > }; > > > > +static inline bool is_string_field(struct ftrace_event_field *field) > > +{ > > + return field->filter_type == FILTER_DYN_STRING || > > + field->filter_type == FILTER_STATIC_STRING || > > + field->filter_type == FILTER_PTR_STRING; > > +} > > + > > +static inline bool is_function_field(struct ftrace_event_field *field) > > +{ > > + return field->filter_type == FILTER_TRACE_FN; > > +} > > + > > extern enum regex_type > > filter_parse_regex(char *buff, int len, char **search, int *not); > > extern void print_event_filter(struct trace_event_file *file, > > diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c > > index 71511eb..245ee5d 100644 > > --- a/kernel/trace/trace_events_filter.c > > +++ b/kernel/trace/trace_events_filter.c > > @@ -917,18 +917,6 @@ int filter_assign_type(const char *type) > > return FILTER_OTHER; > > } > > > > -static bool is_function_field(struct ftrace_event_field *field) > > -{ > > - return field->filter_type == FILTER_TRACE_FN; > > -} > > - > > -static bool is_string_field(struct ftrace_event_field *field) > > -{ > > - return field->filter_type == FILTER_DYN_STRING || > > - field->filter_type == FILTER_STATIC_STRING || > > - field->filter_type == FILTER_PTR_STRING; > > -} > > - > > static int is_legal_op(struct ftrace_event_field *field, int op) > > { > > if (is_string_field(field) && > > > > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/