Re: [PATCH v1] ethdev: remove bitfields from trace

2023-03-01 Thread Thomas Monjalon
28/02/2023 17:29, Ferruh Yigit: > On 2/28/2023 3:55 PM, Ankur Dwivedi wrote: > > To capture bitfield variables in trace, the pointer to the structure > > containing the bitfields was referenced. But during trace point > > registration the pointer contains invalid address. Referencing this > > inval

RE: [PATCH v1] ethdev: remove bitfields from trace

2023-02-28 Thread Ali Alnubani
> -Original Message- > From: Ankur Dwivedi > Sent: Tuesday, February 28, 2023 5:55 PM > To: dev@dpdk.org > Cc: Ali Alnubani ; jer...@marvell.com; > ferruh.yi...@amd.com; Ankur Dwivedi > Subject: [PATCH v1] ethdev: remove bitfields from trace > > To capture

Re: [PATCH v1] ethdev: remove bitfields from trace

2023-02-28 Thread Ferruh Yigit
On 2/28/2023 3:55 PM, Ankur Dwivedi wrote: > To capture bitfield variables in trace, the pointer to the structure > containing the bitfields was referenced. But during trace point > registration the pointer contains invalid address. Referencing this > invalid address causes segmentation fault. > >

[PATCH v1] ethdev: remove bitfields from trace

2023-02-28 Thread Ankur Dwivedi
To capture bitfield variables in trace, the pointer to the structure containing the bitfields was referenced. But during trace point registration the pointer contains invalid address. Referencing this invalid address causes segmentation fault. This patch removes the capture of bitfield variables i