From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753303AbdDLFpO (ORCPT ); Wed, 12 Apr 2017 01:45:14 -0400 Received: from terminus.zytor.com ([65.50.211.136]:32823 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751374AbdDLFpL (ORCPT ); Wed, 12 Apr 2017 01:45:11 -0400 Date: Tue, 11 Apr 2017 22:40:33 -0700 From: tip-bot for David Carrillo-Cisneros Message-ID: Cc: mingo@kernel.org, tglx@linutronix.de, ak@linux.intel.com, pjt@google.com, jolsa@kernel.org, hekuang@huawei.com, hpa@zytor.com, eranian@google.com, alexander.shishkin@linux.intel.com, wangnan0@huawei.com, sque@chromium.org, linux-kernel@vger.kernel.org, acme@redhat.com, peterz@infradead.org, mhiramat@kernel.org, davidcc@google.com Reply-To: wangnan0@huawei.com, alexander.shishkin@linux.intel.com, sque@chromium.org, linux-kernel@vger.kernel.org, acme@redhat.com, peterz@infradead.org, mhiramat@kernel.org, davidcc@google.com, mingo@kernel.org, tglx@linutronix.de, ak@linux.intel.com, pjt@google.com, jolsa@kernel.org, hekuang@huawei.com, hpa@zytor.com, eranian@google.com In-Reply-To: <20170410201432.24807-5-davidcc@google.com> References: <20170410201432.24807-5-davidcc@google.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:perf/core] perf annotate: Process attr and build_id records Git-Commit-ID: 6ab11f3a35aa07be2ff167b9de37e6c1eb58396b X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Commit-ID: 6ab11f3a35aa07be2ff167b9de37e6c1eb58396b Gitweb: http://git.kernel.org/tip/6ab11f3a35aa07be2ff167b9de37e6c1eb58396b Author: David Carrillo-Cisneros AuthorDate: Mon, 10 Apr 2017 13:14:29 -0700 Committer: Arnaldo Carvalho de Melo CommitDate: Tue, 11 Apr 2017 15:23:42 -0300 perf annotate: Process attr and build_id records perf annotate did not get some love for pipe-mode, and did not have .attr and .buil_id setup (while record and inject did. Fix that. It can easily be reproduced by: perf record -o - noploop | perf annotate that in my system shows: 0xd8 [0x28]: failed to process type: 9 Committer Testing: Before: $ perf record -o - stress -t 2 -c 2 | perf annotate --stdio stress: info: [11060] dispatching hogs: 2 cpu, 0 io, 0 vm, 0 hdd 0x4470 [0x28]: failed to process type: 9 $ stress: info: [11060] successful run completed in 2s $ After: $ perf record -o - stress -t 2 -c 2 | perf annotate --stdio stress: info: [11871] dispatching hogs: 2 cpu, 0 io, 0 vm, 0 hdd stress: info: [11871] successful run completed in 2s [ perf record: Woken up 2 times to write data ] [ perf record: Captured and wrote 0.000 MB - ] no symbols found in /usr/bin/stress, maybe install a debug package? Percent | Source code & Disassembly of libc-2.24.so for cycles:uhH (6117 samples) --------------------------------------------------------------------------------------- : : Disassembly of section .text: : : 000000000003b050 : : __random_r(): 10.56 : 3b050: test %rdi,%rdi 0.00 : 3b053: je 3b0d0 0.34 : 3b055: test %rsi,%rsi 0.00 : 3b058: je 3b0d0 0.46 : 3b05a: mov 0x18(%rdi),%eax 12.44 : 3b05d: mov 0x10(%rdi),%r8 0.18 : 3b061: test %eax,%eax 0.00 : 3b063: je 3b0b0 Signed-off-by: David Carrillo-Cisneros Tested-by: Arnaldo Carvalho de Melo Acked-by: Jiri Olsa Cc: Alexander Shishkin Cc: Andi Kleen Cc: He Kuang Cc: Masami Hiramatsu Cc: Paul Turner Cc: Peter Zijlstra Cc: Simon Que Cc: Stephane Eranian Cc: Wang Nan Link: http://lkml.kernel.org/r/20170410201432.24807-5-davidcc@google.com Signed-off-by: Arnaldo Carvalho de Melo --- tools/perf/builtin-annotate.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/perf/builtin-annotate.c b/tools/perf/builtin-annotate.c index 56a7c8d..b2b2722 100644 --- a/tools/perf/builtin-annotate.c +++ b/tools/perf/builtin-annotate.c @@ -394,6 +394,8 @@ int cmd_annotate(int argc, const char **argv) .exit = perf_event__process_exit, .fork = perf_event__process_fork, .namespaces = perf_event__process_namespaces, + .attr = perf_event__process_attr, + .build_id = perf_event__process_build_id, .ordered_events = true, .ordering_requires_timestamps = true, },