Em Tue, Dec 06, 2022 at 01:20:12PM -0300, Arnaldo Carvalho de Melo escreveu: > Em Tue, Dec 06, 2022 at 01:15:04PM -0300, Arnaldo Carvalho de Melo escreveu: > > Em Mon, Dec 05, 2022 at 02:59:39PM -0800, Ian Rogers escreveu: > > > Remove the LIBTRACEEVENT_DYNAMIC and LIBTRACEFS_DYNAMIC. If > > > libtraceevent isn't installed or NO_LIBTRACEEVENT=1 is passed to the > > > build, don't compile in libtraceevent and libtracefs support. This > > > also disables CONFIG_TRACE that controls "perf > > > trace". CONFIG_TRACEEVENT is used to control enablement in > > > Build/Makefiles, HAVE_LIBTRACEEVENT is used in C code. Without > > > HAVE_LIBTRACEEVENT tracepoints are disabled and as such the commands > > > kmem, kwork, lock, sched and timechart are removed. The majority of > > > commands continue to work including "perf test". > > > > Had just this .rej and I fixed it up manually, testing now: > > Investigating: > > [acme@quaco perf]$ rpm -q libtraceevent-devel > libtraceevent-devel-1.5.3-2.fc36.x86_64 > [acme@quaco perf]$ > [acme@quaco perf]$ grep -i traceevent /tmp/build/perf/FEATURE-DUMP > feature-libtraceevent=1 > [acme@quaco perf]$ > > [acme@quaco perf]$ alias m > alias m='rm -rf ~/libexec/perf-core/ ; perf stat -e cycles:u,instructions:u make -k BUILD_BPF_SKEL=1 O=/tmp/build/perf -C tools/perf install-bin && perf test python' > [acme@quaco perf]$ > > [acme@quaco perf]$ rpm -ql libtraceevent-devel | grep \.h$ | xargs grep tep_print_flag_sym > /usr/include/traceevent/event-parse.h:struct tep_print_flag_sym { > /usr/include/traceevent/event-parse.h: struct tep_print_flag_sym *next; > /usr/include/traceevent/event-parse.h: struct tep_print_flag_sym *flags; > /usr/include/traceevent/event-parse.h: struct tep_print_flag_sym *symbols; > [acme@quaco perf]$ > > util/scripting-engines/trace-event-perl.c:104:43: error: ‘struct tep_print_flag_sym’ declared inside parameter list will not be visible outside of this definition or declaration [-Werror] > 104 | static void define_symbolic_values(struct tep_print_flag_sym *field, > | ^~~~~~~~~~~~~~~~~~ > util/scripting-engines/trace-event-perl.c: In function ‘define_symbolic_values’: This cured it, folding into your patch: diff --git a/tools/perf/util/scripting-engines/trace-event-perl.c b/tools/perf/util/scripting-engines/trace-event-perl.c index 5b602b6d46854133..0bacb49408f84adf 100644 --- a/tools/perf/util/scripting-engines/trace-event-perl.c +++ b/tools/perf/util/scripting-engines/trace-event-perl.c @@ -27,6 +27,7 @@ #include <errno.h> #include <linux/bitmap.h> #include <linux/time64.h> +#include <traceevent/event-parse.h> #include <stdbool.h> /* perl needs the following define, right after including stdbool.h */