From: Ingo Molnar <mingo@kernel.org>
To: Arnaldo Carvalho de Melo <acme@kernel.org>
Cc: Clark Williams <williams@redhat.com>,
linux-kernel@vger.kernel.org, linux-perf-users@vger.kernel.org,
Brajeswar Ghosh <brajeswar.linux@gmail.com>,
Jamal Hadi Salim <jhs@mojatatu.com>,
Rasmus Villemoes <linux@rasmusvillemoes.dk>,
Song Liu <songliubraving@fb.com>,
Thomas Richter <tmricht@linux.ibm.com>,
YueHaibing <yuehaibing@huawei.com>,
Arnaldo Carvalho de Melo <acme@redhat.com>
Subject: Re: [GIT PULL 00/24] perf/core improvements and fixes
Date: Tue, 22 Jan 2019 11:07:54 +0100 [thread overview]
Message-ID: <20190122100754.GA113758@gmail.com> (raw)
In-Reply-To: <20190121235706.20005-1-acme@kernel.org>
* Arnaldo Carvalho de Melo <acme@kernel.org> wrote:
> Hi Ingo,
>
> Please consider pulling,
>
> Regards,
>
> - Arnaldo
>
> Test results at the end of this message, as usual.
>
> The following changes since commit ad07c8ceb6631a83b62d405a61448bba92adac68:
>
> perf/core: Remove unused perf_flags (2019-01-21 11:01:31 +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-5.0-20190121
>
> for you to fetch changes up to 32e9136e37840a62c659259a394ed3735e3b3c84:
>
> perf utils: Move perf_config using routines from color.c to separate object (2019-01-21 17:38:56 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> BPF:
>
> Song Liu:
>
> - Introduce PERF_RECORD_KSYMBOL to allow tooling to notice the addition
> of new kernel symbols and be able to resolve samples in such symbols.
>
> - Introduce PERF_RECORD_BPF_EVENT to notify tooling about the loading
> and unloading of BPF programs, making them visible and allowing for
> the request of further information to allow for things like annotation.
>
> - Change the userspace perf tools to handle those new events and to
> synthesize them for pre-existing loaded BPF programs.
>
> Kernel:
>
> Arnaldo Carvalho de Melo:
>
> - Make perf_event_output() propagate the output() return, allowing
> users to check for -ENOSPC in the ring buffer.
>
> perf report:
>
> Thomas Richter:
>
> - Display arch specific diagnostic counter sets, starting with s390
> diagnostic counter sets.
>
> perf session:
>
> Jiri Olsa:
>
> - Introduce a reader object to prep for multithreaded processing
> of recorded events.
>
> Misc:
>
> Rasmus Villemoes:
>
> - Replace automatic const char[] variables by statics, to avoid
> initializing them at runtime, instead having them in .rodata,
> reducing code size.
>
> YueHaibing:
>
> - Remove duplicated workqueue.h include from perf_event.h
>
> Brajeswar Ghosh:
>
> - Remove some more duplicated headers.
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (4):
> perf: Make perf_event_output() propagate the output() return
> perf top: Synthesize BPF events for pre-existing loaded BPF programs
> perf python: Remove -fstack-clash-protection when building with some clang versions
> perf utils: Move perf_config using routines from color.c to separate object
>
> Brajeswar Ghosh (1):
> perf tools: Remove duplicate headers
>
> Jiri Olsa (6):
> perf session: Rearrange perf_session__process_events function
> perf session: Get rid of file_size variable
> perf session: Add reader object
> perf session: Add 'data_size' member to reader object
> perf session: Add 'data_offset' member to reader object
> perf session: Add reader__process_events function
>
> Rasmus Villemoes (1):
> perf tools: Replace automatic const char[] variables by statics
>
> Song Liu (8):
> perf, bpf: Introduce PERF_RECORD_KSYMBOL
> tools headers uapi: Sync tools/include/uapi/linux/perf_event.h
> perf, bpf: Introduce PERF_RECORD_BPF_EVENT
> tools headers uapi: Sync tools/include/uapi/linux/perf_event.h
> perf tools: Handle PERF_RECORD_KSYMBOL
> perf tools: Handle PERF_RECORD_BPF_EVENT
> perf tools: Synthesize PERF_RECORD_* for loaded BPF programs
> bpf: Add module name [bpf] to ksymbols for bpf programs
>
> Thomas Richter (3):
> perf report: Display arch specific diagnostic counter sets, starting with s390
> perf report: Display names in s390 diagnostic counter sets
> perf report: Dump s390 counter set data to file
>
> YueHaibing (1):
> perf: Remove duplicated workqueue.h include from perf_event.h
>
> include/linux/filter.h | 7 +
> include/linux/perf_event.h | 21 +-
> include/uapi/linux/perf_event.h | 53 ++++-
> kernel/bpf/core.c | 2 +-
> kernel/bpf/syscall.c | 2 +
> kernel/events/core.c | 224 +++++++++++++++++++-
> kernel/kallsyms.c | 2 +-
> kernel/trace/bpf_trace.c | 3 +-
> tools/include/uapi/linux/perf_event.h | 53 ++++-
> tools/perf/builtin-c2c.c | 4 +-
> tools/perf/builtin-kmem.c | 4 +-
> tools/perf/builtin-record.c | 7 +
> tools/perf/builtin-report.c | 6 +-
> tools/perf/builtin-sched.c | 2 +-
> tools/perf/builtin-stat.c | 1 -
> tools/perf/builtin-top.c | 7 +
> tools/perf/examples/bpf/augmented_raw_syscalls.c | 4 +-
> tools/perf/examples/bpf/augmented_syscalls.c | 14 +-
> tools/perf/examples/bpf/etcsnoop.c | 10 +-
> tools/perf/perf.h | 1 +
> tools/perf/tests/bp_account.c | 1 -
> tools/perf/ui/browsers/header.c | 2 +-
> tools/perf/ui/browsers/hists.c | 4 +-
> tools/perf/util/Build | 5 +
> tools/perf/util/bpf-event.c | 257 +++++++++++++++++++++++
> tools/perf/util/bpf-event.h | 38 ++++
> tools/perf/util/color.c | 39 ----
> tools/perf/util/color_config.c | 47 +++++
> tools/perf/util/dso.h | 1 -
> tools/perf/util/event.c | 41 ++++
> tools/perf/util/event.h | 36 ++++
> tools/perf/util/evlist.h | 4 +-
> tools/perf/util/evsel.c | 19 +-
> tools/perf/util/evsel.h | 2 +
> tools/perf/util/machine.c | 58 +++++
> tools/perf/util/machine.h | 3 +
> tools/perf/util/s390-cpumcf-kernel.h | 62 ++++++
> tools/perf/util/s390-cpumsf.c | 77 ++++++-
> tools/perf/util/s390-sample-raw.c | 222 ++++++++++++++++++++
> tools/perf/util/sample-raw.c | 18 ++
> tools/perf/util/sample-raw.h | 14 ++
> tools/perf/util/session.c | 98 ++++++---
> tools/perf/util/setup.py | 2 +
> tools/perf/util/tool.h | 5 +-
> tools/perf/util/zlib.c | 1 -
> 45 files changed, 1358 insertions(+), 125 deletions(-)
> create mode 100644 tools/perf/util/bpf-event.c
> create mode 100644 tools/perf/util/bpf-event.h
> create mode 100644 tools/perf/util/color_config.c
> create mode 100644 tools/perf/util/s390-cpumcf-kernel.h
> create mode 100644 tools/perf/util/s390-sample-raw.c
> create mode 100644 tools/perf/util/sample-raw.c
> create mode 100644 tools/perf/util/sample-raw.h
Pulled, thanks a lot Arnaldo!
Ingo
next prev parent reply other threads:[~2019-01-22 10:07 UTC|newest]
Thread overview: 45+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-01-21 23:56 [GIT PULL 00/24] perf/core improvements and fixes Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 01/24] perf tools: Replace automatic const char[] variables by statics Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 02/24] perf session: Rearrange perf_session__process_events function Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 03/24] perf session: Get rid of file_size variable Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 04/24] perf session: Add reader object Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 05/24] perf session: Add 'data_size' member to " Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 06/24] perf session: Add 'data_offset' " Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 07/24] perf session: Add reader__process_events function Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 08/24] perf: Remove duplicated workqueue.h include from perf_event.h Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 09/24] perf tools: Remove duplicate headers Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 10/24] perf report: Display arch specific diagnostic counter sets, starting with s390 Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 11/24] perf report: Display names in s390 diagnostic counter sets Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 12/24] perf report: Dump s390 counter set data to file Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 13/24] perf: Make perf_event_output() propagate the output() return Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 14/24] perf, bpf: Introduce PERF_RECORD_KSYMBOL Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 15/24] tools headers uapi: Sync tools/include/uapi/linux/perf_event.h Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 16/24] perf, bpf: Introduce PERF_RECORD_BPF_EVENT Arnaldo Carvalho de Melo
2019-01-21 23:56 ` [PATCH 17/24] tools headers uapi: Sync tools/include/uapi/linux/perf_event.h Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 18/24] perf tools: Handle PERF_RECORD_KSYMBOL Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 19/24] perf tools: Handle PERF_RECORD_BPF_EVENT Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 20/24] perf tools: Synthesize PERF_RECORD_* for loaded BPF programs Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 21/24] perf top: Synthesize BPF events for pre-existing " Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 22/24] bpf: Add module name [bpf] to ksymbols for bpf programs Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 23/24] perf python: Remove -fstack-clash-protection when building with some clang versions Arnaldo Carvalho de Melo
2019-01-21 23:57 ` [PATCH 24/24] perf utils: Move perf_config using routines from color.c to separate object Arnaldo Carvalho de Melo
2019-01-22 10:07 ` Ingo Molnar [this message]
-- strict thread matches above, loose matches on Subject: below --
2017-10-23 23:47 [GIT PULL 00/24] perf/core improvements and fixes Arnaldo Carvalho de Melo
2017-10-23 23:47 ` Arnaldo Carvalho de Melo
2017-10-24 9:13 ` Ingo Molnar
2016-07-15 20:50 Arnaldo Carvalho de Melo
2016-07-16 20:39 ` Ingo Molnar
2016-06-07 20:04 Arnaldo Carvalho de Melo
2016-06-07 23:10 ` Taeung Song
2016-06-08 13:09 ` Arnaldo Carvalho de Melo
2016-06-08 7:43 ` Ingo Molnar
2015-06-26 15:44 Arnaldo Carvalho de Melo
2015-06-30 4:48 ` Ingo Molnar
2015-03-12 21:27 Arnaldo Carvalho de Melo
2015-03-13 12:34 ` Ingo Molnar
2015-03-13 12:45 ` Jiri Olsa
2014-10-14 21:04 Arnaldo Carvalho de Melo
2014-10-15 9:56 ` Ingo Molnar
2012-08-20 16:26 Arnaldo Carvalho de Melo
2012-08-21 9:32 ` Ingo Molnar
2012-08-21 9:36 ` Jiri Olsa
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=20190122100754.GA113758@gmail.com \
--to=mingo@kernel.org \
--cc=acme@kernel.org \
--cc=acme@redhat.com \
--cc=brajeswar.linux@gmail.com \
--cc=jhs@mojatatu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-perf-users@vger.kernel.org \
--cc=linux@rasmusvillemoes.dk \
--cc=songliubraving@fb.com \
--cc=tmricht@linux.ibm.com \
--cc=williams@redhat.com \
--cc=yuehaibing@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 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.