[dpdk-dev] [PATCH] hash: add rte_hash_set_cmp_func() function to DPDK_2.2.

2015-12-02 Thread Yu Nemo Wenbin
Give user a chance to customize the hash key compare function. The default rte_hash_cmp_eq function is set in the rte_hash_create function, but these builtin ones may not be good enough, so the user may call this to override the default one. Signed-off-by: Yu Nemo Wenbin --- lib/librte_hash/rte_

[dpdk-dev] [PATCH] hash: add rte_hash_set_cmp_func() function to DPDK_2.2.

2015-12-02 Thread De Lara Guarch, Pablo
Hi, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Yu Nemo Wenbin > Sent: Wednesday, December 02, 2015 2:19 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] hash: add rte_hash_set_cmp_func() function > to DPDK_2.2. > > Give us