[PATCH] net/iavf: fix Tx offloading flags check

Zhang, Qi Z qi.z.zhang at intel.com
Tue Oct 24 07:42:27 CEST 2023



> -----Original Message-----
> From: Radu Nicolau <radu.nicolau at intel.com>
> Sent: Tuesday, October 24, 2023 12:38 AM
> To: Wu, Jingjing <jingjing.wu at intel.com>; Xing, Beilei <beilei.xing at intel.com>
> Cc: dev at dpdk.org; Nicolau, Radu <radu.nicolau at intel.com>;
> stable at dpdk.org; Marchand, David <david.marchand at redhat.com>
> Subject: [PATCH] net/iavf: fix Tx offloading flags check
>
> Use IAVF_TX_OFFLOAD_MASK flags instead of
> IAVF_TX_CKSUM_OFFLOAD_MASK.
>
> Fixes: 3c715591ece0 ("net/iavf: fix checksum offloading")
> Cc: stable at dpdk.org
> Cc: david.marchand at redhat.com
>
> Signed-off-by: Radu Nicolau <radu.nicolau at intel.com>
> ---
>  drivers/net/iavf/iavf_rxtx.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/net/iavf/iavf_rxtx.c b/drivers/net/iavf/iavf_rxtx.c index
> c6ef6af1d8..85f8c141ce 100644
> --- a/drivers/net/iavf/iavf_rxtx.c
> +++ b/drivers/net/iavf/iavf_rxtx.c
> @@ -2664,7 +2664,7 @@ iavf_build_data_desc_cmd_offset_fields(volatile
> uint64_t *qw1,
>               l2tag1 |= m->vlan_tci;
>       }
>
> -     if ((m->ol_flags & IAVF_TX_CKSUM_OFFLOAD_MASK) == 0)
> +     if ((m->ol_flags & IAVF_TX_OFFLOAD_MASK) == 0)

Not sure if this will break previous fix.
Could you please provide some clarification regarding the specific offload flags that not in IAVF_TX_CKSUM_OFFLOAD_MASK, but you still don't want to skip?



>               goto skip_cksum;
>
>       /* Set MACLEN */
> --
> 2.25.1



More information about the stable mailing list