Re: [dpdk-dev] [PATCH v1 1/2] net/hinic: fix outer_l3_len parse error

2020-11-04 Thread Ferruh Yigit
On 11/4/2020 2:19 AM, Wangxiaoyun (Cloud) wrote: 在 2020/11/3 1:08, Ferruh Yigit 写道: On 10/31/2020 3:38 AM, Xiaoyun wang wrote: This patch fixes outer_l3_len parse error when PKT_TX_OUTER_IP_CKSUM is not set, which does not affect checksum function, just be consistent with mbuf meta informati

Re: [dpdk-dev] [PATCH v1 1/2] net/hinic: fix outer_l3_len parse error

2020-11-03 Thread Wangxiaoyun (Cloud)
Yes,the actual fix is following as this patch: commit 8c8b61234ffd9a283cecbf9751942cbdb87d68f6 Author: Xiaoyun Wang Date: Sat Jul 25 16:15:33 2020 +0800 net/hinic: refactor checksum functions Encapsulate different types of packet checksum preprocessing into functions. 在 2020/11

Re: [dpdk-dev] [PATCH v1 1/2] net/hinic: fix outer_l3_len parse error

2020-11-02 Thread Ferruh Yigit
On 11/2/2020 5:08 PM, Ferruh Yigit wrote: On 10/31/2020 3:38 AM, Xiaoyun wang wrote: This patch fixes outer_l3_len parse error when PKT_TX_OUTER_IP_CKSUM is not set, which does not affect checksum function, just be consistent with mbuf meta information description. Fixes: 8c8b61234ffd ("net/hin

Re: [dpdk-dev] [PATCH v1 1/2] net/hinic: fix outer_l3_len parse error

2020-11-02 Thread Ferruh Yigit
On 10/31/2020 3:38 AM, Xiaoyun wang wrote: This patch fixes outer_l3_len parse error when PKT_TX_OUTER_IP_CKSUM is not set, which does not affect checksum function, just be consistent with mbuf meta information description. Fixes: 8c8b61234ffd ("net/hinic: refactor checksum functions") Cc: sta..

[dpdk-dev] [PATCH v1 1/2] net/hinic: fix outer_l3_len parse error

2020-10-30 Thread Xiaoyun wang
This patch fixes outer_l3_len parse error when PKT_TX_OUTER_IP_CKSUM is not set, which does not affect checksum function, just be consistent with mbuf meta information description. Fixes: 8c8b61234ffd ("net/hinic: refactor checksum functions") Cc: sta...@dpdk.org Signed-off-by: Xiaoyun wang ---