From: James Hogan <james.hogan@imgtec.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org
Subject: Re: [RFA][PATCH 23/27] metag: ftrace: Remove check of obsolete variable function_trace_stop
Date: Wed, 2 Jul 2014 14:34:07 +0100 [thread overview]
Message-ID: <53B40A4F.7060102@imgtec.com> (raw)
In-Reply-To: <20140626133848.0567e365@gandalf.local.home>
On 26/06/14 18:38, Steven Rostedt wrote:
> On Thu, 26 Jun 2014 12:52:44 -0400
> Steven Rostedt <rostedt@goodmis.org> wrote:
>
>> From: "Steven Rostedt (Red Hat)" <rostedt@goodmis.org>
>>
>> Nothing sets function_trace_stop to disable function tracing anymore.
>> Remove the check for it in the arch code.
>>
>> [ Please test this on your arch ]
>
> From the cover letter, you were not Cc'd on.
>
> Anyway, as there is no more reason to set function_trace_stop it is time
> to remove it. Unfortunately it's in several archs in assembly. Most of
> the assembly looks rather straight forward and I removed them myself.
> But I was only able to compile test them (for archs: arm64, metag, and
> microblaze I do not have my cross tools set up for them and did not
> even compile test it). But I would really love it if people can
> download their patch and test it out. You only need the patches that go
> against your arch and to really test it, also include the patch titled:
>
> ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST
>
> Otherwise your arch patch will call the list op that still does the
> check. That is, if you want to test suspend and resume on your arch.
>
> As you may see, there are patches to the ftrace infrastructure that
> depend on the arch patches being implemented. I removed the
> functionality from the infrastructure, then removed it from the archs,
> and then finally removed the existence of the function_trace_stop
> variable, which would cause the archs to fail to compile if that were
> to go first.
>
> If you can test your arch and give me your acked-by, I would appreciate
> it. Otherwise, if you need this to go through your tree, I would ask you
> to set up a dedicated branch that I can pull from to keep this order
> intact.
>
This patch is pretty much the inverse of the original patch that added
it, so looks good to me (and it didn't seem to break anything).
So, for both this patch and the "ftrace: Remove check for
HAVE_FUNCTION_TRACE_MCOUNT_TEST" one:
Acked-by: James Hogan <james.hogan@imgtec.com>
Cheers
James
> -- Steve
>
>>
>> Cc: James Hogan <james.hogan@imgtec.com>
>> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
>> ---
>> arch/metag/Kconfig | 1 -
>> arch/metag/kernel/ftrace_stub.S | 14 --------------
>> 2 files changed, 15 deletions(-)
>>
>> diff --git a/arch/metag/Kconfig b/arch/metag/Kconfig
>> index 499b7610eaaf..0b389a81c43a 100644
>> --- a/arch/metag/Kconfig
>> +++ b/arch/metag/Kconfig
>> @@ -13,7 +13,6 @@ config METAG
>> select HAVE_DYNAMIC_FTRACE
>> select HAVE_FTRACE_MCOUNT_RECORD
>> select HAVE_FUNCTION_TRACER
>> - select HAVE_FUNCTION_TRACE_MCOUNT_TEST
>> select HAVE_KERNEL_BZIP2
>> select HAVE_KERNEL_GZIP
>> select HAVE_KERNEL_LZO
>> diff --git a/arch/metag/kernel/ftrace_stub.S b/arch/metag/kernel/ftrace_stub.S
>> index e70bff745bdd..3acc288217c0 100644
>> --- a/arch/metag/kernel/ftrace_stub.S
>> +++ b/arch/metag/kernel/ftrace_stub.S
>> @@ -16,13 +16,6 @@ _mcount_wrapper:
>> .global _ftrace_caller
>> .type _ftrace_caller,function
>> _ftrace_caller:
>> - MOVT D0Re0,#HI(_function_trace_stop)
>> - ADD D0Re0,D0Re0,#LO(_function_trace_stop)
>> - GETD D0Re0,[D0Re0]
>> - CMP D0Re0,#0
>> - BEQ $Lcall_stub
>> - MOV PC,D0.4
>> -$Lcall_stub:
>> MSETL [A0StP], D0Ar6, D0Ar4, D0Ar2, D0.4
>> MOV D1Ar1, D0.4
>> MOV D0Ar2, D1RtP
>> @@ -42,13 +35,6 @@ _ftrace_call:
>> .global _mcount_wrapper
>> .type _mcount_wrapper,function
>> _mcount_wrapper:
>> - MOVT D0Re0,#HI(_function_trace_stop)
>> - ADD D0Re0,D0Re0,#LO(_function_trace_stop)
>> - GETD D0Re0,[D0Re0]
>> - CMP D0Re0,#0
>> - BEQ $Lcall_mcount
>> - MOV PC,D0.4
>> -$Lcall_mcount:
>> MSETL [A0StP], D0Ar6, D0Ar4, D0Ar2, D0.4
>> MOV D1Ar1, D0.4
>> MOV D0Ar2, D1RtP
>
WARNING: multiple messages have this Message-ID (diff)
From: James Hogan <james.hogan@imgtec.com>
To: Steven Rostedt <rostedt@goodmis.org>
Cc: <linux-kernel@vger.kernel.org>, <linux-arch@vger.kernel.org>
Subject: Re: [RFA][PATCH 23/27] metag: ftrace: Remove check of obsolete variable function_trace_stop
Date: Wed, 2 Jul 2014 14:34:07 +0100 [thread overview]
Message-ID: <53B40A4F.7060102@imgtec.com> (raw)
In-Reply-To: <20140626133848.0567e365@gandalf.local.home>
On 26/06/14 18:38, Steven Rostedt wrote:
> On Thu, 26 Jun 2014 12:52:44 -0400
> Steven Rostedt <rostedt@goodmis.org> wrote:
>
>> From: "Steven Rostedt (Red Hat)" <rostedt@goodmis.org>
>>
>> Nothing sets function_trace_stop to disable function tracing anymore.
>> Remove the check for it in the arch code.
>>
>> [ Please test this on your arch ]
>
> From the cover letter, you were not Cc'd on.
>
> Anyway, as there is no more reason to set function_trace_stop it is time
> to remove it. Unfortunately it's in several archs in assembly. Most of
> the assembly looks rather straight forward and I removed them myself.
> But I was only able to compile test them (for archs: arm64, metag, and
> microblaze I do not have my cross tools set up for them and did not
> even compile test it). But I would really love it if people can
> download their patch and test it out. You only need the patches that go
> against your arch and to really test it, also include the patch titled:
>
> ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST
>
> Otherwise your arch patch will call the list op that still does the
> check. That is, if you want to test suspend and resume on your arch.
>
> As you may see, there are patches to the ftrace infrastructure that
> depend on the arch patches being implemented. I removed the
> functionality from the infrastructure, then removed it from the archs,
> and then finally removed the existence of the function_trace_stop
> variable, which would cause the archs to fail to compile if that were
> to go first.
>
> If you can test your arch and give me your acked-by, I would appreciate
> it. Otherwise, if you need this to go through your tree, I would ask you
> to set up a dedicated branch that I can pull from to keep this order
> intact.
>
This patch is pretty much the inverse of the original patch that added
it, so looks good to me (and it didn't seem to break anything).
So, for both this patch and the "ftrace: Remove check for
HAVE_FUNCTION_TRACE_MCOUNT_TEST" one:
Acked-by: James Hogan <james.hogan@imgtec.com>
Cheers
James
> -- Steve
>
>>
>> Cc: James Hogan <james.hogan@imgtec.com>
>> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
>> ---
>> arch/metag/Kconfig | 1 -
>> arch/metag/kernel/ftrace_stub.S | 14 --------------
>> 2 files changed, 15 deletions(-)
>>
>> diff --git a/arch/metag/Kconfig b/arch/metag/Kconfig
>> index 499b7610eaaf..0b389a81c43a 100644
>> --- a/arch/metag/Kconfig
>> +++ b/arch/metag/Kconfig
>> @@ -13,7 +13,6 @@ config METAG
>> select HAVE_DYNAMIC_FTRACE
>> select HAVE_FTRACE_MCOUNT_RECORD
>> select HAVE_FUNCTION_TRACER
>> - select HAVE_FUNCTION_TRACE_MCOUNT_TEST
>> select HAVE_KERNEL_BZIP2
>> select HAVE_KERNEL_GZIP
>> select HAVE_KERNEL_LZO
>> diff --git a/arch/metag/kernel/ftrace_stub.S b/arch/metag/kernel/ftrace_stub.S
>> index e70bff745bdd..3acc288217c0 100644
>> --- a/arch/metag/kernel/ftrace_stub.S
>> +++ b/arch/metag/kernel/ftrace_stub.S
>> @@ -16,13 +16,6 @@ _mcount_wrapper:
>> .global _ftrace_caller
>> .type _ftrace_caller,function
>> _ftrace_caller:
>> - MOVT D0Re0,#HI(_function_trace_stop)
>> - ADD D0Re0,D0Re0,#LO(_function_trace_stop)
>> - GETD D0Re0,[D0Re0]
>> - CMP D0Re0,#0
>> - BEQ $Lcall_stub
>> - MOV PC,D0.4
>> -$Lcall_stub:
>> MSETL [A0StP], D0Ar6, D0Ar4, D0Ar2, D0.4
>> MOV D1Ar1, D0.4
>> MOV D0Ar2, D1RtP
>> @@ -42,13 +35,6 @@ _ftrace_call:
>> .global _mcount_wrapper
>> .type _mcount_wrapper,function
>> _mcount_wrapper:
>> - MOVT D0Re0,#HI(_function_trace_stop)
>> - ADD D0Re0,D0Re0,#LO(_function_trace_stop)
>> - GETD D0Re0,[D0Re0]
>> - CMP D0Re0,#0
>> - BEQ $Lcall_mcount
>> - MOV PC,D0.4
>> -$Lcall_mcount:
>> MSETL [A0StP], D0Ar6, D0Ar4, D0Ar2, D0.4
>> MOV D1Ar1, D0.4
>> MOV D0Ar2, D1RtP
>
next prev parent reply other threads:[~2014-07-02 13:34 UTC|newest]
Thread overview: 89+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-26 16:52 [RFA][PATCH 00/27] ftrace: Remove ftrace_start/stop() and friends Steven Rostedt
2014-06-26 16:52 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 01/27] x86, power, suspend: Annotate restore_processor_state() with notrace Steven Rostedt
2014-06-28 0:02 ` Rafael J. Wysocki
2014-06-26 16:52 ` [RFA][PATCH 02/27] PM / Sleep: Remove ftrace_stop/start() from suspend and hibernate Steven Rostedt
2014-06-28 0:02 ` Rafael J. Wysocki
2014-06-26 16:52 ` [RFA][PATCH 03/27] tracing: Remove ftrace_stop/start() from reading the trace file Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 04/27] ftrace-graph: Remove dependency of ftrace_stop() from ftrace_graph_stop() Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 05/27] ftrace/x86: Add call to ftrace_graph_is_dead() in function graph code Steven Rostedt
2014-07-15 15:47 ` H. Peter Anvin
2014-06-26 16:52 ` [RFA][PATCH 06/27] microblaze: ftrace: " Steven Rostedt
2014-07-03 16:34 ` Steven Rostedt
2014-07-09 14:03 ` Steven Rostedt
2014-07-18 8:19 ` Michal Simek
2014-06-26 16:52 ` [RFA][PATCH 07/27] MIPS: " Steven Rostedt
2014-07-02 14:31 ` Steven Rostedt
2014-07-09 15:48 ` James Hogan
2014-07-09 15:48 ` James Hogan
2014-07-03 16:36 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 08/27] parisc: " Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 09/27] powerpc/ftrace: " Steven Rostedt
2014-07-09 14:04 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 10/27] sh: ftrace: " Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 11/27] ftrace-graph: Remove usage of ftrace_stop() in ftrace_graph_stop() Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 12/27] ftrace: Remove ftrace_start/stop() Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 13/27] ftrace: Do no disable function tracing on enabling function tracing Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 14/27] ftrace: Remove function_trace_stop check from list func Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 15/27] ftrace: Remove check for HAVE_FUNCTION_TRACE_MCOUNT_TEST Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 16/27] ftrace: x86: Remove check of obsolete variable function_trace_stop Steven Rostedt
2014-07-15 15:48 ` H. Peter Anvin
2014-06-26 16:52 ` [RFA][PATCH 17/27] tile: ftrace: " Steven Rostedt
2014-06-26 17:33 ` Steven Rostedt
2014-06-26 17:33 ` Steven Rostedt
2014-07-03 13:53 ` Chris Metcalf
2014-07-03 13:53 ` Chris Metcalf
2014-07-03 14:02 ` Steven Rostedt
2014-07-03 14:02 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 18/27] sparc64,ftrace: " Steven Rostedt
2014-06-26 17:34 ` Steven Rostedt
2014-06-26 17:34 ` Steven Rostedt
2014-07-03 16:41 ` Steven Rostedt
2014-07-03 16:41 ` Steven Rostedt
2014-07-04 4:18 ` David Miller
2014-07-04 4:18 ` David Miller
2014-06-26 16:52 ` [RFA][PATCH 19/27] sh: ftrace: " Steven Rostedt
2014-06-26 17:35 ` Steven Rostedt
2014-06-26 17:35 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 20/27] parisc: " Steven Rostedt
2014-06-26 17:35 ` Steven Rostedt
2014-06-26 17:35 ` Steven Rostedt
2014-06-29 21:20 ` Helge Deller
2014-06-30 14:11 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 21/27] MIPS: " Steven Rostedt
2014-06-26 17:37 ` Steven Rostedt
2014-06-26 17:37 ` Steven Rostedt
2014-07-02 14:32 ` Steven Rostedt
2014-07-09 14:15 ` Steven Rostedt
2014-07-15 21:58 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 22/27] microblaze: " Steven Rostedt
2014-06-26 17:38 ` Steven Rostedt
2014-06-26 17:38 ` Steven Rostedt
2014-07-09 14:16 ` Steven Rostedt
2014-07-15 21:51 ` Steven Rostedt
2014-07-18 8:17 ` Michal Simek
2014-06-26 16:52 ` [RFA][PATCH 23/27] metag: " Steven Rostedt
2014-06-26 17:38 ` Steven Rostedt
2014-06-26 17:38 ` Steven Rostedt
2014-07-02 13:34 ` James Hogan [this message]
2014-07-02 13:34 ` James Hogan
2014-07-02 14:22 ` Steven Rostedt
2014-07-02 14:22 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 24/27] Blackfin: " Steven Rostedt
2014-06-26 17:39 ` Steven Rostedt
2014-06-26 17:39 ` Steven Rostedt
2014-06-26 19:25 ` Mike Frysinger
2014-06-26 19:34 ` Steven Rostedt
2014-06-26 16:52 ` [RFA][PATCH 25/27] arm64, " Steven Rostedt
2014-06-26 17:40 ` Steven Rostedt
2014-06-26 17:40 ` Steven Rostedt
2014-06-27 12:44 ` Will Deacon
2014-07-01 11:33 ` AKASHI Takahiro
2014-06-26 16:52 ` [RFA][PATCH 26/27] s390/ftrace: remove " Steven Rostedt
2014-06-26 17:41 ` Steven Rostedt
2014-06-26 17:41 ` Steven Rostedt
2014-06-27 6:01 ` Heiko Carstens
2014-06-26 16:52 ` [RFA][PATCH 27/27] tracing: Remove function_trace_stop and HAVE_FUNCTION_TRACE_MCOUNT_TEST Steven Rostedt
2014-06-30 3:13 ` [RFA][PATCH 00/27] ftrace: Remove ftrace_start/stop() and friends Masami Hiramatsu
2014-06-30 14:16 ` Steven Rostedt
2014-07-01 0:58 ` Masami Hiramatsu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=53B40A4F.7060102@imgtec.com \
--to=james.hogan@imgtec.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=rostedt@goodmis.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.