public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] perf tools: BPF related update
@ 2015-11-24 13:36 Wang Nan
  2015-11-24 13:36 ` [PATCH 01/16] tools build: Clean CFLAGS and LDFLAGS for fixdep Wang Nan
                   ` (15 more replies)
  0 siblings, 16 replies; 25+ messages in thread
From: Wang Nan @ 2015-11-24 13:36 UTC (permalink / raw)
  To: acme, masami.hiramatsu.pt, ast
  Cc: lizefan, pi3orama, linux-kernel, Wang Nan,
	Arnaldo Carvalho de Melo, Jiri Olsa, Namhyung Kim

This patch set is based on perf/core.

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 this patch set:

 Patch 1/16 - 2/16 are two small bugfix related to building;

 Patch 3/16 - 13/16 add array filling support. In this 11 patches:

  Patch 3/16 - 6/16 are preparation;
  Patch 7/16 - 9/16 enables perf cmdline syntax to (basic) support
                    array filling
  Patch 10/16 - 11/16 enables setting perf events to BPF event array
  Patch 12/16 - 13/16 enables setting different slots in an array
                      with different values

 Patch 14/16 - 16/16 support bpf_output_event() helper.

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

Cc: Wang Nan <wangnan0@huawei.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Cc: Arnaldo Carvalho de Melo <acme@redhat.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Zefan Li <lizefan@huawei.com>
Cc: pi3orama@163.com

He Kuang (2):
  bpf tools: Add helper function for updating bpf maps elements
  perf tools: Support perf event alias name

Wang Nan (14):
  tools build: Clean CFLAGS and LDFLAGS for fixdep
  tools lib bpf: Don't feature check when cleaning
  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/build/Makefile.include      |   2 +-
 tools/lib/bpf/Makefile            |  10 +
 tools/lib/bpf/bpf.c               |  14 +
 tools/lib/bpf/bpf.h               |   2 +
 tools/lib/bpf/libbpf.c            | 251 +++++++++----
 tools/lib/bpf/libbpf.h            |  24 ++
 tools/perf/builtin-record.c       |  11 +
 tools/perf/util/bpf-loader.c      | 753 ++++++++++++++++++++++++++++++++++++--
 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 ++++++-
 18 files changed, 1448 insertions(+), 113 deletions(-)

-- 
1.8.3.4


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

end of thread, other threads:[~2015-11-27  7:47 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-24 13:36 [PATCH 00/16] perf tools: BPF related update Wang Nan
2015-11-24 13:36 ` [PATCH 01/16] tools build: Clean CFLAGS and LDFLAGS for fixdep Wang Nan
2015-11-26  8:21   ` [tip:perf/core] " tip-bot for Wang Nan
2015-11-24 13:36 ` [PATCH 02/16] tools lib bpf: Don't feature check when cleaning Wang Nan
2015-11-26  8:22   ` [tip:perf/core] tools lib bpf: Don' t do a " tip-bot for Wang Nan
2015-11-24 13:36 ` [PATCH 03/16] bpf tools: Add helper function for updating bpf maps elements Wang Nan
2015-11-27  7:47   ` [tip:perf/core] " tip-bot for He Kuang
2015-11-24 13:36 ` [PATCH 04/16] bpf tools: Collect map definition in bpf_object Wang Nan
2015-11-26 20:56   ` Arnaldo Carvalho de Melo
2015-11-27  6:16     ` Wangnan (F)
2015-11-27  6:21       ` Wangnan (F)
2015-11-24 13:36 ` [PATCH 05/16] bpf tools: Extract and collect map names from BPF object file Wang Nan
2015-11-24 13:36 ` [PATCH 06/16] perf tools: Rename bpf config to program config Wang Nan
2015-11-24 13:36 ` [PATCH 07/16] perf tools: Add API to config maps in bpf object Wang Nan
2015-11-27  7:32   ` Wangnan (F)
2015-11-24 13:36 ` [PATCH 08/16] perf tools: Enable BPF object configure syntax Wang Nan
2015-11-24 13:36 ` [PATCH 09/16] perf record: Apply config to BPF objects before recording Wang Nan
2015-11-24 13:36 ` [PATCH 10/16] perf tools: Support perf event alias name Wang Nan
2015-11-24 13:36 ` [PATCH 11/16] perf tools: Enable passing event to BPF object Wang Nan
2015-11-24 13:36 ` [PATCH 12/16] perf tools: Support setting different slots in a BPF map separately Wang Nan
2015-11-27  7:31   ` Wangnan (F)
2015-11-24 13:36 ` [PATCH 13/16] perf tools: Enable indices setting syntax for BPF maps Wang Nan
2015-11-24 13:36 ` [PATCH 14/16] perf tools: Introduce bpf-output event Wang Nan
2015-11-24 13:36 ` [PATCH 15/16] perf data: Add u32_hex data type Wang Nan
2015-11-24 13:36 ` [PATCH 16/16] 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