Re: [PATCH] net/ice: fix EIPT check is always true

2024-04-08 Thread David Marchand
On Mon, Apr 8, 2024 at 9:55 AM Shiyang He wrote: > > When enabling hardware outer UDP TX offload checksum, the EIPT judgment > is always true because ICE_TX_CTX_EIPT_NONE = 0x0. > > This patch fixes it by checking the non-zero EIPT flag. Duplicate of: https://patchwork.dpdk.org/project/dpdk/patc

[PATCH] net/ice: fix EIPT check is always true

2024-04-08 Thread Shiyang He
When enabling hardware outer UDP TX offload checksum, the EIPT judgment is always true because ICE_TX_CTX_EIPT_NONE = 0x0. This patch fixes it by checking the non-zero EIPT flag. Fixes: 2ed011776334 ("net/ice: fix outer UDP Tx checksum offload") Cc: sta...@dpdk.org Signed-off-by: Shiyang He ---