RE: [dpdk-dev] [RFC] hash: introduce resizable hash list

2023-06-14 Thread Bing Zhao
Hi Stephen, > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, June 13, 2023 12:44 AM > To: Bing Zhao > Cc: yipeng1.w...@intel.com; sameh.gobr...@intel.com; > bruce.richard...@intel.com; pablo.de.lara.gua...@intel.com; dev@dpdk.org > Subject: Re:

Re: [dpdk-dev] [RFC] hash: introduce resizable hash list

2023-06-12 Thread Stephen Hemminger
On Wed, 28 Aug 2019 14:51:48 +0800 Bing Zhao wrote: > In the current hash library, there are already two hash tables and > several hash calculation functions. > > FBK hash table is very lightweight, but the key length is limited to > 4 bytes and the size of the table is fixed during startup. >

Re: [dpdk-dev] [RFC] hash: introduce resizable hash list

2019-09-20 Thread Wang, Yipeng1
Hi, Bing, I am sorry for the late reply: >> >1.8.3.1 >> >> [Wang, Yipeng] >> >> Hi, Bing, >> >> Table resizing is very important and I think it is a critical feature to have >> in DPDK's hash library. Thanks a lot for putting effort on this and I hope >> we could work out a solution based on your

Re: [dpdk-dev] [RFC] hash: introduce resizable hash list

2019-09-13 Thread Bing Zhao
Hi Yipeng, > -Original Message- > From: Wang, Yipeng1 > Sent: Friday, September 6, 2019 3:26 AM > To: Bing Zhao ; Gobriel, Sameh > ; Richardson, Bruce > ; De Lara Guarch, Pablo > > Cc: dev@dpdk.org > Subject: RE: [RFC] hash: introduce resizable hash list > > >-Original Message-

Re: [dpdk-dev] [RFC] hash: introduce resizable hash list

2019-09-05 Thread Wang, Yipeng1
>-Original Message- >From: Bing Zhao [mailto:bi...@mellanox.com] >Sent: Tuesday, August 27, 2019 11:52 PM >To: Wang, Yipeng1 ; Gobriel, Sameh >; Richardson, Bruce >; De Lara Guarch, Pablo > >Cc: dev@dpdk.org; bi...@mellanox.com >Subject: [RFC] hash: introduce resizable hash list > >In the

[dpdk-dev] [RFC] hash: introduce resizable hash list

2019-08-28 Thread Bing Zhao
In the current hash library, there are already two hash tables and several hash calculation functions. FBK hash table is very lightweight, but the key length is limited to 4 bytes and the size of the table is fixed during startup. Cuckoo hash table is a quite great idea and nice implementation in