Re: [dpdk-dev] [PATCH v4 0/4] add new kv hash table

2023-06-12 Thread Stephen Hemminger
On Thu, 25 Mar 2021 15:03:24 +0300 "Medvedkin, Vladimir" wrote: > Hi Thomas, > > On 25/03/2021 00:28, Thomas Monjalon wrote: > > 08/05/2020 21:58, Vladimir Medvedkin: > >> Currently DPDK has a special implementation of a hash table for > >> 4 byte keys which is called FBK hash. Unfortunately i

Re: [dpdk-dev] [PATCH v4 0/4] add new kv hash table

2021-03-25 Thread Medvedkin, Vladimir
Hi Thomas, On 25/03/2021 00:28, Thomas Monjalon wrote: 08/05/2020 21:58, Vladimir Medvedkin: Currently DPDK has a special implementation of a hash table for 4 byte keys which is called FBK hash. Unfortunately its main drawback is that it only supports 2 byte values. The new implementation calle

Re: [dpdk-dev] [PATCH v4 0/4] add new kv hash table

2021-03-24 Thread Thomas Monjalon
08/05/2020 21:58, Vladimir Medvedkin: > Currently DPDK has a special implementation of a hash table for > 4 byte keys which is called FBK hash. Unfortunately its main drawback > is that it only supports 2 byte values. > The new implementation called KV hash > supports 4 byte keys and 8 byte associa

Re: [dpdk-dev] [PATCH v4 0/4] add new kv hash table

2020-06-16 Thread Thomas Monjalon
Waiting for reviews please. 08/05/2020 21:58, Vladimir Medvedkin: > Currently DPDK has a special implementation of a hash table for > 4 byte keys which is called FBK hash. Unfortunately its main drawback > is that it only supports 2 byte values. > The new implementation called KV hash > supports 4

[dpdk-dev] [PATCH v4 0/4] add new kv hash table

2020-05-08 Thread Vladimir Medvedkin
Currently DPDK has a special implementation of a hash table for 4 byte keys which is called FBK hash. Unfortunately its main drawback is that it only supports 2 byte values. The new implementation called KV hash supports 4 byte keys and 8 byte associated values, which is enough to store a pointer.