[dpdk-dev] DPDK Hash library

2015-07-02 Thread De Lara Guarch, Pablo
Hi Jaffar, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Abdul, Jaffar > Sent: Thursday, July 02, 2015 6:38 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] DPDK Hash library > > HI Bruce, > >

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Abdul, Jaffar
; dev at dpdk.org Subject: Re: [dpdk-dev] DPDK Hash library On Thu, Jul 02, 2015 at 05:55:20PM +, De Lara Guarch, Pablo wrote: > You are probably talking about extendable buckets here. > The downsize of that approach is that you have to allocate memory on > the fly, whereas with the cu

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Abdul, Jaffar
: Bruce Richardson [mailto:bruce.richard...@intel.com] Sent: Thursday, July 02, 2015 2:36 AM To: Abdul, Jaffar Cc: dev at dpdk.org Subject: Re: [dpdk-dev] DPDK Hash library On Wed, Jul 01, 2015 at 07:56:28PM -0400, Abdul, Jaffar wrote: > Hi, > > I am wondering how can I use the hash lib

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Matthew Hall
On Thu, Jul 02, 2015 at 05:55:20PM +, De Lara Guarch, Pablo wrote: > You are probably talking about extendable buckets here. > The downsize of that approach is that you have to allocate memory on the fly, > whereas with the cuckoo hash implementation, the entry can be stored in an >

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Bruce Richardson > Sent: Thursday, July 2, 2015 10:36 AM > To: Abdul, Jaffar > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] DPDK Hash library > > On Wed, Jul 01, 2015 at 07:56:28PM -0

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Bruce Richardson
On Wed, Jul 01, 2015 at 07:56:28PM -0400, Abdul, Jaffar wrote: > Hi, > > I am wondering how can I use the hash library if I don't know the number of > entries in the bucket (number of entries in the bucket can grow dynamically) > I am trying to use the DPDK hash library for MAC table where I

[dpdk-dev] DPDK Hash library

2015-07-02 Thread Matthew Hall
On Jul 2, 2015, at 4:20 AM, Dumitrescu, Cristian wrote: > I am wondering how can I use the hash library if I don't know the number > of entries in the bucket (number of entries in the bucket can grow > dynamically) > I am trying to use the DPDK hash library for MAC table where I can't give > the

[dpdk-dev] DPDK Hash library

2015-07-01 Thread Abdul, Jaffar
Hi, I am wondering how can I use the hash library if I don't know the number of entries in the bucket (number of entries in the bucket can grow dynamically) I am trying to use the DPDK hash library for MAC table where I can't give the fixed number of elements in each bucket. Please let me know