From: Mathieu Desnoyers Date: Fri, 8 Apr 2022 14:15:05 +0000 (-0400) Subject: Fix: include erroneously removed by backport X-Git-Tag: v2.12.9~5 X-Git-Url: http://git.liburcu.org/?p=lttng-modules.git;a=commitdiff_plain;h=be43a8364a8c48c6aaf137e245a29cd75e18836c Fix: include erroneously removed by backport commit ad5e2bb2 ("Fix: tracepoint event: allow same provider and event name") erroneously removes an include from the tracepoint event header. This issue crept into the cherry-pick of the patch into the stable-2.12 branch. Signed-off-by: Mathieu Desnoyers Change-Id: I0b77f71937ef6a37fa0d4c1d1617b4031ae2cf02 --- diff --git a/probes/lttng-tracepoint-event-impl.h b/probes/lttng-tracepoint-event-impl.h index 53c929d8..4231afad 100644 --- a/probes/lttng-tracepoint-event-impl.h +++ b/probes/lttng-tracepoint-event-impl.h @@ -1345,6 +1345,7 @@ static const struct lttng_event_desc __event_desc___##_map = { \ #define TP_ID(_token, _system) TP_ID1(_token, _system) static const struct lttng_event_desc *TP_ID(__provider_event_desc___, TRACE_SYSTEM)[] = { +#include TRACE_INCLUDE(TRACE_INCLUDE_FILE) }; #undef TP_ID1