Re: [PATCH] net/iavf: fix access to null value

2024-02-29 Thread Bruce Richardson
On Fri, Feb 09, 2024 at 03:27:56PM +0100, Burakov, Anatoly wrote: > On 1/24/2024 3:05 AM, Mingjin Ye wrote: > > The "vsi" may be null, so it needs to be used after checking. > > > > Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process") Fixes: 9f6186cf0d80 ("net/iavf: fix Rx/Tx burst

Re: [PATCH] net/iavf: fix access to null value

2024-02-09 Thread Burakov, Anatoly
On 1/24/2024 3:05 AM, Mingjin Ye wrote: The "vsi" may be null, so it needs to be used after checking. Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- Acked-by: Anatoly Burakov -- Thanks, Anatoly

Re: [PATCH] net/iavf: fix access to null value

2024-02-02 Thread Bruce Richardson
On Wed, Jan 24, 2024 at 02:05:55AM +, Mingjin Ye wrote: > The "vsi" may be null, so it needs to be used after checking. > > Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process") > Cc: sta...@dpdk.org > > Signed-off-by: Mingjin Ye > --- > drivers/net/iavf/iavf_rxtx.c | 10 ++

[PATCH] net/iavf: fix access to null value

2024-01-23 Thread Mingjin Ye
The "vsi" may be null, so it needs to be used after checking. Fixes: ab28aad9c24f ("net/iavf: fix Rx Tx burst in multi-process") Cc: sta...@dpdk.org Signed-off-by: Mingjin Ye --- drivers/net/iavf/iavf_rxtx.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/