Re: [PATCH] lib/gro: use hash function for flow lookup

2025-01-01 Thread kumaraparameshwaran rathinavel
ran > > Subject: [PATCH] lib/gro: use hash function for flow lookup > > Date: Wed, 1 Jan 2025 15:07:35 +0530 > > X-Mailer: git-send-email 2.47.1 > > > > optimize the GRO lookup using hash based > > implementation > > > > Signed-off-by: Kumara Paramesh

Re: [PATCH] lib/gro: use hash function for flow lookup

2025-01-01 Thread Stephen Hemminger
On Wed, 1 Jan 2025 15:07:35 +0530 Kumara Parameshwaran wrote: > From: Kumara Parameshwaran > To: hujiayu...@foxmail.com > Cc: dev@dpdk.org, Kumara Parameshwaran > Subject: [PATCH] lib/gro: use hash function for flow lookup > Date: Wed, 1 Jan 2025 15:07:35 +0530 > X-Mail

[PATCH] lib/gro: use hash function for flow lookup

2025-01-01 Thread Kumara Parameshwaran
optimize the GRO lookup using hash based implementation Signed-off-by: Kumara Parameshwaran --- The patch helps improving the CPU cycles during flow lookup in the GRO library. The current approach iterates over all the flows in the GRO table to find a matching flow for every incoming packet. T