RE: [RFC v3] eal: add bitset type

2024-02-01 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Wednesday, 31 January 2024 19.46 > > On 2024-01-31 17:06, Stephen Hemminger wrote: > > On Wed, 31 Jan 2024 14:13:01 +0100 > > Mattias Rönnblom wrote: [...] > > FYI - the linux kernel has a similar but more complete set of > operati

RE: [EXT] [PATCH 1/3] cryptodev: add ec points to sm2 op

2024-02-01 Thread Akhil Goyal
> -- > In the case when PMD cannot support full process of the SM2, > but elliptic curve computation only, additional fields > are needed to handle such a case. > Asym crypto APIs are no longer experimental. Hence adding new fiel

Re: [PATCH v2 2/2] vhost: add new mbuf allocation failure statistic

2024-02-01 Thread David Marchand
On Wed, Jan 31, 2024 at 8:53 PM Maxime Coquelin wrote: > > This patch introduces a new, per virtqueue, mbuf allocation > failure statistic. It can be useful to troubleshoot packets > drops due to insufficient mempool size or memory leaks. > > Signed-off-by: Maxime Coquelin Having a stat for such

Re: [PATCH v2 2/2] vhost: add new mbuf allocation failure statistic

2024-02-01 Thread Maxime Coquelin
On 2/1/24 09:10, David Marchand wrote: On Wed, Jan 31, 2024 at 8:53 PM Maxime Coquelin wrote: This patch introduces a new, per virtqueue, mbuf allocation failure statistic. It can be useful to troubleshoot packets drops due to insufficient mempool size or memory leaks. Signed-off-by: Maxim

RE: [PATCH v2 1/2] ethdev: introduce NAT64 action

2024-02-01 Thread Ori Kam
Hi Bing > -Original Message- > From: Bing Zhao > Sent: Wednesday, January 31, 2024 11:38 AM > > In order to support the communication between IPv4 and IPv6 nodes in > the network, different technologies are used, like dual-stacks, > tunneling and NAT64. In some IPv4-only clients, it is h

RE: [PATCH v2 2/2] app/testpmd: add support for NAT64 in the command line

2024-02-01 Thread Ori Kam
> -Original Message- > From: Bing Zhao > Sent: Wednesday, January 31, 2024 11:38 AM > > The type of NAT64 action will be parsed. > > Usage example with template API: > ... > flow actions_template 0 create ingress actions_template_id 1 \ > template count / nat64 / jump / end mas

RE: [PATCH 1/4] ethdev: introduce encap hash calculation

2024-02-01 Thread Ori Kam
Hi Ferruh, Can you please review my patch? Thanks, Ori > -Original Message- > From: Ori Kam > Sent: Sunday, January 28, 2024 11:40 AM > To: Dariusz Sosnowski ; ferruh.yi...@amd.com; > > During the encapsulation of a packet, it is expected to calculate the > hash value which is based on

[PATCH] ethdev: recommend against using locks in event callbacks

2024-02-01 Thread David Marchand
As described in a recent bugzilla opened against the net/iavf driver, a driver may call a event callback from other calls of the ethdev API. Nothing guarantees in the ethdev API against such behavior. Add a notice against using locks in those callbacks. Bugzilla ID: 1337 Signed-off-by: David Ma

RE: [EXT] [PATCH v2] app/test-crypto-perf: fix invalid mbuf next operation

2024-02-01 Thread Akhil Goyal
> In fill_multi_seg_mbuf(), when remaining_segments is 0, > rte_mbuf m's next should pointer to NULL instead of a > new rte_mbuf, that causes setting m->next as NULL out > of the while loop to the invalid mbuf. > > This commit fixes the invalid mbuf next operation. > > Fixes: bf9d6702eca9 ("app/c

RE: [EXT] [PATCH v2 1/2] app/test-crypto-perf: fix invalid memcmp results

2024-02-01 Thread Akhil Goyal
> The function memcmp() returns an integer less than, equal to, > or greater than zero. In current code, if the first memcmp() > returns less than zero and the second memcmp() returns greater > than zero, the sum of results may still be 0 and indicates > verify succussed. > > This commit converts

Re: [PATCH 2/2] drivers: RTE_LOG_DP newline consistency

2024-02-01 Thread David Marchand
On Wed, Jan 24, 2024 at 5:29 PM Stephen Hemminger wrote: > > Make sure use of RTE_LOG_DP has newline just like uses of RTE_LOG. > > Signed-off-by: Stephen Hemminger I have one concern with this patch. Changing those internal macros means that future backports calling them will introduce issues i

Re: [PATCH v2] lib: remove duplicate prefix in logs

2024-02-01 Thread David Marchand
On Thu, Jan 25, 2024 at 1:56 PM David Marchand wrote: > > RTE_LOG() macros prefixe the log messages based on the logtype. > This results in logs like: > > TMTY: TELEMETRY: Attempting socket bind to path '/run/user/...' > TMTY: TELEMETRY: Socket creation and binding ok > TMTY: TELEMETRY: Telemetry

Re: [PATCH] net/iavf: fix application reset callback calls

2024-02-01 Thread David Marchand
On Wed, Jan 17, 2024 at 12:54 PM David Marchand wrote: > > Don't trigger an application reset callback if the port is not started. > > Bugzilla ID: 1337 > Fixes: 675a104e2e94 ("net/iavf: fix abnormal disable HW interrupt") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand I am withdrawing

RE: [EXT] Re: [PATCH] test/security: add inline IPsec Rx inject test

2024-02-01 Thread Rahul Bhansali
> -Original Message- > From: Stephen Hemminger > Sent: Friday, January 19, 2024 10:26 PM > To: Rahul Bhansali > Cc: dev@dpdk.org; Akhil Goyal ; Anoob Joseph > > Subject: [EXT] Re: [PATCH] test/security: add inline IPsec Rx inject test > > External Email > > -

Re: [PATCH v3 0/3] Improve optional lib support

2024-02-01 Thread David Marchand
On Wed, Dec 20, 2023 at 3:22 PM Bruce Richardson wrote: > > This patchset builds on the previous v1 and v2, and the discussion > which followed about what libraries should be optional. While still > a long way to go from the position suggested in the v2 discussion, > this set moves us a bit furthe

Re: [PATCH 2/2] app/graph: fix build reason

2024-02-01 Thread David Marchand
On Wed, Jan 31, 2024 at 6:46 PM David Marchand wrote: > > When a component is disabled, the reason meson variable must be set to > provide an explanation why. > > Since epoll is a Linux thing, report that the graph application is only > supported on Linux. > > Fixes: 5b21ffb23308 ("app/graph: add

Re: [PATCH v3 0/3] Improve optional lib support

2024-02-01 Thread Bruce Richardson
On Thu, Feb 01, 2024 at 10:23:40AM +0100, David Marchand wrote: > On Wed, Dec 20, 2023 at 3:22 PM Bruce Richardson > wrote: > > > > This patchset builds on the previous v1 and v2, and the discussion > > which followed about what libraries should be optional. While still > > a long way to go from t

Re: [PATCH 1/2] drivers: remove unnecessary RTE_LOG_DP macros

2024-02-01 Thread David Marchand
On Wed, Jan 24, 2024 at 5:29 PM Stephen Hemminger wrote: > > Several drivers did copy/paste of log macros for datapath > but are not using them, so remove them. > > Signed-off-by: Stephen Hemminger I applied this first patch for now. Thanks. -- David Marchand

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Bruce Richardson
On Fri, Jan 19, 2024 at 05:43:46PM +, Bruce Richardson wrote: > Clarify the meaning of the NEW, FORWARD and RELEASE event types. > For the fields in "rte_event" struct, enhance the comments on each to > clarify the field's use, and whether it is preserved between enqueue and > dequeue, and it's

Re: [PATCH] drivers: use dedicated logtypes

2024-02-01 Thread David Marchand
On Mon, Dec 18, 2023 at 2:59 PM David Marchand wrote: > > When a driver dedicated logtype exists, use it instead of the generic > PMD logtype. > > This has been done partially automatically with: > > $ for file in $(git grep -l RTE_LOG.*PMD.*fmt drivers/'**.h' \ > :^drivers/common/cnxk/roc_platf

[PATCH v2] app/testpmd: support updating flow rule actions

2024-02-01 Thread Oleksandr Kolomeiets
"flow actions_update" updates a flow rule specified by a rule ID with a new action list by making a call to "rte_flow_actions_update()": flow actions_update {port_id} {rule_id} actions {action} [/ {action} [...]] / end [user_id] Creating, updating and destroying a flow rule: test

[PATCH v5 0/2] multiple representors in one device

2024-02-01 Thread Harman Kalra
Following series adds support to enable creation of multiple representors under one base device. There may be scenarios where port representors for multiple PFs or VFs under PF are required and all these representor ports created under a single pci device. Marvell CNXK port representor solution is

[PATCH v5 2/2] test/devargs: add eth devargs parse cases

2024-02-01 Thread Harman Kalra
Adding new eth devargs parsing test cases which can demonstrate valid and invalid usage of devargs patterns. Signed-off-by: Harman Kalra --- app/test/test_devargs.c | 107 1 file changed, 107 insertions(+) diff --git a/app/test/test_devargs.c b/app/test/

[PATCH v5 1/2] ethdev: parsing multiple representor devargs string

2024-02-01 Thread Harman Kalra
Adding support for parsing multiple representor devargs strings passed to a PCI BDF. There may be scenario where port representors for various PFs or VFs under PFs are required and all these are representor ports shall be backed by single pci device. In such case port representors can be created us

[PATCH v2] test/security: add inline IPsec Rx inject test

2024-02-01 Thread Rahul Bhansali
Add test for inline IPsec Rx inject verification. This test case will inject the known vector to crypto HW from ethdev and verifies it back with decrypted packet from ethdev Rx. Signed-off-by: Rahul Bhansali --- Changes in v2: Addressed review comments of Stephen Hemminger app/test/test_securit

Re: [PATCH] ethdev: recommend against using locks in event callbacks

2024-02-01 Thread Kevin Traynor
On 01/02/2024 08:43, David Marchand wrote: > As described in a recent bugzilla opened against the net/iavf driver, > a driver may call a event callback from other calls of the ethdev API. > > Nothing guarantees in the ethdev API against such behavior. > > Add a notice against using locks in those

RE: [EXT] Re: [PATCH v4 1/1] ethdev: parsing multiple representor devargs string

2024-02-01 Thread Harman Kalra
Hi Ferruh Please find response inline > -Original Message- > From: Ferruh Yigit > Sent: Wednesday, January 31, 2024 4:40 AM > To: Harman Kalra ; dev@dpdk.org; Thomas Monjalon > ; Andrew Rybchenko > ; Ajit Khaparde > ; Somnath Kotur > ; John Daley ; Hyong > Youb Kim ; Yuying Zhang ; > Bei

Re: [PATCH] cfgfile: increase value length

2024-02-01 Thread David Marchand
On Wed, Dec 6, 2023 at 12:31 PM Vipin Varghese wrote: > > The default value for CFG_VALUE_LEN is set to 256 characters. > This limits the parsing for longer strings in configuration file. > Setting the default to 2048 characters increases the value array > size in `struct rte_cfgfile_entry`. > > F

Re: [PATCH] app/test: remove ifdefs for cmdline library

2024-02-01 Thread David Marchand
On Thu, Dec 14, 2023 at 6:03 PM Tyler Retzlaff wrote: > > On Thu, Dec 14, 2023 at 11:30:21AM +, Bruce Richardson wrote: > > The DPDK unit test binary relies on cmdline library and cannot do > > anything without it being present. As it's a mandatory dependency we can > > remove the ifdefs for i

Re: [PATCH] app/test: prevent exiting after skipped test

2024-02-01 Thread David Marchand
On Thu, Dec 14, 2023 at 6:04 PM Tyler Retzlaff wrote: > > On Thu, Dec 14, 2023 at 11:38:13AM +, Bruce Richardson wrote: > > When processing a list of tests to run, the loop termination condition > > was a test returning a value != 0. This means that if one of a series of > > tests was skipped,

Re: [Patch v2] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX WQEs

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 3:55 AM, Long Li wrote: 'mbufs' is temporarily storage for allocated mbuf pointers, why not allocate if from stack instead, can be faster and easier to manage: "struct rte_mbuf *mbufs[count]" >>> >>> That would introduce a variable length array. >>> VLA's should be remove

Re: [PATCH v3 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Ferruh Yigit
On 1/31/2024 2:57 AM, Suanming Mou wrote: > Hi, > >> -Original Message- >> From: Ferruh Yigit >> Sent: Wednesday, January 31, 2024 1:19 AM >> To: Suanming Mou ; Ori Kam ; >> Aman Singh ; Yuying Zhang >> ; Dariusz Sosnowski ; Slava >> Ovsiienko ; Matan Azrad ; NBU- >> Contact-Thomas Monjal

Re: [PATCH 00/43] replace strerror

2024-02-01 Thread David Marchand
On Wed, Nov 15, 2023 at 1:17 AM Stephen Hemminger wrote: > > On Tue, 14 Nov 2023 16:24:56 +0800 > Dengdui Huang wrote: > > > The function strerror() is insecure in a multi-thread environment. > > This series of patches fix it. In this patchset, only the libs and > > drivers are modified. > > Doin

RE: [PATCH v3 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Suanming Mou
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, February 1, 2024 6:56 PM > To: Suanming Mou ; Ori Kam ; > Aman Singh ; Yuying Zhang > ; Dariusz Sosnowski ; Slava > Ovsiienko ; Matan Azrad ; NBU- > Contact-Thomas Monjalon (EXTERNAL) ; Andrew > Rybchenko > Cc: dev@dpdk.org > S

Re: [PATCH 00/21] replace strtok with strtok_r

2024-02-01 Thread David Marchand
On Tue, Nov 21, 2023 at 4:33 AM Jie Hai wrote: > > On 2023/11/15 23:08, Stephen Hemminger wrote: > > On Wed, 15 Nov 2023 12:27:37 +0100 > > Morten Brørup wrote: > > > just a final follow up, i can see that we already have a rte_strerror > here to do the replace with reentrant dance. it

Re: [PATCH v3 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 11:09 AM, Suanming Mou wrote: > > >> -Original Message- >> From: Ferruh Yigit >> Sent: Thursday, February 1, 2024 6:56 PM >> To: Suanming Mou ; Ori Kam ; >> Aman Singh ; Yuying Zhang >> ; Dariusz Sosnowski ; Slava >> Ovsiienko ; Matan Azrad ; NBU- >> Contact-Thomas Monjalon (

RE: [PATCH v3 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Suanming Mou
> -Original Message- > From: Ferruh Yigit > Sent: Thursday, February 1, 2024 7:21 PM > To: Suanming Mou ; Ori Kam ; > Aman Singh ; Yuying Zhang > ; Dariusz Sosnowski ; Slava > Ovsiienko ; Matan Azrad ; NBU- > Contact-Thomas Monjalon (EXTERNAL) ; Andrew > Rybchenko > Cc: dev@dpdk.org > S

Re: [PATCH] telemetry: avoid truncation of strlcpy return before check

2024-02-01 Thread David Marchand
On Tue, Aug 8, 2023 at 8:35 PM Bruce Richardson wrote: > > On Tue, Aug 08, 2023 at 10:59:37AM -0700, Tyler Retzlaff wrote: > > On Tue, Aug 08, 2023 at 10:24:41AM +0800, lihuisong (C) wrote: > > > > > > 在 2023/8/3 5:21, Tyler Retzlaff 写道: > > > >strlcpy returns type size_t when directly assigning t

Re: [PATCH] telemetry: correct json empty dictionaries

2024-02-01 Thread David Marchand
On Fri, Jan 19, 2024 at 8:48 AM Jonathan Erb wrote: > > Fix to allow telemetry to handle empty dictionaries correctly. > > This patch resolves an issue where empty dictionaries are reported > by telemetry as '[]' rather than '{}'. Initializing the output > buffer based on the container type resolv

Re: [PATCH] cfgfile: increase value length

2024-02-01 Thread Varghese, Vipin
On 2/1/2024 4:02 PM, David Marchand wrote: Caution: This message originated from an External Source. Use proper caution when opening attachments, clicking links, or responding. On Wed, Dec 6, 2023 at 12:31 PM Vipin Varghese wrote: The default value for CFG_VALUE_LEN is set to 256 character

[PATCH v5 0/3] ethdev: add RTE_FLOW_ITEM_TYPE_COMPARE

2024-02-01 Thread Suanming Mou
The new item type is added for the case user wants to match traffic based on packet field compare result with other fields or immediate value. e.g. take advantage the compare item user will be able to accumulate a IPv4/TCP packet's TCP data_offset and IPv4 IHL field to a tag register, then compare

[PATCH v5 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Suanming Mou
Current rte_flow_action_modify_data struct describes the pkt field perfectly and is used only in action. It is planned to be used for item as well. This commit renames it to "rte_flow_field_data" making it compatible to be used by item. Signed-off-by: Suanming Mou Acked-by: Ori Kam Acked-by: An

[PATCH v5 2/3] ethdev: add compare item

2024-02-01 Thread Suanming Mou
The new item type is added for the case user wants to match traffic based on packet field compare result with other fields or immediate value. e.g. take advantage the compare item user will be able to accumulate a IPv4/TCP packet's TCP data_offset and IPv4 IHL field to a tag register, then compare

[PATCH v5 3/3] net/mlx5: add compare item support

2024-02-01 Thread Suanming Mou
The compare item allows adding flow match with comparison result. This commit adds compare item support to the PMD code. Due to HW limitation: - Only HWS supported. - Only 32-bit comparison is supported. - Only single compare flow is supported in the flow table. - Only match with compare resul

[PATCH v3 00/23] net/cnxk: support for port representors

2024-02-01 Thread Harman Kalra
Introducing port representor support to CNXK drivers by adding virtual ethernet ports providing a logical representation in DPDK for physical function(PF) or SR-IOV virtual function (VF) devices for control and monitoring. These port representor ethdev instances can be spawned on an as needed basi

[PATCH v3 01/23] common/cnxk: add support for representors

2024-02-01 Thread Harman Kalra
Introducing a new Mailbox for registering base device behind all representors and also registering debug log type for representors and base device driver. Signed-off-by: Harman Kalra --- doc/guides/nics/cnxk.rst| 4 drivers/common/cnxk/roc_constants.h | 1 + drivers/common/cnx

[PATCH v3 02/23] net/cnxk: implementing eswitch device

2024-02-01 Thread Harman Kalra
Eswitch device is a parent or base device behind all the representors, acting as transport layer between representors and representees Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 378 drivers/net/cnxk/cnxk_eswitch.h | 103 + drivers/

[PATCH v3 03/23] net/cnxk: eswitch HW resource configuration

2024-02-01 Thread Harman Kalra
Configuring the hardware resources used by the eswitch device. Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 223 1 file changed, 223 insertions(+) diff --git a/drivers/net/cnxk/cnxk_eswitch.c b/drivers/net/cnxk/cnxk_eswitch.c index c4ea3063a

[PATCH v3 04/23] net/cnxk: eswitch devargs parsing

2024-02-01 Thread Harman Kalra
Implementing the devargs parsing logic via which the representors pattern is provided. These patterns define for which representies representors shall be created. Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 88 + drivers/net/cnxk/cnxk_eswitch.h

[PATCH v3 05/23] net/cnxk: probing representor ports

2024-02-01 Thread Harman Kalra
Basic skeleton for probing representor devices. If PF device is passed with "representor" devargs, representor ports gets probed as a separate ethdev device. Signed-off-by: Harman Kalra --- MAINTAINERS | 1 + doc/guides/nics/cnxk.rst| 35 + drivers/net/cnxk/cnx

[PATCH v3 06/23] common/cnxk: common NPC changes for eswitch

2024-02-01 Thread Harman Kalra
Adding new MCAM API for installing flow using generic npc_install_flow mbox and other helper APIs. Also adding rss action configuration for eswitch. Signed-off-by: Harman Kalra --- drivers/common/cnxk/meson.build| 1 + drivers/common/cnxk/roc_api.h | 3 + drivers/common/cnxk/roc_esw

[PATCH v3 07/23] common/cnxk: interface to update VLAN TPID

2024-02-01 Thread Harman Kalra
Introducing eswitch variant of set vlan tpid api which can be using for PF and VF Signed-off-by: Harman Kalra --- drivers/common/cnxk/roc_eswitch.c | 15 +++ drivers/common/cnxk/roc_eswitch.h | 4 drivers/common/cnxk/roc_nix_priv.h | 11 +-- drivers/common/cnxk/roc_ni

[PATCH v3 08/23] net/cnxk: eswitch flow configurations

2024-02-01 Thread Harman Kalra
Adding flow rules for eswitch PF and VF and implementing interfaces to delete, shift flow rules Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 44 +++ drivers/net/cnxk/cnxk_eswitch.h | 25 +- drivers/net/cnxk/cnxk_eswitch_devargs.c | 1 + drivers/net/cnxk/c

[PATCH v3 09/23] net/cnxk: eswitch fastpath routines

2024-02-01 Thread Harman Kalra
Implementing fastpath RX and TX fast path routines which can be invoked from respective representors rx burst and tx burst Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.h | 5 + drivers/net/cnxk/cnxk_eswitch_rxtx.c | 211 +++ drivers/net/cnxk/meson.

[PATCH v3 10/23] net/cnxk: add representor control plane

2024-02-01 Thread Harman Kalra
Implementing the control path for representor ports, where represented ports can be configured using TLV messaging. Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 70 ++- drivers/net/cnxk/cnxk_eswitch.h | 8 + drivers/net/cnxk/cnxk_rep.c | 52 ++ drivers/net/cnxk/cnxk_

[PATCH v3 11/23] common/cnxk: representee notification callback

2024-02-01 Thread Harman Kalra
Setting up a callback which gets invoked every time a representee comes up or goes down. Later this callback gets handled by network conterpart. Signed-off-by: Harman Kalra --- drivers/common/cnxk/roc_dev.c | 24 drivers/common/cnxk/roc_dev_priv.h | 3 +++ drivers/

[PATCH v3 12/23] net/cnxk: handling representee notification

2024-02-01 Thread Harman Kalra
In case of any representee coming up or going down, kernel sends a mbox up call which signals a thread to process these messages and enable/disable HW resources accordingly. Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_eswitch.c | 8 + drivers/net/cnxk/cnxk_eswitch.h | 20 +++ driver

[PATCH v3 13/23] net/cnxk: representor ethdev ops

2024-02-01 Thread Harman Kalra
Implementing ethernet device operation callbacks for port representors PMD Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_rep.c | 28 +- drivers/net/cnxk/cnxk_rep.h | 35 +++ drivers/net/cnxk/cnxk_rep_msg.h | 8 + drivers/net/cnxk/cnxk_rep_ops.c | 495 +

[PATCH v3 14/23] common/cnxk: get representees ethernet stats

2024-02-01 Thread Harman Kalra
Implementing an mbox interface to fetch the representees's ethernet stats from the kernel. Signed-off-by: Harman Kalra --- drivers/common/cnxk/roc_eswitch.c | 45 +++ drivers/common/cnxk/roc_eswitch.h | 2 ++ drivers/common/cnxk/roc_mbox.h| 30 +++

[PATCH v3 15/23] net/cnxk: ethernet statistic for representor

2024-02-01 Thread Harman Kalra
Adding representor ethernet statistics support which can fetch stats for representees which are operating independently or part of companian app. Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_rep_msg.h | 7 ++ drivers/net/cnxk/cnxk_rep_ops.c | 140 +++- 2 fi

[PATCH v3 16/23] common/cnxk: base support for eswitch VF

2024-02-01 Thread Harman Kalra
Base ROC layer changes for supporting eswitch VF and NIX lbk changes for ESW Signed-off-by: Harman Kalra --- drivers/common/cnxk/roc_constants.h | 1 + drivers/common/cnxk/roc_dev.c | 1 + drivers/common/cnxk/roc_nix.c | 15 +-- drivers/common/cnxk/roc_nix.h | 1

[PATCH v3 17/23] net/cnxk: eswitch VF as ethernet device

2024-02-01 Thread Harman Kalra
Adding support for eswitch VF to probe as normal cnxk ethernet device Signed-off-by: Harman Kalra --- drivers/net/cnxk/cn10k_ethdev.c| 1 + drivers/net/cnxk/cnxk_ethdev.c | 41 +- drivers/net/cnxk/cnxk_ethdev.h | 3 +++ drivers/net/cnxk/cnxk_ethdev_ops.c

[PATCH v3 18/23] common/cnxk: support port representor and represented port

2024-02-01 Thread Harman Kalra
From: Kiran Kumar K Implementing the common infrastructural changes for supporting port representors and represented ports used as action and pattern in net layer. Signed-off-by: Kiran Kumar K Signed-off-by: Satheesh Paul Signed-off-by: Harman Kalra --- drivers/common/cnxk/roc_npc.c |

[PATCH v3 19/23] net/cnxk: add represented port pattern and action

2024-02-01 Thread Harman Kalra
From: Kiran Kumar K Adding support for represented_port item matching and action. Signed-off-by: Kiran Kumar K Signed-off-by: Satheesh Paul Signed-off-by: Harman Kalra --- doc/guides/nics/cnxk.rst | 1 + doc/guides/nics/features/cnxk.ini | 1 + doc/guides/nics/features/c

[PATCH v3 20/23] net/cnxk: add representor port pattern and action

2024-02-01 Thread Harman Kalra
Adding support for representor port as item matching and action. Signed-off-by: Harman Kalra --- doc/guides/nics/cnxk.rst | 1 + doc/guides/nics/features/cnxk.ini | 4 + doc/guides/nics/features/cnxk_vec.ini | 4 + doc/guides/nics/features/cnxk_vf.ini | 4 + drivers/net

[PATCH v3 21/23] net/cnxk: generalise flow operation APIs

2024-02-01 Thread Harman Kalra
Flow operations can be performed on cnxk ports as well as representor ports. Since representor ports are not cnxk ports but have eswitch as base device underneath, special handling is required to align with base infra. Introducing a flag to generic flow APIs to discriminate if the operation request

[PATCH v3 22/23] net/cnxk: flow create on representor ports

2024-02-01 Thread Harman Kalra
Implementing base infra for handling flow operations performed on representor ports, where these representor ports may be representing native representees or part of companian apps. Also added support for handling flow create operation Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_flow.h

[PATCH v3 23/23] net/cnxk: other flow operations

2024-02-01 Thread Harman Kalra
Implementing other flow operations - validate, destroy, query, flush, dump for representor ports Signed-off-by: Harman Kalra --- drivers/net/cnxk/cnxk_rep_flow.c | 414 +++ drivers/net/cnxk/cnxk_rep_msg.h | 32 +++ 2 files changed, 446 insertions(+) diff --git a/dr

Re: [PATCH] [v3]lib/telemetry:fix telemetry conns leak in case of socket write fail

2024-02-01 Thread David Marchand
On Tue, Jan 30, 2024 at 2:57 AM Shaowei Sun <1819846...@qq.com> wrote: > > Telemetry can only create 10 conns by default, each of which is processed > by a thread. > > When a thread fails to write using socket, the thread will end directly > without reducing the total number of conns. > > This will

RE: [PATCH 1/2] app/test-crypto-perf: fix copy segment size calculation

2024-02-01 Thread Suanming Mou
Hi, I saw other crypto perf fixes are reviewed, any chance to take a look at this series? > -Original Message- > From: Suanming Mou > Sent: Wednesday, January 3, 2024 12:00 PM > To: ciara.po...@intel.com > Cc: dev@dpdk.org > Subject: [PATCH 1/2] app/test-crypto-perf: fix copy segment si

RE: [EXT] [PATCH 1/3] cryptodev: add ec points to sm2 op

2024-02-01 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Akhil Goyal > Sent: Thursday, February 1, 2024 9:08 AM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Power, Ciara > Subject: RE: [EXT] [PATCH 1/3] cryptodev: add ec points to sm2 op > > > ---

Re: [PATCH v5 0/5] net/gve: RSS Support for GVE Driver

2024-02-01 Thread Ferruh Yigit
On 1/31/2024 10:13 PM, Joshua Washington wrote: > This patch series introduces RSS support for the GVE poll-mode driver. > This series includes implementations of the following eth_dev_ops: > > 1) rss_hash_update > 2) rss_hash_conf_get > 3) reta_query > 4) reta_update > > In rss_hash_update, the

[PATCH v3] doc: update guideline for fix commit messages

2024-02-01 Thread Sivaramakrishnan Venkat
Maintainers remove the Cc author line when merging the patch. So, the guidelines is updated with a suggestion for the placement of Cc lines in a commit message for easy merging. Signed-off-by: Sivaramakrishnan Venkat --- v3: - Other samples updated to the desired format for the "Cc:" line in th

[PATCH v2] app/testpmd: command to get descriptor used count

2024-02-01 Thread skoteshwar
From: Satha Rao Existing Rx desc used count command extended to get Tx queue used count. testpmd> show port 0 rxq 0 desc used count testpmd> show port 0 txq 0 desc used count Signed-off-by: Satha Rao --- Depends-on: series-30833 ("ethdev: support Tx queue used count") v2: extended rx_

?????? [PATCH] [v3]lib/telemetry:fix telemetry conns leak in case of socket write fail

2024-02-01 Thread ShaoWei Sun
Yes, you are correct, it should be the commit 2a7d0b872f79 that introduced the issue. Thank you for the correction.    1819846...@qq.com   --  -- ??: "David Marchand"

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Jerin Jacob
On Thu, Feb 1, 2024 at 3:05 PM Bruce Richardson wrote: > > On Fri, Jan 19, 2024 at 05:43:46PM +, Bruce Richardson wrote: > > Clarify the meaning of the NEW, FORWARD and RELEASE event types. > > For the fields in "rte_event" struct, enhance the comments on each to > > clarify the field's use, a

Re: [PATCH] [v3]lib/telemetry:fix telemetry conns leak in case of socket write fail

2024-02-01 Thread David Marchand
On Tue, Jan 30, 2024 at 2:57 AM Shaowei Sun <1819846...@qq.com> wrote: > > Telemetry can only create 10 conns by default, each of which is processed > by a thread. > > When a thread fails to write using socket, the thread will end directly > without reducing the total number of conns. > > This will

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Bruce Richardson
On Thu, Feb 01, 2024 at 08:30:26PM +0530, Jerin Jacob wrote: > On Thu, Feb 1, 2024 at 3:05 PM Bruce Richardson > wrote: > > > > On Fri, Jan 19, 2024 at 05:43:46PM +, Bruce Richardson wrote: > > > Clarify the meaning of the NEW, FORWARD and RELEASE event types. > > > For the fields in "rte_even

Community CI Meeting Minutes - February 1, 2024

2024-02-01 Thread Patrick Robb
February 1, 2024 # Attendees 1. Patrick Robb 2. Paul Szczepanek 3. Thomas Monjalon 4. Juraj Linkes 5. Ali Alnubani 6. Aaron Conole # Minutes ===

Re: [PATCH] mem: explicitly initialise shared locks

2024-02-01 Thread David Marchand
On Fri, Oct 27, 2023 at 10:01 AM David Marchand wrote: > > Locks in the DPDK shared memory were not initialised so far. > This is not really a problem as the early_mem_config structure is stored > in the bss section (and so set to 0 by default). > Yet, for consistency, explicitly initialise those

[PATCH v7 1/2] drivers/net: fix buffer overflow for ptypes list

2024-02-01 Thread Sivaramakrishnan Venkat
Address Sanitizer detects a buffer overflow caused by an incorrect ptypes list. Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow. Fix the ptypes list for drivers. Fixes: 0849ac3b6122 ("net/tap: add packet type management") Fixes: a7bdc3bd4244 ("net/dpaa: support packet type parsing") Fixes

[PATCH v7 1/2] drivers/net: fix buffer overflow for ptypes list

2024-02-01 Thread Sivaramakrishnan Venkat
Address Sanitizer detects a buffer overflow caused by an incorrect ptypes list. Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow. Fix the ptypes list for drivers. Fixes: 0849ac3b6122 ("net/tap: add packet type management") Fixes: a7bdc3bd4244 ("net/dpaa: support packet type parsing") Fixes

[PATCH v7 2/2] drivers/net: return number of types in get supported types

2024-02-01 Thread Sivaramakrishnan Venkat
Missing "RTE_PTYPE_UNKNOWN" ptype causes buffer overflow. Enhance code such that the dev_supported_ptypes_get() function pointer now returns the number of elements to eliminate the need for "RTE_PTYPE_UNKNOWN" as the last item. Signed-off-by: Sivaramakrishnan Venkat --- v7: - tidied format

Re: [PATCH v2 0/2] support NAT64 action

2024-02-01 Thread Ferruh Yigit
On Wed, 31 Jan 2024 11:38:02 +0200, Bing Zhao wrote: > This patchset introduce the NAT64 action support for rte_flow. > Applied, thanks! [1/2] ethdev: introduce NAT64 action commit: 8d06f5a2da9991ebd514869a72f5136e0ee1eaf1 [2/2] app/testpmd: add support for NAT64 in the command line

Re: [PATCH v2 0/2] support NAT64 action

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 4:00 PM, Ferruh Yigit wrote: > > On Wed, 31 Jan 2024 11:38:02 +0200, Bing Zhao wrote: >> This patchset introduce the NAT64 action support for rte_flow. >> > > Applied, thanks! > > [1/2] ethdev: introduce NAT64 action > commit: 8d06f5a2da9991ebd514869a72f5136e0ee1eaf1 > [2/2] ap

Re: [Patch v3] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX WQEs

2024-02-01 Thread Tyler Retzlaff
On Wed, Jan 31, 2024 at 07:45:50PM -0800, lon...@linuxonhyperv.com wrote: > From: Long Li > > Instead of allocating mbufs one by one during RX, use > rte_pktmbuf_alloc_bulk() to allocate them in a batch. > > There are no measurable performance improvements in benchmarks. However, > this patch sh

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Jerin Jacob
On Thu, Feb 1, 2024 at 8:54 PM Bruce Richardson wrote: > > On Thu, Feb 01, 2024 at 08:30:26PM +0530, Jerin Jacob wrote: > > On Thu, Feb 1, 2024 at 3:05 PM Bruce Richardson > > wrote: > > > > > > On Fri, Jan 19, 2024 at 05:43:46PM +, Bruce Richardson wrote: > > > > Clarify the meaning of the N

Re: [Patch v2] net/mana: use rte_pktmbuf_alloc_bulk for allocating RX WQEs

2024-02-01 Thread Tyler Retzlaff
On Thu, Feb 01, 2024 at 03:55:55AM +, Long Li wrote: > > >> 'mbufs' is temporarily storage for allocated mbuf pointers, why not > > >> allocate if from stack instead, can be faster and easier to manage: > > >> "struct rte_mbuf *mbufs[count]" > > > > > > That would introduce a variable length ar

Re: [PATCH v3 1/2] config/arm: allow WFE to be enabled config time

2024-02-01 Thread Jerin Jacob
On Mon, Jan 22, 2024 at 12:13 PM Ruifeng Wang wrote: > > > On 2024/1/21 11:21 PM, pbhagavat...@marvell.com wrote: > > From: Pavan Nikhilesh > > > > Allow RTE_ARM_USE_WFE to be enabled at meson configuration > > time by passing it via c_args instead of modifying > > `config/arm/meson.build`. > > >

Re: [PATCH v3 2/2] net/octeon_ep: add Rx NEON routine

2024-02-01 Thread Jerin Jacob
On Sun, Jan 21, 2024 at 10:13 PM wrote: > > From: Pavan Nikhilesh > > Add Rx ARM NEON SIMD routine. > > Signed-off-by: Pavan Nikhilesh Please fix https://mails.dpdk.org/archives/test-report/2024-January/559746.html https://patches.dpdk.org/project/dpdk/patch/20240121164334.9269-2-pbhagavat...@m

Re: [PATCH] telemetry: avoid truncation of strlcpy return before check

2024-02-01 Thread Tyler Retzlaff
On Thu, Feb 01, 2024 at 12:45:43PM +0100, David Marchand wrote: > On Tue, Aug 8, 2023 at 8:35 PM Bruce Richardson > wrote: > > > > On Tue, Aug 08, 2023 at 10:59:37AM -0700, Tyler Retzlaff wrote: > > > On Tue, Aug 08, 2023 at 10:24:41AM +0800, lihuisong (C) wrote: > > > > > > > > 在 2023/8/3 5:21, T

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Bruce Richardson
On Wed, Jan 24, 2024 at 12:34:50PM +0100, Mattias Rönnblom wrote: > On 2024-01-19 18:43, Bruce Richardson wrote: > > Clarify the meaning of the NEW, FORWARD and RELEASE event types. > > For the fields in "rte_event" struct, enhance the comments on each to > > clarify the field's use, and whether it

Re: [PATCH v2 11/11] eventdev: RFC clarify docs on event object fields

2024-02-01 Thread Bruce Richardson
On Wed, Jan 24, 2024 at 12:34:50PM +0100, Mattias Rönnblom wrote: > On 2024-01-19 18:43, Bruce Richardson wrote: > > Clarify the meaning of the NEW, FORWARD and RELEASE event types. > > For the fields in "rte_event" struct, enhance the comments on each to > > clarify the field's use, and whether it

Re: [PATCH] test/event: skip test if no driver is present

2024-02-01 Thread Jerin Jacob
On Wed, Jan 24, 2024 at 6:03 PM David Marchand wrote: > > Align eventdev with what other device abstraction libraries do: if no > driver is present, skip the tests. > > Fixes: f8f9d233ea0e ("test/eventdev: add unit tests") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand Applied to dpdk-n

Re: [PATCH v5 0/2] multiple representors in one device

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 10:02 AM, Harman Kalra wrote: > Following series adds support to enable creation of multiple representors > under one base device. There may be scenarios where port representors for > multiple PFs or VFs under PF are required and all these representor ports > created under a single pci

Re: [PATCH v5 0/3] ethdev: add RTE_FLOW_ITEM_TYPE_COMPARE

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 12:29 PM, Suanming Mou wrote: > The new item type is added for the case user wants to match traffic > based on packet field compare result with other fields or immediate > value. > > e.g. take advantage the compare item user will be able to accumulate > a IPv4/TCP packet's TCP data_off

Re: [PATCH v5 1/3] ethdev: rename action modify field data structure

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 12:29 PM, Suanming Mou wrote: > Current rte_flow_action_modify_data struct describes the pkt > field perfectly and is used only in action. > > It is planned to be used for item as well. This commit renames > it to "rte_flow_field_data" making it compatible to be used by item. > > Sign

Re: [PATCH v5 2/3] ethdev: add compare item

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 12:29 PM, Suanming Mou wrote: > Actions list > > @@ -5320,6 +5327,23 @@ A RAW rule can be created as following using > ``pattern_hex`` key and mask. > pattern_hex mask > / end actions >

Re: [PATCH v5 3/3] net/mlx5: add compare item support

2024-02-01 Thread Ferruh Yigit
On 2/1/2024 12:29 PM, Suanming Mou wrote: > diff --git a/doc/guides/rel_notes/release_24_03.rst > b/doc/guides/rel_notes/release_24_03.rst > index ffceab59e4..91b2cafb00 100644 > --- a/doc/guides/rel_notes/release_24_03.rst > +++ b/doc/guides/rel_notes/release_24_03.rst > @@ -80,6 +80,8 @@ New Fea

[PATCH v2] doc: fix test eventdev example commands

2024-02-01 Thread pbhagavatula
From: Pavan Nikhilesh Fix incorrect core masks in testeventdev example commands. Fixes: f6dda59153f1 ("doc: add order queue test in eventdev test guide") Fixes: dd37027f2ba6 ("doc: add order all types queue test in eventdev test guide") Fixes: 43bc2fef79cd ("doc: add perf queue test in eventdev

  1   2   >