RE: [EXTERNAL] [PATCH v3 2/6] trace: support dereferencing arguments

2025-02-11 Thread Sunil Kumar Kori
> On Tue, Feb 11, 2025 at 9:44 AM Sunil Kumar Kori > wrote: > > > > > diff --git a/lib/eal/common/eal_common_trace_ctf.c > > > b/lib/eal/common/eal_common_trace_ctf.c > > > index 04c4f71462..3e4228ee7f 100644 > > > --- a/lib/eal/common/eal_common_trace_ctf.c > > > +++ b/lib/eal/common/eal_common_t

Re: [EXTERNAL] [PATCH v3 2/6] trace: support dereferencing arguments

2025-02-11 Thread David Marchand
On Tue, Feb 11, 2025 at 9:44 AM Sunil Kumar Kori wrote: > > > diff --git a/lib/eal/common/eal_common_trace_ctf.c > > b/lib/eal/common/eal_common_trace_ctf.c > > index 04c4f71462..3e4228ee7f 100644 > > --- a/lib/eal/common/eal_common_trace_ctf.c > > +++ b/lib/eal/common/eal_common_trace_ctf.c > > @

RE: [EXTERNAL] [PATCH v3 2/6] trace: support dereferencing arguments

2025-02-11 Thread Sunil Kumar Kori
> diff --git a/lib/eal/common/eal_common_trace_ctf.c > b/lib/eal/common/eal_common_trace_ctf.c > index 04c4f71462..3e4228ee7f 100644 > --- a/lib/eal/common/eal_common_trace_ctf.c > +++ b/lib/eal/common/eal_common_trace_ctf.c > @@ -373,6 +373,11 @@ rte_trace_metadata_dump(FILE *f) > > char *trace_

[PATCH v3 2/6] trace: support dereferencing arguments

2025-02-10 Thread David Marchand
Rather than use an intermediate variable, allow use of * to dereference a trace point argument. Update dmadev traces accordingly (and adjust the emitter type). Signed-off-by: David Marchand --- Changes since v2: - split this change out of patch 2, as it required updating CTF metadata fixup, --