From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754004AbbBET53 (ORCPT ); Thu, 5 Feb 2015 14:57:29 -0500 Received: from zeniv.linux.org.uk ([195.92.253.2]:49864 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752166AbbBET4m (ORCPT ); Thu, 5 Feb 2015 14:56:42 -0500 From: Al Viro To: Steven Rostedt Cc: linux-kernel@vger.kernel.org Subject: [RFC][PATCH 6/7] trace: constify filter_parse_regex(), match_records(), ftrace_match() and ftrace_match_record() Date: Thu, 5 Feb 2015 19:56:39 +0000 Message-Id: <1423166200-1800-6-git-send-email-viro@ZenIV.linux.org.uk> X-Mailer: git-send-email 1.7.7.6 In-Reply-To: <20150205194914.GR29656@ZenIV.linux.org.uk> References: <20150205194914.GR29656@ZenIV.linux.org.uk> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Al Viro stop modifying the glob in there. Signed-off-by: Al Viro --- kernel/trace/ftrace.c | 14 +++++++------- kernel/trace/trace.h | 2 +- kernel/trace/trace_events_filter.c | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index e082681..572e3df 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c @@ -3362,7 +3362,7 @@ ftrace_notrace_open(struct inode *inode, struct file *file) inode, file); } -static int ftrace_match(char *str, char *regex, int len, int type) +static int ftrace_match(char *str, const char *regex, int len, int type) { int matched = 0; int slen = strlen(str); @@ -3417,7 +3417,7 @@ enter_record(struct ftrace_hash *hash, struct dyn_ftrace *rec, int not) static int ftrace_match_record(struct dyn_ftrace *rec, char *mod, - char *regex, int len, int type) + const char *regex, int len, int type) { char str[KSYM_SYMBOL_LEN]; char *modname; @@ -3438,13 +3438,13 @@ ftrace_match_record(struct dyn_ftrace *rec, char *mod, } static int -match_records(struct ftrace_hash *hash, char *buff, +match_records(struct ftrace_hash *hash, const char *buff, int len, char *mod, int not) { struct ftrace_page *pg; struct dyn_ftrace *rec; int type = MATCH_FULL; - char *search = buff; + const char *search = buff; int found = 0; int ret; @@ -3648,7 +3648,7 @@ register_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops, int type, len = strlen(glob), not; unsigned long key; int count = 0; - char *search; + const char *search; int ret; type = filter_parse_regex(glob, &len, &search, ¬); @@ -3759,7 +3759,7 @@ __unregister_ftrace_function_probe(char *glob, struct ftrace_probe_ops *ops, char str[KSYM_SYMBOL_LEN]; int type = MATCH_FULL; int i, len = 0; - char *search; + const char *search; int ret; if (glob && (strcmp(glob, "*") == 0 || !strlen(glob))) @@ -4550,7 +4550,7 @@ ftrace_set_func(unsigned long *array, int *idx, int size, char *buffer) int search_len = strlen(buffer); int fail = 1; int type, not; - char *search; + const char *search; bool exists; int i; diff --git a/kernel/trace/trace.h b/kernel/trace/trace.h index 7483205..09279c5 100644 --- a/kernel/trace/trace.h +++ b/kernel/trace/trace.h @@ -1051,7 +1051,7 @@ struct filter_pred { }; extern enum regex_type -filter_parse_regex(char *buff, int *len, char **search, int *not); +filter_parse_regex(const char *buff, int *len, const char **search, int *not); extern void print_event_filter(struct ftrace_event_file *file, struct trace_seq *s); extern int apply_event_filter(struct ftrace_event_file *file, diff --git a/kernel/trace/trace_events_filter.c b/kernel/trace/trace_events_filter.c index 6a659e1..5cefdd8 100644 --- a/kernel/trace/trace_events_filter.c +++ b/kernel/trace/trace_events_filter.c @@ -321,7 +321,8 @@ static int regex_match_end(char *str, struct regex *r, int len) * not returns 1 if buff started with a '!' * 0 otherwise. */ -enum regex_type filter_parse_regex(char *buff, int *len, char **search, int *not) +enum regex_type filter_parse_regex(const char *buff, int *len, + const char **search, int *not) { int type = MATCH_FULL; int i; @@ -345,12 +346,11 @@ enum regex_type filter_parse_regex(char *buff, int *len, char **search, int *not type = MATCH_MIDDLE_ONLY; else type = MATCH_FRONT_ONLY; - buff[i] = 0; break; } } } - *len = strlen(*search); + *len = buff + i - *search; return type; } @@ -358,7 +358,7 @@ enum regex_type filter_parse_regex(char *buff, int *len, char **search, int *not static void filter_build_regex(struct filter_pred *pred) { struct regex *r = &pred->regex; - char *search; + const char *search; enum regex_type type = MATCH_FULL; int not = 0; -- 2.1.4