Re: [GIT PULL 00/15] perf/core improvements and fixes

From: Ingo Molnar
Date: Wed Feb 24 2016 - 02:21:25 EST



* Arnaldo Carvalho de Melo <acme@xxxxxxxxxx> wrote:

> Hi Ingo,
>
> Please consider pulling,
>
> - Arnaldo
>
> The following changes since commit 91e48b7df15196b8ce01f40455219d3ed7889988:
>
> Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core (2016-02-20 11:52:16 +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 03e0a7df3efd959e40cd7ff40b1fabddc234ec5a:
>
> perf tools: Introduce bpf-output event (2016-02-22 14:37:21 -0300)
>
> ----------------------------------------------------------------
> perf/core improvements and fixes:
>
> New features:
>
> - Add API to set values of map entries in a BPF object, be it
> individual map slots or ranges (Wang Nan)
>
> - Introduce support for the 'bpf-output' event (Wang Nan)
>
> - Add glue to read perf events in a BPF program (Wang Nan)
>
> Fixes:
>
> - Sort key fixes: Alignment for srcline, file, trace; fix
> segfault for dynamic, trace events related sort keys (Namyung Kim)
>
> Build fixes:
>
> - Remove duplicate typedef config_term_func_t definition,
> fixing the build on older systems (Arnaldo Carvalho de Melo)
>
> Signed-off-by: Arnaldo Carvalho de Melo <acme@xxxxxxxxxx>
>
> ----------------------------------------------------------------
> Arnaldo Carvalho de Melo (2):
> perf tools: Fix build on older systems
> perf tools: Remove duplicate typedef config_term_func_t definition
>
> Namhyung Kim (5):
> perf tools: Fix segfault on dynamic entries
> perf tools: Update srcline/file if needed
> perf tools: Fix alignment on some sort keys
> perf tools: Fix column width setting on 'trace' sort key
> perf tools: Fix assertion failure on dynamic entry
>
> Wang Nan (8):
> perf bpf: Add API to set values to map entries in a bpf object
> perf tools: Enable BPF object configure syntax
> perf record: Apply config to BPF objects before recording
> perf tools: Enable passing event to BPF object
> perf tools: Support setting different slots in a BPF map separately
> perf tools: Enable indices setting syntax for BPF map
> perf tools: Apply tracepoint event definition options to BPF script
> perf tools: Introduce bpf-output event
>
> tools/perf/builtin-record.c | 11 +
> tools/perf/tests/bpf.c | 2 +-
> tools/perf/ui/hist.c | 3 +
> tools/perf/util/bpf-loader.c | 718 +++++++++++++++++++++++++++++++++++++++++
> tools/perf/util/bpf-loader.h | 59 ++++
> tools/perf/util/evlist.c | 16 +
> tools/perf/util/evlist.h | 3 +
> tools/perf/util/evsel.c | 5 +
> tools/perf/util/evsel.h | 8 +
> tools/perf/util/hist.c | 3 +
> tools/perf/util/parse-events.c | 130 +++++++-
> tools/perf/util/parse-events.h | 17 +-
> tools/perf/util/parse-events.l | 16 +-
> tools/perf/util/parse-events.y | 95 +++++-
> tools/perf/util/sort.c | 90 +++---
> 15 files changed, 1112 insertions(+), 64 deletions(-)

Pulled, thanks a lot Arnaldo!

Ingo