From: Tom Zanussi <tom.zanussi@linux.intel.com>
To: ast@plumgrid.com, rostedt@goodmis.org
Cc: masami.hiramatsu.pt@hitachi.com, namhyung@kernel.org,
peterz@infradead.org, linux-kernel@vger.kernel.org,
Tom Zanussi <tom.zanussi@linux.intel.com>
Subject: [RFC][PATCH 00/10] Add trace event support to eBPF
Date: Fri, 12 Feb 2016 10:11:18 -0600 [thread overview]
Message-ID: <cover.1455291671.git.tom.zanussi@linux.intel.com> (raw)
Hi,
As promised in previous threads, this patchset shares some common
functionality with the hist triggers code and enables trace events to
be accessed from eBPF programs.
It needs to be applied on top of current tracing/for-next with the
hist triggers v13 patches applied:
https://lkml.org/lkml/2015/12/10/640
Any input welcome, especially things that could be done better wrt
eBPF, since I'm not as familiar with that code...
Thanks,
Tom
The following changes since commit def7919edab980525728a6ee9728c23ececdaf52:
tracing: Add hist trigger 'log2' modifier (2016-02-10 09:51:54 -0600)
are available in the git repository at:
git://git.yoctoproject.org/linux-yocto-contrib.git tzanussi/ebpf-trace-events-v0
http://git.yoctoproject.org/cgit/cgit.cgi/linux-yocto-contrib/log/?h=tzanussi/ebpf-trace-events-v0
Tom Zanussi (10):
tracing: Move some constants to ring_buffer.h
eBPF: Add BPF_PROG_TYPE_TRACE_EVENT prog type
tracing: Add an 'accessor' function to ftrace_event_field
tracing: Add trace event accessor functions
eBPF/tracing: Add eBPF trace event field access helpers
tracing: Add kprobe/uprobe support for TRACE_EVENT eBPF progs
tracing: Add eBPF program support to static trace events
samples/bpf: Add support for trace events to the eBPF loading code
samples/bpf: Add readcounts-by-pid example
samples/bpf: Add kprobe-event-fields example
include/linux/ring_buffer.h | 35 ++++++++
include/linux/trace_events.h | 7 ++
include/trace/perf.h | 10 +++
include/uapi/linux/bpf.h | 19 +++++
kernel/bpf/verifier.c | 2 +-
kernel/events/core.c | 12 +--
kernel/trace/bpf_trace.c | 149 +++++++++++++++++++++++++++++++++
kernel/trace/ring_buffer.c | 31 -------
kernel/trace/trace.h | 5 ++
kernel/trace/trace_events.c | 111 ++++++++++++++++++++++++
kernel/trace/trace_events_hist.c | 103 +++--------------------
kernel/trace/trace_kprobe.c | 20 ++++-
kernel/trace/trace_syscalls.c | 18 ++++
kernel/trace/trace_uprobe.c | 11 ++-
samples/bpf/Makefile | 8 ++
samples/bpf/bpf_helpers.h | 4 +
samples/bpf/bpf_load.c | 46 ++++++++--
samples/bpf/kprobe-event-fields_kern.c | 56 +++++++++++++
samples/bpf/kprobe-event-fields_user.c | 25 ++++++
samples/bpf/readcounts-by-pid_kern.c | 57 +++++++++++++
samples/bpf/readcounts-by-pid_user.c | 66 +++++++++++++++
21 files changed, 657 insertions(+), 138 deletions(-)
create mode 100644 samples/bpf/kprobe-event-fields_kern.c
create mode 100644 samples/bpf/kprobe-event-fields_user.c
create mode 100644 samples/bpf/readcounts-by-pid_kern.c
create mode 100644 samples/bpf/readcounts-by-pid_user.c
--
1.9.3
next reply other threads:[~2016-02-12 16:11 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-12 16:11 Tom Zanussi [this message]
2016-02-12 16:11 ` [RFC][PATCH 01/10] tracing: Move some constants to ring_buffer.h Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 02/10] eBPF: Add BPF_PROG_TYPE_TRACE_EVENT prog type Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 03/10] tracing: Add an 'accessor' function to ftrace_event_field Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 04/10] tracing: Add trace event accessor functions Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 05/10] eBPF/tracing: Add eBPF trace event field access helpers Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 06/10] tracing: Add kprobe/uprobe support for TRACE_EVENT eBPF progs Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 07/10] tracing: Add eBPF program support to static trace events Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 08/10] samples/bpf: Add support for trace events to the eBPF loading code Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 09/10] samples/bpf: Add readcounts-by-pid example Tom Zanussi
2016-02-12 16:11 ` [RFC][PATCH 10/10] samples/bpf: Add kprobe-event-fields example Tom Zanussi
2016-02-14 0:02 ` [RFC][PATCH 00/10] Add trace event support to eBPF Alexei Starovoitov
2016-02-16 22:35 ` Tom Zanussi
2016-02-17 4:51 ` Alexei Starovoitov
2016-02-18 21:27 ` Tom Zanussi
2016-02-18 22:40 ` Daniel Borkmann
2016-02-19 4:16 ` Alexei Starovoitov
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=cover.1455291671.git.tom.zanussi@linux.intel.com \
--to=tom.zanussi@linux.intel.com \
--cc=ast@plumgrid.com \
--cc=linux-kernel@vger.kernel.org \
--cc=masami.hiramatsu.pt@hitachi.com \
--cc=namhyung@kernel.org \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
/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 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).