[dpdk-dev] [PATCH 2/2] net/ixgbe: fix address of first segment

Zhang, Xiao xiao.zhang at intel.com
Tue Sep 24 08:48:18 CEST 2019



> -----Original Message-----
> From: Joyce Kong [mailto:joyce.kong at arm.com]
> Sent: Tuesday, September 24, 2019 1:49 PM
> To: dev at dpdk.org
> Cc: nd at arm.com; thomas at monjalon.net; jerinj at marvell.com; Zhang, Xiao
> <xiao.zhang at intel.com>; gavin.hu at arm.com; honnappa.nagarahalli at arm.com;
> stable at dpdk.org
> Subject: [PATCH 2/2] net/ixgbe: fix address of first segment
> 
> This patch fixes (dereference after null check) coverity issue.
> The address of first segmented packets was not set correctly during
> reassembling packets which led to this issue.
> 
> Coverity issue: 13245
> Fixes: 8a44c15aa57d ("net/ixgbe: extract non-x86 specific code from vector
> driver")
> Cc: stable at dpdk.org
> 
> Signed-off-by: Joyce Kong <joyce.kong at arm.com>
> ---
>  drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c
> b/drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c
> index eeb8259..26c0ef5 100644
> --- a/drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c
> +++ b/drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c
> @@ -375,6 +375,7 @@ ixgbe_recv_scattered_pkts_vec(void *rx_queue, struct
> rte_mbuf **rx_pkts,
>  			i++;
>  		if (i == nb_bufs)
>  			return nb_bufs;
> +		rxq->pkt_first_seg = rx_pkts[i];
>  	}
>  	return i + reassemble_packets(rxq, &rx_pkts[i], nb_bufs - i,
>  		&split_flags[i]);
> --
> 2.7.4

Reviewed-by: Xiao Zhang <xiao.zhang at intel.com>


More information about the dev mailing list