Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-10-19 Thread Ferruh Yigit
] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue On 7/27/2021 10:25 AM, rohit@nxp.com wrote: From: Rohit Raj l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is not able to store packets with size greater than 2KB, hence these packets are dropped. This patch fixes

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-13 Thread Ferruh Yigit
>> Subject: Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop >> issue >> >> On 7/27/2021 10:25 AM, rohit@nxp.com wrote: >>> From: Rohit Raj >>> >>> l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is >>

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-12 Thread Rohit Raj
> -Original Message- > From: Ferruh Yigit > Sent: Wednesday, August 11, 2021 5:01 PM > To: Rohit Raj > Cc: dev@dpdk.org; Nipun Gupta ; Hemant Agrawal > ; Sachin Saxena ; > Vanshika Shukla > Subject: Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet d

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-11 Thread Ferruh Yigit
On 7/27/2021 10:25 AM, rohit@nxp.com wrote: > From: Rohit Raj > > l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is > not able to store packets with size greater than 2KB, hence these > packets are dropped. > > This patch fixes this issue by enabling scatter for jumbo pa

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-11 Thread Singh, Aman Deep
Hi Rohit, On 7/27/2021 2:55 PM, rohit@nxp.com wrote: From: Rohit Raj l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is not able to store packets with size greater than 2KB, hence these packets are dropped. This patch fixes this issue by enabling scatter for jumbo pack

[dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-07-27 Thread rohit . raj
From: Rohit Raj l3fwd uses mbufs with 2KB data size. If we enable jumbo packets, it is not able to store packets with size greater than 2KB, hence these packets are dropped. This patch fixes this issue by enabling scatter for jumbo packet, if it is supported by NIC. If scatter is not supported