Re: [dpdk-dev] [PATCH] devtools: fix tracepoint symbols check

2020-04-24 Thread Thomas Monjalon
24/04/2020 14:43, David Marchand: > On Fri, Apr 24, 2020 at 12:53 PM Thomas Monjalon wrote: > > > > The tracepoint symbols __rte_*_trace_* are defined via a macro, > > adding prefix "__", so they cannot be found by map checker. > > Those symbols defined by RTE_TRACE_POINT and RTE_TRACE_POINT_FP >

Re: [dpdk-dev] [PATCH] devtools: fix tracepoint symbols check

2020-04-24 Thread David Marchand
On Fri, Apr 24, 2020 at 12:53 PM Thomas Monjalon wrote: > > The tracepoint symbols __rte_*_trace_* are defined via a macro, > adding prefix "__", so they cannot be found by map checker. > Those symbols defined by RTE_TRACE_POINT and RTE_TRACE_POINT_FP > are checked without the generated prefix. >

[dpdk-dev] [PATCH] devtools: fix tracepoint symbols check

2020-04-24 Thread Thomas Monjalon
The tracepoint symbols __rte_*_trace_* are defined via a macro, adding prefix "__", so they cannot be found by map checker. Those symbols defined by RTE_TRACE_POINT and RTE_TRACE_POINT_FP are checked without the generated prefix. The same logic is applied to per-lcore variables, previously skipped