linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 00/13] perf tools: BPF related update
@ 2015-11-27  8:47 Wang Nan
  2015-11-27  8:47 ` [PATCH v2 01/13] bpf tools: Collect map definition in bpf_object Wang Nan
                   ` (12 more replies)
  0 siblings, 13 replies; 29+ messages in thread
From: Wang Nan @ 2015-11-27  8:47 UTC (permalink / raw)
  To: acme, ast
  Cc: linux-kernel, masami.hiramatsu.pt, namhyung, lizefan, pi3orama,
	Wang Nan

This patch set is based on perf/core.

Compare with v1:
 - Patch 1/13 and 9/13: make code compat based on Arnaldo's suggestion;
 - Patch 4/13: fix a bug which incorrectly use list_is_singular() test
   whether a list entry is deleted from a list;
 - Patch 13/13: change another test case.

This patch set improves perf's BPF support:

 - Support filling BPF array with values
 
   Users are allowed to pass something to BPF program through command
   line without changing the program itself.

 - Support filling BPF event array with events

   BPF program can read PMU counters through BPF's perf_event_read()
   helper.

 - Support bpf_output_event() helper

   BPF program can issue perf event to perf.data.

In most of the patches I list commands for testing them, both normal
case and error case.

He Kuang (1):
  perf tools: Support perf event alias name

Wang Nan (12):
  bpf tools: Collect map definition in bpf_object
  bpf tools: Extract and collect map names from BPF object file
  perf tools: Rename bpf config to program config
  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()

 tools/lib/bpf/libbpf.c            | 252 +++++++++----
 tools/lib/bpf/libbpf.h            |  24 ++
 tools/perf/builtin-record.c       |  11 +
 tools/perf/util/bpf-loader.c      | 765 ++++++++++++++++++++++++++++++++++++--
 tools/perf/util/bpf-loader.h      |  61 ++-
 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/parse-events.c    | 129 ++++++-
 tools/perf/util/parse-events.h    |  20 +-
 tools/perf/util/parse-events.l    |  16 +-
 tools/perf/util/parse-events.y    | 123 +++++-
 14 files changed, 1433 insertions(+), 113 deletions(-)

-- 
1.8.3.4


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

end of thread, other threads:[~2015-11-30 11:20 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-27  8:47 [PATCH v2 00/13] perf tools: BPF related update Wang Nan
2015-11-27  8:47 ` [PATCH v2 01/13] bpf tools: Collect map definition in bpf_object Wang Nan
2015-11-29  7:57   ` [tip:perf/core] tools lib bpf: " tip-bot for Wang Nan
2015-11-27  8:47 ` [PATCH v2 02/13] bpf tools: Extract and collect map names from BPF object file Wang Nan
2015-11-29  7:57   ` [tip:perf/core] tools lib bpf: " tip-bot for Wang Nan
2015-11-29 16:14   ` [PATCH v2 02/13] bpf tools: " Namhyung Kim
2015-11-30  5:00     ` Wangnan (F)
2015-11-30  8:51       ` Namhyung Kim
2015-11-30  9:27         ` Wangnan (F)
2015-11-30  9:43           ` Namhyung Kim
2015-11-30  9:48             ` Wangnan (F)
2015-11-30 10:39             ` [PATCH] tools lib bpf: Fetch map names from correct strtab Wang Nan
2015-11-30 11:19               ` Namhyung Kim
2015-11-27  8:47 ` [PATCH v2 03/13] perf tools: Rename bpf config to program config Wang Nan
2015-11-29  7:58   ` [tip:perf/core] perf bpf: " tip-bot for Wang Nan
2015-11-27  8:47 ` [PATCH v2 04/13] perf tools: Add API to config maps in bpf object Wang Nan
2015-11-28  1:10   ` RFC " Arnaldo Carvalho de Melo
2015-11-28  1:20     ` Wangnan (F)
2015-11-28  1:21       ` Wangnan (F)
2015-11-29 16:21     ` Namhyung Kim
2015-11-27  8:47 ` [PATCH v2 05/13] perf tools: Enable BPF object configure syntax Wang Nan
2015-11-27  8:47 ` [PATCH v2 06/13] perf record: Apply config to BPF objects before recording Wang Nan
2015-11-27  8:47 ` [PATCH v2 07/13] perf tools: Support perf event alias name Wang Nan
2015-11-27  8:47 ` [PATCH v2 08/13] perf tools: Enable passing event to BPF object Wang Nan
2015-11-27  8:47 ` [PATCH v2 09/13] perf tools: Support setting different slots in a BPF map separately Wang Nan
2015-11-27  8:47 ` [PATCH v2 10/13] perf tools: Enable indices setting syntax for BPF maps Wang Nan
2015-11-27  8:47 ` [PATCH v2 11/13] perf tools: Introduce bpf-output event Wang Nan
2015-11-27  8:47 ` [PATCH v2 12/13] perf data: Add u32_hex data type Wang Nan
2015-11-27  8:47 ` [PATCH v2 13/13] perf data: Support converting data from bpf_perf_event_output() Wang Nan

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).