Re: [Qemu-devel] [PATCH v7 10/15] qht: QEMU's fast, resizable and scalable Hash Table

2016-06-08 Thread Sergey Fedorov
On 08/06/16 21:55, Emilio G. Cota wrote: > This is a fast, scalable chained hash table with optional auto-resizing, > allowing > reads that are concurrent with reads, and reads/writes that are concurrent > with writes to separate buckets. > > A hash table with these features will be necessary for

[Qemu-devel] [PATCH v7 10/15] qht: QEMU's fast, resizable and scalable Hash Table

2016-06-08 Thread Emilio G. Cota
This is a fast, scalable chained hash table with optional auto-resizing, allowing reads that are concurrent with reads, and reads/writes that are concurrent with writes to separate buckets. A hash table with these features will be necessary for the scalability of the ongoing MTTCG work; before th