[dpdk-stable] [PATCH] net/fm10k: fix descriptor vlan field filling in Tx

Wang, Xiao W xiao.w.wang at intel.com
Fri Dec 6 02:21:55 CET 2019


Hi,

> -----Original Message-----
> From: Lu Qiuwen <luqiuwen at iie.ac.cn>
> Sent: Thursday, December 5, 2019 9:30 PM
> To: Zhang, Qi Z <qi.z.zhang at intel.com>; Wang, Xiao W
> <xiao.w.wang at intel.com>
> Cc: dev at dpdk.org; Shaw, Jeffrey B <jeffrey.b.shaw at intel.com>;
> stable at dpdk.org
> Subject: [PATCH] net/fm10k: fix descriptor vlan field filling in Tx
> 
> The VLAN field in the descriptor is not filled when ol_flags has
> no VLAN flag. When the caller sends some packets with VLAN tags,
> but other packets do not have VLAN tags, the behavior of the program
> cannot be determined.
> 
> Fixes: 4b61d3bfa941 ("fm10k: add receive and tranmit")
> Cc: jeffrey.b.shaw at intel.com
> Cc: stable at dpdk.org
> 
> Signed-off-by: Lu Qiuwen <luqiuwen at iie.ac.cn>
> ---
>  drivers/net/fm10k/fm10k_rxtx.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/drivers/net/fm10k/fm10k_rxtx.c b/drivers/net/fm10k/fm10k_rxtx.c
> index 5c3112183..4accaa2cd 100644
> --- a/drivers/net/fm10k/fm10k_rxtx.c
> +++ b/drivers/net/fm10k/fm10k_rxtx.c
> @@ -611,6 +611,8 @@ static inline void tx_xmit_pkt(struct fm10k_tx_queue *q,
> struct rte_mbuf *mb)
>  	/* set vlan if requested */
>  	if (mb->ol_flags & PKT_TX_VLAN_PKT)
>  		q->hw_ring[q->next_free].vlan = mb->vlan_tci;
> +	else
> +		q->hw_ring[q->next_free].vlan = 0;
> 
>  	q->sw_ring[q->next_free] = mb;
>  	q->hw_ring[q->next_free].buffer_addr =
> --
> 2.20.1.windows.1

Acked-by: Xiao Wang <xiao.w.wang at intel.com>



More information about the stable mailing list