Re: [dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload

2019-10-21 Thread Xu, Ting
: Tuesday, October 22, 2019 12:51 AM To: Yigit, Ferruh Cc: Xu, Ting ; dev@dpdk.org; Lu, Wenzhuo ; Wu, Jingjing ; Iremonger, Bernard Subject: Re: [dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload On Mon, Oct 21, 2019 at 11:52:46AM +0100, Ferruh Yigit wrote: > On 10

Re: [dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload

2019-10-21 Thread Olivier Matz
On Mon, Oct 21, 2019 at 11:52:46AM +0100, Ferruh Yigit wrote: > On 10/21/2019 10:28 AM, Ferruh Yigit wrote: > > On 10/21/2019 1:29 PM, Ting Xu wrote: > >> This patch enables testpmd to forward GTP packet in csum fwd mode. > >> GTP header structure (without optional fields and extension header) > >>

Re: [dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload

2019-10-21 Thread Ferruh Yigit
On 10/21/2019 10:28 AM, Ferruh Yigit wrote: > On 10/21/2019 1:29 PM, Ting Xu wrote: >> This patch enables testpmd to forward GTP packet in csum fwd mode. >> GTP header structure (without optional fields and extension header) >> and parser function are added. GTPU and GTPC packets are both >> suppor

Re: [dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload

2019-10-21 Thread Ferruh Yigit
On 10/21/2019 1:29 PM, Ting Xu wrote: > This patch enables testpmd to forward GTP packet in csum fwd mode. > GTP header structure (without optional fields and extension header) > and parser function are added. GTPU and GTPC packets are both > supported, with respective UDP destination port and GTP

[dpdk-dev] [PATCH v4] app/testpmd: enable GTP header parse and Tx checksum offload

2019-10-20 Thread Ting Xu
This patch enables testpmd to forward GTP packet in csum fwd mode. GTP header structure (without optional fields and extension header) and parser function are added. GTPU and GTPC packets are both supported, with respective UDP destination port and GTP message type. Signed-off-by: Ting Xu --- v4