Re: [dpdk-dev] [PATCH v2] net/mlx: support firmware version query

2019-02-10 Thread Shahaf Shuler
Thursday, February 7, 2019 12:25 AM, Thomas Monjalon: > Cc: dev@dpdk.org > Subject: [PATCH v2] net/mlx: support firmware version query > > The API function rte_eth_dev_fw_version_get() is querying drivers via the > operation callback fw_version_get(). > The implementation of this operation is adde

Re: [dpdk-dev] [PATCH v3] net/mlx5: fix Tx metadata for multi-segment packet

2019-02-10 Thread Shahaf Shuler
Wednesday, January 30, 2019 9:24 AM, Yongseok Koh: > Subject: Re: [PATCH v3] net/mlx5: fix Tx metadata for multi-segment packet > > > On Jan 30, 2019, at 3:43 PM, Dekel Peled wrote: > > > > Original patch implemented the use of match_metadata offload in the > > different burst functions. > > The

[dpdk-dev] [PATCH v1] hash: optimize signature compare by using neon intrinsic

2019-02-10 Thread Ruifeng Wang
Implemented signature compare function based on neon intrinsic. Hash bulk lookup had 3% - 6% performance gain after optimization. Signed-off-by: Ruifeng Wang --- lib/librte_hash/rte_cuckoo_hash.c | 32 ++- lib/librte_hash/rte_cuckoo_hash.h | 1 + 2 files changed, 32

Re: [dpdk-dev] [EXT] [PATCH v1] hash: optimize signature compare by using neon intrinsic

2019-02-10 Thread Jerin Jacob Kollanukkaran
On Mon, 2019-02-11 at 15:30 +0800, Ruifeng Wang wrote: > > --- > --- > Implemented signature compare function based on neon intrinsic. > Hash bulk lookup had 3% - 6% performance gain after optimization. > > Signed-off-by: Ruifeng Wan