[dpdk-dev] [PATCH 00/18] bnxt PMD fixes

2022-01-04 Thread Kalesh A P
From: Kalesh AP This series contains bnxt PMD bug fixes. Please apply. Ajit Khaparde (4): net/bnxt: fix ring teardown net/bnxt: fix PAM4 mask setting net/bnxt: fix pointer access net/bnxt: check VF rep pointer before access Kalesh AP (13): net/bnxt: fix bnxt_dev_set_mc_addr_list_op

[dpdk-dev] [PATCH 01/18] net/bnxt: fix bnxt_dev_set_mc_addr_list_op

2022-01-04 Thread Kalesh A P
From: Kalesh AP Fix to cache the multicast mac addresses added to the port to the driver private structure memory. Use this cached mc list to program the FW. This fixes an issue where multicast packets reception is successful only if the multicast mac address of the packets is the first one in t

[dpdk-dev] [PATCH 02/18] net/bnxt: fix to restore mcast macs during reset recovery

2022-01-04 Thread Kalesh A P
From: Kalesh AP During reset recovery, driver is not restoring the multicast mac addresses. Added code to restore them during reset recovery. Fixes: b02f1573cd07 ("net/bnxt: restore MAC filters during reset recovery") Cc: sta...@dpdk.org Signed-off-by: Kalesh AP Reviewed-by: Ajit Khaparde Rev

[dpdk-dev] [PATCH 03/18] net/bnxt: fix queue stop operation

2022-01-04 Thread Kalesh A P
From: Kalesh AP When there are no active Rx queues(i.e when all queues have been stopped), clear the RSS redirection table of the VNIC on Thor. Fixes: 9b63c6fd70e3 ("net/bnxt: support Rx/Tx queue start/stop") Cc: sta...@dpdk.org Signed-off-by: Kalesh AP Reviewed-by: Ajit Khaparde Reviewed-by:

[dpdk-dev] [PATCH 04/18] net/bnxt: restore RSS configuration after reset recovery

2022-01-04 Thread Kalesh A P
From: Kalesh AP During reset recovery, driver is not restoring the VNIC rss hash key. It's generating a new random hash key which results in unexpected RSS behavior after recovery. Fixed this by storing the VNIC rss configuration to a local struct and then applying the cached value during the rec

[dpdk-dev] [PATCH 05/18] net/bnxt: fix restoring VLAN filtering after recovery

2022-01-04 Thread Kalesh A P
From: Kalesh AP During port start, driver calls bnxt_vlan_offload_set_op() to program VLAN Filter/VLAN Strip setting to the HW. This in turns add the vlan filters. This results in a failure when bnxt_restore_filters() invokes bnxt_restore_vlan_filters() during the recovery as the vlans are alrea

[dpdk-dev] [PATCH 06/18] net/bnxt: fix to cap max number of unicast MACs

2022-01-04 Thread Kalesh A P
From: Kalesh AP The Maximum number of receive mac addr is hard coded to 128 in the ethdev library(RTE_ETH_NUM_RECEIVE_MAC_ADDR). But the bnxt devices support more than 128 unicast MAC filters which could result in a segfault while user tries to add more than 128 unicast MAC addresses to the port.

[dpdk-dev] [PATCH 07/18] net/bnxt: set fast-path pointers only if recovery succeeds

2022-01-04 Thread Kalesh A P
From: Kalesh AP During reset recovery, fixed to set the fast-path pointers only if recovery succeeds. Fixes: 720b55ad278e ("net/bnxt: fix crash caused by error recovery") Cc: sta...@dpdk.org Signed-off-by: Kalesh AP Reviewed-by: Ajit Khaparde Reviewed-by: Somnath Kotur --- drivers/net/bnxt/

[dpdk-dev] [PATCH 08/18] net/bnxt: improve recovery related log messages

2022-01-04 Thread Kalesh A P
From: Kalesh AP Make these messages more specific. Signed-off-by: Kalesh AP Reviewed-by: Ajit Khaparde Reviewed-by: Somnath Kotur --- drivers/net/bnxt/bnxt_ethdev.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/net/bnxt/bnxt_ethdev.c b/drivers/net/bnxt/bnx

[dpdk-dev] [PATCH 09/18] net/bnxt: add null check for mark table

2022-01-04 Thread Kalesh A P
From: Kalesh AP During the port start, driver ignores mark table allocation failure. This could cause a segfault due to NULL pointer dereference in bnxt_set_mark_in_mbuf(). Fix this by checking the pointer validity before accessing it. Fixes: b87abb2e55cb ("net/bnxt: support marking packet") Cc:

[dpdk-dev] [PATCH 10/18] net/bnxt: fix flow create when RSS is disabled

2022-01-04 Thread Kalesh A P
From: Kalesh AP This patch reverts the commit "5d47d06b2c83". Revert this commit as it caused a regression on legacy chips. On newer chips we use TruFlow based flow creation instead of HWRM based flow creation. Fixes: 5d47d06b2c83 ("net/bnxt: modify VNIC accounting") Cc: sta...@dpdk.org Signed-

[dpdk-dev] [PATCH 11/18] net/bnxt: get max supported multicast filters count

2022-01-04 Thread Kalesh A P
From: Kalesh AP The HWRM_FUNC_QCAPS response indicates the maximum number of multicast filters that can be supported by this function on the RX side. Fixed to use this value instead of the hard coded value 16. Fixes: d69851df12b2 ("net/bnxt: support multicast filter and set MAC addr") Cc: sta..

[dpdk-dev] [PATCH 12/18] net/bnxt: refactor bnxt_stop_rxtx() for reuse

2022-01-04 Thread Kalesh A P
From: Somnath Kotur By accepting rte_eth_dev as input, bnxt_stop_rxtx() can be used in multiple scenarios such as representor devices. Signed-off-by: Somnath Kotur Reviewed-by: Ajit Khaparde Reviewed-by: Kalesh AP --- drivers/net/bnxt/bnxt_cpr.c| 16 drivers/net/bnxt/bnx

[dpdk-dev] [PATCH 13/18] net/bnxt: fix handling of VF configuration changes

2022-01-04 Thread Kalesh A P
From: Kalesh AP When there is a change in the default VLAN of the VF, FW sends the VF_CFG_CHANGE async event to the driver. Upon receiving this async event, driver currently only queries the FW using HWRM_FUNC_QCFG. But this is not enough. Driver has to clean up the existing filter and recreate

[dpdk-dev] [PATCH 14/18] net/bnxt: fix ring teardown

2022-01-04 Thread Kalesh A P
From: Ajit Khaparde Check for valid bit while scanning for hwrm_done completion during ring teardown. Not checking the valid bit could cause a ring overflow when we ring the doorbell. Fixes: 4fb6ab3f866d ("net/bnxt: check flush status during ring free") Cc: sta...@dpdk.org Signed-off-by: Ajit K

[dpdk-dev] [PATCH 15/18] net/bnxt: fix PAM4 mask setting

2022-01-04 Thread Kalesh A P
From: Ajit Khaparde Set the PAM4 mask setting only when PAM4 signaling is enabled. Setting it otherwise seems to result in link negotiation. Also auto_pam4_link_speeds has been renamed to auto_pam4_link_speed_mask to reflect its real usage. Fixes: c23f9ded0391 ("net/bnxt: support 200G PAM4 link"

[dpdk-dev] [PATCH 16/18] net/bnxt: fix pointer access

2022-01-04 Thread Kalesh A P
From: Ajit Khaparde Validate the pointers in rxq before accessing them. Otherwise it can cause a segfault. Fixes: 657c2a7f1dd4 ("net/bnxt: create aggregation rings when needed") Cc: sta...@dpdk.org Signed-off-by: Ajit Khaparde Reviewed-by: Kalesh AP Reviewed-by: Somnath Kotur --- drivers/ne

[dpdk-dev] [PATCH 17/18] net/bnxt: fix incorrect memset in bnxt_dev_xstats_get_op

2022-01-04 Thread Kalesh A P
From: Kalesh AP In bnxt_dev_xstats_get_op(), the PMD is not zeroing the whole buffer supplied by the application. This can end up passing junk statistics values to the application when the FW does not support extended stats on a function. Fixed to call memset() with corrrect size. Fixes: f55e12f

[dpdk-dev] [PATCH 18/18] net/bnxt: check VF rep pointer before access

2022-01-04 Thread Kalesh A P
From: Ajit Khaparde The PF or trusted VF Rx handler could invoke the VF representor's Rx function without knowledge of the application cleaning up the representor ports. Check if the vfr_bp pointer is valid before accessing it. Fixes: 6dc83230b43b ("net/bnxt: support port representor data path")

RE: [PATCH] net/ice: fix error forwarding IPv6 VXLAN packet

2022-01-04 Thread Liu, KevinX
> -Original Message- > From: Zhang, Qi Z > Sent: 2022年1月2日 16:46 > To: Liu, KevinX ; dev@dpdk.org > Cc: Zhang, RobinX ; Wang, Jie1X > ; Liu, KevinX > Subject: RE: [PATCH] net/ice: fix error forwarding IPv6 VXLAN packet > > > > > -Original Message- > > From: Kevin Liu > > Se

[PATCH v2] net/ice: fix Tx Checksum offload

2022-01-04 Thread Kevin Liu
The tunnel packets is missing some information after Tx forwarding. In ice_txd_enable_offload, when set tunnel packet Tx checksum offload enable, td_offset should be set with outer l2/l3 len instead of inner l2/l3 len. In ice_txd_enable_checksum, td_offset should also be set with outer l3 len. T

RE: [dpdk-dev] [PATCH v5 2/2] hash: unify crc32 selection for x86 and Arm

2022-01-04 Thread Ruifeng Wang
> -Original Message- > From: pbhagavat...@marvell.com > Sent: Friday, November 5, 2021 6:11 PM > To: Ruifeng Wang ; david.march...@redhat.com; > jer...@marvell.com; Yipeng Wang ; Sameh > Gobriel ; Bruce Richardson > ; Vladimir Medvedkin > > Cc: dev@dpdk.org; Pavan Nikhilesh > Subject: [d

[PATCH] vdpa/sfc: make MCDI memzone name unique

2022-01-04 Thread abhimanyu.saini
From: Abhimanyu Saini Buffer for MCDI channel is allocated using rte_memzone_reserve_aligned with zone name 'mcdi'. Since multiple MCDI channels are needed to support multiple VF(s) and rte_memzone_reserve_aligned expects unique zone names, append PCI address to zone name to make it unique. Sign

[PATCH v3] app/eventdev: add crypto producer mode

2022-01-04 Thread Shijith Thotton
In crypto producer mode, producer core enqueues cryptodev with software generated crypto ops and worker core dequeues crypto completion events from the eventdev. Event crypto metadata used for above processing is pre-populated in each crypto session. Parameter --prod_type_cryptodev can be used to

Re: 19.11.11 (RC2) patches review and test

2022-01-04 Thread Christian Ehrhardt
Done my own testing as well, for the logs; Canonical(R) Testing * Build tests of DPDK & OVS 2.13.3 on Ubuntu 20.04 (meson based) * Functional and performance tests based on OVS-DPDK on x86_64 * Autopkgtests for DPDK and OpenvSwitch The former other use case of 19.11 was Ubuntu 20.10 but

[Bug 900] [19.11.11-rc1] net/nfp build failure with clang 13

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=900 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added CC||christian.e

[PATCH v2 1/2] eventdev/crypto_adapter: move crypto ops to circular buffer

2022-01-04 Thread Ganapati Kundapura
Move crypto ops to circular buffer to retain crypto ops when cryptodev/eventdev are temporarily full --- v2: * reset cryptp adapter next cdev id before dequeueing from the next cdev --- Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_event_crypto_adapter.c b/lib/eventdev/rte_

[PATCH v2 2/2] eventdev: update crypto caps get to return SW cap

2022-01-04 Thread Ganapati Kundapura
update rte_event_crypto_adapter_caps_get() to return SW_CAP if PMD callback is not registered. Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_eventdev.c b/lib/eventdev/rte_eventdev.c index 79b9ea3..6988bf1 100644 --- a/lib/eventdev/rte_eventdev.c +++ b/lib/eventdev/rte_eventdev.

[PATCH v2 2/2] eventdev: update crypto caps get to return SW cap

2022-01-04 Thread Ganapati Kundapura
update rte_event_crypto_adapter_caps_get() to return SW_CAP if PMD callback is not registered. Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_eventdev.c b/lib/eventdev/rte_eventdev.c index 79b9ea3..6988bf1 100644 --- a/lib/eventdev/rte_eventdev.c +++ b/lib/eventdev/rte_eventdev.

[PATCH v2 1/2] eventdev/crypto_adapter: move crypto ops to circular buffer

2022-01-04 Thread Ganapati Kundapura
Move crypto ops to circular buffer to retain crypto ops when cryptodev/eventdev are temporarily full --- v2: * reset cryptp adapter next cdev id before dequeueing from the next cdev --- Signed-off-by: Ganapati Kundapura diff --git a/lib/eventdev/rte_event_crypto_adapter.c b/lib/eventdev/rte_

Re: Understanding Flow API action RSS

2022-01-04 Thread Thomas Monjalon
+Cc Ori Kam, rte_flow maintainer 29/12/2021 15:34, Ivan Malov: > Hi all, > > In 'rte_flow.h', there is 'struct rte_flow_action_rss'. In it, 'queue' is > to provide "Queue indices to use". But it is unclear whether the order of > elements is meaningful or not. Does that matter? Can queue indices

Re: [PATCH v2] gpudev: pin GPU memory

2022-01-04 Thread Thomas Monjalon
04/01/2022 03:41, eagost...@nvidia.com: > From: Elena Agostini > > Enable the possibility to make a GPU memory area accessible from > the CPU. > > GPU memory has to be allocated via rte_gpu_mem_alloc(). > > This patch allows the gpudev library to pin, through the GPU driver, > a chunk of GPU me

Re: [PATCH v2] gpudev: pin GPU memory

2022-01-04 Thread Elena Agostini
> 04/01/2022 03:41, eagost...@nvidia.com: > > From: Elena Agostini > > > > Enable the possibility to make a GPU memory area accessible from > > the CPU. > > > > GPU memory has to be allocated via rte_gpu_mem_alloc(). > > > > This patch allows the gpudev library to pin, through the GPU driver, > >

[Bug 901] [19.11.11-rc1] net/i40e build failure with make and clang 13

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=901 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Resolution|--- |FIXED

[Bug 902] [19.11.11-rc1] net/ice build failure with make and clang 13

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=902 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED

[Bug 903] [19.11.11-rc1] net/ixgbe build failure with make and clang 13

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=903 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED

[Bug 904] [dpdk-19.11.11] Meson build has some failures on Fedora35 with clang 13.0.0

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=904 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Resolution|--- |FIXED

dev@dpdk.org

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=905 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED

[Bug 908] [19.11] build failure -Werror=stringop-overflow in Ubuntu 21.04

2022-01-04 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=908 Christian Ehrhardt (christian.ehrha...@canonical.com) changed: What|Removed |Added Status|IN_PROGRESS |RESOLVED

Re: [PATCH 1/7] vhost: improve IOTLB logs

2022-01-04 Thread David Marchand
On Thu, Dec 23, 2021 at 9:37 AM Maxime Coquelin wrote: > > This patch adds IOTLB mempool name when logging debug > or error messages, and also prepends the socket path. > to all the logs. > > Signed-off-by: Maxime Coquelin > --- > lib/vhost/iotlb.c | 26 +++--- > lib/vho

Re: [PATCH 3/7] vhost: improve socket layer logs

2022-01-04 Thread David Marchand
On Thu, Dec 23, 2021 at 9:37 AM Maxime Coquelin wrote: > > This patch adds the Vhost socket path whenever possible in > order to make debugging possible when multiple Vhost > devices are in use. This patch could go after patch 5 so that we have a dev->ifname available instead of fd. > > Signed-

Re: [PATCH 4/7] vhost: improve Vhost layer logs

2022-01-04 Thread David Marchand
On Thu, Dec 23, 2021 at 9:37 AM Maxime Coquelin wrote: > > This patch prepends Vhost logs with the Vhost-user socket > patch when available to ease filtering logs for a given port. > > Signed-off-by: Maxime Coquelin > --- > lib/vhost/vhost.c | 104 +++--- >

Re: [PATCH 3/7] vhost: improve socket layer logs

2022-01-04 Thread David Marchand
On Thu, Dec 23, 2021 at 9:37 AM Maxime Coquelin wrote: > @@ -471,16 +468,14 @@ vhost_user_client_reconnect(void *arg __rte_unused) > sizeof(reconn->un)); > if (ret == -2) { > close(reconn->fd);

Re: [PATCH 0/7] vhost: improve logging

2022-01-04 Thread David Marchand
On Thu, Dec 23, 2021 at 9:37 AM Maxime Coquelin wrote: > > This series aims at easing Vhost logs analysis, by > prepending the Vhost-user socket path to all logs and to > remove multi-line comments. Doing so, filtering Vhost-user > ports logs is much easier. > > Maxime Coquelin (7): > vhost: imp

RE: [PATCH v4 1/2] net: add functions to calculate UDP/TCP cksum in mbuf

2022-01-04 Thread Li, Xiaoyun
Hi > -Original Message- > From: Singh, Aman Deep > Sent: Wednesday, December 15, 2021 11:34 > To: Li, Xiaoyun ; Yigit, Ferruh > ; olivier.m...@6wind.com; > m...@smartsharesystems.com; Ananyev, Konstantin > ; step...@networkplumber.org; > Medvedkin, Vladimir > Cc: dev@dpdk.org > Subject:

Re: [PATCH v2] app/eventdev: add crypto producer mode

2022-01-04 Thread Aaron Conole
Shijith Thotton writes: >>> >> >>> >> In crypto producer mode, producer core enqueues cryptodev with >>> >> software generated crypto ops and worker core dequeues crypto >>> >> completion events from the eventdev. Event crypto metadata used for >>> >> above processing is pre- populated in each cr

RE: [PATCH v4 1/2] net: add functions to calculate UDP/TCP cksum in mbuf

2022-01-04 Thread Li, Xiaoyun
Hi > -Original Message- > From: Li, Xiaoyun > Sent: Tuesday, January 4, 2022 15:19 > To: Singh, Aman Deep ; Yigit, Ferruh > ; olivier.m...@6wind.com; > m...@smartsharesystems.com; Ananyev, Konstantin > ; step...@networkplumber.org; > Medvedkin, Vladimir > Cc: dev@dpdk.org > Subject: RE:

RE: [EXT] Re: [PATCH v2] app/eventdev: add crypto producer mode

2022-01-04 Thread Shijith Thotton
>> >> In crypto producer mode, producer core enqueues cryptodev with >> software generated crypto ops and worker core dequeues crypto >> completion events from the eventdev. Event crypto metadata used for >> above processing is pre- populated in each crypto session. >>

Re: Understanding Flow API action RSS

2022-01-04 Thread Stephen Hemminger
On Tue, 04 Jan 2022 13:41:55 +0100 Thomas Monjalon wrote: > +Cc Ori Kam, rte_flow maintainer > > 29/12/2021 15:34, Ivan Malov: > > Hi all, > > > > In 'rte_flow.h', there is 'struct rte_flow_action_rss'. In it, 'queue' is > > to provide "Queue indices to use". But it is unclear whether the order

Re: [PATCH] dma/idxd: fix burst capacity calculation

2022-01-04 Thread Kevin Laatz
On 20/12/2021 17:05, Bruce Richardson wrote: When the maximum burst size supported by HW is less than the available ring space, incorrect capacity was returned when there was already some jobs queued up for submission. This was because the capacity calculation failed to subtract the number of a

RE: [PATCH v2] gpudev: pin GPU memory

2022-01-04 Thread John Alexander
What happens when the Nvidia GPU driver kernel callback occurs to invalidate the pinned GPU memory region? Doesn't the NIC need to cease all DMA transfers to/from that region before the kernel callback can complete? From: Elena Agostini Sent: 04 January 2022 13:55 To: NBU-Contact-Thomas Monjal

Re: [PATCH v2] gpudev: pin GPU memory

2022-01-04 Thread Elena Agostini
This specific feature is not about NIC activity, it’s about make GPU memory visible and accessible to the CPU so there isn’t an asynchronous hidden invalidation procedure. That’s the reason for my comment to change the name from rte_gpu_mem_pin() to rte_gpu_mem_to_cpu() (or similar). The scenar

Re: Understanding Flow API action RSS

2022-01-04 Thread Ivan Malov
Hi Stephen, On Tue, 4 Jan 2022, Stephen Hemminger wrote: On Tue, 04 Jan 2022 13:41:55 +0100 Thomas Monjalon wrote: +Cc Ori Kam, rte_flow maintainer 29/12/2021 15:34, Ivan Malov: Hi all, In 'rte_flow.h', there is 'struct rte_flow_action_rss'. In it, 'queue' is to provide "Queue indices to

Re: Understanding Flow API action RSS

2022-01-04 Thread Stephen Hemminger
On Tue, 4 Jan 2022 21:29:14 +0300 (MSK) Ivan Malov wrote: > Hi Stephen, > > On Tue, 4 Jan 2022, Stephen Hemminger wrote: > > > On Tue, 04 Jan 2022 13:41:55 +0100 > > Thomas Monjalon wrote: > > > >> +Cc Ori Kam, rte_flow maintainer > >> > >> 29/12/2021 15:34, Ivan Malov: > >>> Hi all, > >>>

RE: [PATCH] dma/idxd: fix burst capacity calculation

2022-01-04 Thread Hu, Jiayu
Tested-by: Jiayu Hu > -Original Message- > From: Kevin Laatz > Sent: Wednesday, January 5, 2022 1:17 AM > To: Richardson, Bruce ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: Re: [PATCH] dma/idxd: fix burst capacity calculation > > > On 20/12/2021 17:05, Bruce Richardson wrote: > > Wh