Re: [PATCH 1/2] lib: Resizable, Scalable, Concurrent Hash Table

2014-07-29 Thread Thomas Graf
On 07/29/14 at 08:30am, Josh Triplett wrote: > On Tue, Jul 29, 2014 at 01:41:32PM +0200, Thomas Graf wrote: > > Generic implementation of a resizable, scalable, concurrent hash table > > based on [0]. The implementation supports both, fixed size keys specified > > via an offset and length, or arbit

Re: [PATCH 1/2] lib: Resizable, Scalable, Concurrent Hash Table

2014-07-29 Thread Josh Triplett
On Tue, Jul 29, 2014 at 01:41:32PM +0200, Thomas Graf wrote: > Generic implementation of a resizable, scalable, concurrent hash table > based on [0]. The implementation supports both, fixed size keys specified > via an offset and length, or arbitrary keys via own hash and compare > functions. > >

[PATCH 1/2] lib: Resizable, Scalable, Concurrent Hash Table

2014-07-29 Thread Thomas Graf
Generic implementation of a resizable, scalable, concurrent hash table based on [0]. The implementation supports both, fixed size keys specified via an offset and length, or arbitrary keys via own hash and compare functions. Lookups are lockless and protected as RCU read side critical sections. Au