From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752577AbbBFS4n (ORCPT ); Fri, 6 Feb 2015 13:56:43 -0500 Received: from smtprelay0076.hostedemail.com ([216.40.44.76]:47778 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751339AbbBFS4m (ORCPT ); Fri, 6 Feb 2015 13:56:42 -0500 X-Session-Marker: 6E657665747340676F6F646D69732E6F7267 X-Spam-Summary: 2,0,0,,d41d8cd98f00b204,rostedt@goodmis.org,:::,RULES_HIT:41:355:379:541:599:960:973:988:989:1260:1277:1311:1313:1314:1345:1359:1437:1515:1516:1518:1534:1540:1593:1594:1711:1730:1747:1777:1792:2393:2553:2559:2562:3138:3139:3140:3141:3142:3352:3622:3865:3870:5007:6261:7875:10004:10400:10471:10848:10967:11026:11232:11473:11658:11914:12114:12296:12517:12519:12740:13069:13255:13311:13357:21080,0,RBL:none,CacheIP:none,Bayesian:0.5,0.5,0.5,Netcheck:none,DomainCache:0,MSF:not bulk,SPF:fn,MSBL:0,DNSBL:none,Custom_rules:0:0:0 X-HE-Tag: twist85_1ba6d8ed93d X-Filterd-Recvd-Size: 1806 Date: Fri, 6 Feb 2015 13:56:39 -0500 From: Steven Rostedt To: Al Viro Cc: linux-kernel@vger.kernel.org Subject: Re: [RFC][PATCH v2 6/7] trace: constify filter_parse_regex(), match_records(), ftrace_match() and ftrace_match_record() Message-ID: <20150206135639.71ac6324@gandalf.local.home> In-Reply-To: <1423195215-25134-6-git-send-email-viro@ZenIV.linux.org.uk> References: <20150205224632.GW29656@ZenIV.linux.org.uk> <1423195215-25134-6-git-send-email-viro@ZenIV.linux.org.uk> X-Mailer: Claws Mail 3.11.1 (GTK+ 2.24.25; x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 6 Feb 2015 04:00:14 +0000 Al Viro wrote: > + 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; This change belongs in the previous patch. -- Steve > > 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; >