Re: [dpdk-dev] [PATCH v2 0/6] fix ethdev device detach

2017-07-30 Thread Shachar Beiser
Tested-by : Shachar Beiser The bug is fixed and now there is no crash: testpmd> port stop all Stopping ports... Done testpmd> port close all Closing ports... Done testpmd> port detach 0 Detaching a port... Invalid port 0 Please close port first testpmd> show port info 0 Invalid port 0 Valid po

Re: [dpdk-dev] [PATCH 1/2] net/mlx5: fix missing packet type calculation

2017-07-30 Thread Sagi Grimberg
Looks good, Reviewed-by: Sagi Grimberg

Re: [dpdk-dev] [PATCH 2/2] net/mlx5: fix L4 packet type support

2017-07-30 Thread Sagi Grimberg
Looks good, Reviewed-by: Sagi Grimberg

[dpdk-dev] [PATCH 1/2] crypto/armv8: fix authentication session configuration

2017-07-30 Thread Jerin Jacob
From: Srisivasubramanian S For key sizes greater than digest length, pad with zero rather than computing hash of the key itself. Fixes: 169ca3db550c ("crypto/armv8: add PMD optimized for ARMv8 processors") Cc: sta...@dpdk.org Signed-off-by: Srisivasubramanian S --- drivers/crypto/armv8/rte_ar

[dpdk-dev] [PATCH 2/2] crypto/armv8: fix HMAC supported key sizes

2017-07-30 Thread Jerin Jacob
From: Srisivasubramanian S For HMAC algorithms (SHAx-HMAC), the supported key sizes are not a fixed value, but a range between 1 and the block size. Fixes: 169ca3db550c ("crypto/armv8: add PMD optimized for ARMv8 processors") Cc: sta...@dpdk.org Signed-off-by: Srisivasubramanian S Signed-off-b

[dpdk-dev] [PATCH] maintainers: update for ARMv8 crypto PMD

2017-07-30 Thread Jerin Jacob
Update the maintainers as Zbigniew no longer working for Cavium. Thanks to Zbigniew for his support and development of armv8 crypto driver. Signed-off-by: Jerin Jacob --- MAINTAINERS | 1 - 1 file changed, 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index dc52760b8..05e5456b4 100644 --

Re: [dpdk-dev] [pull-request] next-crypto 17.08 rc3

2017-07-30 Thread Thomas Monjalon
28/07/2017 19:45, Pablo de Lara: > http://dpdk.org/git/next/dpdk-next-crypto Pulled, thanks

Re: [dpdk-dev] [dpdk-stable] [PATCH 2/2] crypto/armv8: fix HMAC supported key sizes

2017-07-30 Thread Thomas Monjalon
30/07/2017 13:23, Jerin Jacob: > From: Srisivasubramanian S > > For HMAC algorithms (SHAx-HMAC), the supported > key sizes are not a fixed value, but a range between > 1 and the block size. > > Fixes: 169ca3db550c ("crypto/armv8: add PMD optimized for ARMv8 processors") > Cc: sta...@dpdk.org >

Re: [dpdk-dev] [PATCH] maintainers: update for ARMv8 crypto PMD

2017-07-30 Thread Thomas Monjalon
30/07/2017 13:58, Jerin Jacob: > Update the maintainers as Zbigniew no longer working for Cavium. > Thanks to Zbigniew for his support and development of > armv8 crypto driver. > > Signed-off-by: Jerin Jacob Applied, thanks

Re: [dpdk-dev] [PATCH] net/dpaa2: enable Tx congestion state check

2017-07-30 Thread Thomas Monjalon
24/07/2017 09:31, Hemant Agrawal: > For larger packet size congestion is observed on Tx Queues. > This patch enables Tx Queue congestion state check support. > If congested, try to resend the packet few times. > > Signed-off-by: Nipun Gupta > Signed-off-by: Hemant Agrawal Applied, thanks

Re: [dpdk-dev] [PATCH 1/4] doc: update release notes for DPAA2 eventdev

2017-07-30 Thread Thomas Monjalon
24/07/2017 09:23, Hemant Agrawal: > announcing the addition of DPAA2 eventdev > > Signed-off-by: Hemant Agrawal Series applied, thanks

Re: [dpdk-dev] [PATCH v3] eal: disable NUMA related warnings on non-NUMA systems

2017-07-30 Thread Thomas Monjalon
> > Disable multiple NUMA warnings on non-NUMA systems. > > > > "EAL: eal_parse_sysfs_value(): cannot open sysfs value > > /sys/bus/pci/devices/:00:00.0/numa_node > > EAL: numa_node is invalid or not present. Set it 0 as default > > EAL: cannot open /proc/self/numa_maps, consider that all

Re: [dpdk-dev] [PATCH] net/vmxnet3: restore correct filtering

2017-07-30 Thread Thomas Monjalon
24/07/2017 16:22, Charles (Chas) Williams: > We should only restore shadow_vfta when hw_vlan_filter is active. > Otherwise, we should restore the previous filtering behavior. > > Fixes: f003fc383487("vmxnet3: enable vlan filtering") > Cc: sta...@dpdk.org > > Signed-off-by: Chas Williams Any rev

Re: [dpdk-dev] [PATCH] bonding: fix segfault when primary slave set

2017-07-30 Thread Thomas Monjalon
26/07/2017 19:06, Declan Doherty: > On 26/07/2017 4:50 PM, Tomasz Kulasek wrote: > > rte_eth_bond_primary_set segfaults for invalid port. This patch moves > > devices check before use of internal data. > > > > Fixes: 4c42498d916d ("net/bonding: allow slaves to also be bonded devices") > > > > Signe

[dpdk-dev] [PATCH] lib/gro: fix bitwise overflow issue

2017-07-30 Thread Jiayu Hu
When try to get GRO types, expression "1 << i" with type "int" may overflow. This patch is to fix this issue. Fixes: e996506a1c07 ("lib/gro: add Generic Receive Offload API framework") Coverity issue: 158664 Signed-off-by: Jiayu Hu --- lib/librte_gro/rte_gro.c | 6 +++--- 1 file changed, 3 inse

Re: [dpdk-dev] [PATCH] net/virtio: fix fail to configure rxq interrupt

2017-07-30 Thread Yuanhan Liu
On Wed, Jul 19, 2017 at 11:18:23AM +0800, Jiayu Hu wrote: > When use rte_eth_dev_configure() to enable rx queue interrupt for virtio > devices, virtio_configure_intr() isn't called to set up the interrupt > environment, which causes rx queue interrupt setup failed. This patch is > to fix this issue

Re: [dpdk-dev] [PATCH] net/virtio: fix MAC addr not correct read

2017-07-30 Thread Yuanhan Liu
On Fri, Jul 28, 2017 at 11:01:14PM +, Jianfeng Tan wrote: > When virtio-net devices are bound to uio_pci_generic, we get > the wrong mac addr by virtio PMD. The wrong mac addr is a > addr that is 4-byte left shift of the correct addr. > > It's a regression bug introduced by the cleanup patch b

Re: [dpdk-dev] [PATCH v3] net/i40e: fix PF notify issue when VF not up

2017-07-30 Thread Wu, Jingjing
> -Original Message- > From: Li, Xiaoyun > Sent: Friday, July 28, 2017 11:48 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Li, Xiaoyun ; sta...@dpdk.org > Subject: [PATCH v3] net/i40e: fix PF notify issue when VF not up > > This patch stops PF from sending messages to inactive VF > and modi

[dpdk-dev] [PATCH] net/bonding: validate bonded port id before access its data

2017-07-30 Thread Herbert Guan
Fixes: 4c42498d916d ("net/bonding: allow slaves to also be bonded devices") Signed-off-by: Herbert Guan --- drivers/net/bonding/rte_eth_bond_api.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/bonding/rte_eth_bond_api.c b/drivers/net/bonding/rte_eth_bond_ap

Re: [dpdk-dev] [PATCH] net/virtio: fix fail to configure rxq interrupt

2017-07-30 Thread Yuanhan Liu
On Mon, Jul 31, 2017 at 02:47:13AM +, Hu, Jiayu wrote: > Hi Yuanhan, > > When we run l3fwd-power in VM with applying this patch in VM DPDK, QEMU will > crash. I think this patch can't solve the problem correctly but I haven't > figured out the reason. I am so sorry about it. It's okay. But

Re: [dpdk-dev] [PATCH 1/2] eventdev: add event adapter for ethernet Rx queues

2017-07-30 Thread Nipun Gupta
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Saturday, July 29, 2017 20:43 > To: Rao, Nikhil > Cc: gage.e...@intel.com; dev@dpdk.org; tho...@monjalon.net; > bruce.richard...@intel.com; harry.van.haa...@intel.com; Hemant Agrawal > ; Nipun Gupta