[PATCH 00/10] add hairpin queue support

2023-04-21 Thread beilei . xing
From: Beilei Xing This patchset adds hairpin queue support. It depends on the following two patch set: https://patches.dpdk.org/project/dpdk/cover/20230406074245.82991-1-beilei.x...@intel.com/ https://patches.dpdk.org/project/dpdk/cover/20230413094502.1714755-1-wenjing.q...@intel.com/ Beilei Xin

[PATCH 01/10] net/cpfl: refine structures

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch refines some structures to support hairpin queue, cpfl_rx_queue/cpfl_tx_queue/cpfl_vport. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 85 +++- drivers/net/cpfl/cpfl_ethdev.h | 6 +- driver

[PATCH 02/10] net/cpfl: support hairpin queue capbility get

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch adds hairpin_cap_get ops support. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 13 + drivers/net/cpfl/cpfl_rxtx.h | 4 2 files changed, 17 insertions(+) diff --git a/drive

[PATCH 03/10] common/idpf: support queue groups add/delete

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch adds queue group add/delete virtual channel support. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 66 ++ drivers/common/idpf/idpf_common_virtchnl.h | 9 +++ drivers/common/idpf/version.

[PATCH 04/10] net/cpfl: add haipin queue group during vpotr init

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch adds haipin queue group during vpotr init. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 125 + drivers/net/cpfl/cpfl_ethdev.h | 17 + drivers/net/cpfl/cpfl_rxtx.h | 4 ++ 3 file

[PATCH 05/10] net/cpfl: support hairpin queue setup and release

2023-04-21 Thread beilei . xing
From: Beilei Xing Support hairpin Rx/Tx queue setup and release. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 6 + drivers/net/cpfl/cpfl_ethdev.h | 10 + drivers/net/cpfl/cpfl_rxtx.c| 373

[PATCH 06/10] net/cpfl: support hairpin queue configuration

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch supports Rx/Tx hairpin queue configuration. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 70 +++ drivers/common/idpf/idpf_common_virtchnl.h | 6 + drivers/common/idpf/ve

[PATCH 07/10] net/cpfl: support hairpin queue start/stop

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch supports Rx/Tx hairpin queue start/stop. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 2 +- drivers/common/idpf/idpf_common_virtchnl.h | 3 + drivers/common/idpf/version.map

[PATCH 08/10] net/cpfl: enable write back based on ITR expire

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch enabls write back based on ITR expire (WR_ON_ITR) for hairpin queue. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_device.c | 75 drivers/common/idpf/idpf_common_device.h | 4 ++ drivers/common/

[PATCH 09/10] net/cpfl: support peer ports get

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch supports get hairpin peer ports. Signed-off-by: Xiao Wang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 34 ++ 1 file changed, 34 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_e

[PATCH 10/10] net/cpfl: support hairpin bind/unbind

2023-04-21 Thread beilei . xing
From: Beilei Xing This patch supports hairpin_bind/unbind ops. Signed-off-by: Xiao Wang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 137 + drivers/net/cpfl/cpfl_rxtx.c | 28 +++ drivers/net/cpfl/cpfl_rxtx.h | 2 + 3 files changed,

[PATCH v2 0/7] update idpf and cpfl timestamp

2023-04-21 Thread Wenjing Qiao
Add timestamp offload feature support for ACC. Using alarm to save main time to solve timestamp roll over issue. Ajust timestamp mbuf registering at dev start. Wenjing Qiao (7): common/idpf: fix 64b timestamp roll over issue net/idpf: save main time by alarm net/cpfl: save main time by alarm

[PATCH v2 2/7] net/idpf: save main time by alarm

2023-04-21 Thread Wenjing Qiao
Using alarm to save main time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/net/idpf/idpf_ethdev.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/idpf/idpf_ethdev

[PATCH v2 1/7] common/idpf: fix 64b timestamp roll over issue

2023-04-21 Thread Wenjing Qiao
Reading MTS register at first packet will cause timestamp roll over issue. To support caculating 64b timestamp, need an alarm to save master time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/c

[PATCH v2 3/7] net/cpfl: save main time by alarm

2023-04-21 Thread Wenjing Qiao
Using alarm to save main time from registers every 1 second. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao --- drivers/net/cpfl/cpfl_ethdev.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev

[PATCH v2 4/7] common/idpf: support timestamp offload feature for ACC

2023-04-21 Thread Wenjing Qiao
For ACC, getting main time from MTS registers by shared memory. Notice: it is a workaround, and it will be removed after generic solution are provided. Signed-off-by: Wenjing Qiao --- config/meson.build | 3 ++ drivers/common/idpf/base/idpf_osdep.h | 48 +++

[PATCH v2 5/7] common/idpf: add timestamp enable flag for rxq

2023-04-21 Thread Wenjing Qiao
A rxq can be configured with timestamp offload. So, add timestamp enable flag for rxq. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/common/idpf/idpf_common_rxtx.c | 3 ++- drivers/common/idpf/idpf

[PATCH v2 6/7] net/cpfl: register timestamp mbuf when starting dev

2023-04-21 Thread Wenjing Qiao
Due to only support timestamp at port level, registering timestamp mbuf should be at dev start stage. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/net/cpfl/cpfl_ethdev.c | 7 +++ drivers/net/c

[PATCH v2 7/7] net/idpf: register timestamp mbuf when starting dev

2023-04-21 Thread Wenjing Qiao
Due to only support timestamp at port level, registering timestamp mbuf should be at dev start stage. Fixes: 8c6098afa075 ("common/idpf: add Rx/Tx data path") Cc: sta...@dpdk.org Signed-off-by: Wenjing Qiao Suggested-by: Jingjing Wu --- drivers/net/idpf/idpf_ethdev.c | 7 +++ drivers/net/i

Re: [PATCH v5] enhance NUMA affinity heuristic

2023-04-21 Thread Thomas Monjalon
21/04/2023 04:34, You, KaisenX: > From: Thomas Monjalon > > 13/04/2023 02:56, You, KaisenX: > > > From: You, KaisenX > > > > From: Thomas Monjalon > > > > > > > > > > I'm not comfortable with this patch. > > > > > > > > > > First, there is no comment in the code which helps to understand the > >

[PATCH] net/idpf: refine devargs parse functions

2023-04-21 Thread Mingxia Liu
This patch refines devargs parsing functions and use valid variable max_vport_nb to replace IDPF_MAX_VPORT_NUM. Signed-off-by: Mingxia Liu --- drivers/net/idpf/idpf_ethdev.c | 61 +- 1 file changed, 30 insertions(+), 31 deletions(-) diff --git a/drivers/net/idpf/

Re: [PATCH] usertools: enhance CPU layout

2023-04-21 Thread Thomas Monjalon
21/04/2023 03:47, Lu, Wenzhuo: > Hi Stephen, > > From: Stephen Hemminger > > On Tue, 18 Apr 2023 13:25:41 +0800 > > Wenzhuo Lu wrote: > > > > > The cores in a single CPU may be not all the same. > > > The user tool is updated to show the > > > difference of the cores. > > > > > > This patch add

Re: [RFC] lib: set/get max memzone segments

2023-04-21 Thread Thomas Monjalon
20/04/2023 20:20, Tyler Retzlaff: > On Thu, Apr 20, 2023 at 09:43:28AM +0200, Thomas Monjalon wrote: > > 19/04/2023 16:51, Tyler Retzlaff: > > > On Wed, Apr 19, 2023 at 11:36:34AM +0300, Ophir Munk wrote: > > > > In current DPDK the RTE_MAX_MEMZONE definition is unconditionally hard > > > > coded a

[Bug 1218] memif zeor-copy mode mbuf->refcnt error

2023-04-21 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1218 Bug ID: 1218 Summary: memif zeor-copy mode mbuf->refcnt error Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: normal

[PATCH v2 00/15] update idpf shared code

2023-04-21 Thread Wenjing Qiao
This patch set updates idpf shared code. Wenjing Qiao (15): common/idpf: remove virtchnl related shared code common/idpf: fix ctlq message send and receive common/idpf: fix ITR register definitions for AVF common/idpf: remove qregion struct variables common/idpf: move OEM capability to t

[PATCH v2 01/15] common/idpf: remove virtchnl related shared code

2023-04-21 Thread Wenjing Qiao
Since virtchnl related shared code of iavf and idpf has the same sourse, so remove virtual related shared code of idpf. Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/virtchnl.h | 2866 - .../common/idpf/base/virtchnl_inline_ipsec.h | 567 drivers/commo

[PATCH v2 02/15] common/idpf: fix ctlq message send and receive

2023-04-21 Thread Wenjing Qiao
Fixes the ctlq send and receive functions to not cast the cookie field to a u64 before programming. By doing a cast, it can cause endianness issues as LE will swap the lower 32 and higher 32 bits whereas BE will not. By treating this field as two 32 bit values, both BE and LE will place the retval

[PATCH v2 03/15] common/idpf: fix ITR register definitions for AVF

2023-04-21 Thread Wenjing Qiao
Fix ITR register definitions for AVF1.0 and AVF2.0 Fixes: fb4ac04e9bfa ("common/idpf: introduce common library") Cc: sta...@dpdk.org Signed-off-by: Priyalee Kushwaha Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_lan_pf_regs.h | 9 +++-- drivers/common/idpf/base/idpf_lan_vf

[PATCH v2 04/15] common/idpf: remove qregion struct variables

2023-04-21 Thread Wenjing Qiao
Existing qregion variables are not well defined and cannot be used for TC related stuff. Remove them from create vport struct and add those freed bytes to a new reserved field. Add appropriate comments on how to use the dynctl and itrn register spacing variables. Only VF reference was used in get

[PATCH v2 05/15] common/idpf: move OEM capability to the last bit

2023-04-21 Thread Wenjing Qiao
Move the existing OEM capability in VIRTCHNL2_OTHER_CAPS to the last bit. This should not break any backward compatibility as it is not used yet. And VIRTCHNL2_MEV_DEVICE is no longer upstreamed. Signed-off-by: Pavan Kumar Linga Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/virtchnl

[PATCH v2 07/15] common/idpf: add virtchnl2 error codes

2023-04-21 Thread Wenjing Qiao
Virtchnl2 error codes are required for meaningful failure information sharing between CP and PF/VF. Introduce the necessary error codes. New error codes were introduced removing the old ones. So the references to the old one should be modified to avoid CI build failures. Use appropriate error cod

[PATCH v2 06/15] common/idpf: modify SSO/LSO and ITR fields

2023-04-21 Thread Wenjing Qiao
- Driver assumes minimum packet length for sso as 17 bytes but it should be a negotiated value from CP. - Similarly, the number of header buffers for lso that are supported by the device should also be a negotiated value. Add min_sso_packet_len, max_hdr_buf_per_lso to address the above. Also, the

[PATCH v2 09/15] common/idpf: fix idpf_send_msg_to_cp prototypes

2023-04-21 Thread Wenjing Qiao
Virtchnl2 opcodes are no longer in the enum virtchnl_ops. So change these parameters to allow int rather that compiler enum type checking. Fixes: fb4ac04e9bfa ("common/idpf: introduce common library") Cc: sta...@dpdk.org Signed-off-by: Christopher Pau Signed-off-by: Wenjing Qiao --- drivers/co

[PATCH v2 08/15] common/idpf: swap opcode and retval location in msg struct

2023-04-21 Thread Wenjing Qiao
To make the code more readable and make it clearer that the opcode goes in cookie_high and retval goes in cookie_low. Add macro definitions for filling opcode and retval. Signed-off-by: Charles Stoll Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_controlq.c | 2 ++ drivers/c

[PATCH v2 10/15] common/idpf: fix memory leaks on ctrlq functions

2023-04-21 Thread Wenjing Qiao
idpf_init_hw needs to free it's q_info. idpf_clean_arq_element needs to return buffers via post_rx_buffs Fixes: fb4ac04e9bfa ("common/idpf: introduce common library") Cc: sta...@dpdk.org Signed-off-by: Christopher Pau Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_common.c | 12

[PATCH v2 11/15] common/idpf: allocate static buffer at initialization

2023-04-21 Thread Wenjing Qiao
Some OSs don't allow allocating DMA memory at runtime. So create an initial static buffer at initialization to hold this data. Signed-off-by: Christopher Pau Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_common.c | 26 +++--- 1 file changed, 15 insertions(+),

[PATCH v2 12/15] common/idpf: replace MAKEMASK to IDPF_M

2023-04-21 Thread Wenjing Qiao
Replace MAKEMASK to IDPF_M to avoid conflicts with MAKEMASK redefinition from various subcomponents. Signed-off-by: Priyalee Kushwaha Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_controlq.h | 3 -- drivers/common/idpf/base/idpf_lan_pf_regs.h | 26 +-- drivers/co

[PATCH v2 13/15] common/idpf: add/delete queue groups commands

2023-04-21 Thread Wenjing Qiao
Add types for new two virtchnl commands: add & delete queue group Signed-off-by: Nizan Zorea Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/virtchnl2.h | 189 +++ 1 file changed, 189 insertions(+) diff --git a/drivers/common/idpf/base/virtchnl2.h b/drivers/co

[PATCH v2 14/15] common/idpf: add func to clean all DESCs on controlq

2023-04-21 Thread Wenjing Qiao
Add 'idpf_ctlq_clean_sq_force' which will clean all descriptors on given control queue. It is needed in case control plane is not running and we need to do proper driver cleanup. Signed-off-by: NorbertX Ciosek Signed-off-by: Wenjing Qiao --- drivers/common/idpf/base/idpf_controlq.c | 56 +++

[PATCH v2 15/15] common/idpf: update license and README

2023-04-21 Thread Wenjing Qiao
Update license and README Signed-off-by: Wenjing Qiao --- .mailmap | 8 drivers/common/idpf/base/README| 4 ++-- drivers/common/idpf/base/idpf_alloc.h | 2 +- drivers/common/idpf/base/idpf_common.c | 2 +- drivers/co

[PATCH 2/2] net/hns3: support dump media type

2023-04-21 Thread Dongdong Liu
From: Chengwen Feng The media type information helps locate faults such as AN or rate switching, so add dump media type in eth_dev_priv_dump ops. Signed-off-by: Chengwen Feng Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_dump.c | 2 ++ drivers/net/hns3/hns3_ethdev.c | 2 +- drivers/

[PATCH 0/2] net/hns3: add some features for hns3 pmd

2023-04-21 Thread Dongdong Liu
This patchset is to add some features for hns3 pmd. Chengwen Feng (1): net/hns3: support dump media type Dongdong Liu (1): net/hns3: simplify for hardware csum offloading drivers/net/hns3/hns3_cmd.c| 3 ++ drivers/net/hns3/hns3_cmd.h| 1 + drivers/net/hns3/hns3_dump.c | 3 ++ d

[PATCH 1/2] net/hns3: simplify for hardware csum offloading

2023-04-21 Thread Dongdong Liu
If the NIC support simple BD mode, the hardware will calculate the checksum from the start position of checksum and fill the checksum result to the offset position, which simple the HW operations of calculating the type and header length of L3/L4. Add this mode for hns3 pmd when the packet type is

[PATCH v1] crypto/ipsec_mb: add digest encrypted feature in AESNI_MB

2023-04-21 Thread Brian Dooley
AESNI_MB PMD does not support Digest Encrypted. This patch adds partial support for this feature. Signed-off-by: Brian Dooley --- Some out-of-place tests are still failing. Only some in-place tests are passing. Working on adding support for this feature in v2. --- app/test/1.diff

RE: [RFC] lib: set/get max memzone segments

2023-04-21 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, 21 April 2023 10.35 > > 20/04/2023 20:20, Tyler Retzlaff: > > On Thu, Apr 20, 2023 at 09:43:28AM +0200, Thomas Monjalon wrote: > > > 19/04/2023 16:51, Tyler Retzlaff: > > > > On Wed, Apr 19, 2023 at 11:36:34AM +0300, Ophir Munk w

[PATCH 0/8] add AESNI_MB optimisations

2023-04-21 Thread Ciara Power
This patchset adds some optimisations for AESNI_MB PMD, many based on features that are available in intel-ipsec-mb v1.3 and future release v1.4. Marcel Cornu (1): crypto/ipsec_mb: use burst API in aesni_mb Pablo de Lara (7): crypto/ipsec_mb: use GMAC dedicated algorithms crypto/ipsec_mb: u

[PATCH 1/8] crypto/ipsec_mb: use GMAC dedicated algorithms

2023-04-21 Thread Ciara Power
From: Pablo de Lara AES-GMAC can be done with auth-only enums IMB_AES_GMAC_128/192/256, which allows another cipher algorithm to be used, instead of being part of AES-GCM. Signed-off-by: Pablo de Lara Signed-off-by: Ciara Power --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 104 +++-

[PATCH 2/8] crypto/ipsec_mb: use burst API in aesni_mb

2023-04-21 Thread Ciara Power
From: Marcel Cornu Use new ipsec_mb burst API in dequeue burst function, when ipsec_mb version is v1.3 or newer. Signed-off-by: Marcel Cornu Signed-off-by: Pablo de Lara Signed-off-by: Ciara Power --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 133 - 1 file changed, 132

[PATCH 3/8] crypto/ipsec_mb: use new SGL API

2023-04-21 Thread Ciara Power
From: Pablo de Lara Use new SGL API available from IPSec Multi-buffer v1.3, where only one function call is required to submit all segments to be processed in an SGL scenario. Instead of having one call per segment, there is only one call per buffer. Signed-off-by: Pablo de Lara Signed-off-by:

[PATCH 4/8] crypto/ipsec_mb: remove unneeded fields in crypto session

2023-04-21 Thread Ciara Power
From: Pablo de Lara Cipher direction, cipher mode and hash algorithm are duplicated in crypto session. Signed-off-by: Pablo de Lara --- drivers/crypto/ipsec_mb/pmd_aesni_mb_priv.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/crypto/ipsec_mb/pmd_aesni_mb_priv.h b/drivers/crypt

[PATCH 5/8] crypto/ipsec_mb: store template job

2023-04-21 Thread Ciara Power
From: Pablo de Lara Store template IMB_JOB in session that will have filled all session-related fields. These fields include cipher direction, chain order, cipher mode, hash algorithm, key length, IV lengths, AAD length, digest length, and key pointers. Signed-off-by: Pablo de Lara Signed-off-b

[PATCH 6/8] crypto/ipsec_mb: optimize for GCM case

2023-04-21 Thread Ciara Power
From: Pablo de Lara Use a separate code path when dealing with AES-GCM. Signed-off-by: Pablo de Lara Signed-off-by: Ciara Power --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 88 +++--- 1 file changed, 79 insertions(+), 9 deletions(-) diff --git a/drivers/crypto/ipsec_mb/pm

[PATCH 7/8] crypto/ipsec_mb: do not free linear_sgl always

2023-04-21 Thread Ciara Power
From: Pablo de Lara linear_sgl buffer only needs to be freed if it was allocated previously. Signed-off-by: Pablo de Lara --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c b/drivers/crypto

[PATCH 8/8] crypto/ipsec_mb: set and use session ID

2023-04-21 Thread Ciara Power
From: Pablo de Lara When creating a session, get the session ID that defines the fixed session parameters and store it in the private data. When retrieving IMB_JOB's, if their internal session ID matches the one in the private session data, these fixed session parameters do not need to be filled

[PATCH] ci: switch to Fedora 37

2023-04-21 Thread David Marchand
Fedora 35 has been declared EOL in 2022/12 (see [1]). Fedora 36 will soon be EOL too. Move to Fedora 37. Fedora 37 libbpf does not support AF_XDP anymore, now provided by libxdp. 1: https://docs.fedoraproject.org/en-US/releases/eol/ Signed-off-by: David Marchand --- .github/workflows/build.yml

[PATCH v3 0/5] Support AMD CDX bus, for FPGA based CDX devices. The CDX

2023-04-21 Thread Nipun Gupta
It uses sysfs interface and the vfio-cdx driver to discover and initialize the CDX devices. The CDX bus and VFIO support is available at Xilinx open source tree: https://github.com/Xilinx/linux-xlnx (drivers/cdx/ and drivers/vfio/cdx) Linux CDX bus patches has been added into linux next: https://

[PATCH v3 1/5] bus/cdx: introduce cdx bus

2023-04-21 Thread Nipun Gupta
CDX bus supports multiple type of devices, which can be exposed to user-space via vfio-cdx. vfio-cdx provides the MMIO IO_MEMORY regions as well as the DMA interface for the device (IOMMU). This support aims to enable the DPDK to support the cdx devices in user-space using VFIO interface. Signed

[PATCH v3 2/5] bus/cdx: add DMA map and unmap support

2023-04-21 Thread Nipun Gupta
CDX bus can use VFIO interface for mapping and unmapping of DMA addresses in the IOMMU. This change adds the callback support for map and unmap APIs as well as fetching the IOMMU class. Signed-off-by: Nipun Gupta --- drivers/bus/cdx/cdx.c | 40 1 file cha

[PATCH v3 3/5] bus/cdx: add support for MSI

2023-04-21 Thread Nipun Gupta
MSI's are exposed to the devices using VFIO (vfio-cdx). This patch uses the same to add support for MSI for the devices on the cdx bus. A couple of API's have been introduced in the EAL interrupt framework: - rte_intr_irq_count_set: This API is used to set the total interrupts on the interrupt

[PATCH v3 4/5] bus/cdx: support plug unplug and dev iterator

2023-04-21 Thread Nipun Gupta
This change adds support for plugging and unplugging CDX devices on the CDX bus. Also, CDX dev iterator support has been added for the CDX bus. Signed-off-by: Nipun Gupta --- drivers/bus/cdx/bus_cdx_driver.h | 1 + drivers/bus/cdx/cdx.c| 122 +++ 2 files

[PATCH v3 5/5] config/arm: add AMD CDX

2023-04-21 Thread Nipun Gupta
Adding support for AMD CDX devices Signed-off-by: Nipun Gupta --- config/arm/arm64_cdx_linux_gcc | 17 + config/arm/meson.build | 14 ++ 2 files changed, 31 insertions(+) create mode 100644 config/arm/arm64_cdx_linux_gcc diff --git a/config/arm/arm64_cdx_lin

Re: [RFC] lib: set/get max memzone segments

2023-04-21 Thread Thomas Monjalon
21/04/2023 13:08, Morten Brørup: > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > Sent: Friday, 21 April 2023 10.35 > > 20/04/2023 20:20, Tyler Retzlaff: > > > On Thu, Apr 20, 2023 at 09:43:28AM +0200, Thomas Monjalon wrote: > > > > 19/04/2023 16:51, Tyler Retzlaff: > > > > > On Wed, Apr

RE: [RFC] lib: set/get max memzone segments

2023-04-21 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, 21 April 2023 16.57 > > 21/04/2023 13:08, Morten Brørup: > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > Sent: Friday, 21 April 2023 10.35 > > > 20/04/2023 20:20, Tyler Retzlaff: > > > > On Thu, Apr 20, 2023 at 09:

[PATCH v2 00/11] sync Truflow support with latest release

2023-04-21 Thread Randy Schacher
Version 2 fixes: - misspellings - whitespace issues - signed off issues Kishore Padmanabha (1): net/bnxt: fix multi-root card support Randy Schacher (9): net/bnxt: remove deprecated features net/bnxt: update bnxt hsi structure net/bnxt: update copyright date and cleanup whitespace net/b

[PATCH v2 01/11] net/bnxt: remove deprecated features

2023-04-21 Thread Randy Schacher
- Deprecate shadow identifier - Deprecate shadow tcam Signed-off-by: Randy Schacher Signed-off-by: Kishore Padmanabha Reviewed-by: Peter Spreadborough --- drivers/net/bnxt/bnxt_hwrm.c | 53 -- drivers/net/bnxt/bnxt_hwrm.h | 10 - drivers/net/bnxt/tf_core/mes

[PATCH v2 03/11] net/bnxt: update copyright date and cleanup whitespace

2023-04-21 Thread Randy Schacher
Update the Copyright to 2023 Clean up extra blank lines Clean up other whitespace issues Signed-off-by: Randy Schacher Reviewed-by: Kishore Padmanabha --- drivers/net/bnxt/bnxt_cpr.c| 2 +- drivers/net/bnxt/bnxt_cpr.h| 2 +- drivers/net/bnxt/bnxt_filter.c

[PATCH v2 07/11] net/bnxt: add ulp support for rte meter

2023-04-21 Thread Randy Schacher
Add RTE meter support into the ULP layer Signed-off-by: Randy Schacher Reviewed-by: Jay Ding --- drivers/net/bnxt/bnxt.h | 2 + drivers/net/bnxt/bnxt_ethdev.c| 1 + drivers/net/bnxt/tf_ulp/bnxt_ulp.c| 8 + drivers/net/bnxt/tf_ulp/bnxt_ulp.

[PATCH v2 08/11] net/bnxt: update PTP support on Thor

2023-04-21 Thread Randy Schacher
add locking and time stamp checks to ptp feature Signed-off-by: Randy Schacher Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 5 ++ drivers/net/bnxt/bnxt_ethdev.c | 11 + drivers/net/bnxt/bnxt_hwrm.c | 11 - drivers/net/bnxt/bnxt_ring.c | 3 ++ drivers/net/bnxt/bn

[PATCH v2 09/11] net/bnxt: fix multi-root card support

2023-04-21 Thread Randy Schacher
From: Kishore Padmanabha Changed the logic to use device serial number to identify that different ports belong to same physical card instead of the PCI domain address. Signed-off-by: Kishore Padmanabha Reviewed-by: Shahaji Bhosle --- drivers/net/bnxt/bnxt.h| 3 +++ drivers/net/bn

[PATCH v2 10/11] net/bnxt: add ulp support for ecpri

2023-04-21 Thread Randy Schacher
Add RTE ECPRI support into the ULP layer Signed-off-by: Randy Schacher Signed-off-by: Shahaji Bhosle Reviewed-by: Manish Kurup --- drivers/net/bnxt/bnxt.h | 4 + drivers/net/bnxt/bnxt_ethdev.c| 35 + drivers/net/bnxt/bnxt_hwrm.c |

[PATCH v2 11/11] net/bnxt: Avoid submitting hwrm rss request when rss mode disabled

2023-04-21 Thread Randy Schacher
From: Shuanglin Wang On WH+, if rss mode isn't enabled, then there is no rss context. Submitting HWRM_VNIC_RSS_CFG request to firmware would hit a failure. The fix is to check the rss context. If no rss context, then don't submit the hwrm request. Signed-off-by: Shuanglin Wang Signed-off-by: K

[RFC] ring: improve ring performance with C11 atomics

2023-04-21 Thread Wathsala Vithanage
Tail load in __rte_ring_move_cons_head and __rte_ring_move_prod_head can be changed to __ATOMIC_RELAXED from __ATOMIC_ACQUIRE. Because to calculate the addresses of the dequeue elements __rte_ring_dequeue_elems uses the old_head updated by the __atomic_compare_exchange_n intrinsic used in __rte_rin

[RFC] ring: improve ring performance with C11 atomics

2023-04-21 Thread Wathsala Vithanage
Tail load in __rte_ring_move_cons_head and __rte_ring_move_prod_head can be changed to __ATOMIC_RELAXED from __ATOMIC_ACQUIRE. Because to calculate the addresses of the dequeue elements __rte_ring_dequeue_elems uses the old_head updated by the __atomic_compare_exchange_n intrinsic used in __rte_rin

Re: [PATCH] ci: switch to Fedora 37

2023-04-21 Thread Aaron Conole
David Marchand writes: > Fedora 35 has been declared EOL in 2022/12 (see [1]). > Fedora 36 will soon be EOL too. > > Move to Fedora 37. > Fedora 37 libbpf does not support AF_XDP anymore, now provided by > libxdp. > > 1: https://docs.fedoraproject.org/en-US/releases/eol/ > > Signed-off-by: David

[PATCH v5] app/testpmd: txonly multiflow port change support

2023-04-21 Thread Joshua Washington
Google cloud routes traffic using IP addresses without the support of MAC addresses, so changing source IP address for txonly-multi-flow can have negative performance implications for net/gve when using testpmd. This patch updates txonly multiflow mode to modify source ports instead of source IP ad

Re: [PATCH 1/1] net/ixgbe: add a proper memory barrier for LoongArch

2023-04-21 Thread bibo, mao
在 2023/4/21 9:12, zhoumin 写道: On Fri, Apr 7, 2023 at 4:50PM, Min Zhou wrote: Segmentation fault has been observed while running the ixgbe_recv_pkts_lro() function to receive packets on the Loongson 3C5000 processor which has 64 cores and 4 NUMA nodes. Reason is the read ordering of the statu

Re: [PATCH 2/2] config/arm: Enable NUMA for generic Arm build

2023-04-21 Thread Akihiko Odaki
On 2023/04/20 16:20, Ruifeng Wang wrote: -Original Message- From: Akihiko Odaki Sent: Friday, April 14, 2023 8:42 PM To: Ruifeng Wang ; Bruce Richardson Cc: dev@dpdk.org; Akihiko Odaki Subject: [PATCH 2/2] config/arm: Enable NUMA for generic Arm build We enable NUMA even if the prese