Hello,
On Thu, Jun 22, 2023 at 10:46 PM Yang Jihong <yangjihong1@xxxxxxxxxx> wrote:
When printing perf_event_attr, always display perf_event_attr config and
its symbol to improve the readability of debugging information.
[SNIP]
+
+#ifdef HAVE_LIBTRACEEVENT
+static void __p_config_tracepoint_id(char *buf, size_t size, u64 value)
+{
+ char *str = tracepoint_id_to_name(value);
This makes the python module import test failing due to the
undefined symbol. I'll fix it by adding a dummy function in
util/python.c file. But next time, please run `perf test` first
and make sure you don't break anything.