All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 00/16] perf tools: BPF related update and other improvements
@ 2015-12-08  2:25 Wang Nan
  2015-12-08  2:25 ` [PATCH v4 01/16] tools lib bpf: Check return value of strdup when reading map names Wang Nan
                   ` (15 more replies)
  0 siblings, 16 replies; 35+ messages in thread
From: Wang Nan @ 2015-12-08  2:25 UTC (permalink / raw)
  To: acme, namhyung; +Cc: linux-kernel, pi3orama, mingo, lizefan, Wang Nan

Hi Arnaldo,

   Glad to see you start processing patches again. This patch set
contains all BPF related patches and two other patches in my local
tree. I have rebased them onto your newest perf/core. Please review
them when you have time.

This patch set is based on perf/core.

Compare with v3:

 - Rebase on newest perf/core

 - Small commit message improvements

 - Fetch map names from correct strtab (2/16)

 - Patch 15-16 are not related to BPF. Send them together because they
   stay in my local tree for sereval days.

He Kuang (2):
  perf tools: Support perf event alias name
  perf record: Support custom vmlinux path

Wang Nan (14):
  tools lib bpf: Check return value of strdup when reading map names
  tools lib bpf: Fetch map names from correct strtab
  perf tools: Add API to config maps in 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 maps
  perf tools: Introduce bpf-output event
  perf data: Add u32_hex data type
  perf data: Support converting data from bpf_perf_event_output()
  perf tools: Always give options even it not compiled
  perf script: Add support for PERF_TYPE_BREAKPOINT
  perf tools: Clear struct machine during machine__init()

 tools/lib/bpf/libbpf.c                   |  24 +-
 tools/perf/Documentation/perf-record.txt |  10 +-
 tools/perf/builtin-probe.c               |  15 +-
 tools/perf/builtin-record.c              |  36 +-
 tools/perf/builtin-script.c              |  14 +
 tools/perf/util/bpf-loader.c             | 700 +++++++++++++++++++++++++++++++
 tools/perf/util/bpf-loader.h             |  59 +++
 tools/perf/util/data-convert-bt.c        | 117 +++++-
 tools/perf/util/evlist.c                 |  16 +
 tools/perf/util/evlist.h                 |   4 +
 tools/perf/util/evsel.c                  |   7 +
 tools/perf/util/evsel.h                  |   1 +
 tools/perf/util/machine.c                |   1 +
 tools/perf/util/parse-events.c           | 125 +++++-
 tools/perf/util/parse-events.h           |  20 +-
 tools/perf/util/parse-events.l           |  16 +-
 tools/perf/util/parse-events.y           | 123 +++++-
 tools/perf/util/parse-options.c          | 113 ++++-
 tools/perf/util/parse-options.h          |   5 +
 19 files changed, 1369 insertions(+), 37 deletions(-)

-- 
1.8.3.4


^ permalink raw reply	[flat|nested] 35+ messages in thread

end of thread, other threads:[~2015-12-14  8:39 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-12-08  2:25 [PATCH v4 00/16] perf tools: BPF related update and other improvements Wang Nan
2015-12-08  2:25 ` [PATCH v4 01/16] tools lib bpf: Check return value of strdup when reading map names Wang Nan
2015-12-14  8:37   ` [tip:perf/core] " tip-bot for Wang Nan
2015-12-08  2:25 ` [PATCH v4 02/16] tools lib bpf: Fetch map names from correct strtab Wang Nan
2015-12-14  8:38   ` [tip:perf/core] " tip-bot for Wang Nan
2015-12-08  2:25 ` [PATCH v4 03/16] perf tools: Add API to config maps in bpf object Wang Nan
2015-12-08  2:25 ` [PATCH v4 04/16] perf tools: Enable BPF object configure syntax Wang Nan
2015-12-08  2:25 ` [PATCH v4 05/16] perf record: Apply config to BPF objects before recording Wang Nan
2015-12-08  2:25 ` [PATCH v4 06/16] perf tools: Support perf event alias name Wang Nan
2015-12-11 12:03   ` Arnaldo Carvalho de Melo
2015-12-11 12:12     ` pi3orama
2015-12-08  2:25 ` [PATCH v4 07/16] perf tools: Enable passing event to BPF object Wang Nan
2015-12-08  2:25 ` [PATCH v4 08/16] perf tools: Support setting different slots in a BPF map separately Wang Nan
2015-12-08  2:25 ` [PATCH v4 09/16] perf tools: Enable indices setting syntax for BPF maps Wang Nan
2015-12-11 12:11   ` Arnaldo Carvalho de Melo
2015-12-11 12:15     ` Arnaldo Carvalho de Melo
2015-12-11 12:39       ` pi3orama
2015-12-11 12:47         ` Arnaldo Carvalho de Melo
2015-12-11 12:57           ` pi3orama
2015-12-11 18:21         ` Alexei Starovoitov
2015-12-14  3:27           ` Wangnan (F)
2015-12-14  4:28             ` Alexei Starovoitov
2015-12-14  4:39               ` Wangnan (F)
2015-12-14  5:51                 ` Alexei Starovoitov
2015-12-08  2:25 ` [PATCH v4 10/16] perf tools: Introduce bpf-output event Wang Nan
2015-12-08  2:25 ` [PATCH v4 11/16] perf data: Add u32_hex data type Wang Nan
2015-12-14  8:38   ` [tip:perf/core] " tip-bot for Wang Nan
2015-12-08  2:25 ` [PATCH v4 12/16] perf data: Support converting data from bpf_perf_event_output() Wang Nan
2015-12-08  2:25 ` [PATCH v4 13/16] perf tools: Always give options even it not compiled Wang Nan
2015-12-11 12:39   ` Arnaldo Carvalho de Melo
2015-12-08  2:25 ` [PATCH v4 14/16] perf record: Support custom vmlinux path Wang Nan
2015-12-08  2:25 ` [PATCH v4 15/16] perf script: Add support for PERF_TYPE_BREAKPOINT Wang Nan
2015-12-14  8:38   ` [tip:perf/core] " tip-bot for Wang Nan
2015-12-08  2:25 ` [PATCH v4 16/16] perf tools: Clear struct machine during machine__init() Wang Nan
2015-12-14  8:39   ` [tip:perf/core] " tip-bot for Wang Nan

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.