Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-09 Thread Adrian Hunter
On 09/10/13 15:16, Jiri Olsa wrote: > On Wed, Oct 09, 2013 at 01:38:04PM +0300, Adrian Hunter wrote: >> On 09/10/13 13:12, Jiri Olsa wrote: >>> On Wed, Oct 09, 2013 at 10:33:25AM +0300, Adrian Hunter wrote: On 08/10/13 17:02, Jiri Olsa wrote: > On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adr

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-09 Thread Jiri Olsa
On Wed, Oct 09, 2013 at 01:38:04PM +0300, Adrian Hunter wrote: > On 09/10/13 13:12, Jiri Olsa wrote: > > On Wed, Oct 09, 2013 at 10:33:25AM +0300, Adrian Hunter wrote: > >> On 08/10/13 17:02, Jiri Olsa wrote: > >>> On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter wrote: SNIP > > > > so..

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-09 Thread Adrian Hunter
On 09/10/13 13:12, Jiri Olsa wrote: > On Wed, Oct 09, 2013 at 10:33:25AM +0300, Adrian Hunter wrote: >> On 08/10/13 17:02, Jiri Olsa wrote: >>> On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter wrote: objdump fails to annotate module symbols when looking at kcore. Workaround this b

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-09 Thread Jiri Olsa
On Wed, Oct 09, 2013 at 10:33:25AM +0300, Adrian Hunter wrote: > On 08/10/13 17:02, Jiri Olsa wrote: > > On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter wrote: > >> objdump fails to annotate module symbols when looking > >> at kcore. Workaround this by extracting object code > >> from kcor

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-09 Thread Adrian Hunter
On 08/10/13 17:02, Jiri Olsa wrote: > On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter wrote: >> objdump fails to annotate module symbols when looking >> at kcore. Workaround this by extracting object code >> from kcore and putting it in a temporary file for >> objdump to use instead. The

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-08 Thread Arnaldo Carvalho de Melo
Em Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter escreveu: > objdump fails to annotate module symbols when looking > at kcore. Workaround this by extracting object code > from kcore and putting it in a temporary file for > objdump to use instead. The temporary file is created > to look lik

Re: [PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-08 Thread Jiri Olsa
On Tue, Oct 08, 2013 at 11:45:50AM +0300, Adrian Hunter wrote: > objdump fails to annotate module symbols when looking > at kcore. Workaround this by extracting object code > from kcore and putting it in a temporary file for > objdump to use instead. The temporary file is created > to look like k

[PATCH V5 3/9] perf tools: workaround objdump difficulties with kcore

2013-10-08 Thread Adrian Hunter
objdump fails to annotate module symbols when looking at kcore. Workaround this by extracting object code from kcore and putting it in a temporary file for objdump to use instead. The temporary file is created to look like kcore but contains only the function being disassembled. Signed-off-by: A