RE: [PATCH] app/testpmd: fix GTP header parsing in csum FWD engine

2022-03-13 Thread Gregory Etelson
Hello, From: Singh, Aman Deep Sent: Friday, March 11, 2022 15:35 To: Gregory Etelson ; dev@dpdk.org Cc: Matan Azrad ; Raslan Darawsheh ; sta...@dpdk.org; Xiaoyun Li ; Yuying Zhang ; Ting Xu ; Ferruh Yigit Subject: Re: [PATCH] app/testpmd: fix GTP header parsing in csum FWD engine External

Re: [PATCH] app/testpmd: fix GTP header parsing in csum FWD engine

2022-03-11 Thread Singh, Aman Deep
Looks good to me. On 3/10/2022 7:50 PM, Gregory Etelson wrote: GTP header can be followed by an optional 32 bits extension. GTP notifies about the extension presence through the E, S or PN header bits. Csum GTP header parser did not check the extension bits value. The patch updates GTP header

[PATCH] app/testpmd: fix GTP header parsing in csum FWD engine

2022-03-10 Thread Gregory Etelson
GTP header can be followed by an optional 32 bits extension. GTP notifies about the extension presence through the E, S or PN header bits. Csum GTP header parser did not check the extension bits value. The patch updates GTP header length if header extension bits are set. Cc: sta...@dpdk.org Fix