Re: [PATCH V2 0/6] pipeline: make the hash function configurable per table

2022-09-23 Thread Thomas Monjalon
19/08/2022 21:52, Cristian Dumitrescu: > The exact match and learner tables use a hash function for the lookup > operation. This patch set makes the hash function configurable and > removes some limitations. > > The hash function previously used by these table types had the > following limitations

RE: [PATCH V2 0/6] pipeline: make the hash function configurable per table

2022-09-01 Thread Morten Brørup
> From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Wednesday, 31 August 2022 18.23 > Subject: Re: [PATCH V2 0/6] pipeline: make the hash function > configurable per table > > On Fri, 19 Aug 2022 19:52:19 + > Cristian Dumitrescu wrote: > > >

Re: [PATCH V2 0/6] pipeline: make the hash function configurable per table

2022-08-31 Thread Stephen Hemminger
On Fri, 19 Aug 2022 19:52:19 + Cristian Dumitrescu wrote: > Also, since this flexibility has some performance cost, this patch set > also introduces key comparison functions specialized for each key size > value. Since the key size is fixed for each table, the key comparison > function can be

[PATCH V2 0/6] pipeline: make the hash function configurable per table

2022-08-19 Thread Cristian Dumitrescu
The exact match and learner tables use a hash function for the lookup operation. This patch set makes the hash function configurable and removes some limitations. The hash function previously used by these table types had the following limitations: a) Not configurable: An internally hardcoded vers