Re: [dpdk-dev] [PATCH 2/7] net/bnxt: fix uninitialized ptr access in transmit handler

2018-09-19 Thread Ferruh Yigit
On 9/1/2018 5:32 AM, Ajit Khaparde wrote: > From: Somnath Kotur > > bnxt_start_xmit() was attempting to access an uninitialized ptr - txbd1 > which would lead to segmentation fault. > Fix to initialize ptr to NULL and check for the same before access. > > Fixes: f10258e39ec2 ("net/bnxt: fix HW T

[dpdk-dev] [PATCH 2/7] net/bnxt: fix uninitialized ptr access in transmit handler

2018-08-31 Thread Ajit Khaparde
From: Somnath Kotur bnxt_start_xmit() was attempting to access an uninitialized ptr - txbd1 which would lead to segmentation fault. Fix to initialize ptr to NULL and check for the same before access. Fixes: f10258e39ec2 ("net/bnxt: fix HW Tx checksum offload check") Cc: sta...@broadcom.com Sign