All of lore.kernel.org
 help / color / mirror / Atom feed
From: Arnaldo Carvalho de Melo <acme@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ingo Molnar <mingo@kernel.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Peter Zijlstra <a.p.zijlstra@chello.nl>,
	Jiri Olsa <jolsa@redhat.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: Re: [GIT PULL] perf updates for v4.1
Date: Thu, 16 Apr 2015 10:11:24 -0300	[thread overview]
Message-ID: <20150416131124.GB25070@kernel.org> (raw)
In-Reply-To: <CA+55aFwe-Oe8NDBkrWg9dWVoA0p=9wSU3qVsMtvwLFSVx_cWmQ@mail.gmail.com>

Em Wed, Apr 15, 2015 at 08:48:38PM -0700, Linus Torvalds escreveu:
> On Tue, Apr 14, 2015 at 5:00 AM, Ingo Molnar <mingo@kernel.org> wrote:

> > Please pull the latest perf-core-for-linus git tree from:

> >    git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-core-for-linus
 
> Hmm. I don't seem to get any annotations any more in "perf report".
> There are no error messages, I just get an empty annotation window.
 
> My test-case is just my usual
 
>     perf record -e cycles:pp make -j
 
> on a fully built kernel tree, followed by
 
>     perf report -s symbol
 
> and the percentages and function names look fine, but 'a' doesn't do
> what I expect it to do..

Strange, I tried with:

git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf-core-for-linus

git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master

And with my local trees, on:

[acme@zoo linux]$ cat /etc/fedora-release 
Fedora release 20 (Heisenbug)

Further details down, but in all those cases pressing 'a' works for me
:-\

- Arnaldo

[acme@linux]$ rpm -q binutils-devel
binutils-devel-2.23.88.0.1-13.fc20.x86_64
[acme@zoo linux]$ rpm -q elfutils-devel
elfutils-devel-0.161-6.fc20.x86_64
[acme@zoo linux]$ 
[acme@zoo linux]$ which objdump
/usr/bin/objdump
[acme@zoo linux]$ rpm -qf /usr/bin/objdump 
binutils-2.23.88.0.1-13.fc20.x86_64
[acme@zoo linux]$

[acme@zoo linux]$ type perf
perf is hashed (/home/acme/bin/perf)
[acme@zoo linux]$ perf --version
perf version 4.0.g34c9a0
[acme@zoo linux]$ git show --oneline 34c9a0 | head -1
34c9a0ffc75a crypto: fix broken crypto_register_instance() module handling
[acme@zoo linux]$ git show --oneline torvalds/master | head -1
34c9a0ffc75a crypto: fix broken crypto_register_instance() module handling
[acme@zoo linux]$ 
[acme@zoo linux]$ ldd ~/bin/perf
	linux-vdso.so.1 =>  (0x00007ffcfec88000)
	libunwind.so.8 => /lib64/libunwind.so.8 (0x00007fd576890000)
	libunwind-x86_64.so.8 => /lib64/libunwind-x86_64.so.8 (0x00007fd576671000)
	libpthread.so.0 => /lib64/libpthread.so.0 (0x00007fd576453000)
	librt.so.1 => /lib64/librt.so.1 (0x00007fd57624b000)
	libm.so.6 => /lib64/libm.so.6 (0x00007fd575f44000)
	libdl.so.2 => /lib64/libdl.so.2 (0x00007fd575d3f000)
	libelf.so.1 => /lib64/libelf.so.1 (0x00007fd575b29000)
	libdw.so.1 => /lib64/libdw.so.1 (0x00007fd5758e3000)
	libaudit.so.1 => /lib64/libaudit.so.1 (0x00007fd5756bb000)
	libslang.so.2 => /lib64/libslang.so.2 (0x00007fd575342000)
	libperl.so.5.18 => /lib64/libperl.so.5.18 (0x00007fd574fae000)
	libresolv.so.2 => /lib64/libresolv.so.2 (0x00007fd574d93000)
	libnsl.so.1 => /lib64/libnsl.so.1 (0x00007fd574b7a000)
	libcrypt.so.1 => /lib64/libcrypt.so.1 (0x00007fd574943000)
	libutil.so.1 => /lib64/libutil.so.1 (0x00007fd57473f000)
	libc.so.6 => /lib64/libc.so.6 (0x00007fd574381000)
	/lib64/ld-linux-x86-64.so.2 (0x00007fd576ac6000)
	libpython2.7.so.1.0 => /lib64/libpython2.7.so.1.0 (0x00007fd573fbb000)
	libz.so.1 => /lib64/libz.so.1 (0x00007fd573da4000)
	liblzma.so.5 => /lib64/liblzma.so.5 (0x00007fd573b7f000)
	libnuma.so.1 => /lib64/libnuma.so.1 (0x00007fd573973000)
	libbz2.so.1 => /lib64/libbz2.so.1 (0x00007fd573762000)
	libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00007fd57354c000)
	libfreebl3.so => /lib64/libfreebl3.so (0x00007fd5732ce000)

      parent reply	other threads:[~2015-04-16 13:11 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-04-14 12:00 [GIT PULL] perf updates for v4.1 Ingo Molnar
2015-04-14 12:46 ` Ingo Molnar
2015-04-16  3:48 ` Linus Torvalds
2015-04-16 12:44   ` Arnaldo Carvalho de Melo
2015-04-16 13:11   ` Arnaldo Carvalho de Melo [this message]

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=20150416131124.GB25070@kernel.org \
    --to=acme@kernel.org \
    --cc=a.p.zijlstra@chello.nl \
    --cc=akpm@linux-foundation.org \
    --cc=jolsa@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@kernel.org \
    --cc=tglx@linutronix.de \
    --cc=torvalds@linux-foundation.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.