From mboxrd@z Thu Jan 1 00:00:00 1970 From: Will Deacon Subject: Re: [RFA][PATCH 25/27] arm64, ftrace: Remove check of obsolete variable function_trace_stop Date: Fri, 27 Jun 2014 13:44:21 +0100 Message-ID: <20140627124421.GP26276@arm.com> References: <20140626165221.736847419@goodmis.org> <20140626165853.482575534@goodmis.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from cam-admin0.cambridge.arm.com ([217.140.96.50]:35438 "EHLO cam-admin0.cambridge.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751972AbaF0Mok (ORCPT ); Fri, 27 Jun 2014 08:44:40 -0400 Content-Disposition: inline In-Reply-To: <20140626165853.482575534@goodmis.org> Sender: linux-arch-owner@vger.kernel.org List-ID: To: Steven Rostedt Cc: "linux-kernel@vger.kernel.org" , Ingo Molnar , Andrew Morton , Thomas Gleixner , Masami Hiramatsu , "H. Peter Anvin" , "linux-arch@vger.kernel.org" , "Rafael J. Wysocki" , Jiri Kosina , Josh Poimboeuf , AKASHI Takahiro Hi Steve, On Thu, Jun 26, 2014 at 05:52:46PM +0100, Steven Rostedt wrote: > From: "Steven Rostedt (Red Hat)" > > Nothing sets function_trace_stop to disable function tracing anymore. > Remove the check for it in the arch code. > > arm64 was broken anyway, as it had an ifdef testing > CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST which is only set if > the arch supports the code (which it obviously did not), and > it was testing a non existent ftrace_trace_stop instead of > function_trace_stop. Yeah, the current code is total crap. Well spotted. > Cc: AKASHI Takahiro > Cc: Will Deacon > Signed-off-by: Steven Rostedt > --- > arch/arm64/kernel/entry-ftrace.S | 5 ----- > 1 file changed, 5 deletions(-) Acked-by: Will Deacon I'm happy for you to take this via the ftrace tree, along with the rest of the series. I successfully ran the ftrace self tests with this applied (on top of "ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST"), but note that I don't have a platform with working suspend/resume right now. Cheers, Will > diff --git a/arch/arm64/kernel/entry-ftrace.S b/arch/arm64/kernel/entry-ftrace.S > index b051871f2965..1b1e330e6849 100644 > --- a/arch/arm64/kernel/entry-ftrace.S > +++ b/arch/arm64/kernel/entry-ftrace.S > @@ -96,11 +96,6 @@ > * - ftrace_graph_caller to set up an exit hook > */ > ENTRY(_mcount) > -#ifdef CONFIG_HAVE_FUNCTION_TRACE_MCOUNT_TEST > - ldr x0, =ftrace_trace_stop > - ldr x0, [x0] // if ftrace_trace_stop > - ret // return; > -#endif > mcount_enter > > ldr x0, =ftrace_trace_function > -- > 2.0.0 > > >