perf trace: Tidy comments related to BPF + syscall augmentation

Now tools/perf/examples/bpf/augmented_syscalls.c is
tools/perf/util/bpf_skel/augmented_syscalls.bpf.c and not enabled as a
BPF event, tidy the comments to reflect this.

Signed-off-by: Ian Rogers <irogers@google.com>
Acked-by: Jiri Olsa <jolsa@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Andrii Nakryiko <andrii@kernel.org>
Cc: Anshuman Khandual <anshuman.khandual@arm.com>
Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Cc: Brendan Gregg <brendan.d.gregg@gmail.com>
Cc: Carsten Haitzler <carsten.haitzler@arm.com>
Cc: Eduard Zingerman <eddyz87@gmail.com>
Cc: Fangrui Song <maskray@google.com>
Cc: He Kuang <hekuang@huawei.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: James Clark <james.clark@arm.com>
Cc: Kan Liang <kan.liang@linux.intel.com>
Cc: Leo Yan <leo.yan@linaro.org>
Cc: Madhavan Srinivasan <maddy@linux.ibm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Nathan Chancellor <nathan@kernel.org>
Cc: Naveen N. Rao <naveen.n.rao@linux.vnet.ibm.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ravi Bangoria <ravi.bangoria@amd.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Tiezhu Yang <yangtiezhu@loongson.cn>
Cc: Tom Rix <trix@redhat.com>
Cc: Wang Nan <wangnan0@huawei.com>
Cc: Wang ShaoBo <bobo.shaobowang@huawei.com>
Cc: Yang Jihong <yangjihong1@huawei.com>
Cc: Yonghong Song <yhs@fb.com>
Cc: YueHaibing <yuehaibing@huawei.com>
Cc: bpf@vger.kernel.org
Cc: llvm@lists.linux.dev
Link: https://lore.kernel.org/r/20230810184853.2860737-5-irogers@google.com
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:
Ian Rogers 2023-08-10 11:48:53 -07:00 committed by Arnaldo Carvalho de Melo
parent 5056c99e8d
commit cd2cece61a
2 changed files with 7 additions and 16 deletions

View file

@ -67,15 +67,14 @@ extern struct strarray strarray__socket_level;
/** /**
* augmented_arg: extra payload for syscall pointer arguments * augmented_arg: extra payload for syscall pointer arguments
* If perf_sample->raw_size is more than what a syscall sys_enter_FOO puts, * If perf_sample->raw_size is more than what a syscall sys_enter_FOO puts, then
* then its the arguments contents, so that we can show more than just a * its the arguments contents, so that we can show more than just a
* pointer. This will be done initially with eBPF, the start of that is at the * pointer. This will be done initially with eBPF, the start of that is at the
* tools/perf/examples/bpf/augmented_syscalls.c example for the openat, but * tools/perf/util/bpf_skel/augmented_syscalls.bpf.c that will eventually be
* will eventually be done automagically caching the running kernel tracefs * done automagically caching the running kernel tracefs events data into an
* events data into an eBPF C script, that then gets compiled and its .o file * eBPF C script, that then gets compiled and its .o file cached for subsequent
* cached for subsequent use. For char pointers like the ones for 'open' like * use. For char pointers like the ones for 'open' like syscalls its easy, for
* syscalls its easy, for the rest we should use DWARF or better, BTF, much * the rest we should use DWARF or better, BTF, much more compact.
* more compact.
* *
* @size: 8 if all we need is an integer, otherwise all of the augmented arg. * @size: 8 if all we need is an integer, otherwise all of the augmented arg.
* @int_arg: will be used for integer like pointer contents, like 'accept's 'upeer_addrlen' * @int_arg: will be used for integer like pointer contents, like 'accept's 'upeer_addrlen'

View file

@ -2,16 +2,8 @@
/* /*
* Augment the raw_syscalls tracepoints with the contents of the pointer arguments. * Augment the raw_syscalls tracepoints with the contents of the pointer arguments.
* *
* Test it with:
*
* perf trace -e tools/perf/examples/bpf/augmented_raw_syscalls.c cat /etc/passwd > /dev/null
*
* This exactly matches what is marshalled into the raw_syscall:sys_enter * This exactly matches what is marshalled into the raw_syscall:sys_enter
* payload expected by the 'perf trace' beautifiers. * payload expected by the 'perf trace' beautifiers.
*
* For now it just uses the existing tracepoint augmentation code in 'perf
* trace', in the next csets we'll hook up these with the sys_enter/sys_exit
* code that will combine entry/exit in a strace like way.
*/ */
#include <linux/bpf.h> #include <linux/bpf.h>