All of lore.kernel.org
 help / color / mirror / Atom feed
From: Adrian Hunter <adrian.hunter@intel.com>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Ingo Molnar <mingo@kernel.org>,
	linux-kernel@vger.kernel.org, Jiri Olsa <jolsa@redhat.com>
Subject: Re: [PATCH V8 08/25] perf tools: Add Intel BTS support
Date: Thu, 20 Aug 2015 11:53:45 +0300	[thread overview]
Message-ID: <55D59599.3010601@intel.com> (raw)
In-Reply-To: <20150818161008.GD18279@kernel.org>

On 18/08/15 19:10, Arnaldo Carvalho de Melo wrote:
> Em Tue, Aug 18, 2015 at 09:39:46AM +0300, Adrian Hunter escreveu:
>> On 17/08/15 22:58, Arnaldo Carvalho de Melo wrote:
>>> Em Mon, Aug 17, 2015 at 10:09:26PM +0300, Adrian Hunter escreveu:
>>>> On 17/08/2015 8:58 p.m., Arnaldo Carvalho de Melo wrote:
>>>>> Em Mon, Aug 17, 2015 at 08:43:09PM +0300, Adrian Hunter escreveu:
>>>>>> On 17/08/2015 6:52 p.m., Arnaldo Carvalho de Melo wrote:
>>>>>>>      1.92%  usleep   [unknown]         [.] 0x00007fa0ff695086
>>>>>>>      1.60%  usleep   [unknown]         [.] 0xffffffff811c91d0
>>>>>>>      1.48%  usleep   [unknown]         [.] 0x00007fa0ffb3030d
>>>>>>>      1.24%  usleep   [unknown]         [.] 0x00007fa0ff6950c7
>>>>>
>>>>>> It is very weird that it doesn't know the dso.
>>>>>
>>>>>> I presume there is nothing unusual about the environment e.g. in a chroot or anything
>>>>>
>>>>>> What if you try a different event e.g. perf record --per-thread -e cycles sleep 1
>>>>>
>>>>> [root@zoo ~]# perf record --per-thread -e cycles sleep 1
>>>>> [ perf record: Woken up 1 times to write data ]
>>>>> [ perf record: Captured and wrote 0.014 MB perf.data (9 samples) ]
>>>>> [root@zoo ~]# perf report | grep -v ^# | head -5
>>>>>     42.57%  sleep    libc-2.20.so      [.] malloc_hook_ini
>>>>>     41.81%  sleep    [kernel.vmlinux]  [k] filemap_fault
>>>>>     14.35%  sleep    [kernel.vmlinux]  [k] flush_tlb_mm_range
>>>>>      1.18%  sleep    [kernel.vmlinux]  [k] strlcpy
>>>>>      0.09%  sleep    [kernel.vmlinux]  [k] native_write_msr_safe
>>>>> [root@zoo ~]#
>>>>>
>>>>> [root@zoo ~]# perf report --dsos libc-2.20.so | grep -v '^[#]'
>>>>>     42.57%  sleep    [.] malloc_hook_ini
>>>>>
>>>>> [root@zoo ~]#
>>>>>
>>>>> [root@zoo ~]# perf record --per-thread -e intel_bts// usleep 1
>>>>> [ perf record: Woken up 1 times to write data ]
>>>>> [ perf record: Captured and wrote 1.825 MB perf.data ]
>>>>> [root@zoo ~]# perf report | grep -v ^# | head -5
>>>>> Warning:
>>>>> 79074 instruction trace errors
>>>>>      2.80%  usleep   [unknown]         [.] 0x00007f48888aa061
>>>>> [root@zoo ~]#
>>>>
>>>> Running out of ideas.  Can you somehow share or send me the offending perf.data file?
>>>
>>> http://vger.kernel.org/~acme/perf/perf.data.intel_bts-4.2.0-rc5+.xz
>>
>> Says: You don't have permission to access
>> /~acme/perf/perf.data.intel_bts-4.2.0-rc5+.xz on this server.
> 
> Ooops, fixed.
>  
>>> It works if I use a tip/master kernel:
>>>
>>> [root@perf4 ~]# uname -r
>>> 4.2.0-rc7+
>>> [root@perf4 ~]# uname -r
>>> 4.2.0-rc7+
>>> [root@perf4 ~]# perf record --per-thread -e intel_bts// usleep 1
>>> [ perf record: Woken up 1 times to write data ]
>>> [ perf record: Captured and wrote 1.785 MB perf.data ]
>>> [root@perf4 ~]# dmesg | grep Performance
>>> [    0.188477] Performance Events: PEBS fmt2+, 16-deep LBR, Broadwell
>>> events, full-width counters, Intel PMU driver.
>>> [root@perf4 ~]# perf report --stdio | grep -v ^# | head -10
>>>
>>>
>>>
>>>
>>>     10.81%  usleep   libc-2.17.so       [.] _dl_addr                            
>>>      6.56%  usleep   [kernel.kallsyms]  [.] unmap_single_vma                    
>>>      3.33%  usleep   ld-2.17.so         [.] strcmp                              
>>>      2.53%  usleep   [kernel.kallsyms]  [.] mem_cgroup_begin_page_stat          
>>>      2.49%  usleep   ld-2.17.so         [.] _dl_lookup_symbol_x                 
>>>      2.39%  usleep   ld-2.17.so         [.] _dl_relocate_object                 
>>> [root@perf4 ~]# 
>>>
>>> Probably some fix for the kernel driver is missing?
>>
>> Works for me though.
> 
> Works for you if you test in lockstep the tooling with the kernel
> sources, right? It works for me as well, if I use the latest tip/master
> tooling _and_ kernel, my report was for using the 4.2.0-rc latest for
> the kernel and the tooling in tip/master.
> 
> I think this would be just a matter of having a better message, or
> perhaps some fix that we need to send to the stable@kernel.org guys, so
> that the new tooling works with a slightly older kernel.
> 
> Anyway, consider looking at that perf.data file that I fixed the
> permissions on vger, and I will look at the fix you mentioned in another
> message.

With your perf.data file I was able to find the problem.  I have sent patch
"perf tools: Fix Intel BTS/PT timestamp handling" to fix it.


  reply	other threads:[~2015-08-20  8:56 UTC|newest]

Thread overview: 77+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-17 16:33 [PATCH V8 00/25] perf tools: Introduce an abstraction for AUX Area and Instruction Tracing Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 01/25] perf auxtrace: Add Intel PT as an AUX area tracing type Adrian Hunter
2015-08-20  9:57   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 02/25] perf tools: Add Intel PT packet decoder Adrian Hunter
2015-08-20  9:57   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 03/25] perf tools: Add Intel PT instruction decoder Adrian Hunter
2015-08-12 20:55   ` Arnaldo Carvalho de Melo
2015-08-13  6:48     ` Adrian Hunter
2015-08-13  7:14       ` [PATCH V9 " Adrian Hunter
2015-08-13 12:37         ` Arnaldo Carvalho de Melo
2015-08-20  9:57         ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 04/25] perf tools: Add Intel PT log Adrian Hunter
2015-08-20  9:58   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 05/25] perf tools: Add Intel PT decoder Adrian Hunter
2015-08-20  9:58   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 06/25] perf tools: Add Intel PT support Adrian Hunter
2015-08-20  9:59   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 07/25] perf tools: Take Intel PT into use Adrian Hunter
2015-08-20  9:59   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 08/25] perf tools: Add Intel BTS support Adrian Hunter
2015-08-17 15:52   ` Arnaldo Carvalho de Melo
2015-08-17 17:43     ` Adrian Hunter
2015-08-17 17:58       ` Arnaldo Carvalho de Melo
2015-08-17 19:09         ` Adrian Hunter
2015-08-17 19:58           ` Arnaldo Carvalho de Melo
2015-08-18  6:39             ` Adrian Hunter
2015-08-18  9:09               ` Adrian Hunter
2015-08-18 16:10               ` Arnaldo Carvalho de Melo
2015-08-20  8:53                 ` Adrian Hunter [this message]
2015-08-21 14:18                   ` Arnaldo Carvalho de Melo
2015-08-22  6:52   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 09/25] perf tools: Put itrace options into an asciidoc include Adrian Hunter
2015-08-22  6:53   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 10/25] perf tools: Add example call-graph script Adrian Hunter
2015-08-21 15:00   ` Arnaldo Carvalho de Melo
2015-08-21 15:11     ` Arnaldo Carvalho de Melo
2015-08-21 15:21       ` Arnaldo Carvalho de Melo
2015-08-21 15:28         ` Arnaldo Carvalho de Melo
2015-08-21 15:32           ` Arnaldo Carvalho de Melo
2015-08-24  7:00           ` Adrian Hunter
2015-08-24 20:20             ` Arnaldo Carvalho de Melo
2015-08-22  6:53   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 11/25] perf auxtrace: Fix period type 'i' not working Adrian Hunter
2015-08-06 19:50   ` Arnaldo Carvalho de Melo
2015-08-07  7:22   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 12/25] perf tools: Fix perf-with-kcore handling of arguments containing spaces Adrian Hunter
2015-08-06 19:50   ` Arnaldo Carvalho de Melo
2015-08-07  7:22   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 13/25] perf tools: Fix Intel PT 'instructions' sample period Adrian Hunter
2015-08-28  6:37   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 14/25] perf tools: Add perf_pmu__format_bits() Adrian Hunter
2015-08-06 19:50   ` Arnaldo Carvalho de Melo
2015-08-07  7:23   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 15/25] perf tools: Validate config term maximum value Adrian Hunter
2015-08-06 19:50   ` Arnaldo Carvalho de Melo
2015-08-07  7:23   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 16/25] perf tools: Extend the event parser maximum error index Adrian Hunter
2015-08-06 19:50   ` Arnaldo Carvalho de Melo
2015-08-07  7:23   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 17/25] perf tools: Add Intel PT support for PSB periods Adrian Hunter
2015-08-28  6:38   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 18/25] perf tools: Add new Intel PT packet definitions Adrian Hunter
2015-08-28  6:38   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 19/25] perf tools: Pass Intel PT information for decoding MTC and CYC Adrian Hunter
2015-08-28  6:38   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 20/25] perf tools: Add Intel PT support for decoding MTC packets Adrian Hunter
2015-08-28  6:39   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 21/25] perf tools: Add Intel PT support for using " Adrian Hunter
2015-08-28  6:39   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 22/25] perf tools: Add Intel PT support for decoding CYC packets Adrian Hunter
2015-08-28  6:39   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 23/25] perf tools: Add Intel PT support for using " Adrian Hunter
2015-08-28  6:40   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:33 ` [PATCH V8 24/25] perf tools: Add Intel PT support for decoding TRACESTOP packets Adrian Hunter
2015-08-28  6:40   ` [tip:perf/core] " tip-bot for Adrian Hunter
2015-07-17 16:34 ` [PATCH V8 25/25] perf tools: Update Intel PT documentation Adrian Hunter
2015-08-28  6:40   ` [tip:perf/core] " tip-bot for Adrian Hunter

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=55D59599.3010601@intel.com \
    --to=adrian.hunter@intel.com \
    --cc=acme@kernel.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.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.