[PATCH 00/19] net/cpfl: support port representor

2023-08-09 Thread beilei . xing
From: Beilei Xing 1. code refine for representor support 2. support port representor Beilei Xing (19): net/cpfl: refine devargs parse and process net/cpfl: introduce interface structure net/cpfl: add cp channel net/cpfl: enable vport mapping net/cpfl: parse representor devargs net/cp

[PATCH 01/19] net/cpfl: refine devargs parse and process

2023-08-09 Thread beilei . xing
From: Beilei Xing 1. Keep devargs in adapter. 2. Refine handling the case with no vport be specified in devargs. 3. Separate devargs parse and devargs process Signed-off-by: Qi Zhang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 154 ++--- drivers

[PATCH 02/19] net/cpfl: introduce interface structure

2023-08-09 Thread beilei . xing
From: Beilei Xing Introduce cplf interface structure to distingush vport and port representor. Signed-off-by: Qi Zhang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 3 +++ drivers/net/cpfl/cpfl_ethdev.h | 16 2 files changed, 19 insertions(+) diff --git a/

[PATCH 03/19] net/cpfl: add cp channel

2023-08-09 Thread beilei . xing
From: Beilei Xing Add cpchnl header file. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_cpchnl.h | 313 + 1 file changed, 313 insertions(+) create mode 100644 drivers/net/cpfl/cpfl_cpchnl.h diff --git a/drivers/net/cpfl/cpfl_cpchnl.h b/drivers/net/cpfl/

[PATCH 04/19] net/cpfl: enable vport mapping

2023-08-09 Thread beilei . xing
From: Beilei Xing 1. Handle cpchnl event for vport create/destroy 2. Use hash table to store vport_id to vport_info mapping 3. Use spinlock for thread safe. Signed-off-by: Qi Zhang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 157 + drivers/n

[PATCH 05/19] net/cpfl: parse representor devargs

2023-08-09 Thread beilei . xing
From: Beilei Xing Format: [[c]pf]vf control_id: 0 : xeon (default) 1: acc pf_id: 0 : apf (default) 1 : cpf Example: representor=c0pf0vf[0-3] -- xeon > apf > vf 0,1,2,3 same as pf0vf[0-3] and vf[0-3] if omit default value. representor=c0pf0 -- xeon> apf same as p

[PATCH 06/19] net/cpfl: support probe again

2023-08-09 Thread beilei . xing
From: Beilei Xing Only representor will be parsed for probe again. Signed-off-by: Qi Zhang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 69 +++--- 1 file changed, 56 insertions(+), 13 deletions(-) diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/dr

[PATCH 07/19] net/cpfl: create port representor

2023-08-09 Thread beilei . xing
From: Beilei Xing Track representor request in a whitelist. Representor will only be created for active vport. Signed-off-by: Jingjing Wu Signed-off-by: Qi Zhang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 107 --- drivers/net/cpfl/cpfl_ethdev.h | 34 +++ d

[PATCH 08/19] net/cpfl: support vport list/info get

2023-08-09 Thread beilei . xing
From: Beilei Xing Support cp channel ops CPCHNL2_OP_CPF_GET_VPORT_LIST and CPCHNL2_OP_CPF_GET_VPORT_INFO. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.h | 8 drivers/net/cpfl/cpfl_vchnl.c | 72 ++ drivers/net/cpfl/meson.build | 1 + 3 fi

[PATCH 09/19] net/cpfl: update vport info before creating representor

2023-08-09 Thread beilei . xing
From: Beilei Xing Get port representor's vport list and update vport_map_hash before creating the port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 2 +- drivers/net/cpfl/cpfl_ethdev.h | 3 + drivers/net/cpfl/cpfl_representor.c | 124 ++

[PATCH 10/19] net/cpfl: refine handle virtual channel message

2023-08-09 Thread beilei . xing
From: Beilei Xing Refine handle virtual channel event message. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 46 -- 1 file changed, 22 insertions(+), 24 deletions(-) diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_ethdev.c

[PATCH 11/19] net/cpfl: add exceptional vport

2023-08-09 Thread beilei . xing
From: Beilei Xing This patch creates exceptional vport when there's port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 107 ++--- drivers/net/cpfl/cpfl_ethdev.h | 8 +++ drivers/net/cpfl/cpfl_rxtx.c | 16 + drivers/net/cpfl/cp

[PATCH 12/19] net/cpfl: support representor Rx/Tx queue setup

2023-08-09 Thread beilei . xing
From: Beilei Xing Support Rx/Tx queue setup for port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.h | 11 +++ drivers/net/cpfl/cpfl_representor.c | 126 2 files changed, 137 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev.

[PATCH 13/19] net/cpfl: support link update for representor

2023-08-09 Thread beilei . xing
From: Beilei Xing Add link update ops for representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.h | 1 + drivers/net/cpfl/cpfl_representor.c | 20 2 files changed, 21 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev.h b/drivers/net/cpfl/cpf

[PATCH 14/19] net/cpfl: add stats ops for representor

2023-08-09 Thread beilei . xing
From: Beilei Xing Support stats_get and stats_reset ops fot port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.h | 8 + drivers/net/cpfl/cpfl_representor.c | 54 + 2 files changed, 62 insertions(+) diff --git a/drivers/net/cpfl/

[PATCH 15/19] common/idpf: refine inline function

2023-08-09 Thread beilei . xing
From: Beilei Xing Move some static inline functions to header file. Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_rxtx.c | 246 - drivers/common/idpf/idpf_common_rxtx.h | 246 + drivers/common/idpf/version.map| 3 + 3 f

[PATCH 16/19] net/cpfl: support representor data path

2023-08-09 Thread beilei . xing
From: Beilei Xing Add Rx/Tx burst for port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_representor.c | 83 +++ drivers/net/cpfl/cpfl_rxtx.c| 121 drivers/net/cpfl/cpfl_rxtx.h| 4 + 3 files changed, 208 insert

[PATCH 17/19] net/cpfl: support dispatch process

2023-08-09 Thread beilei . xing
From: Beilei Xing Add dispatch process cpfl_packets_dispatch function. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 39 - drivers/net/cpfl/cpfl_ethdev.h | 1 + drivers/net/cpfl/cpfl_representor.c | 80 + drivers/net/cpfl/cpfl_rxtx.c

[PATCH 18/19] net/cpfl: add dispatch service

2023-08-09 Thread beilei . xing
From: Beilei Xing Add dispatch service for port representor. Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 129 + 1 file changed, 129 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_ethdev.c index 8569a0b81d..

[PATCH 19/19] doc: update release notes for representor

2023-08-09 Thread beilei . xing
From: Beilei Xing Add support for port representor. Signed-off-by: Beilei Xing --- doc/guides/rel_notes/release_23_11.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/release_23_11.rst b/doc/guides/rel_notes/release_23_11.rst index 6b4dd21fd0..688bee4d6d 100644

[PATCH 0/5] support item NSH matching

2023-08-09 Thread Haifei Luo
NSH can be matched using the existed item: RTE_FLOW_ITEM_TYPE_NSH. NSH fields matching is not supported. Add support for configuring VXLAN-GPE's next protocol. The CLI is: vxlan-gpe protocol is . Add support for matching item NSH. The CLI is: nsh Add support for HCA attribute query of NSH. Enhanc

[PATCH 1/5] app/testpmd: support for VXLAN-GPE's next protocol

2023-08-09 Thread Haifei Luo
Add support for configuring VXLAN-GPE's next protocol. The CLI is: vxlan-gpe protocol is . Example: flow create 0 transfer group 1 pattern eth / ipv6 / udp dst is 4790 / vxlan-gpe protocol is 0x04 / eth / ipv4 / tcp / end actions port_id id 1 / end Signed-off-by: Jiawei Wang Signed-off-by: Haif

[PATCH 2/5] common/mlx5: extend HCA attribute query for NSH

2023-08-09 Thread Haifei Luo
Add NSH supporting field in two places: 1. New HCA capability indicating NSH is supported 2. New field in "mlx5_ifc_per_protocol_networking_offload_caps_bits" structure Signed-off-by: Haifei Luo --- drivers/common/mlx5/mlx5_devx_cmds.c | 3 +++ drivers/common/mlx5/mlx5_devx_cmds.h | 1 + driv

[PATCH 3/5] net/mlx5: enhance the validation for item VXLAN-GPE

2023-08-09 Thread Haifei Luo
Enhance the validation so that configuring vxlan-gpe's next protocol as NSH is supported. 1. The spec's protocol can have value and nic_mask's protocol is 0xff. Signed-off-by: Haifei Luo --- drivers/net/mlx5/mlx5_flow.c | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff -

[PATCH 4/5] app/testpmd: support for NSH flow item

2023-08-09 Thread Haifei Luo
Add support for item NSH. The CLI is: nsh Example: flow create 0 transfer group 1 pattern eth / ipv6 / udp dst is 4790 / vxlan-gpe / nsh / eth / ipv4 / tcp / end actions port_id id 1 / end Signed-off-by: Haifei Luo --- app/test-pmd/cmdline_flow.c | 16 1 f

[PATCH 5/5] net/mlx5: add support for item NSH

2023-08-09 Thread Haifei Luo
1. Add validation for item NSH. It will fail if HCA cap for NSH is false. 2. Add item_flags for NSH. 3. For vxlan-gpe if next header is NSH, set next_protocol as NSH. Signed-off-by: Haifei Luo --- drivers/net/mlx5/mlx5_flow.c| 39 + drivers/net/mlx5/mlx5_fl

RE: C11 atomics adoption blocked

2023-08-09 Thread Morten Brørup
> From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > Sent: Tuesday, 8 August 2023 22.50 > > On Tue, Aug 08, 2023 at 10:22:09PM +0200, Morten Brørup wrote: > > > From: Tyler Retzlaff [mailto:roret...@linux.microsoft.com] > > > Sent: Tuesday, 8 August 2023 21.20 > > > > > > On Tue, Aug 08,

RE: [RFC PATCH] dmadev: offload to free source buffer

2023-08-09 Thread Morten Brørup
> From: Amit Prakash Shukla [mailto:amitpraka...@marvell.com] > Sent: Wednesday, 9 August 2023 08.09 > > This changeset adds support in DMA library to free source DMA buffer by > hardware. On a supported hardware, application can pass on the mempool > information as part of vchan config when the D

RE: [PATCH v6] pci: read amd iommu virtual address width

2023-08-09 Thread Michael Piszczek
Hi David, Sorry I do not have a solution for this. Can you close the patch? Michael Piszczek -Original Message- From: David Marchand Sent: Tuesday, August 8, 2023 3:31 AM To: Michael Piszczek Cc: dev@dpdk.org; Ferruh Yigit Subject: Re: [PATCH v6] pci: read amd iommu virtual address w

[PATCH] app: fix silent enqueue fail in test_mbuf test_refcnt_iter

2023-08-09 Thread jhascoet
In case of ring full state, we retry the enqueue operation in order to avoid mbuf loss. Fixes: af75078fece ("first public release") Signed-off-by: Julien Hascoet --- app/test/test_mbuf.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/test/test_mbuf.c b/app/t

Re: [PATCH] app: fix silent enqueue fail in test_mbuf test_refcnt_iter

2023-08-09 Thread David Marchand
On Wed, Aug 9, 2023 at 7:39 AM jhascoet wrote: > > In case of ring full state, we retry the enqueue > operation in order to avoid mbuf loss. > > Fixes: af75078fece ("first public release") Not sure we need to backport, but in doubt, I would mark it Cc: sta...@dpdk.org > > Signed-off-by: Julien

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-08-09 Thread Bruce Richardson
On Mon, Jul 31, 2023 at 05:29:04PM +0100, Bruce Richardson wrote: > On Mon, Jul 31, 2023 at 06:22:40PM +0200, David Marchand wrote: > > On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson > > wrote: > > > diff --git a/doc/api/doxy-api.conf.in b/doc/api/doxy-api.conf.in > > > index 1a4210b948..40f7dd2

[PATCH 0/2] crypto/scheduler: add support for security protocols

2023-08-09 Thread David Coyle
This patchset adds support to the cryptodev scheduler PMD and unit tests for the existing security protocols in the security library, namely IPSec, MACSec, PDCP and DOCSIS. David Coyle (2): crypto/scheduler: support security protocols test/crypto: add security tests for cryptodev scheduler a

[PATCH 1/2] crypto/scheduler: support security protocols

2023-08-09 Thread David Coyle
Add support to the cryptodev scheduler PMD for the existing security protocols in the security library, namely IPSec, MACSec, PDCP and DOCSIS. This includes adding the following: - synchronization of worker's security capabilities - retreival of the scheduler's synchronized security capabilities -

[PATCH 2/2] test/crypto: add security tests for cryptodev scheduler

2023-08-09 Thread David Coyle
Add IPSec, PDCP and DOCSIS security test cases to the cryptodev scheduler test suite. Signed-off-by: David Coyle Signed-off-by: Kevin O'Sullivan --- app/test/test_cryptodev.c | 14 +- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/app/test/test_cryptodev.c b/app/test/

Re: [PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-08-09 Thread David Marchand
On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson wrote: > > To allow the fnmatch function to be shared between libraries, without > having to export it into the public namespace (since it's not prefixed > with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows > fnmatch function to

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-08-09 Thread David Marchand
Some nits on the doc (that I can fix when applying if you are ok with them) : On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson wrote: > diff --git a/doc/guides/prog_guide/env_abstraction_layer.rst > b/doc/guides/prog_guide/env_abstraction_layer.rst > index 93c8a031be..8033f6cebd 100644 > --- a/d

RE: [PATCH] ethdev: add new symmetric hash function

2023-08-09 Thread Xueming(Steven) Li
> -Original Message- > From: fengchengwen > Sent: 8/8/2023 9:43 > To: Ivan Malov ; Xueming(Steven) Li > > Cc: Ori Kam ; dev@dpdk.org > Subject: Re: [PATCH] ethdev: add new symmetric hash function > > On 2023/8/8 6:32, Ivan Malov wrote: > > Hi, > > > > Please see my notes below. > > > >

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-08-09 Thread David Marchand
Sorry, two additional comments after running more checks. lib/log files are not referenced in MAINTAINERS, can you add a new block? > diff --git a/lib/log/meson.build b/lib/log/meson.build > new file mode 100644 > index 00..6baff83ee5 > --- /dev/null > +++ b/lib/log/meson.build > @@ -0,0

Re: [PATCH v7 2/3] log: separate logging functions out of EAL

2023-08-09 Thread Bruce Richardson
On Wed, Aug 09, 2023 at 02:24:09PM +0200, David Marchand wrote: > Sorry, two additional comments after running more checks. > > lib/log files are not referenced in MAINTAINERS, can you add a new block? > Yep. > > diff --git a/lib/log/meson.build b/lib/log/meson.build > > new file mode 100644 > >

Re: [PATCH v7 1/3] eal/windows: move fnmatch function to header file

2023-08-09 Thread Bruce Richardson
On Wed, Aug 09, 2023 at 01:18:56PM +0200, David Marchand wrote: > On Mon, Jul 31, 2023 at 5:39 PM Bruce Richardson > wrote: > > > > To allow the fnmatch function to be shared between libraries, without > > having to export it into the public namespace (since it's not prefixed > > with "rte"), we c

[PATCH v8 0/3] Split logging functionality out of EAL

2023-08-09 Thread Bruce Richardson
There is a general desire to reduce the size and scope of EAL. To this end, this patchset makes a (very) small step in that direction by taking the logging functionality out of EAL and putting it into its own library that can be built and maintained separately. As with the first RFC for this, the

[PATCH v8 1/3] eal/windows: move fnmatch function to header file

2023-08-09 Thread Bruce Richardson
To allow the fnmatch function to be shared between libraries, without having to export it into the public namespace (since it's not prefixed with "rte"), we can convert fnmatch.c to replace fnmatch.h. This allows fnmatch function to be static and limited in scope to the current file, preventing dup

[PATCH v8 3/3] telemetry: use standard logging

2023-08-09 Thread Bruce Richardson
Now that logging is moved out of EAL, we don't need injection of the logtype and logging function from EAL to telemetry library, simplifying things. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup Acked-by: Tyler Retzlaff --- lib/eal/freebsd/eal.c | 6 +- lib/eal/linu

[PATCH v8 2/3] log: separate logging functions out of EAL

2023-08-09 Thread Bruce Richardson
Move the logging capability to a separate library, free from EAL. Rename files as appropriate, and use meson.build to select the correct file to be built for each operating system, rather than having a subdir per-os. Add new documentation section in programmers guide to cover logging in more detail

[PATCH] app: fix silent enqueue fail in test_mbuf test_refcnt_iter

2023-08-09 Thread jhascoet
From: Julien Hascoet In case of ring full state, we retry the enqueue operation in order to avoid mbuf loss. Fixes: af75078fece ("first public release") Signed-off-by: Julien Hascoet --- app/test/test_mbuf.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/app/t

Re: [PATCH v2 2/2] kni: remove deprecated kernel network interface

2023-08-09 Thread Patrick Robb
On Fri, Aug 4, 2023 at 9:19 AM David Marchand wrote: > Hello CI people, > > On Tue, Aug 1, 2023 at 6:05 PM Stephen Hemminger > wrote: > > kernel/linux/kni/Kbuild | 6 - > > kernel/linux/kni/compat.h | 157 > > kernel/linux/kni/kni_dev.h

[RFC 0/3] Introduce event link profiles

2023-08-09 Thread pbhagavatula
From: Pavan Nikhilesh A collection of event queues linked to an event port can be associated with unique identifier called as a profile, multiple such profiles can be configured based on the event device capability using the function `rte_event_port_link_with_profile` which takes arguments simila

[RFC 1/3] eventdev: introduce link profiles

2023-08-09 Thread pbhagavatula
From: Pavan Nikhilesh A collection of event queues linked to an event port can be associated with a unique identifier called as a profile, multiple such profiles can be created based on the event device capability using the function `rte_event_port_link_with_profile` which takes arguments similar

[RFC 2/3] event/cnxk: implement event link profiles

2023-08-09 Thread pbhagavatula
From: Pavan Nikhilesh Implement event link profiles support on CN10K and CN9K. Both the platforms support up to 2 link profiles. Signed-off-by: Pavan Nikhilesh --- doc/guides/eventdevs/cnxk.rst | 1 + drivers/common/cnxk/roc_nix_inl_dev.c | 4 +- drivers/common/cnxk/roc_sso.c

[RFC 3/3] test/event: add event link profile test

2023-08-09 Thread pbhagavatula
From: Pavan Nikhilesh Add test case to verify event link profiles. Signed-off-by: Pavan Nikhilesh --- app/test/test_eventdev.c | 110 +++ 1 file changed, 110 insertions(+) diff --git a/app/test/test_eventdev.c b/app/test/test_eventdev.c index 336529038e..ac

RE: [RFC PATCH] dmadev: offload to free source buffer

2023-08-09 Thread Amit Prakash Shukla
Hi Morten, Please find my reply in-line. Thanks, Amit Shukla > -Original Message- > From: Morten Brørup > Sent: Wednesday, August 9, 2023 2:37 PM > To: Amit Prakash Shukla ; Chengwen Feng > ; Kevin Laatz ; Bruce > Richardson > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; > conor.wa...

RE: [RFC PATCH] dmadev: offload to free source buffer

2023-08-09 Thread Morten Brørup
> From: Amit Prakash Shukla [mailto:amitpraka...@marvell.com] > Sent: Wednesday, 9 August 2023 16.27 > > > From: Morten Brørup > > Sent: Wednesday, August 9, 2023 2:37 PM > > > > > From: Amit Prakash Shukla [mailto:amitpraka...@marvell.com] > > > Sent: Wednesday, 9 August 2023 08.09 > > > > > > T

Re: [RFC PATCH 0/5] replace build code for unit tests

2023-08-09 Thread Patrick Robb
It will break our 32 bit arm testing because we are unable to use meson test after building for that SoC, so we run through unit tests with a custom list using just dpdk test. It's not a problem, I just need to know when this is going to reach main so I can make the corresponding change to the 32 b

Re: [RFC PATCH 0/5] replace build code for unit tests

2023-08-09 Thread Bruce Richardson
On Wed, Aug 09, 2023 at 10:53:21AM -0400, Patrick Robb wrote: >It will break our 32 bit arm testing because we are unable to use meson >test after building for that SoC, so we run through unit tests with a >custom list using just dpdk test. It's not a problem, I just need to >know w

Re: [PATCH 00/20] remove experimental flag from some API's

2023-08-09 Thread Stephen Hemminger
On Tue, 8 Aug 2023 16:23:43 -0700 Tyler Retzlaff wrote: > > > > bpf: not built on Windows. Needs some libelf. > > pdump: not built on Windows. Needs bpf for filtering A different topic, is it possible to get pdump working on Windows? Is there a pcap and elf library? Might be possible to spli

[PATCH v3] doc: update QAT cryptodev guide to run on aarch64

2023-08-09 Thread Dharmik Thakkar
Update guide with instructions to run on Aarch64 based Ampere Altra platform Signed-off-by: Dharmik Thakkar Reviewed-by: Ruifeng Wang --- v3: - Fix duplicate target warning by using anonymous reference v2: - Update driver guide with instructions to run on aarch64 instead --- .mailmap

Re: [RFC PATCH 0/5] replace build code for unit tests

2023-08-09 Thread Patrick Robb
On Wed, Aug 9, 2023 at 11:05 AM Bruce Richardson wrote: > On Wed, Aug 09, 2023 at 10:53:21AM -0400, Patrick Robb wrote: > >It will break our 32 bit arm testing because we are unable to use > meson > >test after building for that SoC, so we run through unit tests with a > >custom list

[PATCH] net/bonding: Fix header for C++

2023-08-09 Thread Visa Hankala
Apply C linkage to the whole header to allow use with C++. Fixes: dc40f17a36b ("net/bonding: allow external state machine in mode 4") Signed-off-by: Visa Hankala diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.h b/drivers/net/bonding/rte_eth_bond_8023ad.h index 7ad8d6d00b..921b4446b7 1006

[PATCH 00/15] eal: mark older API's stable

2023-08-09 Thread Stephen Hemminger
About 80 function in EAL were marked experimental and should have been made stable by now. Stephen Hemminger (15): eal: make bitops a stable API eal: mark rte_dev API's as stable eal: make rte_class API's stable eal: make rte_version_XXX API's stable eal: make rte_drand a stable API ea

[PATCH 01/15] eal: make bitops a stable API

2023-08-09 Thread Stephen Hemminger
These were added in 20.05 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_bitmap.h | 8 lib/eal/include/rte_bitops.h | 40 2 files changed, 48 deletions(-) diff --git a/lib/eal/include/rte_bitmap.h b/lib/eal/include/rte_bitmap.h i

[PATCH 02/15] eal: mark rte_dev API's as stable

2023-08-09 Thread Stephen Hemminger
These have been around since 2020. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_dev.h | 32 lib/eal/version.map | 28 +++- 2 files changed, 11 insertions(+), 49 deletions(-) diff --git a/lib/eal/include/rte_dev.h b/lib/e

[PATCH 03/15] eal: make rte_class API's stable

2023-08-09 Thread Stephen Hemminger
These API's have been around for a while. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_class.h | 4 lib/eal/version.map | 10 -- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/lib/eal/include/rte_class.h b/lib/eal/include/rte_class.h index 47b17

[PATCH 04/15] eal: make rte_version_XXX API's stable

2023-08-09 Thread Stephen Hemminger
The subparts of rte_version were added in 2020 and can now be marked stable. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_version.h | 6 -- lib/eal/version.map | 12 ++-- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/lib/eal/include/rte_versio

[PATCH 05/15] eal: make rte_drand a stable API

2023-08-09 Thread Stephen Hemminger
This API was added in 2020. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_random.h | 4 1 file changed, 4 deletions(-) diff --git a/lib/eal/include/rte_random.h b/lib/eal/include/rte_random.h index 2edf5d210b45..da8139cb10ad 100644 --- a/lib/eal/include/rte_random.h +++ b/lib/ea

[PATCH 06/15] eal: make rte_service_lcore_may_be_active stable

2023-08-09 Thread Stephen Hemminger
This API was added in 2020. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_service.h | 1 - lib/eal/version.map | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/eal/include/rte_service.h b/lib/eal/include/rte_service.h index a77f33be488c..da5e246f7

[PATCH 07/15] eal: make rte_devargs_reset stable

2023-08-09 Thread Stephen Hemminger
Was added in 20.05 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_devargs.h | 1 - lib/eal/version.map | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/eal/include/rte_devargs.h b/lib/eal/include/rte_devargs.h index 38dee2f2880c..2a5860353d93

[PATCH 08/15] eal: make pflock API stable

2023-08-09 Thread Stephen Hemminger
Added in 21.11 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_pflock.h | 20 1 file changed, 20 deletions(-) diff --git a/lib/eal/include/rte_pflock.h b/lib/eal/include/rte_pflock.h index a3f7291fa1f0..a751a7d8add9 100644 --- a/lib/eal/include/rte_pflock.

[PATCH 09/15] eal: make seqcount and seqlock stable

2023-08-09 Thread Stephen Hemminger
These were add back in 22.07 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_seqcount.h | 23 --- lib/eal/include/rte_seqlock.h | 21 - 2 files changed, 44 deletions(-) diff --git a/lib/eal/include/rte_seqcount.h b/lib/eal/include/rte_s

[PATCH 10/15] eal: mark rte_intr_XXX API's as stable

2023-08-09 Thread Stephen Hemminger
These were added back in 2020. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_interrupts.h | 28 lib/eal/version.map | 14 +++--- 2 files changed, 7 insertions(+), 35 deletions(-) diff --git a/lib/eal/include/rte_interrupts.h b/lib/eal

[PATCH 11/15] eal: mark rte_atomic128_cmp_exchange as stable

2023-08-09 Thread Stephen Hemminger
This has been around since 2021. Signed-off-by: Stephen Hemminger --- lib/eal/arm/include/rte_atomic_64.h | 1 - lib/eal/include/generic/rte_atomic.h | 1 - lib/eal/x86/include/rte_atomic_64.h | 1 - 3 files changed, 3 deletions(-) diff --git a/lib/eal/arm/include/rte_atomic_64.h b/lib/eal/a

[PATCH 12/15] eal: make most rte_thread API's stable

2023-08-09 Thread Stephen Hemminger
All rte_thread API's added before 23.03 release should be marked as not experimental. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_thread.h | 57 lib/eal/version.map | 41 +++--- 2 files changed, 17 insertions(+), 81 d

[PATCH 13/15] eal: mark rte_power API's stable

2023-08-09 Thread Stephen Hemminger
These were added back in 2020. Signed-off-by: Stephen Hemminger --- lib/eal/include/generic/rte_power_intrinsics.h | 16 lib/eal/version.map| 13 - 2 files changed, 4 insertions(+), 25 deletions(-) diff --git a/lib/eal/include/generic/rte

[PATCH 14/15] eal: mark rte_eal_vfio_get_token stable

2023-08-09 Thread Stephen Hemminger
This API was added in 20.08 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_eal.h | 4 lib/eal/version.map | 4 +--- 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/lib/eal/include/rte_eal.h b/lib/eal/include/rte_eal.h index 53c4a5519e61..aac57665e6c2 1

[PATCH 15/15] eal: mark rte_vect simd bandwidth API as stable

2023-08-09 Thread Stephen Hemminger
These were added back in 20.11. Signed-off-by: Stephen Hemminger --- lib/eal/include/generic/rte_vect.h | 8 lib/eal/version.map| 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/lib/eal/include/generic/rte_vect.h b/lib/eal/include/generic/rte_vec

Re: [PATCH 00/20] remove experimental flag from some API's

2023-08-09 Thread Dmitry Kozlyuk
2023-08-09 08:34 (UTC-0700), Stephen Hemminger: > On Tue, 8 Aug 2023 16:23:43 -0700 > Tyler Retzlaff wrote: > > > > > > > bpf: not built on Windows. Needs some libelf. > > > pdump: not built on Windows. Needs bpf for filtering > > A different topic, is it possible to get pdump working on Wind

Re: [PATCH] net/bonding: Fix header for C++

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 03:52:41PM +, Visa Hankala wrote: > Apply C linkage to the whole header to allow use with C++. > > Fixes: dc40f17a36b ("net/bonding: allow external state machine in mode 4") > > Signed-off-by: Visa Hankala > Acked-by: Tyler Retzlaff

Re: [PATCH 11/15] eal: mark rte_atomic128_cmp_exchange as stable

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 09:43:03AM -0700, Stephen Hemminger wrote: > This has been around since 2021. > > Signed-off-by: Stephen Hemminger > --- > lib/eal/arm/include/rte_atomic_64.h | 1 - > lib/eal/include/generic/rte_atomic.h | 1 - > lib/eal/x86/include/rte_atomic_64.h | 1 - > 3 files cha

Re: [PATCH 12/15] eal: make most rte_thread API's stable

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 09:43:04AM -0700, Stephen Hemminger wrote: > All rte_thread API's added before 23.03 release should be > marked as not experimental. > > Signed-off-by: Stephen Hemminger > --- Already acked the series but since i know about this set here's an explicit ack. note: i have o

Re: [PATCH 14/15] eal: mark rte_eal_vfio_get_token stable

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 09:43:06AM -0700, Stephen Hemminger wrote: > This API was added in 20.08 release. > > Signed-off-by: Stephen Hemminger > --- there is driver work going on for similar functionality to vfio on windows. it's possible that this api could be exposed for windows but in the cur

Re: [PATCH 01/15] eal: make bitops a stable API

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 09:42:53AM -0700, Stephen Hemminger wrote: > These were added in 20.05 release. > > Signed-off-by: Stephen Hemminger > --- can i ask that this patch be held until this series is merged? https://patchwork.dpdk.org/project/dpdk/list/?series=27612 i'm already overloaded wi

RE: [RFC PATCH] dmadev: offload to free source buffer

2023-08-09 Thread Amit Prakash Shukla
> -Original Message- > From: Morten Brørup > Sent: Wednesday, August 9, 2023 8:19 PM > To: Amit Prakash Shukla ; Chengwen Feng > ; Kevin Laatz ; Bruce > Richardson > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; > conor.wa...@intel.com; Vamsi Krishna Attunuru ; > g.si...@nxp.com; sachi

RE: [RFC] ring: further performance improvements with C11

2023-08-09 Thread Konstantin Ananyev
> > > For improved performance over the current C11 based ring > > > implementation following changes were made. > > > (1) Replace tail store with RELEASE semantics in > > > __rte_ring_update_tail with a RELEASE fence. Replace load of the tail > > > with ACQUIRE semantics in __rte_ring_move_prod_

Re: [RFC 0/3] Introduce event link profiles

2023-08-09 Thread Mattias Rönnblom
On 2023-08-09 16:26, pbhagavat...@marvell.com wrote: From: Pavan Nikhilesh A collection of event queues linked to an event port can be associated with unique identifier called as a profile, multiple such profiles can be configured based on the event device capability using the function `rte_eve

Re: [PATCH 09/15] eal: make seqcount and seqlock stable

2023-08-09 Thread Mattias Rönnblom
On 2023-08-09 18:43, Stephen Hemminger wrote: These were add back in 22.07 release. Signed-off-by: Stephen Hemminger --- lib/eal/include/rte_seqcount.h | 23 --- lib/eal/include/rte_seqlock.h | 21 - 2 files changed, 44 deletions(-) Acked-by: Matt

Re: [PATCH 01/15] eal: make bitops a stable API

2023-08-09 Thread Tyler Retzlaff
On Wed, Aug 09, 2023 at 01:07:10PM -0700, Stephen Hemminger wrote: > On Wed, 9 Aug 2023 10:58:51 -0700 > Tyler Retzlaff wrote: > > > On Wed, Aug 09, 2023 at 09:42:53AM -0700, Stephen Hemminger wrote: > > > These were added in 20.05 release. > > > > > > Signed-off-by: Stephen Hemminger > > > ---

RE: [EXT] Re: [RFC 0/3] Introduce event link profiles

2023-08-09 Thread Pavan Nikhilesh Bhagavatula
> On 2023-08-09 16:26, pbhagavat...@marvell.com wrote: > > From: Pavan Nikhilesh > > > > A collection of event queues linked to an event port can be associated > > with unique identifier called as a profile, multiple such profiles can > > be configured based on the event device capability using th