[dpdk-dev] [Bug 446] rte_lcore_index(-1) returns invalid data for non DPDK thread.

2020-07-09 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=446 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Resolution|--- |FIXED Status|U

Re: [dpdk-dev] [PATCH v2] lib/librte_timer:fix corruption with reset

2020-07-09 Thread Sarosh Arif
On Wed, Jul 8, 2020 at 8:08 PM Stephen Hemminger wrote: > On Wed, 8 Jul 2020 10:06:26 +0500 > Sarosh Arif wrote: > > > rte_timer_stop_sync(struct rte_timer *tim) > > { > > + struct rte_timer_data *timer_data; > > + TIMER_DATA_VALID_GET_OR_ERR_RET(default_data_id, timer_data, > -EINVAL

Re: [dpdk-dev] [PATCH v2] lib/librte_timer:fix corruption with reset

2020-07-09 Thread Sarosh Arif
On Wed, Jul 8, 2020 at 8:07 PM Stephen Hemminger wrote: > On Wed, 8 Jul 2020 10:06:26 +0500 > Sarosh Arif wrote: > > > /* loop until rte_timer_reset() succeed */ > > -void > > +int > > rte_timer_reset_sync(struct rte_timer *tim, uint64_t ticks, > >enum rte_timer_type type,

Re: [dpdk-dev] [PATCH v4 01/10] eal: introduce macros for getting valuefor bit

2020-07-09 Thread Morten Brørup
> From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Parav Pandit > Sent: Thursday, July 9, 2020 8:24 AM > > Hi Morten, > > > From: Morten Brørup > > Sent: Tuesday, July 7, 2020 6:11 PM > > > Adding Joyce Kong to this discussion as the rte_bitops maintainer. > > > > > From: Thomas Monjalon [m

Re: [dpdk-dev] [PATCH v4 01/10] eal: introduce macros for getting valuefor bit

2020-07-09 Thread Parav Pandit
> From: Morten Brørup > Sent: Thursday, July 9, 2020 12:46 PM > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Parav Pandit > > Sent: Thursday, July 9, 2020 8:24 AM > > > > Hi Morten, > > > > > From: Morten Brørup > > > Sent: Tuesday, July 7, 2020 6:11 PM > > > > > Adding Joyce Kong

Re: [dpdk-dev] [PATCH] net/ice: fix invalid RSS type

2020-07-09 Thread Su, Simei
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, July 9, 2020 2:47 PM > To: Su, Simei > Cc: dev@dpdk.org; Guo, Jia > Subject: RE: [PATCH] net/ice: fix invalid RSS type > > > > > -Original Message- > > From: Su, Simei > > Sent: Thursday, July 9, 2020 2:27 PM > > T

[dpdk-dev] [PATCH v5 4/9] common/mlx5: change mlx5 class enum values as bits

2020-07-09 Thread Parav Pandit
mlx5 PCI Device supports multiple classes of devices such as net, vdpa, and/or regex. To support these multiple classes, change mlx5_class to a bitmap values so that if users asks to enable multiple of them, all supported classes can be parsed. Signed-off-by: Parav Pandit Acked-by: Matan Azrad -

[dpdk-dev] [PATCH v5 2/9] eal: introduce RTE common initialization level

2020-07-09 Thread Parav Pandit
Currently mlx5_common uses CLASS priority to initialize common code before initializing the PMD. However mlx5_common is not really a class, it is the pre-initialization code needed for the PMDs. In subsequent patch a needed initialization sequence is: (a) Initialize bus (say pci) (b) Initialize co

[dpdk-dev] [PATCH v5 1/9] eal: introduce macros for getting value for bit

2020-07-09 Thread Parav Pandit
There are several drivers which duplicate bit generation macro. Introduce a generic bit macros so that such drivers avoid redefining same in multiple drivers. Signed-off-by: Parav Pandit Acked-by: Matan Azrad Acked-by: Morten Brørup --- Changelog: v4->v5: - Addressed comments from Morten Brøru

[dpdk-dev] [PATCH v5 3/9] common/mlx5: fix empty input style in glue wrappers

2020-07-09 Thread Parav Pandit
Following two errors are reported when compiled with gcc (GCC) 8.3.1 20191121 (Red Hat 8.3.1-5). drivers/common/mlx5/linux/mlx5_glue.h:188:2: error: function declaration isn't a prototype [-Werror=strict-prototypes] drivers/common/mlx5/linux/mlx5_glue.h:188:2: error: function declaration isn't a

[dpdk-dev] [PATCH v5 0/9] Improve mlx5 PMD driver framework for multiple classes

2020-07-09 Thread Parav Pandit
This series introduces mlx5 bus to support multiple class of devices for a single PCI device. Motivation and example -- mlx5 PCI device supports multiple class of devices such as net, vdpa and regex devices. Currently only one pmd (either net or vdpa) can bind to this device.

[dpdk-dev] [PATCH v5 9/9] common/mlx5: remove class checks from individual driver

2020-07-09 Thread Parav Pandit
Now that mlx5_pci bus does the check for enabled classes and performs probe(), remove() of associated classes, individual class driver doesn't need to check if other driver is enabled. Signed-off-by: Parav Pandit Acked-by: Matan Azrad --- Changelog: v2->v3: - Removed empty line v1->v2: - New p

[dpdk-dev] [PATCH v5 5/9] common/mlx5: use common rte priority

2020-07-09 Thread Parav Pandit
Use RTE_PRIO_COMMON for mlx5 common initialization and use RTE_PRIO_CLASS for mlx5 net, vdpa PMDs. This enables to do following initialization sequence. (a) Initialize bus (say pci) (b) Initialize common code of a driver (mlx5_common) (c) Register mlx5 class PMDs (mlx5 net, mlx5 vdpa) Information

[dpdk-dev] [PATCH v5 7/9] bus/mlx5_pci: register a PCI driver

2020-07-09 Thread Parav Pandit
Create a mlx5 bus driver framework for invoking drivers of multiple classes who have registered with the mlx5_pci bus driver. Validate user class arguments for supported class combinations. Signed-off-by: Parav Pandit Acked-by: Matan Azrad --- Changelog: v3->v4: - Fixed dma_map error unwinding

[dpdk-dev] [PATCH v5 6/9] bus/mlx5_pci: add mlx5 PCI bus

2020-07-09 Thread Parav Pandit
Add mlx5 PCI bus which enables multiple mlx5 drivers to bind to single pci device. Signed-off-by: Parav Pandit Acked-by: Matan Azrad --- Changelog: v4->v5: - Merged maintainers update patch with this patch v2->v3: - Addressed comments from Thomas and Asaf - Moved pci_driver structure instance

[dpdk-dev] [PATCH v5 8/9] bus/mlx5_pci: enable net and vDPA to use mlx5 PCI bus driver

2020-07-09 Thread Parav Pandit
Enable class driver to match with the mlx5 pci devices. Migrate mlx5 net PMD and vdpa PMD to start using mlx5 common class driver. Signed-off-by: Parav Pandit Acked-by: Matan Azrad --- Changelog: v2->v3: - Avoid static table v1->v2: - Migreate API from rte_driver to rte_pci_driver --- drivers

Re: [dpdk-dev] [PATCH v6 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-09 Thread Wei Hu (Xavier)
On 2020/7/8 18:14, Thomas Monjalon wrote: 08/07/2020 05:37, Wei Hu (Xavier): On 2020/7/7 22:11, Thomas Monjalon wrote: 06/07/2020 09:06, Wei Hu (Xavier): Currently, there is a potential problem that calling the API function rte_eth_dev_set_vlan_offload to start VLAN hardware offloads which

[dpdk-dev] [PATCH v2] net/ice: fix invalid RSS type

2020-07-09 Thread Simei Su
When a RSS rule with only RSS type modifier L2/L3/L4 SRC/DST_ONLY, it should return failure. This patch adds invalid RSS type check. Fixes: dfaedcf20170 ("net/ice: refactor PF hash flow") Signed-off-by: Simei Su --- v2: * Add specific macro value in check rather than hard code. --- drivers/net

Re: [dpdk-dev] [PATCH v2 12/20] net/ixgbe/base: modify coding style

2020-07-09 Thread Sun, GuinanX
Hi Ferruh > -Original Message- > From: Yigit, Ferruh > Sent: Wednesday, July 8, 2020 11:26 PM > To: Sun, GuinanX ; dev@dpdk.org; Zhang, Qi Z > > Cc: Guo, Jia ; Zhao1, Wei ; > Chylkowski, JakubX > Subject: Re: [dpdk-dev] [PATCH v2 12/20] net/ixgbe/base: modify coding style > > On 7/2/202

Re: [dpdk-dev] [PATCH v2] eal: use c11 atomic built-ins for interrupt status

2020-07-09 Thread Stefan Puiu
Hi, Noticed 2 typos: On Thu, Jul 9, 2020 at 9:46 AM Phil Yang wrote: > > The event status is defined as a volatile variable and shared between > threads. Use c11 atomic built-ins with explicit ordering instead of > rte_atomic ops which enforce unnecessary barriers on aarch64. > > The event statu

[dpdk-dev] [PATCH v8 0/3] RCU integration with LPM library

2020-07-09 Thread Ruifeng Wang
This patchset integrates RCU QSBR support with LPM library. Resource reclaimation implementation was splitted from the original series, and has already been part of RCU library. Rework the series to base LPM integration on RCU reclaimation APIs. New API rte_lpm_rcu_qsbr_add is introduced for appl

[dpdk-dev] [PATCH v8 2/3] test/lpm: add LPM RCU integration functional tests

2020-07-09 Thread Ruifeng Wang
Add positive and negative tests for API rte_lpm_rcu_qsbr_add. Also test LPM library behavior when RCU QSBR is enabled. Signed-off-by: Ruifeng Wang Reviewed-by: Gavin Hu Reviewed-by: Honnappa Nagarahalli Acked-by: Vladimir Medvedkin --- app/test/test_lpm.c | 291 +++

[dpdk-dev] [PATCH v8 1/3] lib/lpm: integrate RCU QSBR

2020-07-09 Thread Ruifeng Wang
Currently, the tbl8 group is freed even though the readers might be using the tbl8 group entries. The freed tbl8 group can be reallocated quickly. This results in incorrect lookup results. RCU QSBR process is integrated for safe tbl8 group reclaim. Refer to RCU documentation to understand various

[dpdk-dev] [PATCH v8 3/3] test/lpm: add RCU integration performance tests

2020-07-09 Thread Ruifeng Wang
From: Honnappa Nagarahalli Add performance tests for RCU integration. The performance difference with and without RCU integration is very small (~1% to ~2%) on both Arm and x86 platforms. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ruifeng Wang Acked-by: Vladimir Me

Re: [dpdk-dev] [PATCH v2] eal: use c11 atomic built-ins for interrupt status

2020-07-09 Thread Phil Yang
> -Original Message- > From: Stefan Puiu > Sent: Thursday, July 9, 2020 4:02 PM > To: Phil Yang > Cc: david.march...@redhat.com; dev@dpdk.org; m...@ashroe.eu; > acon...@redhat.com; d...@linux.vnet.ibm.com; Honnappa Nagarahalli > ; Ruifeng Wang > ; nd ; do...@redhat.com; Neil > Horman ; hk

[dpdk-dev] [PATCH v3 01/19] net/ixgbe/base: fix host interface shadow RAM read

2020-07-09 Thread Guinan Sun
Host interface Shadow RAM Read (0x31) command response buffer length should be stored in two bytes, instead of one byte. This patch fixes it. Fixes: e6102361b1d4 ("net/ixgbe/base: use 2 bytes for flash read command") Cc: sta...@dpdk.org Signed-off-by: Mateusz Kowalski Signed-off-by: Guinan Sun

[dpdk-dev] [PATCH v3 00/19] update ixgbe base code

2020-07-09 Thread Guinan Sun
source code of ixgbe driver: not-released-cid-ixgbe.2020.06.09.tar.gz released by the team which develop basic drivers for any ixgbe NIC. changelog in ND share repo: >From 66d7da32d8e8 ("ixgbe-shared: Add support to clear VFMBMEM and toggle VF's >TX queues") To 7f2d73c9742b ("ixgbe-shared: check

[dpdk-dev] [PATCH v3 02/19] net/ixgbe/base: change flow for "Apply Update" command

2020-07-09 Thread Guinan Sun
For the "Apply Update" command the firmware does not given an response. For this command, success should be return. Signed-off-by: Mateusz Kowalski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_common.c | 9 - 1 file changed, 8 insertions(+), 1 deleti

[dpdk-dev] [PATCH v3 05/19] net/ixgbe/base: added register definitions for NVM update

2020-07-09 Thread Guinan Sun
Added additional register for X550 and above device family. Signed-off-by: Piotr Skajewski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_type.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/ixgbe/base/ixgbe_type.h b/drivers/net/ixgbe/base

[dpdk-dev] [PATCH v3 04/19] net/ixgbe/base: resolve infinite recursion on PCIe link down

2020-07-09 Thread Guinan Sun
In some corner cases the functions ixgbe_clear_rar_generic and ixgbe_clear_vmdq_generic may call one another leading to infinite recursion. When ixgbe_clear_vmdq_generic is called with IXGBE_CLEAR_VMDQ_ALL flag, it's going to clear MPSAR registers, and proceed to call ixgbe_clear_rar_generic, whic

[dpdk-dev] [PATCH v3 03/19] net/ixgbe/base: fix x550em 10G NIC link status report

2020-07-09 Thread Guinan Sun
With the NVM image for x550em XFI will not report the auto-negotiation feature correctly. The auto-negotiation should be "No" for supports and advertised items. At the same time update speed makes it support 1G and 10G. Fixes: 833df43399e7 ("net/ixgbe/base: add SGMII link for X550") Cc: sta...@dpd

[dpdk-dev] [PATCH v3 06/19] net/ixgbe/base: cleanup spelling mistakes in comments

2020-07-09 Thread Guinan Sun
Several functions in the driver code have a weird function comment formatting which uses two spaces instead of only one space for the main function body. This formatting will be mechanically fixed by sed in a future patch, but doing so leads to some checkpatch.pl warnings on that patch. Cleanup th

[dpdk-dev] [PATCH v3 11/19] net/ixgbe/base: remove unnecessary return value check

2020-07-09 Thread Guinan Sun
Remove unnecessary return value check. Signed-off-by: Jakub Chylkowski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_82599.c | 4 +--- drivers/net/ixgbe/base/ixgbe_common.c | 4 +--- drivers/net/ixgbe/base/ixgbe_common.h | 2 +- drivers/net/ixgbe/base/ixg

[dpdk-dev] [PATCH v3 10/19] net/ixgbe/base: add typecast for type mismatch

2020-07-09 Thread Guinan Sun
Add typecast for type mismatch. Signed-off-by: Jakub Chylkowski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_82599.c | 8 drivers/net/ixgbe/base/ixgbe_common.c| 2 +- drivers/net/ixgbe/base/ixgbe_dcb_82598.c | 2 +- drivers/net/ixgbe/base/ix

[dpdk-dev] [PATCH v3 08/19] net/ixgbe/base: move increments after evaluations

2020-07-09 Thread Guinan Sun
The retry variable was being incremented before it was evaluated by the subsequent conditional against the maximum retries to figure out which message to print. So we'll move the increment op to the end. Signed-off-by: Jeb Cramer Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net

[dpdk-dev] [PATCH v3 09/19] net/ixgbe/base: create dedicated func to restart auto nego

2020-07-09 Thread Guinan Sun
This patch is for restarting auto negotiation on PHY. Signed-off-by: Jakub Chylkowski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_phy.c | 48 ++ drivers/net/ixgbe/base/ixgbe_phy.h | 1 + 2 files changed, 23 insertions(+), 26 del

[dpdk-dev] [PATCH v3 14/19] net/ixgbe/base: improve log about autonego being disabled

2020-07-09 Thread Guinan Sun
On ESXi OS, when user disables auto negotiation, the following log appears: "(unsupported) Flow control autoneg is disabled". It is true that auto negotiation is disabled but it is not necessarily true that it is not supported. Signed-off-by: Jakub Chylkowski Signed-off-by: Guinan Sun Reviewed-b

[dpdk-dev] [PATCH v3 15/19] net/ixgbe/base: add ipv6 mask for FDIR feature

2020-07-09 Thread Guinan Sun
Write FDIRIP6M register to allow flow director filter to set ipv6 rules without setting ipv6 source/destination address. Signed-off-by: Piotr Skajewski Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_82599.c | 1 + 1 file changed, 1 insertion(+) diff --git a/d

[dpdk-dev] [PATCH v3 16/19] net/ixgbe/base: remove default advertising for x550 2.5G/5G

2020-07-09 Thread Guinan Sun
We are seeing interoperability issues with switches when 2.5G and 5G in x550 are advertised by default, so default to off. Signed-off-by: Todd Fujinaka Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_phy.c | 4 1 file changed, 4 deletions(-) diff --git a/

[dpdk-dev] [PATCH v3 12/19] net/ixgbe/base: remove unnecessary log message FC autonego

2020-07-09 Thread Guinan Sun
The function ixgbe_device_supports_autoneg_fc is checking whether a particular device and medium configuration is supporting Flow Control Autonegotiation. In case of non-support, the message is always logged which is confusing. The fix is removing unnecessary log entry. Signed-off-by: Zalfresso-Ju

[dpdk-dev] [PATCH v3 13/19] net/ixgbe/base: initialize data field in struct buffer

2020-07-09 Thread Guinan Sun
While sending request using ixgbe_hic_unlocked() the data field in buffer struct is not used. It is set when the struct is overwritten by FW to deliver the response. To not pass random data to FW the whole structure should be zeroed before use. Signed-off-by: Krzysztof Galazka Signed-off-by: Piot

[dpdk-dev] [PATCH v3 17/19] net/ixgbe/base: check host interface return status

2020-07-09 Thread Guinan Sun
Writing to read-only fields returns a non-OK Return Status for shadow RAM write command for X550. This information was previously discarded. Signed-off-by: Stanislaw Grzeszczak Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_x550.c | 13 - 1 file ch

[dpdk-dev] [PATCH v3 19/19] net/ixgbe/base: update version

2020-07-09 Thread Guinan Sun
Update base code version in readme. Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README index a48b14ed2..2c7469392 100644 --- a/drivers

[dpdk-dev] [PATCH] net/bnxt: fix build issue

2020-07-09 Thread David Marchand
In existing build env, RTE_LIBRTE_BNXT_PMD_SYSTEM is unset. Testing against a n value does not work and we end up with a link issue: /usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_alloc': .../dpdk/drivers/net/bnxt/tf_core/tf_em_common.c:1040: undefined reference to `tf_em_ext_

[dpdk-dev] [PATCH v3 18/19] net/ixgbe/base: cleanup pre-processor tags

2020-07-09 Thread Guinan Sun
The codes has been exposed correctly, so remove pre-processor tags. Signed-off-by: Guinan Sun Reviewed-by: Wei Zhao --- drivers/net/ixgbe/base/ixgbe_common.c | 8 drivers/net/ixgbe/base/ixgbe_phy.h| 2 -- drivers/net/ixgbe/base/ixgbe_type.h | 10 -- drivers/net/ixgbe/ba

[dpdk-dev] [PATCH v3] eal: use c11 atomic built-ins for interrupt status

2020-07-09 Thread Phil Yang
The event status is defined as a volatile variable and shared between threads. Use c11 atomic built-ins with explicit ordering instead of rte_atomic ops which enforce unnecessary barriers on aarch64. The event status has been cleaned up by the compare-and-swap operation when we free the event data

Re: [dpdk-dev] [PATCH v2 1/4] lib: introduce IF Proxy library

2020-07-09 Thread Andrzej Ostruszka [C]
First of all let me thank you all one again for the time you took looking at this and summarize your feedback as I understand it. 1. Don't use interrupt thread because in heavy load scenarios this might cause problems. 2. Provide higher level functionality - so that application can just use it

[dpdk-dev] [PATCH v1 1/2] raw/ifpga/base: fix spi transaction issue

2020-07-09 Thread Tianfei zhang
From: Tianfei Zhang 0x4a means idle status on physical layer. when encounter 0x4a on raw data, it need insert a ESCAPE character for indication. Fixes: 96ebfcf8 ("raw/ifpga/base: add SPI and MAX10 device driver") Cc: sta...@dpdk.org Signed-off-by: Tianfei Zhang --- drivers/raw/ifpga/base/opae

[dpdk-dev] [PATCH v1 2/2] raw/ifpga/base: fix NIOS SPI initial

2020-07-09 Thread Tianfei zhang
From: Tianfei Zhang Add fecmode setting on NIOS SPI master initialization. this SPI is shared by NIOS core inside FPGA, NIOS will use this SPI master to do some one time initialization after power up, and then release the control to DPDK. Fix the timeout initialization for polling the NIOS_INIT_

[dpdk-dev] [PATCH v2 2/2] raw/ifpga/base: fix NIOS SPI initial

2020-07-09 Thread Tianfei zhang
From: Tianfei Zhang Add fecmode setting on NIOS SPI primary initialization. this SPI is shared by NIOS core inside FPGA, NIOS will use this SPI primary to do some one time initialization after power up, and then release the control to DPDK. Fix the timeout initialization for polling the NIOS_INI

[dpdk-dev] [PATCH v2 1/2] raw/ifpga/base: fix spi transaction issue

2020-07-09 Thread Tianfei zhang
From: Tianfei Zhang 0x4a means idle status on physical layer. when encounter 0x4a on raw data, it need insert a ESCAPE character for indication. Fixes: 96ebfcf8 ("raw/ifpga/base: add SPI and MAX10 device driver") Cc: sta...@dpdk.org Signed-off-by: Tianfei Zhang --- drivers/raw/ifpga/base/opae

Re: [dpdk-dev] [PATCH v1 2/2] raw/ifpga/base: fix NIOS SPI initial

2020-07-09 Thread Zhang, Tianfei
The message include "master", it suggested that replace by " primary ", I will send the V2. -Original Message- From: Zhang, Tianfei Sent: Friday, July 10, 2020 12:36 AM To: dev@dpdk.org; Xu, Rosen Cc: Zhang, Tianfei ; sta...@dpdk.org Subject: [PATCH v1 2/2] raw/ifpga/base: fix NIOS SPI

Re: [dpdk-dev] [PATCH v6 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-09 Thread Thomas Monjalon
09/07/2020 09:39, Wei Hu (Xavier): > On 2020/7/8 18:14, Thomas Monjalon wrote: > > 08/07/2020 05:37, Wei Hu (Xavier): > >> On 2020/7/7 22:11, Thomas Monjalon wrote: > >>> 06/07/2020 09:06, Wei Hu (Xavier): > Currently, there is a potential problem that calling the API function > rte_eth_d

[dpdk-dev] [PATCH 0/5] bnxt bug fixes

2020-07-09 Thread Kalesh A P
From: Kalesh AP This patchset contains few bug fixes in bnxt PMD. Please apply. Kalesh AP (5): net/bnxt: fix to avoid unnecessary memory allocation net/bnxt: remove unused enum declaration net/bnxt: fix to not send unnecessary hwrm command net/bnxt: fix to set flow error when filter cre

[dpdk-dev] [PATCH 1/5] net/bnxt: fix to avoid unnecessary memory allocation

2020-07-09 Thread Kalesh A P
From: Kalesh AP VFs are not privileged to issue HWRM_PORT_LED_QCFG/CFG. There is no need to allocate "bp->leds" memory. Fixes: 205b74295282 ("net/bnxt: fix allocation of LED config info") Cc: sta...@dpdk.org Signed-off-by: Kalesh AP Reviewed-by: Somnath Kotur Reviewed-by: Ajit Kumar Khaparde

[dpdk-dev] [PATCH 5/5] net/bnxt: fix to free filters when flow create fails

2020-07-09 Thread Kalesh A P
From: Kalesh AP This patch does following things: 1. Added a wrapper function bnxt_clear_one_vnic_filter() for destroying the filters in hw. This will avoid duplicate code in many places. 2. When flow creae fails due to an already existing mark id for the new flow id created, fixed to de

[dpdk-dev] [PATCH 3/5] net/bnxt: fix to not send unnecessary hwrm command

2020-07-09 Thread Kalesh A P
From: Kalesh AP During probe, driver issues HWRM_CFA_ADV_FLOW_MGNT_QCAPS command. But it is not using the command response anywhere which makes the fw call redundant. Remove the unnecessary HWRM_CFA_ADV_FLOW_MGNT_QCAPS call to fw. Remove the redundant flow_flags in bnxt struct. Fixes: afef822b2

[dpdk-dev] [PATCH 4/5] net/bnxt: fix to set flow error when filter create fails

2020-07-09 Thread Kalesh A P
From: Kalesh AP If set_em_filter/set_ntuple_filter cmds fails for some reason, driver is not filling the "rte_flow_error" string buffer. Same is the case when flow create fails due to an already existing mark id for the new flow id created. This leads to a crash in testpmd while trying to print t

[dpdk-dev] [PATCH 2/5] net/bnxt: remove unused enum declaration

2020-07-09 Thread Kalesh A P
From: Kalesh AP "enum bnxt_hw_context" is defined in the header file, but is not used anywhere. Fixes: 9738793f28ec ("net/bnxt: add VNIC functions and structs") Cc: sta...@dpdk.org Signed-off-by: Kalesh AP Reviewed-by: Ajit Kumar Khaparde --- drivers/net/bnxt/bnxt.h | 7 --- 1 file chang

[dpdk-dev] [PATCH v3 1/2] Fix build of apps with external dependencies

2020-07-09 Thread Felix Moessbauer
This fix initializes the dependency object with the external dependency list. Previously, the external dependencies were just ignored. Signed-off-by: Felix Moessbauer --- app/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/meson.build b/app/meson.build index 5

[dpdk-dev] [PATCH v3 0/2] Add l2reflect measurement application

2020-07-09 Thread Felix Moessbauer
Changes since v2: - add missing internal dependency - improve wording of commit message Changes since v1: - move to app folder, as suggested by maintainer - fix issues reported by checkpatch Felix Moessbauer (2): Fix build of apps with external dependencies Add l2reflect measurement applica

[dpdk-dev] [PATCH v3 2/2] Add l2reflect measurement application

2020-07-09 Thread Felix Moessbauer
The l2reflect application implements a ping-pong benchmark to measure the latency between two instances. For communication, we use raw ethernet and send one packet at a time. The timing data is collected locally and min/max/avg values are displayed in a TUI. Finally, a histogram of the latencies is

Re: [dpdk-dev] [PATCH v2] mbuf: use C11 atomics for refcnt operations

2020-07-09 Thread Phil Yang
> -Original Message- > From: Olivier Matz > Sent: Wednesday, July 8, 2020 7:43 PM > To: Phil Yang > Cc: Stephen Hemminger ; > david.march...@redhat.com; dev@dpdk.org; d...@linux.vnet.ibm.com; > Honnappa Nagarahalli ; Ruifeng Wang > ; nd > Subject: Re: [dpdk-dev] [PATCH v2] mbuf: use C11

Re: [dpdk-dev] [PATCH v2 4/6] net/i40e: replace restrict with rte restrict

2020-07-09 Thread David Marchand
On Wed, Jul 8, 2020 at 5:21 AM Joyce Kong wrote: > > > -Original Message- > > From: David Marchand > > Sent: Tuesday, July 7, 2020 10:00 PM > > To: Joyce Kong > > Cc: Maxime Coquelin ; jer...@marvell.com; > > Zhihong Wang ; Xiaolong Ye > > ; Beilei Xing ; Jeff Guo > > ; Mcnamara, John ;

Re: [dpdk-dev] [PATCH v2] mbuf: use C11 atomics for refcnt operations

2020-07-09 Thread Phil Yang
> -Original Message- > From: Olivier Matz > Sent: Wednesday, July 8, 2020 7:44 PM > To: Phil Yang > Cc: david.march...@redhat.com; dev@dpdk.org; d...@linux.vnet.ibm.com; > Honnappa Nagarahalli ; Ruifeng Wang > ; nd > Subject: Re: [PATCH v2] mbuf: use C11 atomics for refcnt operations >

[dpdk-dev] [PATCH v3] mbuf: use C11 atomic built-ins for refcnt operations

2020-07-09 Thread Phil Yang
Use C11 atomic built-ins with explicit ordering instead of rte_atomic ops which enforce unnecessary barriers on aarch64. Signed-off-by: Phil Yang Reviewed-by: Ruifeng Wang --- v3: 1.Fix ABI breakage. 2.Simplify data type cast. v2: Fix ABI issue: revert the rte_mbuf_ext_shared_info struct refcnt

Re: [dpdk-dev] [PATCH v5 4/4] net/qede: add support for get register operation

2020-07-09 Thread Jerin Jacob
On Thu, Jul 9, 2020 at 4:22 AM Rasesh Mody wrote: > > Add support for .get_reg eth_dev ops which will be used to collect the > firmware debug data. > > PMD on detecting on some HW errors will collect the FW/HW Dump to a > buffer and then it will save it to a file implemented in > qede_save_fw_dump

[dpdk-dev] DPDK Release Status Meeting 9/07/2020

2020-07-09 Thread Ferruh Yigit
Minutes 9 July 2020 --- Agenda: * Release Dates * Subtrees * LTS * OvS * Opens Participants: * Arm * Debian/Microsoft * Intel * Marvell * Nvidia * NXP * Red Hat Release Dates - * v20.08 dates: * -rc1 pushed to *Sunday, 12 July 2020* * -rc2: Monday,

Re: [dpdk-dev] [PATCH v3] eal: use c11 atomic built-ins for interrupt status

2020-07-09 Thread David Marchand
On Thu, Jul 9, 2020 at 10:35 AM Phil Yang wrote: > > The event status is defined as a volatile variable and shared between > threads. Use c11 atomic built-ins with explicit ordering instead of > rte_atomic ops which enforce unnecessary barriers on aarch64. > > The event status has been cleaned up

[dpdk-dev] [PATCH v2] build: C++ linkage support is added to rte_service_component.h file

2020-07-09 Thread levendsayar
From: Levend Sayar "extern C" define is added to rte_service_component.h file to be able to use in C++ context Signed-off-by: Levend Sayar Acked-by: Harry van Haaren --- lib/librte_eal/include/rte_service_component.h | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/librte_eal/

Re: [dpdk-dev] [PATCH] net/bonding: fix socket id check

2020-07-09 Thread Ferruh Yigit
On 6/16/2020 11:09 AM, Chas Williams wrote: > On 6/16/20 5:46 AM, David Marchand wrote: >> Caught by code review, rte_eth_dev_socket_id() returns -1 on error. >> The code should behave the same, but still, do not use LCORE_ID_ANY for >> something that is not a lcore id. >> >> Fixes: c15c5897340d (

[dpdk-dev] [PATCH 1/1] bus/fslmc: fix memory leak in secondary process

2020-07-09 Thread wangyunjian
From: Yunjian Wang In fslmc_process_mcp(), we allocate memory for 'dev_name' but not released before return in secondary process. Coverity issue: 268327 Fixes: e55d0494ab98 ("bus/fslmc: support secondary process") Cc: sta...@dpdk.org Signed-off-by: Yunjian Wang --- drivers/bus/fslmc/fslmc_vfi

[dpdk-dev] [PATCH v3 1/3] drivers/net/softnic: Remove the re-implementation of inet_pton

2020-07-09 Thread Ibtisam Tariq
inet_pton4 and inet_pton6 was reimplemented. Replace implementation of inet_pton4 and inet_pton6 with libc inet_pton function Bugzilla ID: 365 Fixes: 31ce8d888625 ("net/softnic: add command interface") Cc: jasvinder.si...@intel.com Reported-by: David Marchand Signed-off-by: Ibtisam Tariq --- v3

[dpdk-dev] [PATCH v3 3/3] examples/ipsec-secgw: Remove the re-implementation of inet_pton

2020-07-09 Thread Ibtisam Tariq
inet_pton4 and inet_pton6 was reimplemented. Replace implementation of inet_pton4 and inet_pton6 with libc inet_pton function Bugzilla ID: 365 Fixes: 0d547ed03717 ("examples/ipsec-secgw: support configuration file") Cc: roy.fan.zh...@intel.com Reported-by: David Marchand Signed-off-by: Ibtisam T

[dpdk-dev] [PATCH v3 2/3] examples/ip_pipeline: Remove the re-implementation of inet_pton

2020-07-09 Thread Ibtisam Tariq
inet_pton4 and inet_pton6 was reimplemented. Replacing implementation of inet_pton4 and inet_pton6 with libc inet_pton function Bugzilla ID: 365 Fixes: ed7a0490f7e2 ("examples/ip_pipeline: add string parsing helpers") Cc: piotrx.t.azarew...@intel.com Reported-by: David Marchand Signed-off-by: Ib

Re: [dpdk-dev] [PATCH v4 0/4] pmdinfogen: rewrite in Python

2020-07-09 Thread Neil Horman
On Thu, Jul 09, 2020 at 12:23:31AM +0300, Dmitry Kozlyuk wrote: > This patchset implements existing pmdinfogen logic in Python, replaces > and removes the old code. The goals of rewriting are: > > * easier maintenance by using a more high-level language, > * simpler build process without host appl

[dpdk-dev] [PATCH v7 0/2] ethdev: minor bugfixes

2020-07-09 Thread Wei Hu (Xavier)
This series are minor bugfixes for rte_ethdev.c. Wei Hu (Xavier) (2): ethdev: fix data room size verification in Rx queue setup ethdev: fix VLAN offloads set if no relative capabilities drivers/net/dpaa2/dpaa2_ethdev.c | 12 +++- drivers/net/enic/enic_ethdev.c |

[dpdk-dev] [PATCH v7 2/2] ethdev: fix VLAN offloads set if no relative capabilities

2020-07-09 Thread Wei Hu (Xavier)
Currently, there is a potential problem that calling the API function rte_eth_dev_set_vlan_offload to start VLAN hardware offloads which the driver does not support. If the PMD driver does not support certain VLAN hardware offloads and does not check for it, the hardware setting will not change, bu

[dpdk-dev] [PATCH v7 1/2] ethdev: fix data room size verification in Rx queue setup

2020-07-09 Thread Wei Hu (Xavier)
In the rte_eth_rx_queue_setup API function, the local variable named mbp_buf_size, which is the data room size of the input parameter mp, is checked to guarantee that each memory chunck used for net device in the mbuf is bigger than the min_rx_bufsize. But if mbp_buf_size is less than RTE_PKTMBUF_H

Re: [dpdk-dev] [PATCH v3 00/19] update ixgbe base code

2020-07-09 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Guinan Sun > Sent: Thursday, July 9, 2020 4:00 PM > To: dev@dpdk.org > Cc: Guo, Jia ; Zhao1, Wei ; Sun, > GuinanX > Subject: [dpdk-dev] [PATCH v3 00/19] update ixgbe base code > > source code of ixgbe driver: > not-released-cid-ixgbe.2020.

Re: [dpdk-dev] [PATCH v3] mbuf: use C11 atomic built-ins for refcnt operations

2020-07-09 Thread Olivier Matz
Hi Phil, On Thu, Jul 09, 2020 at 06:10:42PM +0800, Phil Yang wrote: > Use C11 atomic built-ins with explicit ordering instead of rte_atomic > ops which enforce unnecessary barriers on aarch64. > > Signed-off-by: Phil Yang > Reviewed-by: Ruifeng Wang > --- > v3: > 1.Fix ABI breakage. > 2.Simplif

Re: [dpdk-dev] [PATCH] net/ice: fix incomplete protocol header for PPPoE

2020-07-09 Thread Zhang, Qi Z
> -Original Message- > From: Su, Simei > Sent: Thursday, July 9, 2020 2:21 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Guo, Jia ; Su, Simei > > Subject: [PATCH] net/ice: fix incomplete protocol header for PPPoE > > When adding a RSS rule with pattern MAC_PPPOE_IPV4_UDP and input set > S

Re: [dpdk-dev] [PATCH v8 1/3] lib/lpm: integrate RCU QSBR

2020-07-09 Thread David Marchand
Hello Ruifeng, On Thu, Jul 9, 2020 at 10:03 AM Ruifeng Wang wrote: > diff --git a/lib/librte_lpm/rte_lpm.c b/lib/librte_lpm/rte_lpm.c > index 38ab512a4..4fbf5b6df 100644 > --- a/lib/librte_lpm/rte_lpm.c > +++ b/lib/librte_lpm/rte_lpm.c > @@ -1,5 +1,6 @@ > /* SPDX-License-Identifier: BSD-3-Clause

Re: [dpdk-dev] [PATCH] net/mlx5: add ConnectX-6 Lx's device ID

2020-07-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Ali Alnubani > Sent: Wednesday, July 8, 2020 12:14 PM > To: dev@dpdk.org > Cc: Raslan Darawsheh > Subject: [PATCH] net/mlx5: add ConnectX-6 Lx's device ID > > This adds the ConnectX-6 Lx device id to the list of supported > Mellanox devices that run the

Re: [dpdk-dev] [PATCH] common/mlx5: fix physical port name pattern recognition

2020-07-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Viacheslav Ovsiienko > Sent: Wednesday, July 8, 2020 11:52 PM > To: dev@dpdk.org > Cc: Matan Azrad ; Raslan Darawsheh > ; sta...@dpdk.org > Subject: [PATCH] common/mlx5: fix physical port name pattern recognition > > This patch makes the Infiniband device

Re: [dpdk-dev] [PATCH] doc: fix a typo in mlx5 guide

2020-07-09 Thread Raslan Darawsheh
Hi, > -Original Message- > From: dev On Behalf Of Ali Alnubani > Sent: Wednesday, July 8, 2020 12:13 PM > To: dev@dpdk.org > Cc: Alexander Kozyrev > Subject: [dpdk-dev] [PATCH] doc: fix a typo in mlx5 guide > > Fixes: ecb160456aed ("net/mlx5: add device parameter for MPRQ stride > size"

Re: [dpdk-dev] [PATCH] net/bnxt: fix build issue

2020-07-09 Thread Ferruh Yigit
On 7/9/2020 9:15 AM, David Marchand wrote: > In existing build env, RTE_LIBRTE_BNXT_PMD_SYSTEM is unset. > Testing against a n value does not work and we end up with a link issue: > > /usr/bin/ld: tf_core/tf_em_common.o: in function `tf_em_ext_common_alloc': > .../dpdk/drivers/net/bnxt/tf_core/tf_

Re: [dpdk-dev] [PATCH 20.08] crypto/scheduler: use ring peek API

2020-07-09 Thread Zhang, Roy Fan
> -Original Message- > From: Ananyev, Konstantin > Sent: Friday, May 22, 2020 12:58 PM > To: dev@dpdk.org > Cc: Zhang, Roy Fan ; Ananyev, Konstantin > > Subject: [PATCH 20.08] crypto/scheduler: use ring peek API > > scheduler PMD uses its own hand-made peek functions > that directly a

Re: [dpdk-dev] [PATCH 2/5] net/mlx5: add flow translation of eCPRI header

2020-07-09 Thread Thomas Monjalon
08/07/2020 16:43, Bing Zhao: > In the translation stage, the eCPRI item should be translated into > the format that lower layer driver could use. All the fields that > need to matched must be in network byte order after translation, as > well as the mask. Since the header in the item belongs to the

Re: [dpdk-dev] [PATCH v2 6/6] examples/flow_filtering: utilize shared RSS action

2020-07-09 Thread Andrey Vesnovaty
Hi, Jerin and Ferruh First of all it's decided to postpone this effort to 20.11. @jer...@marvell.com I sincerely believe we can work out great API for - shared action, context - action update / modification / replacement after 20.08 without time pressure & stress. I'm fully committed and will co

Re: [dpdk-dev] [PATCH v5 1/2] mbuf: introduce accurate packet Tx scheduling

2020-07-09 Thread Thomas Monjalon
08/07/2020 17:47, Viacheslav Ovsiienko: > There is the requirement on some networks for precise traffic timing > management. The ability to send (and, generally speaking, receive) > the packets at the very precisely specified moment of time provides > the opportunity to support the connections with

[dpdk-dev] [PATCH v3] service: support C++ linkage

2020-07-09 Thread levendsayar
From: Levend Sayar "extern C" define is added to rte_service_component.h file to be able to use in C++ context Signed-off-by: Levend Sayar Acked-by: Harry van Haaren --- lib/librte_eal/include/rte_service_component.h | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/librte_eal/

[dpdk-dev] [PATCH v6 2/2] app/testpmd: add send scheduling test capability

2020-07-09 Thread Viacheslav Ovsiienko
This commit adds testpmd capability to provide timestamps on the packets being sent in the txonly mode. This includes: - SEND_ON_TIMESTAMP support new device Tx offload capability support added, example: testpmd> port config 0 tx_offload send_on_timestamp on - set txtimes, registers fi

Re: [dpdk-dev] [PATCH v2 6/6] examples/flow_filtering: utilize shared RSS action

2020-07-09 Thread Thomas Monjalon
09/07/2020 14:25, Andrey Vesnovaty: > Hi, Jerin and Ferruh > > First of all it's decided to postpone this effort to 20.11. > @jer...@marvell.com I sincerely believe we can work out great API for > - shared action, context > - action update / modification / replacement > after 20.08 without time p

[dpdk-dev] [PATCH v6 1/2] mbuf: introduce accurate packet Tx scheduling

2020-07-09 Thread Viacheslav Ovsiienko
There is the requirement on some networks for precise traffic timing management. The ability to send (and, generally speaking, receive) the packets at the very precisely specified moment of time provides the opportunity to support the connections with Time Division Multiplexing using the contempora

Re: [dpdk-dev] [PATCH v3] mbuf: use C11 atomic built-ins for refcnt operations

2020-07-09 Thread Phil Yang
Hi Oliver, > -Original Message- > From: Olivier Matz > Sent: Thursday, July 9, 2020 7:04 PM > To: Phil Yang > Cc: dev@dpdk.org; step...@networkplumber.org; > david.march...@redhat.com; d...@linux.vnet.ibm.com; Honnappa > Nagarahalli ; Ruifeng Wang > ; nd > Subject: Re: [PATCH v3] mbuf:

Re: [dpdk-dev] [EXT] RE: [PATCH 6/6] app/test-eventdev: fix eventdev queues

2020-07-09 Thread Apeksha Gupta
> -Original Message- > From: Pavan Nikhilesh Bhagavatula > Sent: Thursday, July 2, 2020 8:57 AM > To: Apeksha Gupta ; > jerin.ja...@caviumnetworks.com > Cc: dev@dpdk.org; tho...@monjalon.net; Hemant Agrawal > ; Nipun Gupta ; Akhil > Goyal ; sta...@dpdk.org > Subject: [EXT] RE: [dpdk-dev

[dpdk-dev] [PATCH v1 0/1] modify ETIME errors for FreeBSD

2020-07-09 Thread Xiaoyun wang
Change ETIME to ETIMEDOUT, because ETIME is not defined in FreeBSD which may cause build error. -- v1: - modify ETIME errors for FreeBSD Xiaoyun wang (1): net/hinic/base: modify ETIME errors for FreeBSD drivers/net/hinic/base/hinic_pmd_hwdev.c | 2 +- drivers/net/hinic/base/hinic_pmd_hwif.

[dpdk-dev] [PATCH v1 1/1] net/hinic/base: modify ETIME errors for FreeBSD

2020-07-09 Thread Xiaoyun wang
Change ETIME errors to ETIMEDOUT, because ETIME is not defined in FreeBSD which may cause build error. Signed-off-by: Xiaoyun wang --- drivers/net/hinic/base/hinic_pmd_hwdev.c | 2 +- drivers/net/hinic/base/hinic_pmd_hwif.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git

Re: [dpdk-dev] [PATCH v3] service: support C++ linkage

2020-07-09 Thread Thomas Monjalon
09/07/2020 14:32, levendsa...@gmail.com: > From: Levend Sayar > > "extern C" define is added to rte_service_component.h file > to be able to use in C++ context It is a bug. The title should be "service: fix C++ linkage" And these tags must be added: Fixes: 21698354c832 ("service: introduce servi

  1   2   >