Re: [PATCH] devtools: extend check on compiler builtin atomics

2023-10-19 Thread David Marchand
On Tue, Oct 17, 2023 at 1:34 PM Tyler Retzlaff wrote: > > On Tue, Oct 17, 2023 at 01:31:25PM +0200, David Marchand wrote: > > rte_memory_order_* should be used when calling the new stdatomic API. > > Add a check on __ATOMIC_* tokens. > > > > Signed-off-by: David Marchand > Acked-by: Tyler Retzlaf

Re: [PATCH v3] app/dma-perf: fix physical address seg-fault

2023-10-19 Thread fengchengwen
Acked-by: Chengwen Feng On 2023/10/19 12:16, Vipin Varghese wrote: > do_cpu_mem_copy uses DPDK API rte_mbuf_data_iova to return > the start of the virtual address for both src and dst. > But in case of iova mode set as PA, this results in seg-fault. > This is because rte_memcpy uses VA address an

Re: [PATCH 1/7] vhost: fix missing vring call check on virtqueue access

2023-10-19 Thread David Marchand
On Mon, Sep 25, 2023 at 6:36 PM Maxime Coquelin wrote: > > Acquiring the access lock is not enough to ensure > virtqueue's metadata such as vring pointers are valid. > > The access status must also be checked. Even if adding the lock was not enough, I would flag Fixes: 6c299bb7322f ("vhost: intro

RE: [PATCH v1 06/11] test/bbdev: assert failed test for queue configure

2023-10-19 Thread Chautru, Nicolas
Hi Maxime, Do we really want to make these kind of changes on to the stable release, it tends to artificially increase the amount of churn on the stable release which can be counterproductive for such changes which don't add much value if any to user/developper. Happy to follow your suggestion

Re: [PATCH v1 06/11] test/bbdev: assert failed test for queue configure

2023-10-19 Thread Maxime Coquelin
Hi Nicolas, On 10/19/23 10:41, Chautru, Nicolas wrote: Hi Maxime, Do we really want to make these kind of changes on to the stable release, it tends to artificially increase the amount of churn on the stable release which can be counterproductive for such changes which don't add much value if

RE: [PATCH v1 02/11] test/bbdev: update python script parameters

2023-10-19 Thread Chautru, Nicolas
Hi Maxime, I believe there was some historical discrepancy, even in doc both appeared but none of the 2 -t options with the cap. https://doc.dpdk.org/guides/tools/testbbdev.html Resolving this historical issue here. Thanks Nic > -Original Message- > From: Maxime Coquelin > Sent: Tuesda

[PATCH v5] net/iavf: data paths support no-polling mode

2023-10-19 Thread Mingjin Ye
In a scenario involving a hot firmware upgrade, the network device on the host side need to be reset, potentially causing the hardware queues to become unreachable. In a VM, continuing to run VF PMD Rx/Tx during this process can lead to application crash. The solution is to implement a 'no-polling

Re: [PATCH v1 02/11] test/bbdev: update python script parameters

2023-10-19 Thread Maxime Coquelin
On 10/19/23 11:01, Chautru, Nicolas wrote: Hi Maxime, I believe there was some historical discrepancy, even in doc both appeared but none of the 2 -t options with the cap. https://doc.dpdk.org/guides/tools/testbbdev.html Resolving this historical issue here. Ok, then we should fix the doc,

[PATCH] net/cpfl: fix coverity issue 403269, 403270 and 403272

2023-10-19 Thread wenjing . qiao
From: Wenjing Qiao Fix logically dead code and dereference before null check issues reported in coverity scan. Coverity issue: 403269 Coverity issue: 403270 Coverity issue: 403272 Fixes: 41f20298ee8c ("net/cpfl: parse flow offloading hint from JSON") Fixes: 6cc97c9971d7 ("net/cpfl: build action

Re: [PATCH 0/7] vhost: ensure vitqueue access status is checked

2023-10-19 Thread David Marchand
Hello Maxime, On Mon, Sep 25, 2023 at 6:36 PM Maxime Coquelin wrote: > > Li Feng initially reported segmentation fault in rte_vhost_vring_call() > because of not checking the virtqueue metadata can be accessed. > > This should be achieved by checking the access_ok status field of > the virtqueue.

[PATCH v10 00/12] add CLI based graph application

2023-10-19 Thread skori
From: Sunil Kumar Kori In the continuation of following feedback https://patches.dpdk.org/project/dpdk/patch/20230425131516.3308612-5-vattun...@marvell.com/ this patch series adds dpdk-graph application to exercise various usecases using graph. 1. Each use case is defined in terms of .cli file w

[PATCH v10 01/12] app/graph: support application CLI framework

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds base framework to read a given .cli file as a command line parameter "-s". Example: # ./dpdk-graph -c 0xff -- -s ./app/graph/examples/dummy.cli Each .cli file will contain commands to configure different module like mempool, ethdev, lookup tables, graph etc. Command

[PATCH v10 02/12] app/graph: support telnet connectivity framework

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds framework to initiate a telnet session with application. Some configurations and debug commands are exposed as runtime APIs. Those commands can be invoked using telnet session. Application initiates a telnet server with host address 0.0.0.0 and port number 8086 by de

[PATCH v10 03/12] app/graph: support parser utility APIs

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds some helper functions to parse IPv4, IPv6 and MAC addresses string into respective datatype. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla Acked-by: Jerin Jacob --- app/graph/meson.build | 1 + app/graph/module_api.h | 1 + app/graph/utils

[PATCH v10 04/12] app/graph: support mempool command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds mempool module which will be creating mempools. Following commands are exposed: - mempool size buffers \ cache numa - help mempool User will add this command in .cli file according to its need. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh

[PATCH v10 05/12] app/graph: support ethdev command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds ethdev module to configure ethernet devices. Following commands are exposed: - ethdev rxq txq - ethdev mtu - ethdev promiscuous - ethdev show - ethdev stats - ethdev ip4 addr add netmask - ethdev ip6 addr add netmask - help ethdev Signed-off-b

[PATCH v10 06/12] app/graph: support IPv4 lookup command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds ipv4_lookup module to configure LPM table. This LPM table will be used for IPv4 lookup and forwarding. Following commands are exposed: - ipv4_lookup route add ipv4 netmask via - help ipv4_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla

[PATCH v10 07/12] app/graph: support IPv6 lookup command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds ipv6_lookup module to configure LPM6 table. This LPM6 table will be used for IPv6 lookup and forwarding. Following commands are exposed: - ipv6_lookup route add ipv6 netmask via - help ipv6_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kuduruma

[PATCH v10 08/12] app/graph: support neigh command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds neigh module to configure arp/neigh. This module uses ipv4_rewrite and ipv6_rewrite node to write neigh information. Following commands are exposed: - neigh add ipv4 - neigh add ipv6 - help neigh Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumal

[PATCH v10 09/12] app/graph: support ethdev Rx command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds ethdev_rx module to create port-queue-core mapping. Mapping will be used to launch graph worker thread and dequeue packets on mentioned core from desired port/queue. Following commands are exposed: - ethdev_rx map port queue core - help ethdev_rx Signed-off-b

[PATCH v10 10/12] app/graph: support graph command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds graph module to create a graph for a given use case like l3fwd. Following commands are exposed: - graph [bsz ] [tmo ] [coremask ] \ model pcap_enable <0 | 1> num_pcap_pkts \ pcap_file - graph start - graph stats show - help graph Signed-off-

[PATCH v10 11/12] app/graph: support CLI option to enable graph stats

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds application's command line parameter "--enable-graph-stats" to enable dumping graph stats on console. By default, no graph stats will be printed on console but same can be dumped via telnet session using "graph stats show" command. Signed-off-by: Sunil Kumar Kori Si

[PATCH v10 12/12] app/graph: support l3fwd use case

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds an use case l3fwd. It contains a dedicated l3fwd.cli file mentioning commands to configure the required resources. Once application successfully parses the l3fwd.cli then a graph is created having below nodes: - ethdev_rx -> pkt_cls - pkt_cls -> ip4_lookup - pkt

[Bug 1302] dpdk-pcapdump regression

2023-10-19 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1302 Bug ID: 1302 Summary: dpdk-pcapdump regression Product: DPDK Version: 23.03 Hardware: x86 OS: Linux Status: UNCONFIRMED Severity: normal Priority: Norma

RE: [PATCH v1 02/11] test/bbdev: update python script parameters

2023-10-19 Thread Chautru, Nicolas
Hi Maxime, In practice anyone using that API is already using the one defined in the patch below and not using -t for time out. So not a concern to do it properly through that patch. Heman, any concern on your side with this change? > -Original Message- > From: Maxime Coquelin > Sent:

RE: [PATCH v1 06/11] test/bbdev: assert failed test for queue configure

2023-10-19 Thread Chautru, Nicolas
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Thursday, October 19, 2023 10:47 AM > To: Chautru, Nicolas ; Vargas, Hernan > ; dev@dpdk.org; gak...@marvell.com; Rix, Tom > > Cc: Zhang, Qi Z > Subject: Re: [PATCH v1 06/11] test/bbdev: assert failed test for queue > con

Re: [PATCH v1 02/11] test/bbdev: update python script parameters

2023-10-19 Thread Maxime Coquelin
Hi Nicolas, On 10/19/23 14:09, Chautru, Nicolas wrote: Hi Maxime, In practice anyone using that API is already using the one defined in the patch below and not using -t for time out. So not a concern to do it properly through that patch. Sorry, I'm not sure to follow you. For example in RHE

RE: [EXT] [PATCH v10 12/12] app/graph: support l3fwd use case

2023-10-19 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: sk...@marvell.com > Sent: Thursday, October 19, 2023 4:20 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org > Subject: [EXT] [PATCH v10 12/12] app/graph: support l3fwd use case > > External Email > >

[PATCH 0/2] small cleanup - use PCI lib

2023-10-19 Thread Thomas Monjalon
Some drivers could use more the PCI lib facilities. Thomas Monjalon (2): drivers: use macro for PCI address format drivers: use function to compare PCI addresses drivers/event/skeleton/skeleton_eventdev.c | 2 +- drivers/net/ena/ena_ethdev.c | 2 +- drivers/net/enic/enic.h

[PATCH 1/2] drivers: use macro for PCI address format

2023-10-19 Thread Thomas Monjalon
Some places were not using the macro PCI_PRI_FMT as print format of a PCI address. Note: RTE prefix is missing in the name of some PCI macros. Signed-off-by: Thomas Monjalon --- drivers/event/skeleton/skeleton_eventdev.c | 2 +- drivers/net/ena/ena_ethdev.c | 2 +- drivers/net/eni

[PATCH 2/2] drivers: use function to compare PCI addresses

2023-10-19 Thread Thomas Monjalon
Some places were not using the function rte_pci_addr_cmp() to compare 2 PCI addresses. Signed-off-by: Thomas Monjalon --- drivers/net/mana/mana.c | 6 ++ drivers/net/mlx4/mlx4.c | 5 + drivers/net/mlx5/linux/mlx5_os.c | 5 + 3 files changed, 4 insertions(+), 12 dele

RE: [PATCH 2/2] drivers: use function to compare PCI addresses

2023-10-19 Thread Long Li
> Subject: [PATCH 2/2] drivers: use function to compare PCI addresses > > Some places were not using the function rte_pci_addr_cmp() to compare 2 PCI > addresses. > > Signed-off-by: Thomas Monjalon For MANA, Acked-by: Long Li > --- > drivers/net/mana/mana.c | 6 ++ > drivers/net

[PATCH] ice: Increase L1 check interval to account for lengthier link time

2023-10-19 Thread Timothy Miskell
For edge cases where the transceiver is physically inserted first and immediately afterwards the DPDK PF is started the LSC event may occur outside the current setting for the maximum check interval window. This change lengthens the check interval to account for this along with other reported c

[PATCH v3 00/29] Promote experimental API's to stable.

2023-10-19 Thread Stephen Hemminger
Since 23.11 is an LTS release it is time to remove the experimental bandaid off many API's. There are about 890 API's marked with experimental on current main branch. This addresses the easy to remove ones and gets it down to about 510 places. The rule is any API that has been in since 22.11 needs

[PATCH v3 01/29] bpf: make rte_bpf_dump and rte_bpf_convert stable API's

2023-10-19 Thread Stephen Hemminger
These two API's were introduced in 23.11 and can now be made not experimental. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- lib/bpf/rte_bpf.h | 2 -- lib/bpf/version.map | 9 ++--- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/lib/bpf/rte_bpf.h b/lib/

[PATCH v3 02/29] cmdline: make experimental API's stable

2023-10-19 Thread Stephen Hemminger
These API's have all ben around for several releases. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/cmdline/cmdline.h| 1 - lib/cmdline/cmdline_parse.h | 4 lib/cmdline/cmdline_rdline.h | 4 lib/cmdline/version.map | 26 --

[PATCH v3 03/29] ethdev: mark rte_mtr API's as stable

2023-10-19 Thread Stephen Hemminger
These haven't changed in a while, time has come to make them not experimental. Signed-off-by: Stephen Hemminger --- MAINTAINERS| 2 +- lib/ethdev/rte_mtr.h | 25 + lib/ethdev/version.map | 34 -- 3 files changed, 18 insertion

[PATCH v3 04/29] ethdev: mark rte_tm API's as stable

2023-10-19 Thread Stephen Hemminger
These API's have been around since 20.11, mark them as not experimental. Signed-off-by: Stephen Hemminger --- MAINTAINERS| 2 +- lib/ethdev/rte_tm.h| 34 --- lib/ethdev/version.map | 62 -- 3 files changed, 31 insertion

[PATCH v3 05/29] pdump: make API's stable

2023-10-19 Thread Stephen Hemminger
The filtering API's were added in 23.11 and can now be marked as not experimental. Signed-off-by: Stephen Hemminger --- lib/pdump/rte_pdump.h | 12 lib/pdump/version.map | 11 +++ 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/lib/pdump/rte_pdump.h b/lib/pdu

[PATCH v3 06/29] pcapng: mark API's as stable

2023-10-19 Thread Stephen Hemminger
This API was added in 23.11 and can now be marked as not experimental. Signed-off-by: Stephen Hemminger --- lib/pcapng/rte_pcapng.h | 11 --- lib/pcapng/version.map | 6 ++ 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/lib/pcapng/rte_pcapng.h b/lib/pcapng/rte_pcap

[PATCH v3 07/29] net: remove experimental from functions

2023-10-19 Thread Stephen Hemminger
These functions have been around long enough should no longer be experimental. Signed-off-by: Stephen Hemminger --- lib/net/rte_ip.h | 19 --- 1 file changed, 19 deletions(-) diff --git a/lib/net/rte_ip.h b/lib/net/rte_ip.h index 7f58dc6f6a9c..2cb5be222cdd 100644 --- a/lib/net/r

[PATCH v3 08/29] rcu: remove experimental from rte_rcu_qbsr

2023-10-19 Thread Stephen Hemminger
These functions were added back in 2020. Remove experimental flag. Signed-off-by: Stephen Hemminger Reviewed-by: Honnappa Nagarahalli --- lib/rcu/rte_rcu_qsbr.h | 20 lib/rcu/version.map| 15 --- 2 files changed, 4 insertions(+), 31 deletions(-) diff --git

[PATCH v3 09/29] lpm: remove experimental

2023-10-19 Thread Stephen Hemminger
The function to associate RCU with LPM was added several releases ago. Remove experimental. Signed-off-by: Stephen Hemminger --- lib/lpm/rte_lpm.h | 4 lib/lpm/version.map | 7 +-- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/lpm/rte_lpm.h b/lib/lpm/rte_lpm.h ind

[PATCH v3 10/29] mbuf: remove experimental from create_extbuf

2023-10-19 Thread Stephen Hemminger
This API was added in 2020 and should no longer be experimental. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/mbuf/rte_mbuf.h | 1 - lib/mbuf/version.map | 8 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/mbuf/rte_mbuf.h b/lib/mbuf/rte_mbuf.h

[PATCH v3 11/29] hash: remove experimental from toeplitz hash

2023-10-19 Thread Stephen Hemminger
The rte_thash_ functions have been around since 2020. Remove experimental tag. Signed-off-by: Stephen Hemminger --- lib/hash/rte_thash.h | 44 --- lib/hash/rte_thash_gfni.h | 8 --- lib/hash/rte_thash_x86_gfni.h | 8 --- lib/hash/version.map

[PATCH v3 12/29] timer: remove experimental from rte_timer_next_ticks

2023-10-19 Thread Stephen Hemminger
Function was added in 20.11, remove experimental flag. Signed-off-by: Stephen Hemminger --- lib/timer/rte_timer.h | 4 lib/timer/version.map | 7 +-- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h index d3927d5b6bac..153d1993

[PATCH v3 13/29] sched: remove experimental

2023-10-19 Thread Stephen Hemminger
The overcommit and PIE support was added back in 2020. Remove experimental tag. Signed-off-by: Stephen Hemminger --- lib/sched/rte_pie.h | 8 lib/sched/rte_sched.h | 5 - lib/sched/version.map | 18 -- 3 files changed, 4 insertions(+), 27 deletions(-) diff --git

[PATCH v3 14/29] dmadev: mark API's as not experimental

2023-10-19 Thread Stephen Hemminger
These were added in 20.11 time now to remove experimental flag. Signed-off-by: Stephen Hemminger Acked-by: Chengwen Feng Acked-by: Bruce Richardson --- MAINTAINERS | 2 +- lib/dmadev/rte_dmadev.h | 85 - lib/dmadev/version.map | 2 +- 3 fi

[PATCH v3 15/29] meter: remove experimental warning from comments

2023-10-19 Thread Stephen Hemminger
The API's for rte_meter_trtcm were never properly flagged as experimental; missing __rte_experimental but there was an experimental comment in the docbook comment. Remove the comment. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/meter/rte_meter.h | 12 1 file

[PATCH v3 16/29] power: remove experimental from API's

2023-10-19 Thread Stephen Hemminger
The power management API's were last changed in 22.11 release. Therefore remove experimental for 23.11 release. Signed-off-by: Stephen Hemminger --- lib/power/rte_power.h | 4 --- lib/power/rte_power_guest_channel.h | 4 --- lib/power/rte_power_pmd_mgmt.h | 40 --

[PATCH v3 17/29] kvargs: remove experimental flag

2023-10-19 Thread Stephen Hemminger
The function rte_kvargs_get_with_value was added in 21.11 so experimental flag can be removed. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/kvargs/rte_kvargs.h | 4 lib/kvargs/version.map | 8 +--- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/l

[PATCH v3 18/29] ip_frag: mark a couple of functions stable

2023-10-19 Thread Stephen Hemminger
There were two functions added in 22.11 which were marked as experimental. Remove the experimental tag. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- lib/ip_frag/rte_ip_frag.h | 2 -- lib/ip_frag/version.map | 9 ++--- 2 files changed, 2 insertions(+), 9 deletions(-)

[PATCH v3 19/29] member: remove experimental tag

2023-10-19 Thread Stephen Hemminger
The member library last received new API's in 22.11. All the API's should be marked stable by now. Signed-off-by: Stephen Hemminger --- lib/member/rte_member.h | 54 - lib/member/version.map | 12 +++-- 2 files changed, 3 insertions(+), 63 deletions(-

[PATCH v3 20/29] power fix

2023-10-19 Thread Stephen Hemminger
--- lib/power/version.map | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/power/version.map b/lib/power/version.map index 8dd154bb0609..177ef3e2dd54 100644 --- a/lib/power/version.map +++ b/lib/power/version.map @@ -42,4 +42,6 @@ DPDK_24 { rte_power_uncore_get_num_pkgs; r

[PATCH v3 21/29] security: remove experimental flag from macsec

2023-10-19 Thread Stephen Hemminger
The rte_security API's for macsec were added in 22.11. Therefore remove the experimental tag. There is also one helper function for setting packet metadata that should have been marked internal. Signed-off-by: Stephen Hemminger --- lib/security/rte_security.h | 28 +---

[PATCH v3 22/29] vhost: remove experimental from some API's

2023-10-19 Thread Stephen Hemminger
All API's that before 22.11 release should have experimental tag removed. Signed-off-by: Stephen Hemminger --- lib/vhost/rte_vhost.h| 5 lib/vhost/rte_vhost_async.h | 19 -- lib/vhost/rte_vhost_crypto.h | 1 - lib/vhost/version.map| 51 ++--

[PATCH v3 23/29] bbdev: remove experimental tag

2023-10-19 Thread Stephen Hemminger
The API's for bbdev were last added to in 22.11. Remove experimental flag now. Signed-off-by: Stephen Hemminger --- lib/bbdev/rte_bbdev.h| 4 lib/bbdev/rte_bbdev_op.h | 2 -- lib/bbdev/version.map| 15 +++ 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a

[PATCH v3 24/29] ipsec: remove experimental from SA API

2023-10-19 Thread Stephen Hemminger
These API's were added in 21.11, remove experimental flag. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- lib/ipsec/rte_ipsec.h | 2 -- lib/ipsec/version.map | 9 + 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/ipsec/rte_ipsec.h b/lib/ipsec/rte_ip

[PATCH v3 25/29] compressdev: remove experimental flag

2023-10-19 Thread Stephen Hemminger
The compressdev can not hide under the experimental flag. Remove the experimental flag and require ABI to be stable. Signed-off-by: Stephen Hemminger --- MAINTAINERS | 2 +- lib/compressdev/rte_comp.h| 6 -- lib/compressdev/rte_compressdev.h | 26 -

[PATCH v3 26/29] regexdev: remove experimental tag

2023-10-19 Thread Stephen Hemminger
This library was added in 22.11. Time to make it not experimental. Signed-off-by: Stephen Hemminger --- lib/regexdev/rte_regexdev.h | 92 - lib/regexdev/version.map| 2 +- 2 files changed, 1 insertion(+), 93 deletions(-) diff --git a/lib/regexdev/rte_reg

[PATCH v3 27/29] node: remove some of the experimental tags

2023-10-19 Thread Stephen Hemminger
The node library has been around long enough that experimental tag should be removed. The IPv6 support was added in 23.03 but that is still enough time that it can be marked stable. The logtype variable should have been marked internal since it is not intended to be used outside of library. Sign

[PATCH v3 28/29] table: remove experimental from API

2023-10-19 Thread Stephen Hemminger
Though this library is marked for deprecation in future. This patch follows the guideline in deprecation notice which states the experimental API's will become stable. Signed-off-by: Stephen Hemminger --- doc/guides/rel_notes/deprecation.rst | 2 -- lib/table/rte_swx_table_learner.h| 10 ---

[PATCH v3 29/29] port: make API's stable

2023-10-19 Thread Stephen Hemminger
Follow the guidelines already in deprecation.rst and make the API's stable, even though they are marked as deprecated. Note: this library never properly marked its experimental API's. The API's were in the EXPERIMENTAL section but the macro __rte_experimental was missing. Signed-off-by: Stephen H

[PATCH v2] net/ice: fix L1 check interval to account for longer link times

2023-10-19 Thread Timothy Miskell
For edge cases where the transceiver is physically inserted first and immediately afterwards the DPDK PF is started the LSC event may occur outside the current setting for the maximum check interval window. This change lengthens the check interval to account for this along with other reported cases

[PATCH v11 00/12] add CLI based graph application

2023-10-19 Thread skori
From: Sunil Kumar Kori In the continuation of following feedback https://patches.dpdk.org/project/dpdk/patch/20230425131516.3308612-5-vattun...@marvell.com/ this patch series adds dpdk-graph application to exercise various usecases using graph. 1. Each use case is defined in terms of .cli file w

[PATCH v11 01/12] app/graph: support application CLI framework

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds base framework to read a given .cli file as a command line parameter "-s". Example: # ./dpdk-graph -c 0xff -- -s ./app/graph/examples/dummy.cli Each .cli file will contain commands to configure different module like mempool, ethdev, lookup tables, graph etc. Command

[PATCH v11 02/12] app/graph: support telnet connectivity framework

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds framework to initiate a telnet session with application. Some configurations and debug commands are exposed as runtime APIs. Those commands can be invoked using telnet session. Application initiates a telnet server with host address 0.0.0.0 and port number 8086 by de

[PATCH v11 03/12] app/graph: support parser utility APIs

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds some helper functions to parse IPv4, IPv6 and MAC addresses string into respective datatype. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla Acked-by: Jerin Jacob --- app/graph/meson.build | 1 + app/graph/module_api.h | 1 + app/graph/utils

[PATCH v11 04/12] app/graph: support mempool command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds mempool module which will be creating mempools. Following commands are exposed: - mempool size buffers \ cache numa - help mempool User will add this command in .cli file according to its need. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh

[PATCH v11 05/12] app/graph: support ethdev command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds ethdev module to configure ethernet devices. Following commands are exposed: - ethdev rxq txq - ethdev mtu - ethdev promiscuous - ethdev show - ethdev stats - ethdev ip4 addr add netmask - ethdev ip6 addr add netmask - help ethdev Signed-off-b

[PATCH v11 06/12] app/graph: support IPv4 lookup command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds ipv4_lookup module to configure LPM table. This LPM table will be used for IPv4 lookup and forwarding. Following commands are exposed: - ipv4_lookup route add ipv4 netmask via - help ipv4_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla

[PATCH v11 07/12] app/graph: support IPv6 lookup command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds ipv6_lookup module to configure LPM6 table. This LPM6 table will be used for IPv6 lookup and forwarding. Following commands are exposed: - ipv6_lookup route add ipv6 netmask via - help ipv6_lookup Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kuduruma

[PATCH v11 08/12] app/graph: support neigh command line interfaces

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds neigh module to configure arp/neigh. This module uses ipv4_rewrite and ipv6_rewrite node to write neigh information. Following commands are exposed: - neigh add ipv4 - neigh add ipv6 - help neigh Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumal

[PATCH v11 09/12] app/graph: support ethdev Rx command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds ethdev_rx module to create port-queue-core mapping. Mapping will be used to launch graph worker thread and dequeue packets on mentioned core from desired port/queue. Following commands are exposed: - ethdev_rx map port queue core - help ethdev_rx Signed-off-b

[PATCH v11 10/12] app/graph: support graph command line interfaces

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds graph module to create a graph for a given use case like l3fwd. Following commands are exposed: - graph [bsz ] [tmo ] [coremask ] \ model pcap_enable <0 | 1> num_pcap_pkts \ pcap_file - graph start - graph stats show - help graph Signed-off-

[PATCH v11 11/12] app/graph: support CLI option to enable graph stats

2023-10-19 Thread skori
From: Sunil Kumar Kori Adds application's command line parameter "--enable-graph-stats" to enable dumping graph stats on console. By default, no graph stats will be printed on console but same can be dumped via telnet session using "graph stats show" command. Signed-off-by: Sunil Kumar Kori Si

[PATCH v11 12/12] app/graph: support l3fwd use case

2023-10-19 Thread skori
From: Rakesh Kudurumalla Adds an use case l3fwd. It contains a dedicated l3fwd.cli file mentioning commands to configure the required resources. Once application successfully parses the l3fwd.cli then a graph is created having below nodes: - ethdev_rx -> pkt_cls - pkt_cls -> ip4_lookup - pkt

RE: [EXT] [PATCH v3 21/29] security: remove experimental flag from macsec

2023-10-19 Thread Akhil Goyal
> The rte_security API's for macsec were added in 22.11. > Therefore remove the experimental tag. > > There is also one helper function for setting packet > metadata that should have been marked internal. > > Signed-off-by: Stephen Hemminger Acked-by: Akhil Goyal However, only one PMD supports

[PATCH v4 00/28] Promote many experimental API's to stable

2023-10-19 Thread Stephen Hemminger
Since 23.11 is an LTS release it is time to remove the experimental bandaid off many API's. There are about 890 API's marked with experimental on current main branch. This addresses the easy to remove ones and gets it down to about 510 places. The rule is any API that has been in since 22.11 needs

[PATCH v4 01/28] bpf: make rte_bpf_dump and rte_bpf_convert stable API's

2023-10-19 Thread Stephen Hemminger
These two API's were introduced in 23.11 and can now be made not experimental. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- lib/bpf/rte_bpf.h | 2 -- lib/bpf/version.map | 9 ++--- 2 files changed, 2 insertions(+), 9 deletions(-) diff --git a/lib/bpf/rte_bpf.h b/lib/

[PATCH v4 02/28] cmdline: make experimental API's stable

2023-10-19 Thread Stephen Hemminger
These API's have all ben around for several releases. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/cmdline/cmdline.h| 1 - lib/cmdline/cmdline_parse.h | 4 lib/cmdline/cmdline_rdline.h | 4 lib/cmdline/version.map | 26 --

[PATCH v4 03/28] ethdev: mark rte_mtr API's as stable

2023-10-19 Thread Stephen Hemminger
These haven't changed in a while, time has come to make them not experimental. Signed-off-by: Stephen Hemminger --- MAINTAINERS| 2 +- lib/ethdev/rte_mtr.h | 25 + lib/ethdev/version.map | 34 -- 3 files changed, 18 insertion

[PATCH v4 04/28] ethdev: mark rte_tm API's as stable

2023-10-19 Thread Stephen Hemminger
These API's have been around since 20.11, mark them as not experimental. Signed-off-by: Stephen Hemminger --- MAINTAINERS| 2 +- lib/ethdev/rte_tm.h| 34 --- lib/ethdev/version.map | 62 -- 3 files changed, 31 insertion

[PATCH v4 05/28] pdump: make API's stable

2023-10-19 Thread Stephen Hemminger
The filtering API's were added in 23.11 and can now be marked as not experimental. Signed-off-by: Stephen Hemminger --- lib/pdump/rte_pdump.h | 12 lib/pdump/version.map | 11 +++ 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/lib/pdump/rte_pdump.h b/lib/pdu

[PATCH v4 06/28] pcapng: mark API's as stable

2023-10-19 Thread Stephen Hemminger
This API was added in 23.11 and can now be marked as not experimental. Signed-off-by: Stephen Hemminger --- lib/pcapng/rte_pcapng.h | 11 --- lib/pcapng/version.map | 6 ++ 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/lib/pcapng/rte_pcapng.h b/lib/pcapng/rte_pcap

[PATCH v4 07/28] net: remove experimental from functions

2023-10-19 Thread Stephen Hemminger
These functions have been around long enough should no longer be experimental. Signed-off-by: Stephen Hemminger --- lib/net/rte_ip.h | 19 --- 1 file changed, 19 deletions(-) diff --git a/lib/net/rte_ip.h b/lib/net/rte_ip.h index 7f58dc6f6a9c..2cb5be222cdd 100644 --- a/lib/net/r

[PATCH v4 08/28] rcu: remove experimental from rte_rcu_qbsr

2023-10-19 Thread Stephen Hemminger
These functions were added back in 2020. Remove experimental flag. Signed-off-by: Stephen Hemminger Reviewed-by: Honnappa Nagarahalli --- lib/rcu/rte_rcu_qsbr.h | 20 lib/rcu/version.map| 15 --- 2 files changed, 4 insertions(+), 31 deletions(-) diff --git

[PATCH v4 09/28] lpm: remove experimental

2023-10-19 Thread Stephen Hemminger
The function to associate RCU with LPM was added several releases ago. Remove experimental. Signed-off-by: Stephen Hemminger --- lib/lpm/rte_lpm.h | 4 lib/lpm/version.map | 7 +-- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/lpm/rte_lpm.h b/lib/lpm/rte_lpm.h ind

[PATCH v4 10/28] mbuf: remove experimental from create_extbuf

2023-10-19 Thread Stephen Hemminger
This API was added in 2020 and should no longer be experimental. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/mbuf/rte_mbuf.h | 1 - lib/mbuf/version.map | 8 +--- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/mbuf/rte_mbuf.h b/lib/mbuf/rte_mbuf.h

[PATCH v4 11/28] hash: remove experimental from toeplitz hash

2023-10-19 Thread Stephen Hemminger
The rte_thash_ functions have been around since 2020. Remove experimental tag. Signed-off-by: Stephen Hemminger --- lib/hash/rte_thash.h | 44 --- lib/hash/rte_thash_gfni.h | 8 --- lib/hash/rte_thash_x86_gfni.h | 8 --- lib/hash/version.map

[PATCH v4 12/28] timer: remove experimental from rte_timer_next_ticks

2023-10-19 Thread Stephen Hemminger
Function was added in 20.11, remove experimental flag. Signed-off-by: Stephen Hemminger --- lib/timer/rte_timer.h | 4 lib/timer/version.map | 7 +-- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h index d3927d5b6bac..153d1993

[PATCH v4 13/28] sched: remove experimental

2023-10-19 Thread Stephen Hemminger
The overcommit and PIE support was added back in 2020. Remove experimental tag. Signed-off-by: Stephen Hemminger --- lib/sched/rte_pie.h | 8 lib/sched/rte_sched.h | 5 - lib/sched/version.map | 18 -- 3 files changed, 4 insertions(+), 27 deletions(-) diff --git

[PATCH v4 14/28] dmadev: mark API's as not experimental

2023-10-19 Thread Stephen Hemminger
These were added in 20.11 time now to remove experimental flag. Signed-off-by: Stephen Hemminger Acked-by: Chengwen Feng Acked-by: Bruce Richardson --- MAINTAINERS | 2 +- lib/dmadev/rte_dmadev.h | 85 - lib/dmadev/version.map | 2 +- 3 fi

[PATCH v4 15/28] meter: remove experimental warning from comments

2023-10-19 Thread Stephen Hemminger
The API's for rte_meter_trtcm were never properly flagged as experimental; missing __rte_experimental but there was an experimental comment in the docbook comment. Remove the comment. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/meter/rte_meter.h | 12 1 file

[PATCH v4 16/28] power: remove experimental from API's

2023-10-19 Thread Stephen Hemminger
The power management API's were last changed in 22.11 release. Therefore remove experimental for 23.11 release. Signed-off-by: Stephen Hemminger --- lib/power/rte_power.h | 4 --- lib/power/rte_power_guest_channel.h | 4 --- lib/power/rte_power_pmd_mgmt.h | 40 --

[PATCH v4 17/28] kvargs: remove experimental flag

2023-10-19 Thread Stephen Hemminger
The function rte_kvargs_get_with_value was added in 21.11 so experimental flag can be removed. Signed-off-by: Stephen Hemminger Acked-by: Bruce Richardson --- lib/kvargs/rte_kvargs.h | 4 lib/kvargs/version.map | 8 +--- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/l

[PATCH v4 18/28] ip_frag: mark a couple of functions stable

2023-10-19 Thread Stephen Hemminger
There were two functions added in 22.11 which were marked as experimental. Remove the experimental tag. Signed-off-by: Stephen Hemminger Acked-by: Konstantin Ananyev --- lib/ip_frag/rte_ip_frag.h | 2 -- lib/ip_frag/version.map | 9 ++--- 2 files changed, 2 insertions(+), 9 deletions(-)

[PATCH v4 19/28] member: remove experimental tag

2023-10-19 Thread Stephen Hemminger
The member library last received new API's in 22.11. All the API's should be marked stable by now. Signed-off-by: Stephen Hemminger --- lib/member/rte_member.h | 54 - lib/member/version.map | 12 +++-- 2 files changed, 3 insertions(+), 63 deletions(-

[PATCH v4 20/28] security: remove experimental flag from macsec

2023-10-19 Thread Stephen Hemminger
The rte_security API's for macsec were added in 22.11. Therefore remove the experimental tag. There is also one helper function for setting packet metadata that should have been marked internal. Signed-off-by: Stephen Hemminger --- lib/security/rte_security.h | 27 --- l

[PATCH v4 21/28] vhost: remove experimental from some API's

2023-10-19 Thread Stephen Hemminger
All API's that before 22.11 release should have experimental tag removed. Signed-off-by: Stephen Hemminger --- lib/vhost/rte_vhost.h| 5 lib/vhost/rte_vhost_async.h | 19 -- lib/vhost/rte_vhost_crypto.h | 1 - lib/vhost/version.map| 51 ++--

  1   2   >