perf trace: Avoid using raw_syscalls in duplicity with eBPF augmentation
authorArnaldo Carvalho de Melo <acme@redhat.com>
Wed, 12 Dec 2018 16:47:40 +0000 (13:47 -0300)
committerArnaldo Carvalho de Melo <acme@redhat.com>
Tue, 18 Dec 2018 15:23:57 +0000 (12:23 -0300)
commit0df50e0b0e0f315c0d5e2ce8556aafe1403b4a4b
treed9addb7349afffa8e5e286f11701a75dc99dcaf0
parent246fbe03edaab9dfa5bd1f0e223c7c960d987982
perf trace: Avoid using raw_syscalls in duplicity with eBPF augmentation

So when we do something like:

   # perf trace -e open*,augmented_raw_syscalls.o

We need to set trace->trace_syscalls because there is logic that use
that when mixing strace-like output with other events, such as scheduler
tracepoints, but with that set we ended up having multiple
raw_syscalls:sys_{enter,exit} setup, which garbled the output, so
check if trace->augmented_raw_syscalls is set and avoid the two extra
tracepoints.

Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: Jiri Olsa <jolsa@kernel.org>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Wang Nan <wangnan0@huawei.com>
Link: https://lkml.kernel.org/n/tip-kjmnbrlgu0c38co1ye8egbsb@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
tools/perf/builtin-trace.c