RE: [EXT] Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-03-02 Thread Ankur Dwivedi
>On 2/28/2023 4:27 PM, Ferruh Yigit wrote: >> On 2/28/2023 3:40 PM, Ankur Dwivedi wrote: -- On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > The speed_fec_capa pointer can be null. So dereferencing the > pointer is

Re: [EXT] Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-03-02 Thread Ferruh Yigit
On 2/28/2023 4:27 PM, Ferruh Yigit wrote: > On 2/28/2023 3:40 PM, Ankur Dwivedi wrote: >>> -- >>> On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: The speed_fec_capa pointer can be null. So dereferencing the pointer is removed

Re: [EXT] Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/28/2023 3:40 PM, Ankur Dwivedi wrote: >> -- >> On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: >>> The speed_fec_capa pointer can be null. So dereferencing the pointer >>> is removed and only the pointer is captured in trace funct

Re: [EXT] Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/28/2023 3:40 PM, Ankur Dwivedi wrote: >> -- >> On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: >>> The speed_fec_capa pointer can be null. So dereferencing the pointer >>> is removed and only the pointer is captured in trace funct

RE: [EXT] Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ankur Dwivedi
>-- >On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: >> The speed_fec_capa pointer can be null. So dereferencing the pointer >> is removed and only the pointer is captured in trace function. >> Fixed few more trace functions in which n

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > The speed_fec_capa pointer can be null. So dereferencing the pointer is > removed and only the pointer is captured in trace function. > Fixed few more trace functions in which null pointer can be dereferenced. > > Coverity issue: 383238 > Bugzilla ID:

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/28/2023 1:17 PM, Jerin Jacob wrote: > On Tue, Feb 28, 2023 at 6:16 PM Ferruh Yigit wrote: >> >> On 2/28/2023 11:29 AM, David Marchand wrote: >>> On Tue, Feb 28, 2023 at 12:05 PM Ferruh Yigit wrote: On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > The speed_fec_capa pointer can be

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Jerin Jacob
On Tue, Feb 28, 2023 at 6:16 PM Ferruh Yigit wrote: > > On 2/28/2023 11:29 AM, David Marchand wrote: > > On Tue, Feb 28, 2023 at 12:05 PM Ferruh Yigit wrote: > >> > >> On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > >>> The speed_fec_capa pointer can be null. So dereferencing the pointer is > >>> r

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/28/2023 11:29 AM, David Marchand wrote: > On Tue, Feb 28, 2023 at 12:05 PM Ferruh Yigit wrote: >> >> On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: >>> The speed_fec_capa pointer can be null. So dereferencing the pointer is >>> removed and only the pointer is captured in trace function. >>> Fixe

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread David Marchand
On Tue, Feb 28, 2023 at 12:05 PM Ferruh Yigit wrote: > > On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > > The speed_fec_capa pointer can be null. So dereferencing the pointer is > > removed and only the pointer is captured in trace function. > > Fixed few more trace functions in which null pointer

Re: [PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-28 Thread Ferruh Yigit
On 2/23/2023 12:30 PM, Ankur Dwivedi wrote: > The speed_fec_capa pointer can be null. So dereferencing the pointer is > removed and only the pointer is captured in trace function. > Fixed few more trace functions in which null pointer can be dereferenced. > > Coverity issue: 383238 > Bugzilla ID:

[PATCH v1 1/2] ethdev: fix null pointer dereference

2023-02-23 Thread Ankur Dwivedi
The speed_fec_capa pointer can be null. So dereferencing the pointer is removed and only the pointer is captured in trace function. Fixed few more trace functions in which null pointer can be dereferenced. Coverity issue: 383238 Bugzilla ID: 1162 Fixes: 6679cf21d608 ("ethdev: add trace points") Fi