[dpdk-dev] [PATCH 3/3] net/qede: fix to set VLAN strip mode

2019-10-19 Thread Rasesh Mody
From: Shahed Shaikh Commit 9a6d30ae6d46 ("net/qede: refactoring vport handling code") deleted the code as part of refactoring which sets vlan strip mode. Revert it back and fix vlan strip feature. Fixes: 9a6d30ae6d46 ("net/qede: refactoring vport handling code") Cc: sta...@dpdk.org Signed-off-b

[dpdk-dev] [PATCH 2/3] net/qede: fix to modify MTU update flow

2019-10-19 Thread Rasesh Mody
From: Shahed Shaikh New MTU value is not propagated to vport in HW when MTU update request is sent while ports are stopped. This patch fixes the logic error for above mentioned condition. Fixes: d121a6b5f781 ("net/qede: fix VF MTU update") Cc: sta...@dpdk.org Signed-off-by: Shahed Shaikh Revi

[dpdk-dev] [PATCH 1/3] net/qede/base: fix for FW bug

2019-10-19 Thread Rasesh Mody
In our testing we have identified a critical FW bug. Performance is degraded significantly for certain packet sizes with 8.40.25.0 FW. This patch updates the FW to version 8.40.33.0. The updated FW has a fix to performance issue. The patch also adds initialization for FW overlay RAM as part of ha

[dpdk-dev] [PATCH v7] ethdev: add HIGIG2 key field to flow API

2019-10-19 Thread kirankumark
From: Kiran Kumar K Add new rte_flow_item_higig2_hdr in order to match higig2 header. It is a layer 2.5 protocol and used in Broadcom switches. Header format is based on the following document. http://read.pudn.com/downloads558/doc/comm/2301468/HiGig_protocol.pdf Signed-off-by: Kiran Kumar K Ac

[dpdk-dev] [PATCH v7 2/2] net/ice: enable advanced RSS

2019-10-19 Thread Simei Su
This patch supports: (1)symmetric hash by rte_flow RSS action. (2)input set change by rte_flow RSS action. Signed-off-by: Simei Su Acked-by: Qi Zhang --- doc/guides/rel_notes/release_19_11.rst | 1 + drivers/net/ice/Makefile | 1 + drivers/net/ice/ice_ethdev.c |

[dpdk-dev] [PATCH v7 0/2] net/ice: enable advanced RSS

2019-10-19 Thread Simei Su
[PATCH v7 1/2] add teid hash for gtupu and session id hash for pppoe/pppod. [PATCH v7 2/2] support input set change and symmetric hash by rte_flow RSS action. v7: * Rebase patches to solve merge conflict. v6: * Add simultaneous use of SRC_ONLY and DST_ONLY of the same level. * Update cases in ic

[dpdk-dev] [PATCH v7 1/2] net/ice: add RSS configuration for gtpu/pppoe

2019-10-19 Thread Simei Su
This patch adds rss support for gtpu with input set teid and pppoe/pppod with input set source mac and session id. Signed-off-by: Simei Su Acked-by: Qi Zhang --- drivers/net/ice/ice_ethdev.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/net/ice/ice_ethdev.c b/dr

Re: [dpdk-dev] [PATCH v5] net/iavf: enable AVX2 for iavf

2019-10-19 Thread Ye Xiaolong
On 10/16, Leyi Rong wrote: >This patch enables AVX data path for iavf PMD. > >Signed-off-by: Leyi Rong > >--- >v5: >- Eliminates CONFIG_RTE_LIBRTE_IAVF_INC_VECTOR and __rte_weak. > >v4: >- Romoves redundant IAVF_NO_VECTOR_FLAGS define. > >v3: >- Adds release note. > >v2: >- Fixes build error on aa

Re: [dpdk-dev] [PATCH v2] ethdev: extend flow metadata

2019-10-19 Thread Slava Ovsiienko
Hi, Olivier Thank you for your comment (and for the dynamic mbuf patch, btw). Please, see below. > -Original Message- > From: Olivier Matz > Sent: Friday, October 18, 2019 12:22 > To: Slava Ovsiienko > Cc: dev@dpdk.org; Matan Azrad ; Raslan > Darawsheh ; Thomas Monjalon > ; Yongseok Ko

[dpdk-dev] Admin Queue ENA

2019-10-19 Thread kumaraparameshwaran rathinavel
Hi All, In the ENA poll mode driver I see that every request in the admin queue is associated with a completion context and this is preallocated during the device initialisation. When the completion context is used we check for occupied to be true in the 16.X version if the occupied flag is set to

Re: [dpdk-dev] [RFC] mempool: introduce indexed memory pool

2019-10-19 Thread Jerin Jacob
On Fri, 18 Oct, 2019, 3:40 pm Xueming(Steven) Li, wrote: > > -Original Message- > > From: Jerin Jacob > > Sent: Friday, October 18, 2019 12:41 AM > > To: Xueming(Steven) Li > > Cc: Olivier Matz ; Andrew Rybchenko > > ; dpdk-dev ; Asaf Penso > > ; Ori Kam ; Stephen > > Hemminger > > Sub

Re: [dpdk-dev] [PATCH v6] ethdev: add HIGIG2 key field to flow API

2019-10-19 Thread Jerin Jacob
On Sat, Oct 19, 2019 at 10:27 AM wrote: > > From: Kiran Kumar K > > Add new rte_flow_item_higig2_hdr in order to match higig2 header. > It is a layer 2.5 protocol and used in Broadcom switches. > Header format is based on the following document. > http://read.pudn.com/downloads558/doc/comm/230146