Re: [PATCH v1] gro: bug fix in identifying 0 length tcp packets

2022-07-17 Thread kumaraparameshwaran rathinavel
> From: Kumara Parameshwaran > Date: Sun, Apr 3, 2022 at 5:20 PM > Subject: [PATCH v1] gro: bug fix in identifying 0 length tcp packets > To: > Cc: , Kumara Parameshwaran , < > sta...@dpdk.org>, Kumara Parameshwaran > > > As the minimum Ethernet frame size is

RE: [PATCH v1] gro: bug fix in identifying 0 length tcp packets

2022-04-03 Thread Morten Brørup
> From: Kumara Parameshwaran [mailto:kumaraparames...@gmail.com] > Sent: Sunday, 3 April 2022 13.51 > > As the minimum Ethernet frame size is 64 bytes, a 0 length > tcp payload without tcp options would be 54 bytes and hence > there would be padding. So it would be incorrect to use the > packet le

[PATCH v1] gro: bug fix in identifying 0 length tcp packets

2022-04-03 Thread Kumara Parameshwaran
As the minimum Ethernet frame size is 64 bytes, a 0 length tcp payload without tcp options would be 54 bytes and hence there would be padding. So it would be incorrect to use the packet length to determine the tcp data length. Fixes: 1e4cf4d6d4fb ("gro: cleanup") Cc: sta...@dpdk.org Signed-off-by