Process for adding a new driver?

2023-09-18 Thread Morten Brørup
Dear DPDK tech board, The process for adding a new library to DPDK is well documented [1]. What is the process for adding a new (NIC) driver? It seems like the task of reviewing NIC PMDs from vendors other than Broadcom/Intel/Marvell/NVIDIA falls entirely on the next-net tree maintainers, Ferr

RE: [PATCH] net/mlx5: share QUOTA indirect action

2023-09-18 Thread Slava Ovsiienko
> -Original Message- > From: Gregory Etelson > Sent: Thursday, June 29, 2023 7:48 PM > To: dev@dpdk.org > Cc: Maayan Kashani ; Raslan Darawsheh > ; Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; Suanming Mou > > Subject: [PATCH] net/mlx5: share QUOTA indirect action > > Support shared indir

[PATCH] eventdev/eth_rx: fix timestamp field register in mbuf

2023-09-18 Thread Rahul Bhansali
For eventdev internal port, timestamp dynamic field registration in mbuf is not required as that will be done from net device. For SW eventdev, Rx timestamp field registration will be done during Rx queue add operation as per device capabilities and offload configuration. Fixes: 83ab470d1259 ("eve

RE: [PATCH] net/mlx5: share QUOTA indirect action

2023-09-18 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Gregory Etelson > Sent: Thursday, June 29, 2023 7:48 PM > To: dev@dpdk.org > Cc: Maayan Kashani ; Raslan Darawsheh > ; Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; Suanming Mou > > Subject: [PATCH] net/mlx5: share QUOTA indirect action > > Support shared

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-18 Thread Ferruh Yigit
On 9/15/2023 7:37 PM, Morten Brørup wrote: >> From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] >> Sent: Friday, 15 September 2023 17.55 >> >> On 9/8/2023 5:07 PM, Mykola Kostenok wrote: >>> From: Christian Koue Muf >>> >>> The NTNIC PMD does not rely on a kernel space Napatech driver, >>> thus all

RE: [EXT] [PATCH 00/12] crypto/dpaax_sec: misc enhancements

2023-09-18 Thread Akhil Goyal
> -- > This series include misc enhancements in dpaax_sec drivers. > > - improving the IPsec protocol offload features > - enhancing PDCP protocol processing > - code optimization and cleanup > > Apeksha Gupta (1): > crypto/dpa

Re: [PATCH v3 12/27] net/nfp: refact the hwinfo module

2023-09-18 Thread Ferruh Yigit
On 9/18/2023 2:39 AM, Chaoyong He wrote: > > >> -Original Message- >> From: Ferruh Yigit >> Sent: Friday, September 15, 2023 9:46 PM >> To: Chaoyong He ; dev@dpdk.org >> Cc: oss-drivers ; Niklas Soderlund >> >> Subject: Re: [PATCH v3 12/27] net/nfp: refact the hwinfo module >> >> On 9/1

RE: [EXT] [PATCH v3 1/2] crypto/scheduler: support DOCSIS security protocol

2023-09-18 Thread Anoob Joseph
Hi David, Thanks for updating the patches based on the comments provided on previous version. Please see inline for some comments on code. Thanks, Anoob > -Original Message- > From: David Coyle > Sent: Thursday, September 14, 2023 8:52 PM > To: dev@dpdk.org > Cc: kai...@intel.com; Anoo

RE: [PATCH v1 1/2] dmadev: offload to free source buffer

2023-09-18 Thread Anoob Joseph
Hi Amit, Thanks for adding the feature. Please see inline. With the mentioned fixes, Acked-by: Anoob Joseph Thanks, Anoob > -Original Message- > From: Amit Prakash Shukla > Sent: Thursday, September 7, 2023 1:41 PM > To: Chengwen Feng ; Kevin Laatz > ; Bruce Richardson > Cc: dev@dpd

RE: [PATCH 31/36] net/softnic: fix Rx and Tx queue state

2023-09-18 Thread Dumitrescu, Cristian
> -Original Message- > From: Jie Hai > Sent: Friday, September 8, 2023 12:29 PM > To: dev@dpdk.org; Dumitrescu, Cristian ; > Lijun Ou ; Konstantin Ananyev > <"konstantin.v.ananyev@yandex.rukonstantin.ananyev"@huawei.com>; > Thomas Monjalon ; Ferruh Yigit > ; Chengwen Feng > Cc: haij...

[PATCH 1/2] common/cnxk: reserve last LMT line for control ops

2023-09-18 Thread Rahul Bhansali
As rte_eth_dev_configure() can be called from any EAL or non-EAL cores. And in case of non-EAL core, LMT address will not be a valid. So, reserving last LMT line 2047 for control path specific functionality. Signed-off-by: Rahul Bhansali --- drivers/common/cnxk/roc_dev.c | 5 + drivers

RE: [PATCH v2 2/2] app/testpmd: add random item support

2023-09-18 Thread Ori Kam
Hi Michael, > -Original Message- > From: Michael Baum > Sent: Monday, September 11, 2023 10:42 AM > > Add support for random item, usage example: > > pattern random spec value 0x1 mask value 0x3 / eth / end > > Flow rule with above pattern matching 25% of the traffic, it hits onl

Re: Process for adding a new driver?

2023-09-18 Thread Ferruh Yigit
On 9/18/2023 8:08 AM, Morten Brørup wrote: > Dear DPDK tech board, > > The process for adding a new library to DPDK is well documented [1]. > > What is the process for adding a new (NIC) driver? > > It seems like the task of reviewing NIC PMDs from vendors other than > Broadcom/Intel/Marvell/NV

[PATCH 2/5] net/mlx5/hws: support additional 4 C registers

2023-09-18 Thread Itamar Gozlan
New connectX devices have 4 additional registers which can be used by the application. This support will allow matching on these new registers. Signed-off-by: Itamar Gozlan --- drivers/common/mlx5/mlx5_prm.h| 4 drivers/net/mlx5/hws/mlx5dr_definer.c | 16 drivers/n

[PATCH 3/5] net/mlx5/hws: supporting add_field action

2023-09-18 Thread Itamar Gozlan
Supporting a new modify action: ADD_FIELD. The new action allows the summing of the packet source field and destination field/meta-data. The result is stored in the destination field. This new action is supported only on capable devices. Signed-off-by: Itamar Gozlan --- drivers/common/mlx5/mlx5_

[PATCH 1/5] net/mlx5/hws: add support for matching on bth_a bit

2023-09-18 Thread Itamar Gozlan
RTE_FLOW_ITEM_TYPE_IB_BTH matches an InfiniBand base transport header. We extend the match on the acknowledgment bit (BTH_A). Signed-off-by: Itamar Gozlan --- drivers/net/mlx5/hws/mlx5dr_definer.c | 12 ++-- drivers/net/mlx5/hws/mlx5dr_definer.h | 1 + 2 files changed, 11 insertions(+),

[PATCH 5/5] net/mlx5/hws: fix field copy bind

2023-09-18 Thread Itamar Gozlan
From: Alex Vesker Fix an issue with binding for unused DW selectors, these selectors are set to zero but zero is also a valid value used for DMAC_47_16. Fixes: c55c2bf35333 ("net/mlx5/hws: add definer layer") Reviewed-by: Erez Shitrit Signed-off-by: Alex Vesker --- drivers/net/mlx5/hws/mlx5dr

[PATCH 4/5] net/mlx5/hws: supporting default miss table in HWS

2023-09-18 Thread Itamar Gozlan
A default miss table is a way to define what happens to traffic that does not match any rule in a specific table. In hws, this is done by connecting the source table to the target table using the RTC. This ensures that traffic that does not match any rule in the source table is forwarded to the tar

RE: [PATCH v1] net/mlx5: add test for hot upgrade

2023-09-18 Thread Rongwei Liu
Hi Thomas: BR Rongwei > -Original Message- > From: Thomas Monjalon > Sent: Tuesday, June 27, 2023 04:23 > To: Rongwei Liu ; Raslan Darawsheh > > Cc: dev@dpdk.org; Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; Maayan Kashani > > Subject: Re: [PATCH v1] net/mlx5: add test for hot upgrade >

Re: [PATCH v3 19/27] net/nfp: refact the nsp module

2023-09-18 Thread Ferruh Yigit
On 9/15/2023 10:15 AM, Chaoyong He wrote: > Move the definition of data structure into the implement file. > Also sync the logic from kernel driver and remove the unneeded header > file include statements. > > Signed-off-by: Chaoyong He > Reviewed-by: Niklas Söderlund <...> > @@ -381,6 +478,43

[PATCH v1 1/2] dmadev: add DMA operation structure

2023-09-18 Thread Amit Prakash Shukla
For the event based DMA transfer, all the required parameters are to be sent as part of a structure. This patch adds a structure containing the parameters for event based DMA operation. Signed-off-by: Amit Prakash Shukla --- lib/dmadev/rte_dmadev.h | 12 1 file changed, 12 insertion

[PATCH v1 2/2] dmadev: get DMA device using device ID

2023-09-18 Thread Amit Prakash Shukla
Added a function that lookup for the dma device using device id and returns the pointer to the same. Signed-off-by: Amit Prakash Shukla --- lib/dmadev/rte_dmadev.c | 9 + lib/dmadev/rte_dmadev_pmd.h | 16 lib/dmadev/version.map | 1 + 3 files changed, 26 inser

Re: [PATCH v3 19/27] net/nfp: refact the nsp module

2023-09-18 Thread Ferruh Yigit
On 9/18/2023 1:31 PM, Ferruh Yigit wrote: > On 9/15/2023 10:15 AM, Chaoyong He wrote: >> Move the definition of data structure into the implement file. >> Also sync the logic from kernel driver and remove the unneeded header >> file include statements. >> >> Signed-off-by: Chaoyong He >> Reviewed-

Re:Re: [PATCH v1] examples/l3fwd: relax the RSS/Offload requirement

2023-09-18 Thread taozj888
Hi Konstantin: Please see my comments inline. Thanks. Trevor At 2023-09-18 02:04:19, "Konstantin Ananyev" wrote: >03/09/2023 05:01, Trevor Tao пишет: >> Now the port Rx mq_mode had been set to RTE_ETH_MQ_RX_RSS, and offload >> mode set to RTE_ETH_RX_OFFLOAD_CHECKSUM by default, but some h

Re: [PATCH v4 02/26] net/nfp: unify the indent coding style

2023-09-18 Thread Niklas Söderlund
Hi Chaoyong, On 2023-09-18 10:45:48 +0800, Chaoyong He wrote: > Each parameter of function should occupy one line, and indent two TAB > character. > All the statement which span multi line should indent two TAB character. > > Signed-off-by: Chaoyong He > Reviewed-by: Niklas Söderlund Nacked-by

RE: [PATCH 1/3] net/mlx5: extend send to kernel action support

2023-09-18 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Jiawei(Jonny) Wang > Sent: Friday, September 8, 2023 12:21 PM > To: Suanming Mou ; Ori Kam ; > NBU-Contact-Thomas Monjalon (EXTERNAL) > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 1/3] net/mlx5: extend send to kernel action support > > The send

Re: [PATCH v1 1/2] dmadev: add DMA operation structure

2023-09-18 Thread Bruce Richardson
On Mon, Sep 18, 2023 at 06:02:26PM +0530, Amit Prakash Shukla wrote: > For the event based DMA transfer, all the required parameters are to > be sent as part of a structure. This patch adds a structure > containing the parameters for event based DMA operation. > > Signed-off-by: Amit Prakash Shukl

[RFC PATCH v2 1/5] buildtools/dpdk-cmdline-gen: generate boilerplate for simple cmds

2023-09-18 Thread Bruce Richardson
Provide a script for application developers to quickly generate the boilerplate code necessary for using the cmdline library. This initial version works only with commands using simple strings and numbers, but this is sufficient for many use-cases. Future extensions could, no doubt, expand support

[RFC PATCH v2 0/5] use script to simplify use of cmdline lib

2023-09-18 Thread Bruce Richardson
The DPDK commandline library is widely used by apps and examples within DPDK, but requires a lot of boilerplate code definitions in order to used. We can improve this situation by creating a simple python script to automatically generate the boilerplate from a list of commands. This RFC v2 contain

[RFC PATCH v2 2/5] examples/simple_mp: auto-generate cmdline boilerplate

2023-09-18 Thread Bruce Richardson
Use the dpdk-cmdline-gen script to autogenerate all the boilerplate structs and defines for the commandline part of the app. Signed-off-by: Bruce Richardson --- examples/multi_process/simple_mp/Makefile | 10 +- examples/multi_process/simple_mp/meson.build | 9 ++ .../multi_process/simpl

[RFC PATCH v2 3/5] examples/hotplug_mp: auto-generate cmdline boilerplate

2023-09-18 Thread Bruce Richardson
Use the dpdk-cmdline-gen script to autogenerate all the boilerplate structs and defines for the commandline part of the app. Signed-off-by: Bruce Richardson --- examples/multi_process/hotplug_mp/Makefile| 10 +- examples/multi_process/hotplug_mp/commands.c | 147 ++ example

[RFC PATCH v2 4/5] buildtools/dpdk-cmdline-gen: add IP address support

2023-09-18 Thread Bruce Richardson
Add support for apps to have IP addresses as command parameters Signed-off-by: Bruce Richardson --- buildtools/dpdk-cmdline-gen.py | 5 + 1 file changed, 5 insertions(+) diff --git a/buildtools/dpdk-cmdline-gen.py b/buildtools/dpdk-cmdline-gen.py index 1ddd8b6bbb..c1f8a6f1da 100755 --- a/bu

[RFC PATCH v2 5/5] examples/bond: auto-generate cmdline boilerplate

2023-09-18 Thread Bruce Richardson
Use the dpdk-cmdline-gen script to autogenerate all the boilerplate structs and defines for the commandline part of the app. Signed-off-by: Bruce Richardson --- examples/bond/Makefile | 10 ++- examples/bond/commands.list | 6 ++ examples/bond/main.c| 161

Re: [PATCH v1 2/2] dmadev: get DMA device using device ID

2023-09-18 Thread Jerin Jacob
On Mon, Sep 18, 2023 at 6:02 PM Amit Prakash Shukla wrote: > dmadev: get DMA device using device ID dmadev: add PMD API to get DMA device using device ID or so > > Added a function that lookup for the dma device using device id and internal function that > returns the pointer to the same. > >

RE: [EXT] Re: [PATCH v1 1/2] dmadev: add DMA operation structure

2023-09-18 Thread Amit Prakash Shukla
Hi Bruce, Thanks for the review. Please see my reply in-line. > -Original Message- > From: Bruce Richardson > Sent: Monday, September 18, 2023 6:30 PM > To: Amit Prakash Shukla > Cc: Chengwen Feng ; Kevin Laatz > ; dev@dpdk.org; Jerin Jacob Kollanukkaran > ; m...@smartsharesystems.com;

RE: [EXT] Re: [PATCH v1 2/2] dmadev: get DMA device using device ID

2023-09-18 Thread Amit Prakash Shukla
> -Original Message- > From: Jerin Jacob > Sent: Monday, September 18, 2023 7:12 PM > To: Amit Prakash Shukla > Cc: Chengwen Feng ; Kevin Laatz > ; Bruce Richardson ; > dev@dpdk.org; Jerin Jacob Kollanukkaran ; > m...@smartsharesystems.com; conor.wa...@intel.com; Vamsi Krishna > Attunur

RE: [PATCH v2] common/qat: enable QAT 2.0c devices

2023-09-18 Thread Dooley, Brian
Hi Ciara, > -Original Message- > From: Ciara Power > Sent: Monday, August 21, 2023 10:34 AM > To: dev@dpdk.org > Cc: Kusztal, ArkadiuszX ; > david.march...@redhat.com; Power, Ciara ; Ji, Kai > > Subject: [PATCH v2] common/qat: enable QAT 2.0c devices > > This commit enables QAT 2.0c dev

RE: Process for adding a new driver?

2023-09-18 Thread Honnappa Nagarahalli
> -Original Message- > From: Morten Brørup > Sent: Monday, September 18, 2023 2:08 AM > To: techbo...@dpdk.org; maxime.coque...@redhat.com > Cc: dev@dpdk.org; Ferruh Yigit ; > andrew.rybche...@oktetlabs.ru; Christian Koue Muf ; > Renyong Wan > Subject: Process for adding a new driver?

Re: [PATCH v2 0/2] check illegal packets

2023-09-18 Thread David Marchand
On Tue, Sep 27, 2022 at 9:24 AM Kevin Liu wrote: > > Check whether the data packet is illegal of ice and iavf driver. > > v2: > Change the scheme, check the data_len and update commit log. > > Kevin Liu (2): > net/iavf: check illegal packets > net/ice: check illegal packets > > drivers/net/ia

Re: [PATCH 1/3] ethdev: add frequency adjustment API

2023-09-18 Thread Ferruh Yigit
On 8/9/2023 6:06 AM, Simei Su wrote: > This patch introduces a new timesync API "rte_eth_timesync_adjust_fine" > which enables finer adjustment of the PHC clock. During PTP timesync, > "rte_eth_timesync_adjust_time" focuses on phase adjustment while > "rte_eth_timesync_adjust_fine" focuses on frequ

Re: [PATCH v2 0/2] check illegal packets

2023-09-18 Thread Kevin Traynor
On 18/09/2023 15:42, David Marchand wrote: On Tue, Sep 27, 2022 at 9:24 AM Kevin Liu wrote: Check whether the data packet is illegal of ice and iavf driver. v2: Change the scheme, check the data_len and update commit log. Kevin Liu (2): net/iavf: check illegal packets net/ice: check il

Re: [PATCH 3/3] examples/ptpclient: add frequency adjustment support

2023-09-18 Thread Ferruh Yigit
On 8/9/2023 6:07 AM, Simei Su wrote: > This patch applys PI servo algorithm to leverage frequency adjustment > API to improve PTP timesync accuracy. > > The command for starting ptpclient with PI algorithm is: > ./build/examples/dpdk-ptpclient -a :81:00.0 -c 1 -n 3 -- -T 0 -p 0x1 > --controlle

Re: [PATCH v2 1/5] bbdev: add operation type for MLDTS procession

2023-09-18 Thread Maxime Coquelin
On 6/15/23 18:48, Nicolas Chautru wrote: Extended bbdev operations to support MLDTS based operations. Signed-off-by: Nicolas Chautru --- doc/guides/prog_guide/bbdev.rst | 53 +++ lib/bbdev/rte_bbdev.c | 11 ++- lib/bbdev/rte_bbdev.h | 76 +++

Re: [PATCH v2 2/5] bbdev: add new capabilities for FFT processing

2023-09-18 Thread Maxime Coquelin
On 6/15/23 18:48, Nicolas Chautru wrote: Extending existing FFT operation for new capabilities. Optional frequency domain dewindowing, frequency resampling, timing error correction and time offset per CS. Signed-off-by: Nicolas Chautru --- doc/guides/prog_guide/bbdev.rst | 24 +

Re: [PATCH v2 3/5] bbdev: add new capability for FEC 5G UL processing

2023-09-18 Thread Maxime Coquelin
On 6/15/23 18:48, Nicolas Chautru wrote: Extending existing LDPC UL operation for new capability. Option to compress HARQ memory to 4 bits per LLR. Signed-off-by: Nicolas Chautru --- doc/guides/prog_guide/bbdev.rst | 6 ++ lib/bbdev/rte_bbdev_op.h| 4 +++- 2 files changed, 9

RE: [PATCH 1/3] common/qat: limit configuration to the primary process

2023-09-18 Thread Power, Ciara
Hi Arek, > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Sunday, September 17, 2023 4:43 PM > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Power, Ciara > ; Kusztal, ArkadiuszX > > Subject: [PATCH 1/3] common/qat: limit configuration to the primary process > > This chang

Re: [PATCH v2 4/5] bbdev: improving error handling for queue configuration

2023-09-18 Thread Maxime Coquelin
On 6/15/23 18:49, Nicolas Chautru wrote: Refactor of the error handling based on available priority queue to be more generic. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.c | 15 ++- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/lib/bbdev/rte_bbdev.c

Re: [PATCH v2 5/5] devtools: ignore changes into bbdev experimental API

2023-09-18 Thread Maxime Coquelin
On 6/15/23 18:49, Nicolas Chautru wrote: Developpers are warned that the related fft experimental functions do not preserve ABI, hence these can be waived. Signed-off-by: Nicolas Chautru --- devtools/libabigail.abignore | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git

Re: [PATCH v2 2/5] bbdev: add new capabilities for FFT processing

2023-09-18 Thread Maxime Coquelin
On 9/18/23 17:08, Maxime Coquelin wrote: On 6/15/23 18:48, Nicolas Chautru wrote: Extending existing FFT operation for new capabilities. Optional frequency domain dewindowing, frequency resampling, timing error correction and time offset per CS. Signed-off-by: Nicolas Chautru ---   doc/gu

RE: [PATCH 2/3] common/qat: move command line params to the device struct

2023-09-18 Thread Power, Ciara
Hi Arek, > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Sunday, September 17, 2023 4:43 PM > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Power, Ciara > ; Kusztal, ArkadiuszX > > Subject: [PATCH 2/3] common/qat: move command line params to the device > struct > > Comma

Re: [PATCH v5 03/32] net/sssnic: support probe and remove

2023-09-18 Thread Stephen Hemminger
On Mon, 4 Sep 2023 12:56:29 +0800 wrote: > +static int > +sssnic_ethdev_init(struct rte_eth_dev *ethdev) > +{ > + RTE_SET_USED(ethdev); > + PMD_INIT_FUNC_TRACE(); > + > + return -EINVAL; > +} Since device does not support secondary process, should check and return error here.

[PATCH v3 0/4] changes for 23.11

2023-09-18 Thread Hernan Vargas
v3: Made changes requested during review. v2: Targeting 23.11. Update in commits 1,2 based on review comments. v1: Targeting 23.07 if possible. Add support for AGX100 (N6000) and corner case fixes. Hernan Vargas (4): baseband/fpga_5gnr_fec: renaming for consistency baseband/fpga_5gnr_fec: add

[PATCH v3 1/4] baseband/fpga_5gnr_fec: renaming for consistency

2023-09-18 Thread Hernan Vargas
Rename generic functions and constants using the FPGA 5GNR prefix naming to prepare for code reuse for new FPGA implementation variant. No functional impact. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 117 +++-- .../fpga_5gnr_fe

[PATCH v3 2/4] baseband/fpga_5gnr_fec: add Vista Creek variant

2023-09-18 Thread Hernan Vargas
Create a new file vc_5gnr_pmd.h to store structures and macros specific to Vista Creek 5G FPGA implementation and rename functions specific to the Vista Creek variant. Signed-off-by: Hernan Vargas --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 183 +- .../fpga_5gnr_fec/rte_fpga_5gnr_fec

[PATCH v3 3/4] baseband/fpga_5gnr_fec: add AGX100 support

2023-09-18 Thread Hernan Vargas
Add support for new FPGA variant AGX100 (on Arrow Creek N6000). Signed-off-by: Hernan Vargas --- doc/guides/bbdevs/fpga_5gnr_fec.rst | 72 +- drivers/baseband/fpga_5gnr_fec/agx100_pmd.h | 273 .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 12 +- .../fpga_5gnr_fec/rte_fpga

[PATCH v3 4/4] baseband/fpga_5gnr_fec: cosmetic comment changes

2023-09-18 Thread Hernan Vargas
Cosmetic changes for comments. No functional impact. Signed-off-by: Hernan Vargas --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 49 ++-- .../fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 246 +- .../fpga_5gnr_fec/rte_pmd_fpga_5gnr_fec.h | 16 +- 3 files changed, 154 ins

[PATCH v3 0/2] Enable apps to use external memory as native

2023-09-18 Thread Bruce Richardson
Sometimes apps (or perhaps DPDK driver components) may want to allow use of "external" i.e. non EAL allocated, memory as though it were standard DPDK memory. This patchset provides the ability to do this, by: firstly, adding an explicit flag to indicate non-EAL memory, rather than relying on the so

[PATCH v3 2/2] eal: allow swapping of malloc heaps

2023-09-18 Thread Bruce Richardson
The external memory functions in DPDK allow the addition of externally access memory to malloc heaps, but with one major restriction - the memory must be allocated to an application-created heap, not one of the standard DPDK heaps for a NUMA node. This restriction makes it difficult - if not impos

[PATCH v3 1/2] eal: add flag to indicate non-EAL malloc heaps

2023-09-18 Thread Bruce Richardson
Rather than relying implicitly on the socket_id value to identify external heaps vs internal ones that can be expanded on demand by adding more hugepages, we add an "is_external" flag to the heap structure. As we do so, we change the heap initialization to use designated initializers to guarantee a

Re: [PATCH v3 0/2] Enable apps to use external memory as native

2023-09-18 Thread Stephen Hemminger
On Mon, 18 Sep 2023 17:32:04 +0100 Bruce Richardson wrote: > Sometimes apps (or perhaps DPDK driver components) may want to allow > use of "external" i.e. non EAL allocated, memory as though it were > standard DPDK memory. This patchset provides the ability to do this, > by: firstly, adding an ex

Re: [PATCH 00/36] fix Rx and Tx queue state

2023-09-18 Thread Ferruh Yigit
On 9/8/2023 12:50 PM, David Marchand wrote: > On Fri, Sep 8, 2023 at 1:32 PM Jie Hai wrote: >> >> The DPDK framework reports the queue state, which is stored in >> dev->data->tx_queue_state and dev->data->rx_queue_state. The >> state is maintained by the driver. Users may determine whether >> a qu

Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-18 Thread Ferruh Yigit
On 9/13/2023 1:23 PM, Wei Hu wrote: > Enable 32 bit build on x86 Linux. Fixed build warnings and errors > when building in 32 bit. > > Cc: sta...@dpdk.org > This is not a fix, but adding 32bit support to the driver, so not sure about backporting. cc'ed Kevin & Luca for guidance. I will drop the

Re: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Ferruh Yigit
On 9/9/2023 1:23 PM, Wei Hu wrote: > Add 32 bit short doorbell support. Ring short doorbell when running > in 32 bit applicactions. > Hi Wei, Is this performance improvement for 32 bit, or is short doorbell support required for 32 bit support? This patch is using RTE_ARCH_32 compile time macro

RFC - handling kvargs options without value

2023-09-18 Thread Stephen Hemminger
There is a problem in current devargs/kvargs code for cases where the device argument expects a value but none is given. There are a several possible ways to address the problem and would like some feedback before finalizing a fix. Options: 0 - do nothing, if no option is given but device expec

[Bug 1290] rte_exit will hang if called from worker or service thread

2023-09-18 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1290 Bug ID: 1290 Summary: rte_exit will hang if called from worker or service thread Product: DPDK Version: 23.07 Hardware: All OS: All Status: UNCONFIRMED

Re: Process for adding a new driver?

2023-09-18 Thread Thomas Monjalon
18/09/2023 16:36, Honnappa Nagarahalli: > From: Morten Brørup > > > > The process for adding a new library to DPDK is well documented [1]. > > > > What is the process for adding a new (NIC) driver? > > > > It seems like the task of reviewing NIC PMDs from vendors other than > > Broadcom/Intel/M

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Long Li
> Subject: [PATCH 1/1] net/mana: add 32 bit short doorbell > > Add 32 bit short doorbell support. Ring short doorbell when running in 32 bit > applicactions. > > Cc: sta...@dpdk.org > > Signed-off-by: Wei Hu > --- > drivers/net/mana/gdma.c | 95 > + > dr

Technical board meeting agenda for 2023-09-20

2023-09-18 Thread Maxime Coquelin
Dear DPDK community, Following topics are planned to be discussed at the next Technical board meeting, which will take place on Sept. 20th @3PM UTC: 1- Memarea library inclusion 2- Power management brainstorming 3- Bugzilla maintenance: request for volunteers 4- Process to add new drivers Th

RE: [PATCH v2 2/5] bbdev: add new capabilities for FFT processing

2023-09-18 Thread Chautru, Nicolas
Thanks Maxime. > -Original Message- > From: Maxime Coquelin > Sent: Monday, September 18, 2023 8:43 AM > To: Chautru, Nicolas ; dev@dpdk.org > Cc: Rix, Tom ; hemant.agra...@nxp.com; > david.march...@redhat.com; Vargas, Hernan > Subject: Re: [PATCH v2 2/5] bbdev: add new capabilities for

[PATCH v1 0/7] VRB2 BBDEV PMD introduction

2023-09-18 Thread Nicolas Chautru
This serie includes includes changes to the VRB BBDEV PMD for 23.11. This relies on the previous serie that Maxime is about to apply (https://patches.dpdk.org/project/dpdk/list/?series=28544). I did not include documentationa just yet but I will in next revision. This allows the VRB unified driver

[PATCH v1 1/7] bbdev: add FFT version member in driver info

2023-09-18 Thread Nicolas Chautru
This can be used to distinguish different version of the flexible pointwise windowing applied to the FFT and expose this to the application. Signed-off-by: Nicolas Chautru --- lib/bbdev/rte_bbdev.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.

[PATCH v1 2/7] baseband/acc: add FFT version in the VRM PMD

2023-09-18 Thread Nicolas Chautru
This allows to exposes the flexible version of the poitwise flexible operation being dynamically configured on the device. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 1 + drivers/baseband/acc/rte_vrb_pmd.c | 22 ++ 2 files changed, 23 insertions(

[PATCH v1 3/7] baseband/acc: remove the 4G SO capability for VRB1

2023-09-18 Thread Nicolas Chautru
This removes the specific capability and support of LTE Decoder Soft Output option on the VRB1 PMD. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/rte_vrb_pmd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/baseband/acc/rte_vrb_pmd.c b/drivers/baseba

[PATCH v1 4/7] baseband/acc: allocate FCW memory separately

2023-09-18 Thread Nicolas Chautru
This allows more flexibility to the FCW size for the unified driver. No actual functional change. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 4 +++- drivers/baseband/acc/rte_vrb_pmd.c | 25 - 2 files changed, 27 insertions(+), 2 deletions(-)

[PATCH v1 5/7] baseband/acc: add support for MLD operation

2023-09-18 Thread Nicolas Chautru
There is no functionality related to the MLD operation but allows the unified PMD to support the operation being added moving forward. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 1 + drivers/baseband/acc/rte_vrb_pmd.c | 39 -- drivers/bas

[PATCH v1 7/7] baseband/acc: add configure helper for VRB2

2023-09-18 Thread Nicolas Chautru
This allows to configure the VRB2 device using a companion configuration function within the DPDK bbdev-test environment. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc100_pmd.h | 2 + drivers/baseband/acc/acc_common.h | 7 + drivers/baseband/acc/rte_acc100_pmd.c | 6 +

[PATCH v1 6/7] baseband/acc: introduce the new VRB2 variant

2023-09-18 Thread Nicolas Chautru
This extends the unified driver to support both the VRB1 and VRB2 implentation of Intel vRAN Boost. Signed-off-by: Nicolas Chautru --- drivers/baseband/acc/acc_common.h | 84 +- drivers/baseband/acc/rte_acc100_pmd.c |4 +- drivers/baseband/acc/rte_vrb_pmd.c| 1441 ++

Re: [PATCH v5 03/32] net/sssnic: support probe and remove

2023-09-18 Thread Renyong Wan
Hello Stephen, This patch is just a minimum probe frame, it does nothing and always return error. The error check will apear in the subsequent patch([PATCH v5 04/32]), in that patch, hardware base is initialized, so secondary process check is added logically. Thanks. On 2023/9/19 0:08, Step

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Tuesday, September 19, 2023 4:02 AM > To: Wei Hu ; dev@dpdk.org > Cc: sta...@dpdk.org; Ferruh Yigit ; Luca Boccassi > ; Kevin Traynor > Subject: RE: [PATCH 1/1] net/mana: add 32 bit short doorbell > > > Subject: [PATCH 1/1] net/mana: add 32 bi

RE: [PATCH v2 04/15] bus/pci: find PCI capability

2023-09-18 Thread Xia, Chenbo
Hi David, > -Original Message- > From: David Marchand > Sent: Thursday, September 14, 2023 8:29 PM > To: Xia, Chenbo ; Maxime Coquelin > > Cc: dev@dpdk.org; tho...@monjalon.net; ferruh.yi...@amd.com; > nipun.gu...@amd.com; Richardson, Bruce ; > Burakov, Anatoly ; Jay Zhou > ; McDaniel, T

RE: [PATCH v3 04/15] bus/pci: find PCI capability

2023-09-18 Thread Xia, Chenbo
> -Original Message- > From: David Marchand > Sent: Thursday, September 14, 2023 8:36 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; ferruh.yi...@amd.com; Xia, Chenbo > ; nipun.gu...@amd.com; Richardson, Bruce > ; Burakov, Anatoly ; > Jay Zhou ; Sevincer, Abdullah > ; Julien Aube ; Rahul

RE: [PATCH v3 12/15] pci: define some ACS constants

2023-09-18 Thread Xia, Chenbo
> -Original Message- > From: David Marchand > Sent: Thursday, September 14, 2023 8:36 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; ferruh.yi...@amd.com; Xia, Chenbo > ; nipun.gu...@amd.com; Richardson, Bruce > ; Sevincer, Abdullah > ; Gaetan Rivet > Subject: [PATCH v3 12/15] pci: defi

RE: [PATCH v3 13/15] pci: define some PRI constants

2023-09-18 Thread Xia, Chenbo
> -Original Message- > From: David Marchand > Sent: Thursday, September 14, 2023 8:36 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; ferruh.yi...@amd.com; Xia, Chenbo > ; nipun.gu...@amd.com; Richardson, Bruce > ; Sevincer, Abdullah > ; Gaetan Rivet > Subject: [PATCH v3 13/15] pci: defi

RE: [PATCH v3 14/15] pci: define some AER constants

2023-09-18 Thread Xia, Chenbo
> -Original Message- > From: David Marchand > Sent: Thursday, September 14, 2023 8:36 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; ferruh.yi...@amd.com; Xia, Chenbo > ; nipun.gu...@amd.com; Richardson, Bruce > ; Sevincer, Abdullah > ; Gaetan Rivet > Subject: [PATCH v3 14/15] pci: defi

RE: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-18 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Tuesday, September 19, 2023 1:41 AM > To: Wei Hu ; dev@dpdk.org; Long Li > > Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi > > Subject: Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver > > On 9/13/2023 1:23 PM, Wei H

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Stephen Hemminger
On Mon, 4 Sep 2023 12:56:26 +0800 wrote: > From: Renyong Wan > > The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support > for 3SNIC 9x0 serials family of Ethernet adapters. > > Supported NICs are: > > - 3S910 Dual Port SFP28 10/25GbE Ethernet adapter > - 3S920 Quad Port SFP2

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Stephen Hemminger
On Mon, 4 Sep 2023 12:56:26 +0800 wrote: > From: Renyong Wan > > The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support > for 3SNIC 9x0 serials family of Ethernet adapters. > > Supported NICs are: > > - 3S910 Dual Port SFP28 10/25GbE Ethernet adapter > - 3S920 Quad Port SFP2

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Stephen Hemminger
On Mon, 4 Sep 2023 12:56:26 +0800 wrote: > From: Renyong Wan > > The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support > for 3SNIC 9x0 serials family of Ethernet adapters. > > Supported NICs are: > > - 3S910 Dual Port SFP28 10/25GbE Ethernet adapter > - 3S920 Quad Port SFP2

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-18 Thread Wei Hu
> -Original Message- > From: Ferruh Yigit > Sent: Tuesday, September 19, 2023 2:03 AM > To: Wei Hu ; dev@dpdk.org; Long Li > > Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi > > Subject: Re: [PATCH 1/1] net/mana: add 32 bit short doorbell > > On 9/9/2023 1:23 PM, Wei Hu wrote: > >

[PATCH] maintainers: update email address

2023-09-18 Thread Chenbo Xia
I am leaving Intel, so replace my Intel email with personal one temporarily. Signed-off-by: Chenbo Xia --- .mailmap| 2 +- MAINTAINERS | 12 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.mailmap b/.mailmap index 864d33ee46..8cb3c1e80f 100644 --- a/.mailmap +++

[PATCH] net/mlx5: reuse reformat and modify header actions in a table

2023-09-18 Thread Gregory Etelson
If application defined several actions templates with non-shared reformat or modify headers actions AND used these templates to create a table, HWS could share reformat or modify headers resources, instead of creating a resource for each action template. The patch activates HWS code in a way that

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Renyong Wan
Hello Stephen, I'll fix it in next version of patch. Thanks. On 2023/9/19 11:19, Stephen Hemminger wrote: On Mon, 4 Sep 2023 12:56:26 +0800 wrote: From: Renyong Wan The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support for 3SNIC 9x0 serials family of Ethernet adapters.

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Renyong Wan
Hello Stephen, I'll fix it in next version of patch. Thanks. On 2023/9/19 11:21, Stephen Hemminger wrote: On Mon, 4 Sep 2023 12:56:26 +0800 wrote: From: Renyong Wan The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support for 3SNIC 9x0 serials family of Ethernet adapters.

Re: [PATCH v5 00/32] Introduce sssnic PMD for 3SNIC's 9x0 serials Ethernet adapters

2023-09-18 Thread Renyong Wan
Hello Stephen, I'll fix it in next version of patch. Thanks. On 2023/9/19 11:23, Stephen Hemminger wrote: On Mon, 4 Sep 2023 12:56:26 +0800 wrote: From: Renyong Wan The sssnic PMD (**librte_pmd_sssnic**) provides poll mode driver support for 3SNIC 9x0 serials family of Ethernet adapters.

RE: [EXT] [PATCH v2] common/qat: enable QAT 2.0c devices

2023-09-18 Thread Akhil Goyal
> This commit enables QAT 2.0c devices in the > Intel QuickAssist Technology PMD. > These are 4th Generation QAT, 402xx devices. > > Signed-off-by: Ciara Power > > --- > v2: > - Fixed kernel module. > - Modified commit to align naming of new QAT device. > --- > doc/guides/cryptodevs/qat.r

RE: [EXT] [PATCH 1/2] crypto/dpaa2_sec: fix debug prints

2023-09-18 Thread Akhil Goyal
> RTE_LIBRTE_SECURITY has been replaced with RTE_LIB_SECURITY for a > while now. > > Fixes: 84bb24bd058c ("crypto/dpaa2_sec: add debug prints") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand Series applied to dpdk-next-crypto Thanks.

RE: [PATCH v2] cryptodev: add missing doc

2023-09-18 Thread Akhil Goyal
> Subject: [PATCH v2] cryptodev: add missing doc Title updated as "cryptodev: fix missing doc" > > Description for rte_cryptodev_get_sec_ctx is missing. Add the same. > > Fixes: eadb4fa1e1fe ("cryptodev: support security APIs") > > Signed-off-by: Anoob Joseph Acked-by: Akhil Goyal Cc: sta...@

RE: [EXT] [PATCH v8 1/3] crypto/ipsec_mb: add digest encrypted feature

2023-09-18 Thread Akhil Goyal
> -- > AESNI_MB PMD does not support Digest Encrypted. This patch adds a check and > support for this feature. > > Acked-by: Ciara Power > Signed-off-by: Brian Dooley > --- > v2: > Fixed CHECKPATCH warning > v3: > Add Digest enc

RE: [EXT] Re: [PATCH] test/security: fix buffer leaks in error path

2023-09-18 Thread Akhil Goyal
> > +#define FREE_PKTS(j, m) { \ > > + while (j--) \ > > + rte_pktmbuf_free(m[j]); \ > > +} > > + > > Changes looks good. However do you want to define a static inline > function here instead of macro? Any specific reason for changing to inline function? In