Re: baseband PMD APIs

2022-10-13 Thread Thomas Monjalon
To bbdev maintainers, Do you think we can avoid having some PMD-specific configuration? It looks blocking migration from a driver to another. How do we manage that? 13/10/2022 11:07, Akhil Goyal: > There are 6 bbdev PMDs, out of which 3 have pmd APIs - all from Intel > These are the PMD APIs for

[PATCH v5 0/2] vhost: introduce DMA vchannel unconfiguration

2022-10-13 Thread xuan . ding
From: Xuan Ding This patchset introduces a new API rte_vhost_async_dma_unconfigure() to help user to manually free DMA vchannels finished to use. Note: this API should be called after async channel unregister. v5: * Use mutex instead of spinlock. * Improve code readability. v4: * Rebase to 22.

[PATCH v5 1/2] vhost: introduce DMA vchannel unconfiguration

2022-10-13 Thread xuan . ding
From: Xuan Ding Add a new API rte_vhost_async_dma_unconfigure() to unconfigure DMA vchannels in vhost async data path. Lock protection are also added to protect DMA vchannels configuration and unconfiguration from concurrent calls. Signed-off-by: Xuan Ding --- doc/guides/prog_guide/vhost_lib.r

[PATCH v5 2/2] examples/vhost: unconfigure DMA vchannel

2022-10-13 Thread xuan . ding
From: Xuan Ding This patch applies rte_vhost_async_dma_unconfigure() to manually free DMA vchannels. Before unconfiguration, make sure the specified DMA device is no longer used by any vhost ports. Signed-off-by: Xuan Ding --- examples/vhost/main.c | 40 +++-

RE: [PATCH] eventdev: increase xstats ID width to 64 bits

2022-10-13 Thread Morten Brørup
> From: pbhagavat...@marvell.com [mailto:pbhagavat...@marvell.com] > Sent: Thursday, 13 October 2022 11.24 > > From: Pavan Nikhilesh > > Increase xstats ID width to 64bits from 32 bits, this also > fixes the xstats ID datatype discrepancy between reset and > rest of the xstats family. > > Signe

[PATCH] net/mlx5: fix thread workspace memory leak

2022-10-13 Thread Dong Zhou
The thread workspace push/pop should be paired. In the "flow_list_create" routine, if error happened the workspace pop was missed. This patch shares the workspace pop for all return paths. Fixes: 0064bf431899 ("net/mlx5: fix nested flow creation") Cc: xuemi...@nvidia.com Cc: sta...@dpdk.org Signe

RE: [PATCH v2 0/4] crypto/ccp cleanup

2022-10-13 Thread Akhil Goyal
Hi Sunil > For this series > > Below shared patches seems fine, verified on AMD platform works fine. > > crypto/ccp: fix IOVA handling > crypto/ccp: remove some dead code for UIO > crypto/ccp: remove some printf > > Now working on the "crypto/ccp: fix PCI probing" patch and will update on > th

RE: [PATCH v2 2/2] vhost: fix slot index calculation in async vhost

2022-10-13 Thread Ling, WeiX
> -Original Message- > From: Cheng Jiang > Sent: Tuesday, October 11, 2022 11:08 AM > To: maxime.coque...@redhat.com; Xia, Chenbo > Cc: dev@dpdk.org; Hu, Jiayu ; Ding, Xuan > ; Ma, WenwuX ; Wang, > YuanX ; Yang, YvonneX > ; He, Xingguang ; > Jiang, Cheng1 ; sta...@dpdk.org > Subject: [PAT

[v1] examples/fips_validation: remove unused include file

2022-10-13 Thread Gowrishankar Muthukrishnan
Remove invoking include for sys/random.h which is not actually used by app. Signed-off-by: Gowrishankar Muthukrishnan --- examples/fips_validation/fips_validation_rsa.c | 1 - 1 file changed, 1 deletion(-) diff --git a/examples/fips_validation/fips_validation_rsa.c b/examples/fips_validation/f

Re: 回复: 回复: [PATCH v2 1/3] ethdev: add API for direct rearm mode

2022-10-13 Thread Konstantin Ananyev
12/10/2022 14:38, Feifei Wang пишет: -邮件原件- 发件人: Konstantin Ananyev 发送时间: Wednesday, October 12, 2022 6:21 AM 收件人: Feifei Wang ; tho...@monjalon.net; Ferruh Yigit ; Andrew Rybchenko ; Ray Kinsella 抄送: dev@dpdk.org; nd ; Honnappa Nagarahalli ; Ruifeng Wang 主题: Re: 回复: [PATCH v2 1/3]

Re: [PATCH 2/4] eventdev: have ethernet Rx adapter appropriately report idle

2022-10-13 Thread Mattias Rönnblom
On 2022-10-13 03:32, Naga Harish K, S V wrote: > > >> -Original Message- >> From: Jayatheerthan, Jay >> Sent: Tuesday, October 11, 2022 12:40 PM >> To: mattias.ronnblom ; Carrillo, Erik G >> ; Gujjar, Abhinandan S >> ; Jerin Jacob ; Naga >> Harish K, S V >> Cc: dev@dpdk.org; Van Haaren,

unsubscribe

2022-10-13 Thread Benjamin Demartin
Hello I would like to unsubscribe but I don’t know how

Re: [PATCH] eventdev: increase xstats ID width to 64 bits

2022-10-13 Thread Mattias Rönnblom
On 2022-10-13 11:23, pbhagavat...@marvell.com wrote: > From: Pavan Nikhilesh > > Increase xstats ID width to 64bits from 32 bits, this also "Increase xstats ID width from 32 to 64 bits. This /../" Not that "unsigned int" is always 32, but anyways, I guess that's true for all platforms DPDK sup

[PATCH] gro : fix reordering of packets in GRO library

2022-10-13 Thread Kumara Parameshwaran
From: Kumara Parameshwaran When a TCP packet contains flags like PSH it is returned immediately to the application though there might be packets of the same flow in the GRO table. If PSH flag is set on a segment packets upto the segment should be delivered immediately. But the current implementat

[PATCH v6 00/10] dts: ssh connection to a node

2022-10-13 Thread Juraj Linkeš
All the necessary code needed to connect to a node in a topology with a bit more, such as basic logging and some extra useful methods. To run the code, modify the config file, conf.yaml and execute ./main.py from the root dts folder. Here's an example config: executions: - system_under_test: "SU

[PATCH v6 01/10] dts: add project tools config

2022-10-13 Thread Juraj Linkeš
Add configuration for Python tools used in DTS: Poetry, dependency and package manager Black, formatter Pylama, static analysis Isort, import sorting Add Python and DTS specifics to .gitignore and .editorconfig. Of note is the change of maximum line length of Python code to 88, which is a good com

[PATCH v6 02/10] dts: add developer tools

2022-10-13 Thread Juraj Linkeš
The Dockerfile contains basic image for CI and developers. There's also an integration of the Dockerfile with Visual Studio. The devtools that check Python code are Black and Isort to format the code and Pylama to do static analysis. Signed-off-by: Owen Hilyard Signed-off-by: Juraj Linkeš ---

[PATCH v6 03/10] dts: add config parser module

2022-10-13 Thread Juraj Linkeš
From: Owen Hilyard The configuration is split into two parts, one defining the parameters of the test run and the other defining the topology to be used. The format of the configuration is YAML. It is validated according to a json schema which also server as detailed documentation of the various

[PATCH v6 04/10] dts: add basic logging facility

2022-10-13 Thread Juraj Linkeš
The logging module provides loggers distinguished by two attributes, a custom format and a verbosity switch. The loggers log to both console and more verbosely to files. Signed-off-by: Owen Hilyard Signed-off-by: Juraj Linkeš --- dts/framework/__init__.py | 4 ++ dts/framework/logger.py | 1

[PATCH v6 05/10] dts: add remote session abstraction

2022-10-13 Thread Juraj Linkeš
The abstraction allows for easy switching of implementations of remote connections (ssh, telnet, etc.). It implements some common features, such as logging of commands and their outputs and history bookkeeping and defines methods that must be implemented by derived classes. Signed-off-by: Owen Hil

[PATCH v6 06/10] dts: add ssh session module

2022-10-13 Thread Juraj Linkeš
The module uses the pexpect python library and implements connection to a node and two ways to interact with the node: 1. Send a string with specified prompt which will be matched after the string has been sent to the node. 2. Send a command to be executed. No prompt is specified here. Signed-o

[PATCH v6 07/10] dts: add node base class

2022-10-13 Thread Juraj Linkeš
The base class implements basic node management methods - connect and execute commands. Signed-off-by: Owen Hilyard Signed-off-by: Juraj Linkeš --- dts/framework/testbed_model/__init__.py | 8 dts/framework/testbed_model/node.py | 63 + 2 files changed, 71 inse

[PATCH v6 08/10] dts: add dts workflow module

2022-10-13 Thread Juraj Linkeš
The module implements methods needed to run DTS. It handles the creation of objects and eventually the whole DTS workflow, such as running node setups, test gathering, setup and execution and various cleanups. Signed-off-by: Owen Hilyard Signed-off-by: Juraj Linkeš --- dts/framework/dts.py |

[PATCH v6 09/10] dts: add dts executable script

2022-10-13 Thread Juraj Linkeš
The script is an interface to run DTS. Signed-off-by: Owen Hilyard Signed-off-by: Juraj Linkeš --- dts/main.py | 24 1 file changed, 24 insertions(+) create mode 100755 dts/main.py diff --git a/dts/main.py b/dts/main.py new file mode 100755 index 00..a70070765

[PATCH v6 10/10] maintainers: add dts maintainers

2022-10-13 Thread Juraj Linkeš
Signed-off-by: Juraj Linkeš --- MAINTAINERS | 5 + 1 file changed, 5 insertions(+) diff --git a/MAINTAINERS b/MAINTAINERS index 51d77460ec..e018e396d0 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -114,6 +114,11 @@ F: buildtools/symlink-drivers-solibs.py F: devtools/test-meson-builds.sh F:

Re: [PATCH v8 1/9] memarea: introduce memarea library

2022-10-13 Thread fengchengwen
Sorry to self-reply. On 2022/10/12 12:06, fengchengwen wrote: > Hi Dmitry, > > On 2022/10/11 23:58, Dmitry Kozlyuk wrote: >> 2022-10-11 12:17 (UTC+), Chengwen Feng: >> [...] >>> diff --git a/doc/guides/prog_guide/memarea_lib.rst >>> b/doc/guides/prog_guide/memarea_lib.rst >>> new file mode 1

Re: [PATCH v6 00/10] dts: ssh connection to a node

2022-10-13 Thread Bruce Richardson
On Thu, Oct 13, 2022 at 10:35:07AM +, Juraj Linkeš wrote: > All the necessary code needed to connect to a node in a topology with > a bit more, such as basic logging and some extra useful methods. > > To run the code, modify the config file, conf.yaml and execute ./main.py > from the root dts

[PATCH v2] doc: fix support table for ETH and VLAN flow items

2022-10-13 Thread Ilya Maximets
'has_vlan' attribute is only supported by sfc, mlx5 and cnxk. Other drivers doesn't support it. Most of them (like i40e) just ignore it silently. Some drivers (like mlx4) never had a full support of the eth item even before introduction of 'has_vlan' (mlx4 allows to match on the destination MAC o

Re: [PATCH] doc: fix support table for ETH and VLAN flow items

2022-10-13 Thread Ilya Maximets
On 10/12/22 17:30, Thomas Monjalon wrote: > 07/10/2022 13:55, Ilya Maximets: >> On 10/7/22 13:50, Ilya Maximets wrote: >>> On 9/12/22 12:09, Thomas Monjalon wrote: 16/03/2022 13:01, Ilya Maximets: > 'has_vlan' attribute is only supported by sfc, mlx5 and cnxk. > Other drivers doesn't s

[PATCH v2] eventdev: increase xstats ID width to 64 bits

2022-10-13 Thread pbhagavatula
From: Pavan Nikhilesh Increase xstats ID width from 32 to 64 bits. This also fixes the xstats ID datatype discrepancy between reset and rest of the xstats family. Signed-off-by: Pavan Nikhilesh Acked-by: Morten Brørup Reviewed-by: Mattias Rönnblom --- v2 Changes: - Fix compilation on 32 bit

[PATCH v2 02/13] common/cnxk: add devargs for soft expiry poll frequency

2022-10-13 Thread Nithin Dabilpuram
Add support to override soft expiry poll frequency via devargs. Also provide helper API to indicate reassembly support on a chip and documentation for devargs that are already present. Fixes: 780b9c89241b ("net/cnxk: support zero AURA for inline meta") Signed-off-by: Nithin Dabilpuram --- doc/g

[PATCH v2 01/13] common/cnxk: set MTU size on SDP based on SoC type

2022-10-13 Thread Nithin Dabilpuram
From: Sathesh Edara Set maximum frame size on SDP NIX side to 16KB for T93 A0-B0, F95N A0 and F95O A0 SOC type. Rest of the SoCs SDP NIX to 64KB. Signed-off-by: Sathesh Edara --- v2: - Add fixes line in patch 1/13 - Squash patch 8/13 to 7/13 as 7/13 is the patch that introduced the bug - Add an

[PATCH v2 03/13] net/cnxk: fix later skip to include mbuf priv

2022-10-13 Thread Nithin Dabilpuram
Fix later skip to include mbuf priv data as mbuf->buf_addr is populated based on calculation including per-mbuf priv area. Fixes: 706eeae60757 ("net/cnxk: add multi-segment Rx for CN10K") cc: sta...@dpdk.org Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_rx.h| 4 +++- drivers/n

[PATCH v2 04/13] net/cnxk: use NIX Tx offset for cn10kb

2022-10-13 Thread Nithin Dabilpuram
In outbound inline case, use NIX Tx offset instead of NIX Tx address for CN103XX as per new instruction format. Signed-off-by: Nithin Dabilpuram --- drivers/common/cnxk/roc_constants.h | 1 + drivers/event/cnxk/cn10k_worker.h | 3 +++ drivers/net/cnxk/cn10k_ethdev.c | 6 ++ drivers/net

[PATCH v2 05/13] common/cnxk: fix RQ mask config for cn10kb chip

2022-10-13 Thread Nithin Dabilpuram
RQ mask config needs to enable SPB_ENA in order for Zero for being able to override it with Meta aura. Also fix flow control config to catch invalid rxchan config errors. Fixes: ddf955d3917e ("common/cnxk: support CPT second pass") Fixes: da57d4589a6f ("common/cnxk: support NIX flow control") Si

[PATCH v2 06/13] common/cnxk: fix schedule weight update

2022-10-13 Thread Nithin Dabilpuram
From: Satha Rao Each TX schedule config mail box supports maximum 20 register updates. This patch will send node weight updates in multiple mailbox when TM created with more than 20 scheduler nodes. Fixes: 464c9f919321 ("common/cnxk: support NIX TM dynamic update") Cc: ndabilpu...@marvell.com S

[PATCH v2 07/13] common/cnxk: sync NIX HW info mbox structure with kernel

2022-10-13 Thread Nithin Dabilpuram
From: Satha Rao Sync nix_hw_info structure with kernel. Maintain default RR_QUANTUM for VF TL2 same as kernel to make equal distribution among all VFs. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_mbox.h | 8 +- drivers/common/cnxk/roc_nix.c | 9 ++- drivers

[PATCH v2 08/13] common/cnxk: set hysteresis bit to one

2022-10-13 Thread Nithin Dabilpuram
From: Satha Rao Setting non zero FC_HYST_BITS to reduce mesh traffic on HW. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_nix_queue.c b/drivers/common/cnxk/roc_nix_queue.c index 7318

[PATCH v2 09/13] net/cnxk: handle SA soft packet and byte expiry events

2022-10-13 Thread Nithin Dabilpuram
From: Vamsi Attunuru Handle SA soft packet and byte expiry event for Inline outbound SA. Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_ethdev_sec.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/net/cnxk/cn10k_ethdev_sec.c b/drivers/net/cnxk/cn

[PATCH v2 10/13] common/cnxk: sync mailbox for channel and bpid map

2022-10-13 Thread Nithin Dabilpuram
From: Sunil Kumar Kori As per recent change in Linux-5.4.x, mailbox is updated to configure mapping between channel and BPID. Due to mbox mismatch, PFC was broken. Patch syncs mailbox definition for the same. Also fixes the PFC configuration issues. Signed-off-by: Sunil Kumar Kori --- drivers/

[PATCH v2 11/13] net/cnxk: remove unnecessary dptr update

2022-10-13 Thread Nithin Dabilpuram
Also remove ESN update from ucode command word 0 based on latest ucode. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vidya Sagar Velumuri --- drivers/event/cnxk/cn9k_worker.h | 1 - drivers/net/cnxk/cn10k_tx.h | 4 2 files changed, 5 deletions(-) diff --git a/drivers/event/cnxk/cn

[PATCH v2 12/13] net/cnxk: remove duplicate mempool debug checks

2022-10-13 Thread Nithin Dabilpuram
Remove duplicate mempool debug checks for mbufs received. Fixes: 592642c494b1 ("net/cnxk: align prefetches to CN10K cache model") Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_rx.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/net/cnxk/cn10k_rx.h b/drivers/net/cn

[PATCH v2 13/13] net/cnxk: handle hard expiry events

2022-10-13 Thread Nithin Dabilpuram
From: Vamsi Attunuru Based on the hard limits configured in the SA context, PMD passes corresponding event subtype to the application to notify hard expiry event Signed-off-by: Vamsi Attunuru --- drivers/net/cnxk/cn10k_ethdev_sec.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/driv

[PATCH] net/mana: disable driver by default

2022-10-13 Thread Ferruh Yigit
Driver is disabled by default because its dependencies are not upstreamed yet, code is available for development and investigation. When all dependencies are upstreamed, driver can be enabled back. Fixes: 517ed6e2d590 ("net/mana: add basic driver with build environment") Signed-off-by: Ferruh Yi

RE: [v1] examples/fips_validation: remove unused include file

2022-10-13 Thread Akhil Goyal
> Subject: [v1] examples/fips_validation: remove unused include file > > Remove invoking include for sys/random.h which is not actually used > by app. > > Signed-off-by: Gowrishankar Muthukrishnan > --- Squashed with original commit. Thanks.

Re: [PATCH] net/nfp: set the appropriate initialized value of flbufsz

2022-10-13 Thread Ferruh Yigit
On 10/10/2022 7:48 AM, Chaoyong He wrote: From: Peng Zhang When the testpmd app start-up with parameter max-pkt-len, it will set MTU. But the initialized value of flubfsz is inappropriate, if the value of flbufsz is smaller than the valude of max-pkt-len, the testpmd app will start fail. Wha

Re: [PATCH] net/nfp: add the feature of RSS based on VXLAN inner layer

2022-10-13 Thread Ferruh Yigit
On 10/10/2022 7:28 AM, Chaoyong He wrote: Add the logics to support the feature of RSS packets based on the inner layer of VXLAN tunnel. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund Depends-on: series-24819 ("preparation for the rte_flow offload of nfp PMD") --- drivers/net/nfp

Re: [PATCH] doc: fix support table for ETH and VLAN flow items

2022-10-13 Thread Thomas Monjalon
13/10/2022 13:01, Ilya Maximets: > On 10/12/22 17:30, Thomas Monjalon wrote: > > 07/10/2022 13:55, Ilya Maximets: > >> On 10/7/22 13:50, Ilya Maximets wrote: > >>> On 9/12/22 12:09, Thomas Monjalon wrote: > 16/03/2022 13:01, Ilya Maximets: > > 'has_vlan' attribute is only supported by sfc,

[PATCH 1/3] net/iavf: fix security session destroy

2022-10-13 Thread Radu Nicolau
Replace mempool_put with memset 0, the internal session memory block is no longer allocated from a mempool Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") Cc: gak...@marvell.com Signed-off-by: Radu Nicolau --- drivers/net/iavf/iavf_ipsec_crypto.c | 2 +- 1 file changed, 1 inserti

[PATCH 2/3] net/ixgbe: fix security session destroy

2022-10-13 Thread Radu Nicolau
Replace mempool_put with memset 0, the internal session memory block is no longer allocated from a mempool Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") Cc: gak...@marvell.com Signed-off-by: Radu Nicolau --- drivers/net/ixgbe/ixgbe_ipsec.c | 4 +--- 1 file changed, 1 insertion(

[PATCH 3/3] net/txgbe: fix security session destroy

2022-10-13 Thread Radu Nicolau
Replace mempool_put with memset 0, the internal session memory block is no longer allocated from a mempool Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") Cc: gak...@marvell.com Signed-off-by: Radu Nicolau --- drivers/net/txgbe/txgbe_ipsec.c | 3 +-- 1 file changed, 1 insertion(+

RE: [EXT] [PATCH 1/3] net/iavf: fix security session destroy

2022-10-13 Thread Akhil Goyal
> Replace mempool_put with memset 0, the internal session memory block > is no longer allocated from a mempool > > Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") > Cc: gak...@marvell.com > > Signed-off-by: Radu Nicolau > --- Acked-by: Akhil Goyal

RE: [EXT] [PATCH 3/3] net/txgbe: fix security session destroy

2022-10-13 Thread Akhil Goyal
> Replace mempool_put with memset 0, the internal session memory block > is no longer allocated from a mempool > > Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") > Cc: gak...@marvell.com > > Signed-off-by: Radu Nicolau Acked-by: Akhil Goyal

RE: [EXT] [PATCH 2/3] net/ixgbe: fix security session destroy

2022-10-13 Thread Akhil Goyal
> Replace mempool_put with memset 0, the internal session memory block > is no longer allocated from a mempool > > Fixes: 3f3fc3308bd0 ("security: remove private mempool usage") > Cc: gak...@marvell.com > > Signed-off-by: Radu Nicolau Acked-by: Akhil Goyal

[PATCH v13 5/5] net/bnxt: support proactive error handling mode

2022-10-13 Thread Chengwen Feng
From: Kalesh AP This patch supports proactive error handling mode. Signed-off-by: Kalesh AP Signed-off-by: Somnath Kotur Reviewed-by: Ajit Khaparde Reviewed-by: Chengwen Feng --- drivers/net/bnxt/bnxt_cpr.c| 4 drivers/net/bnxt/bnxt_ethdev.c | 13 - 2 files changed, 16

[PATCH v13 1/5] ethdev: add error handling mode to device info

2022-10-13 Thread Chengwen Feng
This patch adds error handling mode to device info, currently, the defined error handling modes include: 1) NONE: it means no error handling modes are supported by this port. 2) PASSIVE: passive error handling, after the PMD detect that a reset is required, the PMD reports RTE_ETH_EVENT_INTR_RESE

[PATCH v13 0/5] support error handling mode

2022-10-13 Thread Chengwen Feng
This patchset introduce error handling mode concept, the supported modes are as follows: 1) PASSIVE: passive error handling, after the PMD detect that a reset is required, the PMD reports RTE_ETH_EVENT_INTR_RESET event, and application invoke rte_eth_dev_reset to recover the port. 2) PROACTIVE:

[PATCH v13 2/5] ethdev: support proactive error handling mode

2022-10-13 Thread Chengwen Feng
From: Kalesh AP Some PMDs (e.g. hns3) could detect hardware or firmware errors, one error recovery mode is to report RTE_ETH_EVENT_INTR_RESET event, and wait for application invoke rte_eth_dev_reset() to recover the port, however, this mode has the following weaknesses: 1) Due to different hardw

[PATCH v13 3/5] app/testpmd: support error handling mode event

2022-10-13 Thread Chengwen Feng
From: Kalesh AP This patch supports error handling mode event process. Signed-off-by: Kalesh AP Signed-off-by: Somnath Kotur Signed-off-by: Chengwen Feng Reviewed-by: Ajit Khaparde --- app/test-pmd/parameters.c | 10 -- app/test-pmd/testpmd.c| 8 +++- 2 files changed, 15 in

[PATCH v13 4/5] net/hns3: support proactive error handling mode

2022-10-13 Thread Chengwen Feng
This patch supports proactive error handling mode. Signed-off-by: Chengwen Feng Acked-by: Dongdong Liu --- drivers/net/hns3/hns3_common.c | 2 ++ drivers/net/hns3/hns3_intr.c | 24 2 files changed, 26 insertions(+) diff --git a/drivers/net/hns3/hns3_common.c b/drive

Re: [PATCH v12 2/5] ethdev: support proactive error handling mode

2022-10-13 Thread fengchengwen
Hi Andrew, I rework part of rst according your comments, sent by v13, please take a look. Thanks. On 2022/10/13 16:58, Andrew Rybchenko wrote: > On 10/12/22 06:45, Chengwen Feng wrote: >> From: Kalesh AP >> >> Some PMDs (e.g. hns3) could detect hardware or firmware errors, one >> error recove

RE: [PATCH v2] build: increase minimum meson version to 0.53.2

2022-10-13 Thread Tu, Lijuan
> -Original Message- > From: David Marchand > Sent: Monday, October 10, 2022 3:48 PM > To: Tu, Lijuan > Cc: Richardson, Bruce ; Thomas Monjalon > ; dev@dpdk.org; c...@dpdk.org; Lincoln Lavoie > ; Chen, Zhaoyan ; Mcnamara, > John > Subject: Re: [PATCH v2] build: increase minimum meson v

RE: [EXT] [PATCH v3 18/30] baseband/acc100: enable input validation by default

2022-10-13 Thread Akhil Goyal
> Enable validation functions by default and provide a new flag > RTE_LIBRTE_SKIP_VALIDATE if the user wants to run without > validating input to save cycles. > > Signed-off-by: Hernan Vargas > > Reviewed-by: Maxime Coquelin > --- > drivers/baseband/acc/rte_acc100_pmd.c | 36 +-

RE: [EXT] [PATCH v3 00/30] baseband/acc100: changes for 22.11

2022-10-13 Thread Akhil Goyal
> Hernan Vargas (30): > baseband/acc100: fix ring availability calculation > baseband/acc100: add function to check AQ availability > baseband/acc100: memory leak fix > baseband/acc100: add LDPC encoder padding function > baseband/acc100: check turbo dec/enc input > baseband/acc100: che

RE: [EXT] [PATCH v3 24/30] baseband/acc100: rename ldpc encode function arg

2022-10-13 Thread Akhil Goyal
> Rename total_enqueued_cbs to total_enqueued_descs in the > enqueue_ldpc_enc_n_op_cb function. No functional impact. > Can you specify the reason for rename in description? > Signed-off-by: Hernan Vargas > > Reviewed-by: Maxime Coquelin

RE: [EXT] [PATCH v3 29/30] baseband/acc100: add workaround for deRM corner cases

2022-10-13 Thread Akhil Goyal
> Add function to support de-ratematch pre-processing for SW corner cases. > Please add more meaningful description. Title says adding workaround. You should explain the issue and then what is done in this patch. > Signed-off-by: Hernan Vargas > --- > drivers/baseband/acc/acc_common.h |

[PATCH] usertools/pmdinfo: remove dependency to ldd

2022-10-13 Thread Robin Jarry
Some environments (buildroot) do not have the ldd utility installed by default. However, ldd is often only a wrapper shell script that actually checks that the arguments are valid ELF files and executes them with the LD_TRACE_LOADED_OBJECTS=1 variable set in the environment. Since ld.so is the act

Re: [PATCH] trace: take live traces via telemetry

2022-10-13 Thread Jerin Jacob
On Thu, Oct 13, 2022 at 1:20 PM David Marchand wrote: > I would suggest to change the subject as "trace: enable trace operations via telemetry" or so > Register telemetry commands to list and configure trace points and later > save traces for a running DPDK application. > > Note: trace point nam

Re: [PATCH] net/ixgbevf: fix promiscuous and allmulti

2022-10-13 Thread Olivier Matz
Hi Wenjun, On Mon, Oct 10, 2022 at 01:30:54AM +, Wu, Wenjun1 wrote: > Hi Olivier, > > > -Original Message- > > From: Olivier Matz > > Sent: Thursday, September 29, 2022 8:22 PM > > To: dev@dpdk.org > > Cc: Yang, Qiming ; Wu, Wenjun1 > > ; Zhao1, Wei > > Subject: [PATCH] net/ixgbevf:

RE: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points

2022-10-13 Thread Harman Kalra
> -int > +static int > trace_mkdir(void) > { > struct trace *trace = trace_obj_get(); > char session[TRACE_DIR_STR_LEN]; > + static bool already_done; > char *dir_path; > int rc; > > + if (already_done) > + return 0; > + Hi David I was trying out "t

[PATCH v2] common/qat: read hw slice configuration

2022-10-13 Thread Arek Kusztal
Read slice configuration of QAT capabilities. This will allow to recognize if specific hw function is available on particular device. Signed-off-by: Arek Kusztal --- drivers/common/qat/dev/qat_dev_gen1.c| 8 +++ drivers/common/qat/dev/qat_dev_gen2.c| 8 +++ drivers/common/qat/d

Re: [PATCH 1/2] build: allow to conditionally build apps

2022-10-13 Thread Markus Theil
On 10/12/22 17:19, Bruce Richardson wrote: On Wed, Oct 12, 2022 at 04:47:03PM +0200, Markus Theil wrote: Makes apps configureable from meson, like already possible for drivers. Signed-off-by: Markus Theil --- app/meson.build | 17 - meson_options.txt | 4 2 files ch

Re: [PATCH 2/2] build: export dpdk_includes for subproject usage.

2022-10-13 Thread Markus Theil
On 10/12/22 17:21, Bruce Richardson wrote: On Wed, Oct 12, 2022 at 04:47:04PM +0200, Markus Theil wrote: From: Thorben Roemer In order to perform things like LTO more easily in our DPDK applications, we use DPDK as a meson subproject. Also export includes in order to be usable in this context.

[PATCH v2 1/2] build: allow to conditionally build apps

2022-10-13 Thread Markus Theil
Makes apps configurable from meson, like already possible for drivers. Signed-off-by: Markus Theil --- app/meson.build | 9 - meson_options.txt | 4 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/meson.build b/app/meson.build index 93d8c15032..24096e8108 100644

[PATCH v2 2/2] build: export dpdk_includes for subproject usage.

2022-10-13 Thread Markus Theil
From: Thorben Roemer In order to perform things like LTO more easily in our DPDK applications, we use DPDK as a meson subproject. Also export includes in order to be usable in this context. Signed-off-by: Thorben Roemer --- lib/meson.build | 1 + meson.build | 1 + 2 files changed, 2 inser

[PATCH v3 1/2] build: allow to conditionally build apps

2022-10-13 Thread Markus Theil
Makes apps configurable from meson, like already possible for drivers. Signed-off-by: Markus Theil --- app/meson.build | 9 - meson_options.txt | 4 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/app/meson.build b/app/meson.build index 93d8c15032..24096e8108 100644

[PATCH v3 2/2] build: export dpdk_includes for subproject usage.

2022-10-13 Thread Markus Theil
From: Thorben Roemer In order to perform things like LTO more easily in our DPDK applications, we use DPDK as a meson subproject. Also export includes in order to be usable in this context. Signed-off-by: Thorben Roemer --- drivers/baseband/fpga_5gnr_fec/meson.build | 2 ++ drivers/dma/dpaa2/m

DPDK Release Status Meeting 2022-10-13

2022-10-13 Thread Mcnamara, John
Release status meeting minutes 2022-10-13 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * ARM * Canonical [No] * Debian/Microsoft [No] * Intel * Marvell * Nvidia * Red Hat * Xilinx/AMD Release Dates - T

Re: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points

2022-10-13 Thread David Marchand
On Thu, Oct 13, 2022 at 4:53 PM Harman Kalra wrote: > > > > -int > > +static int > > trace_mkdir(void) > > { > > struct trace *trace = trace_obj_get(); > > char session[TRACE_DIR_STR_LEN]; > > + static bool already_done; > > char *dir_path; > > int rc; > > > > + i

RE: [PATCH] net/mana: disable driver by default

2022-10-13 Thread Long Li
> Subject: [PATCH] net/mana: disable driver by default > > Driver is disabled by default because its dependencies are not upstreamed > yet, code is available for development and investigation. > > When all dependencies are upstreamed, driver can be enabled back. > > Fixes: 517ed6e2d590 ("net/man

Re: [PATCH 1/2] build: allow to conditionally build apps

2022-10-13 Thread Bruce Richardson
On Thu, Oct 13, 2022 at 05:11:38PM +0200, Markus Theil wrote: > On 10/12/22 17:19, Bruce Richardson wrote: > > On Wed, Oct 12, 2022 at 04:47:03PM +0200, Markus Theil wrote: > > > Makes apps configureable from meson, like already > > > possible for drivers. > > > > > > Signed-off-by: Markus Theil

Re: [PATCH v3 2/2] build: export dpdk_includes for subproject usage.

2022-10-13 Thread Bruce Richardson
On Thu, Oct 13, 2022 at 05:35:39PM +0200, Markus Theil wrote: > From: Thorben Roemer > > In order to perform things like LTO more easily in > our DPDK applications, we use DPDK as a meson subproject. > Also export includes in order to be usable in this context. > > Signed-off-by: Thorben Roemer

RE: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points

2022-10-13 Thread Harman Kalra
> -Original Message- > From: David Marchand > Sent: Thursday, October 13, 2022 9:22 PM > To: Harman Kalra > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Sunil > Kumar Kori ; sta...@dpdk.org > Subject: Re: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points > > On Thu, Oc

Invitation: DTS Working Group - DPDK @ Thu Oct 20, 2022 9am - 10am (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VEVENT DTSTART:20221020T13Z DTEND:20221020T14Z DTSTAMP:20221013T172653Z ORGANIZER;CN=nsouth...@linuxfoundation.org:mailto:nsouthern@linuxfoundation .org UID:6s3tlf8sg4soovm

Updated invitation: DTS Working Group - DPDK @ Every 2 weeks from 9am to 10am on Thursday (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/Detroit X-LIC-LOCATION:America/Detroit BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:EDT DTSTART:19700308T02 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY

Re: [PATCH] app/testpmd: fix slave port reset action

2022-10-13 Thread Singh, Aman Deep
On 10/12/2022 1:13 PM, Qiming Yang wrote: As stop action has been forbidden in secondary process, so the reset action should also not be allowed. Fixes: a550baf24af9 ("app/testpmd: support multi-process") Cc: sta...@dpdk.org Signed-off-by: Qiming Yang Acked-by: Aman Singh --- app/test-pm

Updated invitation: DTS Working Group - DPDK @ Every 2 weeks from 9am to 10am on Thursday (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/Detroit X-LIC-LOCATION:America/Detroit BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:EDT DTSTART:19700308T02 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY

Updated invitation: DTS Working Group - DPDK @ Thu Nov 3, 2022 9am - 10am (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/Detroit X-LIC-LOCATION:America/Detroit BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:EDT DTSTART:19700308T02 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY

Updated invitation: DTS Working Group - DPDK @ Every 2 weeks from 9am to 10am on Thursday (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/Detroit X-LIC-LOCATION:America/Detroit BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:EDT DTSTART:19700308T02 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY

Updated invitation: DTS Working Group - DPDK @ Thu Nov 3, 2022 9am - 10am (EDT) (dev@dpdk.org)

2022-10-13 Thread nsouthern
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VTIMEZONE TZID:America/Detroit X-LIC-LOCATION:America/Detroit BEGIN:DAYLIGHT TZOFFSETFROM:-0500 TZOFFSETTO:-0400 TZNAME:EDT DTSTART:19700308T02 RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY

Re: [EXT] [PATCH v3 5/9] trace: fix dynamically enabling trace points

2022-10-13 Thread David Marchand
On Thu, Oct 13, 2022 at 7:07 PM Harman Kalra wrote: > > > > With the whole traces fixes series applied first, then the new "trace: > > take live traces via telemetry" patch applied, I can't reproduce your issue. > > > > > > Yes, you replicated the same scenario what I tried. > Sorry, I realized th

Unsafe memory access in testpmd

2022-10-13 Thread Stephen Hemminger
Noticed that test-pmd is using a signal handler to exit. And that signal handle clears a flag "f_quit". But that variable is updated without atomic and is not volatile. Simple fix to use atomic, would fix that part. But the signal_handler is calling a bunch of functions that are not safe in a sign

RE: [PATCH] net/nfp: add the feature of RSS based on VXLAN inner layer

2022-10-13 Thread Chaoyong He
> On 10/10/2022 7:28 AM, Chaoyong He wrote: > > Add the logics to support the feature of RSS packets based on the > > inner layer of VXLAN tunnel. > > > > Signed-off-by: Chaoyong He > > Reviewed-by: Niklas Söderlund > > > > Depends-on: series-24819 ("preparation for the rte_flow offload of nfp >

RE: [PATCH] net/ixgbevf: fix promiscuous and allmulti

2022-10-13 Thread Wu, Wenjun1
> -Original Message- > From: Olivier Matz > Sent: Thursday, October 13, 2022 10:46 PM > To: Wu, Wenjun1 > Cc: dev@dpdk.org; Yang, Qiming ; Zhao1, Wei > > Subject: Re: [PATCH] net/ixgbevf: fix promiscuous and allmulti > > Hi Wenjun, > > On Mon, Oct 10, 2022 at 01:30:54AM +, Wu, W

[RFC 0/1] baseband PMD API

2022-10-13 Thread Nicolas Chautru
Option to move PMD API into bbdev API. For discussion only, not yet sure this is the right way to go. Nicolas Chautru (1): bbdev: device PF initialization helper through bbdev API app/test-bbdev/test_bbdev_perf.c | 10 +- drivers/baseband/acc/acc100_pmd.h | 1 - dri

[RFC 1/1] bbdev: device PF initialization helper through bbdev API

2022-10-13 Thread Nicolas Chautru
Moved from PMD API to bbdev API. This API is only meant for bbdev-test usage (notably for OEMs). The actual configuration structure still need to be exposed as it is device specific. RFI only Signed-off-by: Nicolas Chautru --- app/test-bbdev/test_bbdev_perf.c | 10 +- drivers/baseb

RE: baseband PMD APIs

2022-10-13 Thread Chautru, Nicolas
Hi, There are a few options: 1) Keep as is, but not too scalable to keep on adding PMD APIs. Still there is no plan on adding more API, so no rush. 2) Keep API internal only (but in that case only work with static lib I believe) 3) Take out off DPDK, but that is used by users notably OEMs and fo

[PATCH v2] gro: fix gro with tcp push flag

2022-10-13 Thread Jun Qiu
TCP data packets sometimes carry a PUSH flag. Currently, only the packets that do not have PUSH flag can be GROed. The packets that have a PUSH flag cannot be GROed, the packets that cannot be processed by GRO are placed last. In this case, the received packets may be out of ord

[PATCH v13 0/1] bbdev-test extension

2022-10-13 Thread Nicolas Chautru
v13: Leftover commit 16 from the acc200 series (introduced in v10). Updated the commit message and documentation incl. rel notes and bbdev-test one suggested by Maxime. Modification of vector used. Thanks. v12: Rebase between commits notably to avoid interim build issue and test

[PATCH v13 1/1] test-bbdev: unit test extension including for FFT

2022-10-13 Thread Nicolas Chautru
From: Nic Chautru Added support for bbdev level unit test for the FFT operations and for Soft-Output options. Also added 2 small test vectors for the FFT operation. Signed-off-by: Nic Chautru Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c| 540 +++- app/

  1   2   >