Re: [dpdk-dev] [PATCH v8 2/4] hash: add extendable bucket feature

2018-10-23 Thread Bruce Richardson
On Mon, Oct 22, 2018 at 11:39:46AM -0700, Yipeng Wang wrote: > In use cases that hash table capacity needs to be guaranteed, > the extendable bucket feature can be used to contain extra > keys in linked lists when conflict happens. This is similar > concept to the extendable bucket hash table in pa

[dpdk-dev] [PATCH v8 2/4] hash: add extendable bucket feature

2018-10-22 Thread Yipeng Wang
In use cases that hash table capacity needs to be guaranteed, the extendable bucket feature can be used to contain extra keys in linked lists when conflict happens. This is similar concept to the extendable bucket hash table in packet framework. This commit adds the extendable bucket feature. User