From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: linux-kernel@vger.kernel.org,
Adrian Hunter <adrian.hunter@intel.com>,
Alexander Yarygin <yarygin@linux.vnet.ibm.com>,
Alexei Starovoitov <ast@kernel.org>,
Andi Kleen <ak@linux.intel.com>,
Christian Borntraeger <borntraeger@de.ibm.com>,
David Ahern <dsahern@gmail.com>,
Ekaterina Tumanova <tumanova@linux.vnet.ibm.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
He Kuang <hekuang@huawei.com>, Jiri Olsa <jolsa@redhat.com>,
Joshua Zhu <zhu.wen-jie@hp.com>, Kan Liang <kan.liang@intel.com>,
kernel-team@fb.com,
Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>,
Namhyung Kim <namhyung@kernel.org>,
"Naveen N . Rao" <naveen.n.rao@linux.vnet.ibm.com>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
pi3orama@163.com, Wang Nan <wangnan0@huawei.com>,
Yannick Brosseau <scientist@fb.com>,
Zefan Li <lizefan@huawei.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/13] perf/core improvements and fixes
Date: Fri, 27 Nov 2015 08:30:42 +0100 [thread overview]
Message-ID: <20151127073041.GA6234@gmail.com> (raw)
In-Reply-To: <1448570771-5430-1-git-send-email-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
>
> The following changes since commit a95a49fa0cc5eec730d8703b1544fa7ea6a11dec:
>
> Merge tag 'perf-core-for-mingo-2' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2015-11-26 09:13:50 +0100)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo
>
> for you to fetch changes up to 43798bf37215fe242e592fd4605d804e2da0781b:
>
> bpf tools: Add helper function for updating bpf maps elements (2015-11-26 17:21:24 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> User visible:
>
> - Add 'vmlinux.debug' to the vmlinux seach path (Ekaterina Tumanova)
>
> - Do not show sample_(type|period) in the perf_event_attr dump when using
> -v with 'perf stat' (Jiri Olsa)
>
> - Display the WEIGHT sample bit, when set, in 'perf evlist -v' (Jiri Olsa)
>
> - Honour --hide-unresolved in 'report', will honour it as well in 'top'
> when --hide-unresolved gets supported in that tool (Namhyung Kim)
>
> - Fix freeze wit h--call-graph 'flat/folded' due to not properly
> reinitializing the callchain rb_tree (Namhyumg Kim)
>
> - Set dso->long_name when a module name is passed as a parameter
> to tools like 'perf probe' but the 'struct dso' associated to that module
> still doesn't have the full path for the module, just the '[name]' one
> obtained from /proc/modules (Wang Nan)
>
> - Fix anon_hugepage mmaps detection using scanf on /proc/PID/smaps (Yannick Brosseau)
>
> Infrastructure:
>
> - Add helper function for updating bpf maps elements (He Kuang)
>
> - Fix traceevents plugins build race (Jiri Olsa)
>
> - Add the $OUTPUT path prefix with 'fixdep' (Jiri Olsa)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Ekaterina Tumanova (2):
> perf symbols: Refactor vmlinux_path__init() to ease path additions
> perf symbols: Add the path to vmlinux.debug
>
> He Kuang (1):
> bpf tools: Add helper function for updating bpf maps elements
>
> Jiri Olsa (6):
> perf script: Remove default_scripting_ops
> perf build: Fix traceevent plugins build race
> perf script: Pass perf_script into process_event
> tools build: Use fixdep with OUTPUT path prefix
> perf stat: Clear sample_(type|period) for counting
> perf evlist: Display WEIGHT sample type bit
>
> Namhyung Kim (2):
> perf callchain: Honor hide_unresolved
> perf top: Fix freeze on --call-graph flat/folded
>
> Wang Nan (1):
> perf machine: Adjust dso->long_name for offline module
>
> Yannick Brosseau (1):
> perf tools: Correctly identify anon_hugepage when generating map (v2)
>
> tools/build/Makefile | 2 +-
> tools/build/Makefile.include | 2 +-
> tools/lib/bpf/bpf.c | 14 +++++++++
> tools/lib/bpf/bpf.h | 2 ++
> tools/perf/Makefile.perf | 2 +-
> tools/perf/builtin-report.c | 7 ++---
> tools/perf/builtin-script.c | 67 +++++++++++++-------------------------------
> tools/perf/builtin-stat.c | 7 +++++
> tools/perf/util/callchain.c | 1 +
> tools/perf/util/evsel.c | 1 +
> tools/perf/util/machine.c | 32 ++++++++++++++++++++-
> tools/perf/util/map.c | 4 +--
> tools/perf/util/symbol.c | 65 ++++++++++++++++++++++--------------------
> tools/perf/util/symbol.h | 3 +-
> 14 files changed, 120 insertions(+), 89 deletions(-)
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2015-11-27 7:30 UTC|newest]
Thread overview: 61+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-26 20:45 [GIT PULL 00/13] perf/core improvements and fixes Arnaldo Carvalho de Melo
2015-11-26 20:45 ` [PATCH 01/13] perf callchain: Honor hide_unresolved Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 02/13] perf top: Fix freeze on --call-graph flat/folded Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 03/13] perf script: Remove default_scripting_ops Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 04/13] perf build: Fix traceevent plugins build race Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 05/13] perf machine: Adjust dso->long_name for offline module Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 06/13] perf tools: Correctly identify anon_hugepage when generating map (v2) Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 07/13] perf script: Pass perf_script into process_event Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 08/13] tools build: Use fixdep with OUTPUT path prefix Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 09/13] perf symbols: Refactor vmlinux_path__init() to ease path additions Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 10/13] perf symbols: Add the path to vmlinux.debug Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 11/13] perf stat: Clear sample_(type|period) for counting Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 12/13] perf evlist: Display WEIGHT sample type bit Arnaldo Carvalho de Melo
2015-11-26 20:46 ` [PATCH 13/13] bpf tools: Add helper function for updating bpf maps elements Arnaldo Carvalho de Melo
2015-11-27 7:30 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-09-19 14:25 [GIT PULL 00/13] perf/core improvements and fixes Arnaldo Carvalho de Melo
2018-09-25 9:21 ` Ingo Molnar
2017-09-04 14:00 Arnaldo Carvalho de Melo
2017-09-05 5:15 ` Ingo Molnar
2017-08-21 19:25 Arnaldo Carvalho de Melo
2017-08-22 10:20 ` Ingo Molnar
2017-04-05 0:17 Arnaldo Carvalho de Melo
2017-04-05 5:41 ` Ingo Molnar
2017-01-11 20:21 Arnaldo Carvalho de Melo
2017-01-12 8:25 ` Ingo Molnar
2016-10-06 16:11 Arnaldo Carvalho de Melo
2016-10-06 22:38 ` Ingo Molnar
2016-05-11 16:32 Arnaldo Carvalho de Melo
2016-05-12 6:58 ` Ingo Molnar
2016-04-29 14:57 Arnaldo Carvalho de Melo
2016-04-29 19:39 ` Ingo Molnar
2016-02-15 21:01 Arnaldo Carvalho de Melo
2016-02-16 7:48 ` Ingo Molnar
2015-08-12 16:39 Arnaldo Carvalho de Melo
2015-08-13 7:25 ` Ingo Molnar
2015-07-20 20:58 Arnaldo Carvalho de Melo
2015-07-21 6:00 ` Ingo Molnar
2015-06-23 21:47 Arnaldo Carvalho de Melo
2015-06-25 7:31 ` Ingo Molnar
2015-06-25 13:48 ` Arnaldo Carvalho de Melo
2014-09-08 21:17 Arnaldo Carvalho de Melo
2014-09-09 4:59 ` Ingo Molnar
2014-09-09 7:14 ` Adrian Hunter
2014-09-09 7:45 ` Stephane Eranian
2014-09-09 7:55 ` Adrian Hunter
2014-09-09 14:53 ` Ingo Molnar
2014-09-09 8:48 ` Adrian Hunter
2014-09-09 13:12 ` Arnaldo Carvalho de Melo
2014-09-09 14:54 ` Ingo Molnar
2014-09-09 15:59 ` Arnaldo Carvalho de Melo
2014-09-09 19:08 ` Arnaldo Carvalho de Melo
2014-09-10 13:19 ` Adrian Hunter
2014-07-16 20:02 Jiri Olsa
2014-03-18 21:25 Arnaldo Carvalho de Melo
2014-03-19 7:07 ` Ingo Molnar
2014-01-15 20:32 Arnaldo Carvalho de Melo
2014-01-16 8:36 ` Ingo Molnar
2013-11-12 20:46 Arnaldo Carvalho de Melo
2013-11-12 20:50 ` Ingo Molnar
2012-09-08 2:06 Arnaldo Carvalho de Melo
2012-09-08 11:28 ` Ingo Molnar
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=20151127073041.GA6234@gmail.com \
--to=mingo@kernel.org \
--cc=a.p.zijlstra@chello.nl \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=ast@kernel.org \
--cc=borntraeger@de.ibm.com \
--cc=dsahern@gmail.com \
--cc=fweisbec@gmail.com \
--cc=hekuang@huawei.com \
--cc=jolsa@redhat.com \
--cc=kan.liang@intel.com \
--cc=kernel-team@fb.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=namhyung@kernel.org \
--cc=naveen.n.rao@linux.vnet.ibm.com \
--cc=pi3orama@163.com \
--cc=scientist@fb.com \
--cc=tumanova@linux.vnet.ibm.com \
--cc=wangnan0@huawei.com \
--cc=yarygin@linux.vnet.ibm.com \
--cc=zhu.wen-jie@hp.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).