Re: [RFC v2 05/14] lib: remove redundant newline from logs

2023-12-11 Thread Mattias Rönnblom
On 2023-12-08 15:59, David Marchand wrote: Fix places where two newline characters may be logged. Cc: sta...@dpdk.org Signed-off-by: David Marchand --- Changes since RFC v1: - split fixes on direct calls to printf or RTE_LOG in a previous patch, --- drivers/crypto/ipsec_mb/ipsec_mb_ops.c |

Re: [PATCH v2 2/2] net/cnxk: dump Rx descriptor info to file

2023-12-11 Thread Jerin Jacob
On Thu, Dec 7, 2023 at 9:13 PM Rakesh Kudurumalla wrote: > > Add support for eth_rx_descriptor_dump for cn9k and cn10k. > This patch dumps contents of receviced packet descriptor from CQ > for debug to file > > Signed-off-by: Rakesh Kudurumalla Series applied to dpdk-next-net-mrvl/for-main. Than

[PATCH] examples/ipsec-secgw: fix cryptodev to SA mapping

2023-12-11 Thread Radu Nicolau
There are use cases where a SA should be able to use different cryptodevs on different lcores, for example there can be cryptodevs with just 1 qp per VF. For this purpose this patch relaxes the check in create lookaside session function. Also add a check to verify that a CQP is available for the c

[RFC v3 03/12] argparse: support verify argument config

2023-12-11 Thread Chengwen Feng
This commit supports verify argument config. Signed-off-by: Chengwen Feng --- lib/argparse/rte_argparse.c | 307 +++- 1 file changed, 306 insertions(+), 1 deletion(-) diff --git a/lib/argparse/rte_argparse.c b/lib/argparse/rte_argparse.c index bf14c56858..6fdcf4f

[RFC v3 07/12] argparse: provide parsing known type API

2023-12-11 Thread Chengwen Feng
Provide API which could parsing the value from the input string based on the value type. This API could used in user callback when parsing string by argparse or kvargs library. Signed-off-by: Chengwen Feng --- lib/argparse/rte_argparse.c | 19 +++ lib/argparse/rte_argparse.h | 19

[RFC v3 00/12] add argparse library

2023-12-11 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]), compared with getopt, it makes it easy to write user-friendly command-like program. Note: the [1/6] commit contains usage examples. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/

[RFC v3 05/12] argparse: support parse parameters

2023-12-11 Thread Chengwen Feng
This commit supports parse parameters which described in [argc, argv]. Signed-off-by: Chengwen Feng --- lib/argparse/rte_argparse.c | 289 +++- 1 file changed, 286 insertions(+), 3 deletions(-) diff --git a/lib/argparse/rte_argparse.c b/lib/argparse/rte_argparse.

[RFC v3 01/12] eal: introduce more macro for bit definition

2023-12-11 Thread Chengwen Feng
Introduce macros: RTE_MBIT64/RTE_MBIT32, RTE_GENMASK64/RTE_GENMASK32, and RTE_FIELD_GET64/RTE_FIELD_GET32. Signed-off-by: Chengwen Feng --- lib/eal/include/rte_bitops.h | 64 1 file changed, 64 insertions(+) diff --git a/lib/eal/include/rte_bitops.h b/lib/ea

[RFC v3 08/12] test/argparse: add parse type test

2023-12-11 Thread Chengwen Feng
This commit adds parse type test. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/app/test/test_argparse.c b/app/test/test_argparse.c index 3e4f4a2cfa..06336714d9 100644 --- a/app/test/test_argparse.c +++ b/app

[RFC v3 04/12] test/argparse: add verify argument config test

2023-12-11 Thread Chengwen Feng
This commit adds verify argument config test. Signed-off-by: Chengwen Feng --- app/test/meson.build | 1 + app/test/test_argparse.c | 327 +++ 2 files changed, 328 insertions(+) create mode 100644 app/test/test_argparse.c diff --git a/app/test/meson.bu

[RFC v3 09/12] argparse: support parse unsigned base type

2023-12-11 Thread Chengwen Feng
This commit supports parsing unsigned base type (u8/u16/u32/u64). Signed-off-by: Chengwen Feng --- lib/argparse/rte_argparse.c | 116 lib/argparse/rte_argparse.h | 10 +++- 2 files changed, 125 insertions(+), 1 deletion(-) diff --git a/lib/argparse/rte_argp

[RFC v3 06/12] test/argparse: add parse parameters test

2023-12-11 Thread Chengwen Feng
This commit adds parse parameters test. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c | 437 +++ 1 file changed, 437 insertions(+) diff --git a/app/test/test_argparse.c b/app/test/test_argparse.c index d38ffb5775..3e4f4a2cfa 100644 --- a/app/test/

[RFC v3 02/12] argparse: add argparse library

2023-12-11 Thread Chengwen Feng
Introduce argparse library (which was inspired by the thread [1]). This commit provides public API and doc. [1] https://patchwork.dpdk.org/project/dpdk/patch/20231105054539.22303-2-fengcheng...@huawei.com/ Signed-off-by: Chengwen Feng --- doc/api/doxy-api-index.md | 1 + doc/api

[RFC v3 12/12] examples/dma: replace getopt with argparse

2023-12-11 Thread Chengwen Feng
Replace getopt with argparse. Signed-off-by: Chengwen Feng --- examples/dma/dmafwd.c| 279 ++- examples/dma/meson.build | 2 +- 2 files changed, 127 insertions(+), 154 deletions(-) diff --git a/examples/dma/dmafwd.c b/examples/dma/dmafwd.c index f27317a

[RFC v3 10/12] test/argparse: add parse unsigned base type test

2023-12-11 Thread Chengwen Feng
This commit adds parsing unsigned base type (u8/u16/u32/u64) test. Signed-off-by: Chengwen Feng --- app/test/test_argparse.c | 59 1 file changed, 54 insertions(+), 5 deletions(-) diff --git a/app/test/test_argparse.c b/app/test/test_argparse.c index 063

[RFC v3 11/12] argparse: pretty help info

2023-12-11 Thread Chengwen Feng
This commit aligns help info. Take dmafwd as an example, previous: options: -h, --help: show this help message and exit. --mac-updating: Enable MAC addresses updating --no-mac-updating: Disable MAC addresses updating -p, --portmask: hexadecimal bitmask of ports to configure -q, --nb-queue: n

Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Yuanhan Liu
Hi all, I'd like to share a new DPDK open source project, libtpa(Transport Protocol Acceleration)[0], which is just another userspace TCP stack implementation so far, written from scratch. I started this project 3 years ago, while I was searching for a feasible open source project with no luck. T

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

2023-12-11 Thread Bruce Richardson
On Fri, Dec 08, 2023 at 01:25:25PM +0530, Amit Prakash Shukla wrote: > DMA library has a function to get DMA device based on device name but > there is no function to get DMA device using device id. > > Added a function that lookup for the dma device using device id and > returns the pointer to th

Huawei Roadmap for DPDK 24.03 release

2023-12-11 Thread Jie Hai
The following are the proposed Huawei roadmap items for DPDK 24.03: lib === 1) Introduce argparse library https://patches.dpdk.org/project/dpdk/patch/20231204075048.894-2-fengcheng...@huawei.com/ 2) Introduce memarea library https://inbox.dpdk.org/dev/20220721044648.6817-1-fengcheng...@huawei.c

RE: [EXT] [PATCH] examples/packet_ordering: fix segfault in disable_reorder mode

2023-12-11 Thread Volodymyr Fialko
> -Original Message- > From: Qian Hao > Sent: Friday, December 8, 2023 1:43 PM > To: dev@dpdk.org > Cc: Volodymyr Fialko > Subject: [EXT] [PATCH] examples/packet_ordering: fix segfault in > disable_reorder mode Good catch overall, but few comments: 1. Please fix checkpatch coding styl

Re: Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Liang Ma
Hi Yuanhan, Congratulations! Regards Liang On Mon, Dec 11, 2023 at 05:56:54PM +0800, Yuanhan Liu wrote: > Hi all, > > I'd like to share a new DPDK open source project, libtpa(Transport > Protocol Acceleration)[0], which is just another userspace TCP stack > implementation so far, written fro

RE: [EXT] Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: Yuanhan Liu > Sent: Monday, December 11, 2023 3:27 PM > To: lib...@googlegroups.com > Cc: dev@dpdk.org; Yuanhan Liu > Subject: [EXT] Libtpa: a DPDK based userspace TCP stack implementation > > External Email > > ---

Re: [PATCH] event/cnxk: update base code

2023-12-11 Thread Jerin Jacob
On Fri, Dec 8, 2023 at 9:03 AM wrote: > > From: Pavan Nikhilesh > > Update base code. Could you split the patches. > > Signed-off-by: Pavan Nikhilesh > --- > drivers/common/cnxk/hw/ssow.h | 4 + > drivers/common/cnxk/hw/tim.h| 5 +- > drivers/common/cnxk/roc_mbox.h | 1

Re: [PATCH v3 8/8] examples/l3fwd-power: update to call arg parser API

2023-12-11 Thread Hunt, David
Hi Euan, On 07/12/2023 16:18, Euan Bourke wrote: Update to the l3fwd-power example application to call the arg parser library for its 'combined core string parser' instead of implementing its own corelist parser. The default_type passed into the function call is a corelist. Signed-off-by: Euan

Re: [PATCH v4 3/3] net/octeon_ep: use AVX2 instructions for Rx

2023-12-11 Thread Jerin Jacob
On Thu, Dec 7, 2023 at 2:03 PM wrote: > > From: Pavan Nikhilesh > > Optimize Rx routine to use AVX2 instructions when underlying > architecture supports it. > > Signed-off-by: Pavan Nikhilesh > --- > doc/guides/rel_notes/release_24_03.rst | 5 + > drivers/net/octeon_ep/cnxk_ep_rx_avx.c | 123

Re: [EXT] Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Thomas Monjalon
11/12/2023 12:32, Jerin Jacob Kollanukkaran: > From: Yuanhan Liu > > Hi all, > > > > I'd like to share a new DPDK open source project, libtpa(Transport Protocol > > Acceleration)[0], which is just another userspace TCP stack implementation > > so > > far, written from scratch. > > > > I started

Re: [EXT] Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Yuanhan Liu
On Mon, Dec 11, 2023 at 11:32:16AM +, Jerin Jacob Kollanukkaran wrote: > > > > -Original Message- > > From: Yuanhan Liu > > Sent: Monday, December 11, 2023 3:27 PM > > To: lib...@googlegroups.com > > Cc: dev@dpdk.org; Yuanhan Liu > > Subject: [EXT] Libtpa: a DPDK based userspace TCP

Re: [RFC v2 12/14] lib: convert to per line logging

2023-12-11 Thread David Marchand
On Fri, Dec 8, 2023 at 6:16 PM Stephen Hemminger wrote: > > On Fri, 8 Dec 2023 15:59:46 +0100 > David Marchand wrote: > > > Convert many libraries that call RTE_LOG(... "\n", ...) to RTE_LOG_LINE. > > > > Note: > > - for acl and sched libraries that still has some debug multilines > > messages

Re: [EXT] Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Yuanhan Liu
On Mon, Dec 11, 2023 at 01:16:52PM +0100, Thomas Monjalon wrote: > 11/12/2023 12:32, Jerin Jacob Kollanukkaran: > > From: Yuanhan Liu > > > Hi all, > > > > > > I'd like to share a new DPDK open source project, libtpa(Transport > > > Protocol > > > Acceleration)[0], which is just another userspac

Re: [RFC v2 13/14] lib: replace logging helpers

2023-12-11 Thread David Marchand
On Fri, Dec 8, 2023 at 6:18 PM Stephen Hemminger wrote: > > On Fri, 8 Dec 2023 15:59:47 +0100 > David Marchand wrote: > > > diff --git a/lib/bpf/bpf_impl.h b/lib/bpf/bpf_impl.h > > index b483569071..30d83d2b40 100644 > > --- a/lib/bpf/bpf_impl.h > > +++ b/lib/bpf/bpf_impl.h > > @@ -27,9 +27,10 @

Re: [RFC v2 04/14] lib: add newline in logs

2023-12-11 Thread David Marchand
On Fri, Dec 8, 2023 at 6:02 PM Stephen Hemminger wrote: > > On Fri, 8 Dec 2023 15:59:38 +0100 > David Marchand wrote: > > > Fix places leading to a log message not terminated with a newline. > > > > Cc: sta...@dpdk.org > > > > Signed-off-by: David Marchand > > Maybe a coccinelle fixup script wo

Re: [v2] net/af_xdp: enable a sock path alongside use_cni

2023-12-11 Thread Maryam Tahhan
On 08/12/2023 18:10, Maryam Tahhan wrote: Thanks Stephen,  I will have a look. I've seen a few places mention that abstract sockets are attached to the network namespace of a process. For our use case the 2 processes (pods) will have separate network namespaces. So I'm not sure it will work.

[PATCH v2 1/3] common/cnxk: update timer base code

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Update event timer base code. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - Split patches. drivers/common/cnxk/hw/tim.h | 5 +++-- drivers/common/cnxk/roc_mbox.h | 11 +++ drivers/common/cnxk/roc_sso.c | 2 +- drivers/common/cnxk/roc_tim.c | 27 +

[PATCH v2 2/3] common/cnxk: update scheduler base code

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Update event scheduler base code. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/hw/ssow.h | 4 drivers/common/cnxk/roc_sso.c | 34 +++--- drivers/common/cnxk/roc_sso.h | 2 +- 3 files changed, 28 insertions(+), 12 deletions(-)

[PATCH v2 3/3] event/cnxk: add option to update links via mbox

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Add option to update event queue to event port links via mailbox. Signed-off-by: Pavan Nikhilesh --- drivers/common/cnxk/roc_sso.c | 87 + drivers/common/cnxk/roc_sso.h | 4 +- drivers/event/cnxk/cn10k_eventdev.c | 6 +- drivers/e

Re: [EXT] Libtpa: a DPDK based userspace TCP stack implementation

2023-12-11 Thread Jerin Jacob
On Mon, Dec 11, 2023 at 5:48 PM Yuanhan Liu wrote: > > On Mon, Dec 11, 2023 at 11:32:16AM +, Jerin Jacob Kollanukkaran wrote: > > > > > > > -Original Message- > > > From: Yuanhan Liu > > > Sent: Monday, December 11, 2023 3:27 PM > > > To: lib...@googlegroups.com > > > Cc: dev@dpdk.org

[PATCH v5 1/3] net/octeon_ep: optimize Rx and Tx routines

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Preset rearm data to avoid writing multiple fields in fastpath, Increase maximum outstanding Tx instructions from 128 to 256. Signed-off-by: Pavan Nikhilesh --- v5 Changes: - Make release notes more verbose. v4 Changes: - Fix checkpatch. - Update release notes. v3 Chnages:

[PATCH v5 2/3] net/octeon_ep: use SSE instructions for Rx routine

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Optimize Rx routine to use SSE instructions. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/release_24_03.rst | 1 + drivers/net/octeon_ep/cnxk_ep_rx.c | 159 +-- drivers/net/octeon_ep/cnxk_ep_rx.h | 167 + dr

[PATCH v5 3/3] net/octeon_ep: use AVX2 instructions for Rx

2023-12-11 Thread pbhagavatula
From: Pavan Nikhilesh Optimize Rx routine to use AVX2 instructions when underlying architecture supports it. Signed-off-by: Pavan Nikhilesh --- doc/guides/rel_notes/release_24_03.rst | 1 + drivers/net/octeon_ep/cnxk_ep_rx_avx.c | 123 + drivers/net/octeon_ep/meson.bu

Re: [PATCH] event/cnxk: fix dequeue timeout configuration

2023-12-11 Thread Jerin Jacob
On Thu, Dec 7, 2023 at 1:43 PM wrote: > > From: Pavan Nikhilesh > > Allow dequeue timeout to be configured as zero, when > RTE_EVENT_DEV_CFG_PER_DEQUEUE_TIMEOUT is disabled. > > Fixes: 5512c7de85cd ("event/cnxk: add common configuration validation") > Cc: sta...@dpdk.org > > Signed-off-by: Pavan

Re: [PATCH v2 00/11] Add basic flow support for corenic firmware

2023-12-11 Thread Ferruh Yigit
On 12/11/2023 1:42 AM, Chaoyong He wrote: >> On 12/5/2023 2:54 AM, Chaoyong He wrote: >>> Add the very basic rte_flow support for corenic firmware. >>> >>> --- >>> v2: >>> * Update the 'nfp.ini' document. >>> * Rebase to the latest main branch. >>> --- >>> >>> Chaoyong He (11): >>> net/nfp: move

[v3] net/af_xdp: enable uds-path instead of use_cni

2023-12-11 Thread Maryam Tahhan
With the original 'use_cni' implementation, (using a hardcoded socket rather than a configurable one), if a single pod is requesting multiple net devices and these devices are from different pools, then the container attempts to mount all the netdev UDSes in the pod as /tmp/afxdp.sock. Which means

RE: 20.11.10 patches review and test

2023-12-11 Thread Ali Alnubani
> -Original Message- > From: luca.bocca...@gmail.com > Sent: Friday, December 1, 2023 1:51 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; benjamin.wal...@intel.com; David > Christensen ; Hemant Agrawal > ; Ian Stokes ; Jerin Jacob > ; John McNamara ; Ju- >

Re: 20.11.10 patches review and test

2023-12-11 Thread Luca Boccassi
On Mon, 11 Dec 2023 at 15:23, Ali Alnubani wrote: > > > -Original Message- > > From: luca.bocca...@gmail.com > > Sent: Friday, December 1, 2023 1:51 PM > > To: sta...@dpdk.org > > Cc: dev@dpdk.org; Abhishek Marathe ; > > Ali Alnubani ; benjamin.wal...@intel.com; David > > Christensen ; He

RE: [PATCH v3 8/8] examples/l3fwd-power: update to call arg parser API

2023-12-11 Thread Tummala, Sivaprasad
[AMD Official Use Only - General] Hi Euan, > -Original Message- > From: Euan Bourke > Sent: Thursday, December 7, 2023 9:48 PM > To: dev@dpdk.org > Cc: Euan Bourke ; Anatoly Burakov > ; David Hunt ; Tummala, > Sivaprasad > Subject: [PATCH v3 8/8] examples/l3fwd-power: update to call arg

[PATCH] doc: remove cmdline_poll deprecation notice

2023-12-11 Thread Stephen Hemminger
cmdline_poll has been removed by: commit f44f2edd198a ("cmdline: remove poll function") but deprecation notice was left behind. Signed-off-by: Stephen Hemminger --- doc/guides/rel_notes/deprecation.rst | 4 1 file changed, 4 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b

Re: [PATCH] doc: remove cmdline_poll deprecation notice

2023-12-11 Thread Bruce Richardson
On Mon, Dec 11, 2023 at 08:52:37AM -0800, Stephen Hemminger wrote: > cmdline_poll has been removed by: > commit f44f2edd198a ("cmdline: remove poll function") > but deprecation notice was left behind. > Suggest adding that commit in a fixes line and adding stable on Cc so this can be picked up fo

[PATCH v3 00/14] support new 5760X P7 devices

2023-12-11 Thread Ajit Khaparde
While some of the patches refactor and improve existing code, this series adds support for the new 5760X P7 device family. Follow-on patches will incrementally add more functionality. v1->v2: - Fixed unused variable error - Fixed some spellings - Code refactoring and fixes in backing store v2 v2-

[PATCH v3 01/14] net/bnxt: refactor epoch setting

2023-12-11 Thread Ajit Khaparde
Fix epoch bit setting when we ring the doorbell. Epoch bit needs to toggle alternatively from 0 to 1 every time the ring indices wrap. Currently its value is everything but an alternating 0 and 1. Remove unnecessary field db_epoch_shift from bnxt_db_info structure. Signed-off-by: Ajit Khaparde R

[PATCH v3 02/14] net/bnxt: update HWRM API

2023-12-11 Thread Ajit Khaparde
Update HWRM API to version 1.10.2.158 Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt_hwrm.c |3 - drivers/net/bnxt/hsi_struct_def_dpdk.h | 1531 ++-- 2 files changed, 1429 insertions(+), 105 deletions(-) diff --git a/drivers/net/bnxt/bnxt_hwrm.c b/drive

[PATCH v3 03/14] net/bnxt: log a message when multicast promisc mode changes

2023-12-11 Thread Ajit Khaparde
From: Kalesh AP When the user tries to add more number of Mcast MAC addresses than supported by the port, driver puts port into Mcast promiscuous mode. It may be useful to the user to know that Mcast promiscuous mode is turned on. Similarly added a log when Mcast promiscuous mode is turned off.

[PATCH v3 04/14] net/bnxt: use the correct COS queue for Tx

2023-12-11 Thread Ajit Khaparde
Earlier the firmware was configuring single lossy COS profiles for Tx. But now more than one profiles is possible. Identify the profile a NIC driver should use based on the profile type hint provided in queue_cfg_info. If the firmware does not set the bit to use profile type, then we will use the

[PATCH v3 05/14] net/bnxt: refactor mem zone allocation

2023-12-11 Thread Ajit Khaparde
Currently we are allocating memzone for VNIC attributes per VNIC. In cases where the firmware supports a higher VNIC count, this could lead to a higher number of memzone segments than supported. Move the memzone for VNIC attributes per function instead of per VNIC. Divide the memzone per VNIC as n

[PATCH v3 06/14] net/bnxt: add support for p7 device family

2023-12-11 Thread Ajit Khaparde
Add support for the P7 device family. Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 14 -- drivers/net/bnxt/bnxt_ethdev.c | 25 + 2 files changed, 37 insertions(+), 2 deletions(-) diff --git a/drivers/net/bnxt/bnxt.h b/drivers/net/bnxt/bnx

[PATCH v3 07/14] net/bnxt: refactor code to support P7 devices

2023-12-11 Thread Ajit Khaparde
Refactor code to support the P7 device family. The changes include support for RSS, VNIC allocation, TPA. Remove unnecessary check to disable vector mode support for some device families. Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 6 +++--- drivers/net/bnxt/bnxt_ethdev.c

[PATCH v3 08/14] net/bnxt: fix array overflow

2023-12-11 Thread Ajit Khaparde
In some cases the number of elements in the context memory array can exceed the MAX_CTX_PAGES and that can cause the static members ctx_pg_arr and ctx_dma_arr to overflow. Allocate them dynamically to prevent this overflow. Cc: sta...@dpdk.org Fixes: f8168ca0e690 ("net/bnxt: support thor controlle

[PATCH v3 09/14] net/bnxt: add support for backing store v2

2023-12-11 Thread Ajit Khaparde
Add backing store v2 changes. The firmware supports the new backing store scheme for P7 and newer devices. To support this, the driver queries the different types of chip contexts the firmware supports and allocates the appropriate size of memory for the firmware and hardware to use. The code then

[PATCH v3 10/14] net/bnxt: refactor the ulp initialization

2023-12-11 Thread Ajit Khaparde
From: Kishore Padmanabha Add new method to consider all the conditions to check before the ulp could be initialized. Signed-off-by: Kishore Padmanabha Reviewed-by: Ajit Khaparde Reviewed-by: Mike Baucom --- drivers/net/bnxt/bnxt_ethdev.c | 28 +++- 1 file changed, 23

[PATCH v3 11/14] net/bnxt: modify sending new HWRM commands to firmware

2023-12-11 Thread Ajit Khaparde
If the firmware fails to respond a HWRM command in a certain time, it may be because the firmware is in a bad state. Do not send any new HWRM commands in such a scenario. Signed-off-by: Ajit Khaparde Reviewed-by: Damodharam Ammepalli --- drivers/net/bnxt/bnxt.h | 1 + drivers/net/bnxt/bnxt

[PATCH v3 12/14] net/bnxt: retry HWRM ver get if the command fails

2023-12-11 Thread Ajit Khaparde
Retry HWRM ver get if the command timesout because of PCI FLR. When the PCI driver issues an FLR during device initialization, the firmware may have to block the PXP target traffic till the FLR is complete. HWRM_VER_GET command issued during that window may time out. So retry the command again in

[PATCH v3 13/14] net/bnxt: cap ring resources for P7 devices

2023-12-11 Thread Ajit Khaparde
Cap the NQ count for P7 devices. Driver does not need a high NQ ring count anyway since we operate in poll mode. Signed-off-by: Ajit Khaparde Reviewed-by: Kalesh AP Reviewed-by: Damodharam Ammepalli --- drivers/net/bnxt/bnxt_hwrm.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) dif

[PATCH v3 14/14] net/bnxt: add support for v3 Rx completion

2023-12-11 Thread Ajit Khaparde
P7 devices support the newer Rx completion version. This Rx completion though similar to the previous generation, provides some extra information for flow offload scenarios apart from the normal information. Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt_rxr.c | 87 ++

[PATCH 0/3] replace use of EAL logtype

2023-12-11 Thread Stephen Hemminger
There are some places EAL logtype is being used in testpmd and examples where it should not be. Lets reserve EAL logtype to only be used by DPDK internals. Stephen Hemminger (3): testpmd: replace EAL logtype with fprintf examples/l2fwd-keepalive: don't use EAL logtype examples/vm_power_manag

[PATCH 1/3] testpmd: replace EAL logtype with fprintf

2023-12-11 Thread Stephen Hemminger
Testpmd is misusing EAL logtype for its own errors. Since the code directly calls fprintf in other places, change to use that everywhere. This has the added benefit of not having testpmd output clutter up syslog(). Signed-off-by: Stephen Hemminger --- app/test-pmd/testpmd.c | 33 +++-

[PATCH 2/3] examples/l2fwd-keepalive: don't use EAL logtype

2023-12-11 Thread Stephen Hemminger
EAL logtype should be reserved for EAL library. This example is already using printf() so just print errors to stderr. Signed-off-by: Stephen Hemminger --- examples/l2fwd-keepalive/shm.c | 21 +++-- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/examples/l2fwd-kee

[PATCH 3/3] examples/vm_power_manager: do not use EAL logtype

2023-12-11 Thread Stephen Hemminger
Be consistent for all the error printouts and use fprintf(). The EAL logtype is reserved for internal use by EAL. Signed-off-by: Stephen Hemminger --- examples/vm_power_manager/main.c | 11 --- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/examples/vm_power_manager/main.c

Re: [PATCH 1/2] eal: fix constraints on stdatomic API

2023-12-11 Thread Tyler Retzlaff
On Mon, Dec 11, 2023 at 03:39:03PM +0800, Jie Hai wrote: > The first parameter of rte_atomic_exchange_explicit() must be a > pointer to _Atomic type. If run command "meson setup --werror > -Denable_stdatomic=true build && ninja -C build", error will occur. > Thia patch fixes it. > > Fixes: 1ec6a84

Re: [PATCH 0/3] replace use of EAL logtype

2023-12-11 Thread Tyler Retzlaff
On Mon, Dec 11, 2023 at 09:23:22AM -0800, Stephen Hemminger wrote: > There are some places EAL logtype is being used in testpmd > and examples where it should not be. Lets reserve EAL > logtype to only be used by DPDK internals. > > Stephen Hemminger (3): > testpmd: replace EAL logtype with fpri

[PATCH] cryptodev: convert to dynamic logtype

2023-12-11 Thread Stephen Hemminger
The cryptodev logs are all referenced via rte_crytpodev.h so make it dynamic there. Signed-off-by: Stephen Hemminger --- lib/cryptodev/rte_cryptodev.c | 2 ++ lib/cryptodev/rte_cryptodev.h | 2 ++ lib/cryptodev/version.map | 1 + lib/log/log.c | 1 - lib/log/rte_log.h

[PATCH] eventdev: replace RTE_LOGTYPE_EVENTDEV with a dynamic type

2023-12-11 Thread Stephen Hemminger
With a little setup in eventdev_pmd.h the eventdev drivers and API can be converted to dynamic log type. Signed-off-by: Stephen Hemminger --- lib/eventdev/eventdev_pmd.h | 3 +++ lib/eventdev/rte_eventdev.c | 2 ++ lib/eventdev/version.map| 1 + lib/log/log.c | 1 - lib/log/rte

Sending multiple patches for a feature work.

2023-12-11 Thread Aditya Ambadipudi
Hello all. My name is Aditya Ambadipudi. I work at Arm. I and my boss (Honnappa Nagarahalli) have been working on the Deque library that he talked about earlier in another email several weeks/months ago. Essentially, he wrote out all the functions signatures and stuff. He also implemented a fe

[PATCH] net/iavf: support rte flow with mask for FDIR

2023-12-11 Thread Zhichao Zeng
This patch supports rte flow with mask for FDIR, including eth/ipv4/ipv6/tcp/udp flow items. Signed-off-by: Zhichao Zeng --- drivers/net/iavf/iavf_fdir.c | 419 --- 1 file changed, 243 insertions(+), 176 deletions(-) diff --git a/drivers/net/iavf/iavf_fdir.c b/dr

[PATCH v3] lib/net: fix tcp/udp cksum with padding data

2023-12-11 Thread Kaiwen Deng
IEEE 802 packets may have a minimum size limit. The data fields should be padded when necessary. In some cases, the padding data is not zero. In 'rte_ipv4_udptcp_cksum_mbuf()', as payload length "mbuf->pkt_len - l4_off" is used, which includes padding and if padding is not zero it will end up prod

[PATCH 1/5] app/test-pm: add multiprocess test

2023-12-11 Thread Artemy Kovalyov
This commit adds a test scenario that initiates multiple processes concurrently. These processes attach to the same shared heap, with an automatic detection mechanism to identify the primary process. Signed-off-by: Artemy Kovalyov --- app/meson.build | 1 + app/test-mp/main.c | 49

[PATCH 3/5] ipc: fix mp channel closure to prevent message loss

2023-12-11 Thread Artemy Kovalyov
This commit addresses an issue related to the cleanup of the multiprocess channel. Previously, when closing the channel, there was a risk of losing trailing messages. This issue was particularly noticeable when broadcast message from primary to secondary processes was sent while a secondary process

[PATCH 4/5] eal: fix first time primary autodetect

2023-12-11 Thread Artemy Kovalyov
If the configuration file is absent, the autodetection function should generate and secure it. Otherwise, multiple simultaneous openings could erroneously identify themselves as primary instances. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Signed-off-by: Artemy Kovalyov ---

[PATCH 5/5] eal: fix memzone fbarray cleanup

2023-12-11 Thread Artemy Kovalyov
The initialization of the Memzone file-backed array ensures its uniqueness by employing an exclusive lock. This is crucial because only one primary process can exist per specific shm_id, which is further protected by the exclusive EAL runtime configuration lock. However, during the process closure

[PATCH 0/5] addressing races in concurrent process startup

2023-12-11 Thread Artemy Kovalyov
In the process of initiating multiple processes concurrently, specifically with automatic detection of the primary process, certain race conditions have been identified. This patch series introduces a straightforward test that showcases the issue and subsequently addresses the problems surfaced by

[PATCH 2/5] eal: fix multiprocess hotplug race

2023-12-11 Thread Artemy Kovalyov
There exists a time gap between the creation of the multiprocess channel and the registration of request action handlers. Within this window, a secondary process that receives an eal_dev_mp_request broadcast notification might respond with ENOTSUP. This, in turn, causes the rte_dev_probe() operatio

Re: [PATCH v2 3/3] event/cnxk: add option to update links via mbox

2023-12-11 Thread Jerin Jacob
On Tue, Dec 12, 2023 at 3:13 AM wrote: > > From: Pavan Nikhilesh > > Add option to update event queue to event port links via > mailbox. > > Signed-off-by: Pavan Nikhilesh Updated the git commit as follows and series applied to dpdk-next-net-eventdev/for-main. Thanks commit 43b0ec0db7eabae40b6

Re: [PATCH v5 3/3] net/octeon_ep: use AVX2 instructions for Rx

2023-12-11 Thread Jerin Jacob
On Mon, Dec 11, 2023 at 8:33 PM wrote: > > From: Pavan Nikhilesh > > Optimize Rx routine to use AVX2 instructions when underlying > architecture supports it. > > Signed-off-by: Pavan Nikhilesh Series applied to dpdk-next-net-mrvl/for-main. Thanks

RE: 20.11.10 patches review and test

2023-12-11 Thread Xu, HailinX
> -Original Message- > From: luca.bocca...@gmail.com > Sent: Friday, December 1, 2023 7:51 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; benjamin.wal...@intel.com; David > Christensen ; Hemant Agrawal > ; Stokes, Ian ; Jerin Jacob > ; Mcnamara, John ; Ju-

Re: [PATCH] cryptodev: convert to dynamic logtype

2023-12-11 Thread David Marchand
On Mon, Dec 11, 2023 at 9:18 PM Stephen Hemminger wrote: > > The cryptodev logs are all referenced via rte_crytpodev.h crypto* > so make it dynamic there. > > Signed-off-by: Stephen Hemminger I would add a comment in the header that this exported logtype variable is for internal use. Otherwise

Re: [PATCH] eventdev: replace RTE_LOGTYPE_EVENTDEV with a dynamic type

2023-12-11 Thread David Marchand
On Mon, Dec 11, 2023 at 9:33 PM Stephen Hemminger wrote: > > With a little setup in eventdev_pmd.h the eventdev drivers > and API can be converted to dynamic log type. > > Signed-off-by: Stephen Hemminger LGTM (with a comment on logtype). Jerin, can I take this patch directly through main? --