Re: [dpdk-dev] [RFC] Add Membership Library

2017-07-17 Thread Vincent JARDIN
Hi, So, I understand from a call we had today that you'll send an update of this series with: - rte_membership for DPDK because it uses CRC+hash+rte_malloc+few EALs, - calls to the lib bloom filter (to avoid forking code), - using builtin/vectorized gcc instead of asm AVX code to keep it

Re: [dpdk-dev] [RFC] Add Membership Library

2017-06-02 Thread Stephen Hemminger
dentified. > > Thanks > Yipeng > > > -Original Message- > > From: Vincent Jardin [mailto:vincent.jar...@6wind.com] > > Sent: Saturday, May 27, 2017 2:42 AM > > To: Wang, Yipeng1 > > Cc: dev@dpdk.org; Gobriel, Sameh ; Wang, Ren > > ; Tai, Charli

Re: [dpdk-dev] [RFC] Add Membership Library

2017-06-01 Thread Vincent Jardin
bject: Re: [dpdk-dev] [RFC] Add Membership Library Why duplicating Jyri's libbloom - https://github.com/jvirkki/libbloom - for this DPDK capability? Why not showing that you can contribute to libbloom and make it linkable with the DPDK? There are so many duplicated code... Thank you, Vincent

Re: [dpdk-dev] [RFC] Add Membership Library

2017-05-31 Thread Wang, Yipeng1
7 2:42 AM > To: Wang, Yipeng1 > Cc: dev@dpdk.org; Gobriel, Sameh ; Wang, Ren > ; Tai, Charlie > Subject: Re: [dpdk-dev] [RFC] Add Membership Library > > Why duplicating Jyri's libbloom - https://github.com/jvirkki/libbloom - for > this > DPDK capability? Why not show

Re: [dpdk-dev] [RFC] Add Membership Library

2017-05-27 Thread Vincent Jardin
Why duplicating Jyri's libbloom - https://github.com/jvirkki/libbloom - for this DPDK capability? Why not showing that you can contribute to libbloom and make it linkable with the DPDK? There are so many duplicated code... Thank you, Vincent

[dpdk-dev] [RFC] Add Membership Library

2017-05-26 Thread Yipeng Wang
A proposal for a new DPDK library that is called “Membership Library”. It provides an API for DPDK applications to insert a new member, delete an existing member, or query the existence of a member in a given set, or a group of sets. For the case of a group of sets the library will return not only