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 Shishkin <alexander.shishkin@linux.intel.com>,
Alexei Starovoitov <ast@kernel.org>,
Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com>,
Andi Kleen <ak@linux.intel.com>,
Brendan Gregg <brendan.d.gregg@gmail.com>,
David Ahern <dsahern@gmail.com>,
Frederic Weisbecker <fweisbec@gmail.com>,
He Kuang <hekuang@huawei.com>,
Hemant Kumar <hemant@linux.vnet.ibm.com>,
Jiri Olsa <jolsa@redhat.com>,
Linus Torvalds <torvalds@linux-foundation.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Milian Wolff <milian.wolff@kdab.com>,
Namhyung Kim <namhyung@kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
pi3orama@163.com, Stephane Eranian <eranian@google.com>,
Taeung Song <treeze.taeung@gmail.com>,
Thomas Gleixner <tglx@linutronix.de>,
Vince Weaver <vincent.weaver@maine.edu>,
Wang Nan <wangnan0@huawei.com>, Zefan Li <lizefan@huawei.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/12] perf/core improvements and fixes
Date: Tue, 31 May 2016 09:24:57 +0200 [thread overview]
Message-ID: <20160531072457.GA8975@gmail.com> (raw)
In-Reply-To: <1464636298-7709-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 711460514b1c80494f14001bdf30dd70fd401a8f:
>
> Merge tag 'perf-urgent-for-mingo-20160527' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/urgent (2016-05-29 20:15:37 +0200)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux.git tags/perf-core-for-mingo-20160530
>
> for you to fetch changes up to 01412261d99497021353c4b1d67e8df6c9cdc3c6:
>
> perf buildid-cache: Use path/to/bin/buildid/elf instead of path/to/bin/buildid (2016-05-30 13:15:03 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> User visible/kernel ABI:
>
> - Per event callchain limit: Recently we introduced a sysctl to tune the
> max-stack for all events for which callchains were requested:
>
> $ sysctl kernel.perf_event_max_stack
> kernel.perf_event_max_stack = 127
>
> Now this patch introduces a way to configure this per event, i.e. this
> becomes possible:
>
> $ perf record -e sched:*/max-stack=2/ -e block:*/max-stack=10/ -a
>
> allowing finer tuning of how much buffer space callchains use.
>
> This uses an u16 from the reserved space at the end, leaving another
> u16 for future use.
>
> There has been interest in even finer tuning, namely to control the
> max stack for kernel and userspace callchains separately. Further
> discussion is needed, we may for instance use the remaining u16 for
> that and when it is present, assume that the sample_max_stack introduced
> in this patch applies for the kernel, and the u16 left is used for
> limiting the userspace callchain. (Arnaldo Carvalho de Melo)
>
> Infrastructure:
>
> - Adopt get_main_thread from db-export.c (Andi Kleen)
>
> - More prep work for backward ring buffer support (Wang Nan)
>
> - Prep work for supporting SDT (Statically Defined Tracing)
> tracepoints (Masami Hiramatsu)
>
> - Add arch/*/include/generated/ to .gitignore (Taeung Song)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Andi Kleen (1):
> perf thread: Adopt get_main_thread from db-export.c
>
> Arnaldo Carvalho de Melo (2):
> perf core: Per event callchain limit
> perf tools: Per event max-stack settings
>
> Masami Hiramatsu (3):
> perf symbols: Introduce filename__readable to check readability
> perf symbols: Cleanup the code flow of dso__find_kallsyms
> perf buildid-cache: Use path/to/bin/buildid/elf instead of path/to/bin/buildid
>
> Taeung Song (1):
> perf tools: Add arch/*/include/generated/ to .gitignore
>
> Wang Nan (5):
> perf record: Robustify perf_event__synth_time_conv()
> perf evlist: Don't poll and mmap overwritable events
> perf evlist: Check 'base' pointer before checking refcnt when put a mmap
> perf evlist: Choose correct reading direction according to evlist->backward
> tools: Pass arg to fdarray__filter's call back function
>
> include/linux/perf_event.h | 2 +-
> include/uapi/linux/perf_event.h | 6 ++-
> kernel/bpf/stackmap.c | 2 +-
> kernel/events/callchain.c | 14 ++++-
> kernel/events/core.c | 5 +-
> tools/lib/api/fd/array.c | 5 +-
> tools/lib/api/fd/array.h | 3 +-
> tools/perf/.gitignore | 1 +
> tools/perf/arch/x86/util/tsc.c | 2 +
> tools/perf/builtin-record.c | 9 +++-
> tools/perf/tests/fdarray.c | 8 +--
> tools/perf/util/build-id.c | 115 ++++++++++++++++++++++++++++++----------
> tools/perf/util/build-id.h | 2 +
> tools/perf/util/callchain.h | 1 +
> tools/perf/util/db-export.c | 13 +----
> tools/perf/util/dso.h | 5 ++
> tools/perf/util/evlist.c | 43 +++++++++++----
> tools/perf/util/evlist.h | 2 +
> tools/perf/util/evsel.c | 16 +++++-
> tools/perf/util/evsel.h | 2 +
> tools/perf/util/parse-events.c | 8 +++
> tools/perf/util/parse-events.h | 1 +
> tools/perf/util/parse-events.l | 1 +
> tools/perf/util/session.c | 2 +
> tools/perf/util/symbol.c | 71 ++++++++++++-------------
> tools/perf/util/thread.c | 11 ++++
> tools/perf/util/thread.h | 2 +
> 27 files changed, 252 insertions(+), 100 deletions(-)
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2016-05-31 7:25 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-30 19:24 [GIT PULL 00/12] perf/core improvements and fixes Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 01/12] perf thread: Adopt get_main_thread from db-export.c Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 02/12] perf core: Per event callchain limit Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 03/12] perf tools: Per event max-stack settings Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 04/12] perf record: Robustify perf_event__synth_time_conv() Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 05/12] perf evlist: Don't poll and mmap overwritable events Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 06/12] perf evlist: Check 'base' pointer before checking refcnt when put a mmap Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 07/12] perf evlist: Choose correct reading direction according to evlist->backward Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 08/12] tools: Pass arg to fdarray__filter's call back function Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 09/12] perf tools: Add arch/*/include/generated/ to .gitignore Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 10/12] perf symbols: Introduce filename__readable to check readability Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 11/12] perf symbols: Cleanup the code flow of dso__find_kallsyms Arnaldo Carvalho de Melo
2016-05-30 19:24 ` [PATCH 12/12] perf buildid-cache: Use path/to/bin/buildid/elf instead of path/to/bin/buildid Arnaldo Carvalho de Melo
2016-05-31 7:24 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2018-10-09 0:54 [GIT PULL 00/12] perf/core improvements and fixes Arnaldo Carvalho de Melo
2018-10-09 5:24 ` Ingo Molnar
2016-11-25 15:12 Arnaldo Carvalho de Melo
2016-11-25 17:14 ` Ingo Molnar
2016-09-08 20:46 Arnaldo Carvalho de Melo
2016-09-09 5:47 ` Ingo Molnar
2016-05-17 2:45 Arnaldo Carvalho de Melo
2016-05-20 6:23 ` Ingo Molnar
2015-11-05 16:02 Arnaldo Carvalho de Melo
2015-10-28 15:30 Arnaldo Carvalho de Melo
2015-10-29 9:36 ` Ingo Molnar
2015-10-29 9:51 ` Ingo Molnar
2015-10-29 9:55 ` Jiri Olsa
2015-08-05 20:11 Arnaldo Carvalho de Melo
2014-11-25 13:21 Arnaldo Carvalho de Melo
2014-02-24 19:56 Arnaldo Carvalho de Melo
2014-02-27 11:46 ` Ingo Molnar
2014-02-27 12:02 ` Jiri Olsa
2014-02-27 12:30 ` Ingo Molnar
2014-02-27 12:40 ` Jiri Olsa
2014-02-27 12:45 ` Ingo Molnar
2014-02-27 12:04 ` Jiri Olsa
2013-12-02 20:48 Arnaldo Carvalho de Melo
2013-12-04 9:18 ` Ingo Molnar
2012-10-24 21:50 Arnaldo Carvalho de Melo
2012-10-25 7:43 ` 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=20160531072457.GA8975@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=adrian.hunter@intel.com \
--cc=ak@linux.intel.com \
--cc=alexander.shishkin@linux.intel.com \
--cc=ananth@linux.vnet.ibm.com \
--cc=ast@kernel.org \
--cc=brendan.d.gregg@gmail.com \
--cc=dsahern@gmail.com \
--cc=eranian@google.com \
--cc=fweisbec@gmail.com \
--cc=hekuang@huawei.com \
--cc=hemant@linux.vnet.ibm.com \
--cc=jolsa@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=lizefan@huawei.com \
--cc=mhiramat@kernel.org \
--cc=milian.wolff@kdab.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=pi3orama@163.com \
--cc=tglx@linutronix.de \
--cc=torvalds@linux-foundation.org \
--cc=treeze.taeung@gmail.com \
--cc=vincent.weaver@maine.edu \
--cc=wangnan0@huawei.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).