All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jean-Jacques Hiblot <jjhiblot@traphandler.com>
To: Steven Rostedt <rostedt@goodmis.org>, jslaby@suse.cz
Cc: Russell King - ARM Linux <linux@arm.linux.org.uk>,
	Stefano Stabellini <stefano.stabellini@eu.citrix.com>,
	nsekhar@ti.com,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	mingo@redhat.com,
	"linux-arm-kernel@lists.infradead.org" 
	<linux-arm-kernel@lists.infradead.org>,
	Christoffer Dall <christoffer.dall@linaro.org>
Subject: Re: [PATCH] arm: ftrace: Adds support for ftrace operations
Date: Mon, 24 Nov 2014 10:59:24 +0100	[thread overview]
Message-ID: <CACh+v5MDFZj+NOPWdnMgNthn_DxL3nn=CZJ224vMh7hSf84o4Q@mail.gmail.com> (raw)
In-Reply-To: <545CFAF4.8030104@traphandler.com>

2014-11-07 18:01 GMT+01:00 Jean-Jacques Hiblot <jjhiblot@traphandler.com>:
>
>
> On 11/07/2014 05:52 PM, Steven Rostedt wrote:
>> On Fri,  7 Nov 2014 15:59:11 +0100
>> Jean-Jacques Hiblot <jjhiblot@traphandler.com> wrote:
>>
>>> Hi all,
>>>
>>> This patch adds support for ftrace operations on the ARM architecture.
>>> This support is needed by kgraft and possibly other ftrace-based tools.
>>> My goal is to have kgraft working on ARM and aarch64.
>>
>> Can you add this to the change log of the patch. As that would be what
>> goes into git history. Because honestly, I had no idea what you meant
>> by "ftrace operations". If I don't understand that term, how can you
>> expect anyone else to?
> I'll try to come up with a clearer commit log.
>>
>>>
>>> I tested this patch with a toy implementation of kgraft for ARM and basic
>>> usage of function and function_graph tracers
>>> It doesn't show any problem with the ftrace selftests and the tests found
>>> today in branch ftrace/testing-mystuff of linux-trace repository
>>> (git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git)
>>
>> Those tests are no where near what I have. Does this code work on the
>> beagle bone white? If so, I can probably run my full suite on it.
> It should work on any arm processor, It's not platform or SOC dependent
>>
Hi Steve,
did you get a chance of running your tests suite on real hardware with
this patch? I'd be really interested in the results.

Jiri,
would you be interested in the patchs to run kgraft on ARM ? The
modifications required in kgraft core are minimal, it's mostly
architecture specific.

Jean-Jacques

>> -- Steve
>>
>>>
>>> Jean-Jacques Hiblot (1):
>>>   arm: ftrace: Adds support for ftrace operations
>>>
>>>  arch/arm/Kconfig               |  2 ++
>>>  arch/arm/include/asm/ftrace.h  |  3 ++
>>>  arch/arm/kernel/entry-common.S | 68 +++++++++++++++++++++++++++++++++++++++++-
>>>  arch/arm/kernel/ftrace.c       | 34 +++++++++++++++++++++
>>>  4 files changed, 106 insertions(+), 1 deletion(-)
>>>
>>
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel@lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>>

WARNING: multiple messages have this Message-ID (diff)
From: jjhiblot@traphandler.com (Jean-Jacques Hiblot)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm: ftrace: Adds support for ftrace operations
Date: Mon, 24 Nov 2014 10:59:24 +0100	[thread overview]
Message-ID: <CACh+v5MDFZj+NOPWdnMgNthn_DxL3nn=CZJ224vMh7hSf84o4Q@mail.gmail.com> (raw)
In-Reply-To: <545CFAF4.8030104@traphandler.com>

2014-11-07 18:01 GMT+01:00 Jean-Jacques Hiblot <jjhiblot@traphandler.com>:
>
>
> On 11/07/2014 05:52 PM, Steven Rostedt wrote:
>> On Fri,  7 Nov 2014 15:59:11 +0100
>> Jean-Jacques Hiblot <jjhiblot@traphandler.com> wrote:
>>
>>> Hi all,
>>>
>>> This patch adds support for ftrace operations on the ARM architecture.
>>> This support is needed by kgraft and possibly other ftrace-based tools.
>>> My goal is to have kgraft working on ARM and aarch64.
>>
>> Can you add this to the change log of the patch. As that would be what
>> goes into git history. Because honestly, I had no idea what you meant
>> by "ftrace operations". If I don't understand that term, how can you
>> expect anyone else to?
> I'll try to come up with a clearer commit log.
>>
>>>
>>> I tested this patch with a toy implementation of kgraft for ARM and basic
>>> usage of function and function_graph tracers
>>> It doesn't show any problem with the ftrace selftests and the tests found
>>> today in branch ftrace/testing-mystuff of linux-trace repository
>>> (git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git)
>>
>> Those tests are no where near what I have. Does this code work on the
>> beagle bone white? If so, I can probably run my full suite on it.
> It should work on any arm processor, It's not platform or SOC dependent
>>
Hi Steve,
did you get a chance of running your tests suite on real hardware with
this patch? I'd be really interested in the results.

Jiri,
would you be interested in the patchs to run kgraft on ARM ? The
modifications required in kgraft core are minimal, it's mostly
architecture specific.

Jean-Jacques

>> -- Steve
>>
>>>
>>> Jean-Jacques Hiblot (1):
>>>   arm: ftrace: Adds support for ftrace operations
>>>
>>>  arch/arm/Kconfig               |  2 ++
>>>  arch/arm/include/asm/ftrace.h  |  3 ++
>>>  arch/arm/kernel/entry-common.S | 68 +++++++++++++++++++++++++++++++++++++++++-
>>>  arch/arm/kernel/ftrace.c       | 34 +++++++++++++++++++++
>>>  4 files changed, 106 insertions(+), 1 deletion(-)
>>>
>>
>>
>> _______________________________________________
>> linux-arm-kernel mailing list
>> linux-arm-kernel at lists.infradead.org
>> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>>

  reply	other threads:[~2014-11-24 14:46 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-07 14:59 [PATCH] arm: ftrace: Adds support for ftrace operations Jean-Jacques Hiblot
2014-11-07 14:59 ` Jean-Jacques Hiblot
2014-11-07 14:59 ` [PATCH 01/01] " Jean-Jacques Hiblot
2014-11-07 14:59   ` Jean-Jacques Hiblot
2014-11-07 16:52 ` [PATCH] " Steven Rostedt
2014-11-07 16:52   ` Steven Rostedt
2014-11-07 17:01   ` Jean-Jacques Hiblot
2014-11-07 17:01     ` Jean-Jacques Hiblot
2014-11-24  9:59     ` Jean-Jacques Hiblot [this message]
2014-11-24  9:59       ` Jean-Jacques Hiblot
2014-11-25 23:20       ` Steven Rostedt
2014-11-25 23:20         ` Steven Rostedt
2014-11-27 10:23         ` Jean-Jacques Hiblot
2014-11-27 10:23           ` Jean-Jacques Hiblot
2014-11-27 14:58           ` Steven Rostedt
2014-11-27 14:58             ` Steven Rostedt
2014-11-10  8:56   ` [PATCH v2 00/01] arm: ftrace: Adds support for CONFIG_DYNAMIC_FTRACE_WITH_REGS Jean-Jacques Hiblot
2014-11-10  8:56     ` Jean-Jacques Hiblot
2014-11-10  8:56     ` [PATCH v2 01/01] " Jean-Jacques Hiblot
2014-11-10  8:56       ` Jean-Jacques Hiblot

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='CACh+v5MDFZj+NOPWdnMgNthn_DxL3nn=CZJ224vMh7hSf84o4Q@mail.gmail.com' \
    --to=jjhiblot@traphandler.com \
    --cc=christoffer.dall@linaro.org \
    --cc=jslaby@suse.cz \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=mingo@redhat.com \
    --cc=nsekhar@ti.com \
    --cc=rostedt@goodmis.org \
    --cc=stefano.stabellini@eu.citrix.com \
    /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.