RE: [EXTERNAL] Re: [PATCH v6 0/2] devtools: add tracepoint check in checkpatch

2024-10-21 Thread Ankur Dwivedi
>On Wed, 9 Oct 2024 06:03:58 + >Ankur Dwivedi wrote: > >> >> Please let me know if this patch series can be merged in DPDK or if >> >> there are >> >any comments. >> > >> >Not sure why the patch got ignored. >> >Perhaps if check-tracepoint was run first against existing code; add >> >to check-

RE: [PATCH v3 0/4] Enhance headers check

2024-10-21 Thread Morten Brørup
For the series, Acked-by: Morten Brørup

Re: [PATCH v1 1/2] baseband/acc: FFT support in VRB2 PRQ device

2024-10-21 Thread Maxime Coquelin
Hi, On 10/18/24 20:42, Chautru, Nicolas wrote: Hi Maxime, -Original Message- From: Maxime Coquelin Sent: Friday, October 18, 2024 12:54 AM To: Chautru, Nicolas ; dev@dpdk.org Cc: hemant.agra...@nxp.com; Vargas, Hernan Subject: Re: [PATCH v1 1/2] baseband/acc: FFT support in VRB2 PRQ

RE: [PATCH v1] config/x86: add lcore support for AMD EPYC Zen5 platforms

2024-10-21 Thread Morten Brørup
Acked-by: Morten Brørup

Re: [PATCH v3 0/4] updates for net/ice driver

2024-10-21 Thread Bruce Richardson
On Fri, Oct 18, 2024 at 03:38:18PM +0100, Bruce Richardson wrote: > This patchset contains a set of updates for the ice driver, a number of > which are in the area of the "rte_tm" APIs for Tx scheduling. > > These patches were previously submitted as part of a larger set[1], but > separating them

[PATCH v3 1/4] bitset: fix build for GCC without experimental API

2024-10-21 Thread David Marchand
For a reason similar to the change on bitops header, hide bitset implementation relying on experimental API. Fixes: 99a1197647d8 ("eal: add bitset type") Signed-off-by: David Marchand --- Changes since v2: - added a runtime assert so that an application won't call those experimental APIs, ---

[PATCH v3 4/4] buildtools/chkincs: check driver specific headers

2024-10-21 Thread David Marchand
Only driver headers exported by libraries were checked. Add driver specific headers to the checked headers list. This reveals a small issue with the vmbus driver header as some driver headers rely on it. Fixes: b232b2aa212b ("buildtools/chkincs: check SDK headers for C++ compatibility") Fixes: 8

[PATCH v3 0/4] Enhance headers check

2024-10-21 Thread David Marchand
We currently check that exported headers are fine with -DALLOW_EXPERIMENTAL_API and -DALLOW_INTERNAL_API. Such a check won't catch issues when build is broken in the absence of those flags, which is the common case for applications consuming DPDK. This series adds more coverage. -- David March

[PATCH v3 2/4] buildtools/chkincs: check headers with stable API only

2024-10-21 Thread David Marchand
An exported header should be usable w/ and w/o ALLOW_EXPERIMENTAL_API so that an application that only wants stable API may include it. Plus, the widely common case is that an application will not use internal API. Cover those cases but keep the original test. Signed-off-by: David Marchand ---

[PATCH v3 3/4] bus/ifpga: use C linkage where appropriate in driver header

2024-10-21 Thread David Marchand
This driver was missed when cleaning up most of the headers. Fixes: 719834a6849e ("use C linkage where appropriate in headers") Signed-off-by: David Marchand --- drivers/bus/ifpga/bus_ifpga_driver.h | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/bus/ifpga/bu

Re: [PATCH v3 2/4] buildtools/chkincs: check headers with stable API only

2024-10-21 Thread Bruce Richardson
On Mon, Oct 21, 2024 at 06:04:45PM +0200, David Marchand wrote: > An exported header should be usable w/ and w/o ALLOW_EXPERIMENTAL_API so > that an application that only wants stable API may include it. > > Plus, the widely common case is that an application will not use > internal API. > > Cove

[PATCH v6 0/7] Stage-Ordered API and other extensions for ring library

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev NOTE UPFRONT: this version is still not ready for merging. Missing items: - ARM/PPC tests passing - PG update v5 -> v6 - fix problem with ring_stress_autotest (Phanendra) - added more checks and debug output v4 -> v5 - fix public API/doc comments from Jerin - update dev

[PATCH v6 5/7] ring/soring: introduce Staged Ordered Ring

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues with multiple processing 'stages'. It is based on conventional DPDK rte_ring, re-uses many of its concepts, and even substantial part of its code. It can be viewed as an 'extension' of rte_ring fu

[PATCH v6 3/7] ring: make copying functions generic

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: that change doesn't introduce any functional or performance changes. It is just a code-reordering for: - improve code modularity and re-usability - ability in future to re-use the same code to introduce new functionality There is no real need for enqueue_

[PATCH v6 6/7] app/test: add unit tests for soring API

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev Add both functional and stess test-cases for soring API. Stress test serves as both functional and performance test of soring enqueue/dequeue/acquire/release operations under high contention (for both over committed and non-over committed scenarios). Signed-off-by: Eimea

[PATCH v6 2/7] ring: common functions for 'move head' ops

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev Note upfront: that change doesn't introduce any functional or performance changes. It is just a code-reordering for: - code deduplication - ability in future to re-use the same code to introduce new functionality For each sync mode corresponding move_prod_head() and mo

[PATCH v6 1/7] test/ring: fix failure with custom number of lcores

2024-10-21 Thread Konstantin Ananyev
From: Konstantin Ananyev ring_stress_autotest fails to initialize the ring when RTE_MAX_LCORE value is not a number of 2. There is a flaw in calculation required number of elements in the ring. Fix it by aligning number of elements to next power of 2. Fixes: bf28df24e915 ("test/ring: add content

[PATCH v6 4/7] ring: make dump function more verbose

2024-10-21 Thread Konstantin Ananyev
From: Eimear Morrissey The current rte_ring_dump function uses the generic rte_ring_headtail structure to access head/tail positions. This is incorrect for the RTS case where the head is stored in a different offset in the union of structs. Switching to a separate function for each sync type allo

Re: [PATCH v6 06/47] net/bnxt: tf_core: TF support flow scale query

2024-10-21 Thread Stephen Hemminger
On Mon, 21 Oct 2024 13:55:26 +0530 Sriharsha Basavapatna wrote: > From: Shuanglin Wang > > TF supports the flow scale query feature for OVS application. > The resource usage is tracked when opening a TF session > or adding/deleting a flow. The resources includes WC TCAM, > EM, Action, Counter,

RE: [EXTERNAL] Re: [PATCH v5 1/1] examples/l2fwd-jobstats: fix lock availability

2024-10-21 Thread Rakesh Kudurumalla
ping > -Original Message- > From: Rakesh Kudurumalla > Sent: Friday, August 16, 2024 10:55 AM > To: Stephen Hemminger > Cc: ferruh.yi...@amd.com; andrew.rybche...@oktetlabs.ru; > or...@nvidia.com; tho...@monjalon.net; dev@dpdk.org; Jerin Jacob > ; Nithin Kumar Dabilpuram > ; sta...@dpdk.o

Re: [RFC v3 00/10] eventdev: remove single-event enqueue and dequeue

2024-10-21 Thread Jerin Jacob
On Fri, Oct 18, 2024 at 1:14 AM Mattias Rönnblom wrote: > > Remove the single-event enqueue and dequeue functions from the > eventdev "ops" struct, to reduce complexity, leaving performance > unaffected. > > This ABI change has been announced as a DPDK deprication notice, > originally scheduled fo

[PATCH v6 47/47] net/bnxt: tf_ulp: add stats cache for thor2

2024-10-21 Thread Sriharsha Basavapatna
From: Peter Spreadborough This change adds a stats cache for Thor2 flows using counters. Flow stats will be harvested periodically in the background and stats reads by the application will be returned stats from the cache and not by initiating a read from HW. This change also adds read-clear fun

[PATCH v6 45/47] net/bnxt: tf_ulp: support a few feature extensions

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha This patch supports the following features. add support for port table write operation Added support for port table write operation from the template so that template can write mirror id details into the port database. support generic template fo

RE: [RFC 1/2] eal: add llc aware functions

2024-10-21 Thread Varghese, Vipin
[AMD Official Use Only - AMD Internal Distribution Only] > > > > > > > 1. if there are specific SoC which do not populate the information > > > > at all? If yes are they in DTS? > > > > > > This information is populated correctly for all SOCs, comment was on > > > the script. > > > > Please note,

[PATCH v6 34/47] net/bnxt: tf_ulp: add rte_mtr support for Thor2

2024-10-21 Thread Sriharsha Basavapatna
From: Jay Ding 1. Implement Thor2 meter template tables 2. Add Thor2 meter support in ULP 3. Make rte_mtr API implementation device independent to adapt Thor2 meter hw change 4. Fix the round issue in xir calculation Signed-off-by: Jay Ding Signed-off-by: Sriharsha Basavapatna Reviewed-by:

[PATCH v6 44/47] net/bnxt: tf_ulp: enable support for truflow feature configuration

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha Added truflow feature bit meson configuration parameter to enable optional capability features of the appplication. Signed-off-by: Kishore Padmanabha Signed-off-by: Sriharsha Basavapatna Reviewed-by: Shahaji Bhosle Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/tf_

[PATCH v6 35/47] net/bnxt: tf_ulp: TF support flow scale query

2024-10-21 Thread Sriharsha Basavapatna
From: Shuanglin Wang TF supports the flow scale query feature for OVS application. The resource usage is tracked when opening a TF session or adding/deleting a flow. The resources includes WC TCAM, EM, Action, Counter, Meter, ACT_ENCAP, ACT_ENCAP, and SP_SMAC. User can query the resource usage us

[PATCH v6 39/47] net/bnxt: tf_ulp: switch ulp to use rte crc32 hash

2024-10-21 Thread Sriharsha Basavapatna
From: Peter Spreadborough The RTE hash is highly optimized and will use HW acceleration when available. Signed-off-by: Peter Spreadborough Signed-off-by: Sriharsha Basavapatna Reviewed-by: Kishore Padmanabha Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/tf_ulp/bnxt_ulp_tf.c | 4 dr

[PATCH v6 36/47] net/bnxt: tf_ulp: add support for rss flow query to ULP

2024-10-21 Thread Sriharsha Basavapatna
From: Randy Schacher Support flow query rss command for truflow in ULP layer. Signed-off-by: Randy Schacher Signed-off-by: Sriharsha Basavapatna Reviewed-by: Kishore Padmanabha Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/bnxt_vnic.c| 39 +- drivers/net/bnxt/bnxt_

[PATCH v6 42/47] net/bnxt: tf_ulp: TFC support flow scale query for Thor2

2024-10-21 Thread Sriharsha Basavapatna
From: Shuanglin Wang TFC supports the flow scale query feature for OVS application. The resource usage(WC-TCAM) is tracked inside Thor2 firmware. This patch is to query the wc-tcam usage info when adding/ deleting a flow. It is just for debugging purpose and disabled by default. Using the build

[PATCH v6 09/47] net/bnxt: tf_core: remove dead AFM code from session-based priority TCAM mgr

2024-10-21 Thread Sriharsha Basavapatna
From: Randy Schacher Remove references to AFM allocated memory which is no longer supported with TCAM mgr and truflow Signed-off-by: Randy Schacher Signed-off-by: Sriharsha Basavapatna Reviewed-by: Farah Smith Reviewed-by: Kishore Padmanabha Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/

[PATCH v6 19/47] net/bnxt: tf_ulp: convert recipe table to dynamic memory

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha Converted the recipe table allocation from static model to dynamic memory allocation model. Signed-off-by: Kishore Padmanabha Signed-off-by: Sriharsha Basavapatna Reviewed-by: Michael Baucom Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/tf_ulp/ulp_mapper.c | 175 +

[PATCH v6 41/47] net/bnxt: tf_ulp: support a few generic template items

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha This patch provides the following changes. support generic template items Add support for jump action, dynamic tunnels and flow priority to thor2 platform. fix generic application template The queue action is enabled for Thor2 platform. E

[PATCH v6 29/47] net/bnxt: tf_ulp: update template files

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha This patch updates template files for the following list of changes, that are being added in the next patch. dynamic support for VF representor mode (template files only) The configurable VF representor mode is removed and it is dynamic. The action record

Re: [PATCH v4 0/6] refine argparse library

2024-10-21 Thread fengchengwen
On 2024/10/18 22:46, Thomas Monjalon wrote: > 18/10/2024 03:09, fengchengwen: >> Hi Thomas and David, >> >> This patchset was already acked by Stephen. >> It missed in DPDK 24.07, hope merge in 24.11. >> >> Thanks >> >> On 2024/10/10 9:35, fengchengwen wrote: >>> Hi Thomas and David, >>> >>> Kindly

[v3,4/5] raw/gdtc: add support for enqueue operation

2024-10-21 Thread Yong Zhang
Add rawdev enqueue operation for gdtc devices. Signed-off-by: Yong Zhang --- drivers/raw/gdtc/gdtc_rawdev.c | 220 + drivers/raw/gdtc/gdtc_rawdev.h | 19 +++ 2 files changed, 239 insertions(+) diff --git a/drivers/raw/gdtc/gdtc_rawdev.c b/drivers/raw/gdtc/gdtc_r

[v3,3/5] raw/gdtc: add support for standard rawdev operations

2024-10-21 Thread Yong Zhang
Add support for rawdev operations such as dev_start and dev_stop. Signed-off-by: Yong Zhang --- drivers/raw/gdtc/gdtc_rawdev.c | 136 - drivers/raw/gdtc/gdtc_rawdev.h | 10 +++ 2 files changed, 145 insertions(+), 1 deletion(-) diff --git a/drivers/raw/gdtc/gdtc_

[v3,5/5] raw/gdtc: add support for dequeue operation

2024-10-21 Thread Yong Zhang
Add rawdev dequeue operation for gdtc devices. Signed-off-by: Yong Zhang --- drivers/raw/gdtc/gdtc_rawdev.c | 113 + 1 file changed, 113 insertions(+) diff --git a/drivers/raw/gdtc/gdtc_rawdev.c b/drivers/raw/gdtc/gdtc_rawdev.c index 03f7cc1a8e..8e9543f402 100644

[v3,1/5] raw/gdtc: introduce gdtc raw device driver

2024-10-21 Thread Yong Zhang
Introduce rawdev driver support for GDTC which can help to connect two separate hosts with each other. Signed-off-by: Yong Zhang --- MAINTAINERS| 5 + doc/guides/rawdevs/gdtc.rst| 35 ++ doc/guides/rawdevs/index.rst | 1 + drivers/raw/gdtc/gdtc_rawdev.c | 212 +

[v3,2/5] raw/gdtc: add support for queue setup operation

2024-10-21 Thread Yong Zhang
Add queue initialization and release interface. Signed-off-by: Yong Zhang --- drivers/raw/gdtc/gdtc_rawdev.c | 242 + drivers/raw/gdtc/gdtc_rawdev.h | 19 +++ 2 files changed, 261 insertions(+) diff --git a/drivers/raw/gdtc/gdtc_rawdev.c b/drivers/raw/gdtc/gdtc_

[PATCH v6 00/47] TruFlow update for Thor2

2024-10-21 Thread Sriharsha Basavapatna
This patch series introduces TruFlow functionality for Broadcom Thor2 NIC. TruFlow(TF) is the software library that exposes CFA HW resources to upper layer protocols or applications. This patch series implements the tfc (tf_core) and the tf_ulp libraries as a part of the bnxt PMD, so that upper la

[PATCH v6 04/47] net/bnxt: tf_core: Thor TF EM key size check

2024-10-21 Thread Sriharsha Basavapatna
From: Farah Smith The maximum EM key size is 640 bits for Thor. But the lookup record + the key size is 679 bits. This value must be rounded up to a 128 bit aligned number. So the size check should be 96 bytes rather than 80. This fix allows keys > 601 bits to be successfully inserted. Fixes:

[PATCH v6 01/47] net/bnxt: tf_core: fix wc tcam multi slice delete issue

2024-10-21 Thread Sriharsha Basavapatna
From: Shahaji Bhosle FW tries to update the HWRM request data in the delete case to update the mode bit and also update invalid profile id. This update only happens when the data is send over DMA. HWRM requests are read only buffers and cannot be updated. So driver now will always send WC tcam se

[PATCH v6 02/47] net/bnxt: tf_core: tcam manager data corruption

2024-10-21 Thread Sriharsha Basavapatna
From: Shahaji Bhosle Max entries per session were not getting initialized to 0, when the sessions were closed. Reset max entries counter session when the session is initialized Fixes: 97435d7906d7 ("net/bnxt: update Truflow core") Signed-off-by: Shahaji Bhosle Signed-off-by: Sriharsha Basavapat

[PATCH v6 03/47] net/bnxt: tf_core: External EM support cleanup

2024-10-21 Thread Sriharsha Basavapatna
From: Shuanglin Wang Isolate external EM support as it is now defunct on Wh+. Signed-off-by: Shuanglin Wang Signed-off-by: Sriharsha Basavapatna Reviewed-by: Shahaji Bhosle Reviewed-by: Farah Smith Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/tf_core/meson.build |2 - drivers/ne

[PATCH v6 06/47] net/bnxt: tf_core: TF support flow scale query

2024-10-21 Thread Sriharsha Basavapatna
From: Shuanglin Wang TF supports the flow scale query feature for OVS application. The resource usage is tracked when opening a TF session or adding/deleting a flow. The resources includes WC TCAM, EM, Action, Counter, Meter, ACT_ENCAP, ACT_ENCAP, and SP_SMAC. User can query the resource usage us

[PATCH v6 07/47] net/bnxt: tf_core: fix slice count in case of HA entry move

2024-10-21 Thread Sriharsha Basavapatna
From: Sangtani Parag Satishbhai When entries are moved during HA, a shared move function transfers TCAM entries by using get/set message APIs, and the slice number of the entry is required to accomplish the movement. The slice number is calculated as the product of row_slice and entry size. Befor

[PATCH v6 10/47] net/bnxt: tf_core: remove dead code from session-based priority TCAM mgr

2024-10-21 Thread Sriharsha Basavapatna
From: Randy Schacher Remove references to tx_tcam_supported and rx_tcam_supported logic which chooses between FW-based tcam resource allocation and driver-based tcam manager. Signed-off-by: Randy Schacher Signed-off-by: Sriharsha Basavapatna Reviewed-by: Peter Spreadborough Reviewed-by: Manis

[PATCH v6 16/47] net/bnxt: tf_ulp: miscellaneous fixes

2024-10-21 Thread Sriharsha Basavapatna
From: Mike Baucom Template compiler modifications for v3 api: Compile named/unnamed shared app resources for the applications that are capable. Change app id signature with base zero offset: The app id is used in the calculation of the matching signatures and as app id value incr

[PATCH v6 14/47] net/bnxt: tf_ulp: add support for vf to vf flow offload

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha Added support for the vf to vf flow offload for the whitney platform. It includes the change of the pipeline from using vlan tags to using custom L2 encap and decap of the packets. Signed-off-by: Kishore Padmanabha Signed-off-by: Sriharsha Basavapatna Reviewed-by: Shah

[PATCH v6 13/47] net/bnxt: tf_ulp: add custom l2 etype tunnel support

2024-10-21 Thread Sriharsha Basavapatna
From: Shahaji Bhosle Add hooks in the hwrm and ulp layer to enable, custom tunnel header support on wh+ generic app(ovs). Signed-off-by: Shahaji Bhosle Signed-off-by: Sriharsha Basavapatna Reviewed-by: Kishore Padmanabha Reviewed-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 4

[PATCH v6 15/47] net/bnxt: tf_ulp: Wh+ mirroring support

2024-10-21 Thread Sriharsha Basavapatna
From: Manish Kurup 1. ULP fixes to enable primitives to support mirroring 2. RTE parser changes to support and use multiple ports in RTE input msgs 3. Template changes required to support ingress mirroring 4. Template changes required to support egress mirroring (using VFR pipeline) Signed

[PATCH v6 23/47] net/bnxt: tf_ulp: VFR updates for Thor 2

2024-10-21 Thread Sriharsha Basavapatna
From: Mike Baucom Update to VFR code to: - add the endpoint (efid) to the session - modify the generic tables to write the l2 context id - tfc session code changes to allow the efid to be added to the sid - release both rfid and efid from afm This patch includes a few related changes: Thor2 cha

[PATCH v6 25/47] net/bnxt: tf_ulp: update template files

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha This patch updates template files for the following list of changes, that are being added in the next patch. - enable recipe id generation - fix segfault in the wildcard recipe process Signed-off-by: Kishore Padmanabha Signed-off-by: Sriharsha Basavapatna Reviewed-by:

[PATCH v6 26/47] net/bnxt: tf_ulp: enable recipe id generation

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha Added support to generate recipe id generation. This patch includes a few related changes: fix segfault in the wildcard recipe process The recipe id is being passed as 8 bit instead of 64bit causing the crash. Ported code using default_non_ha resource

[PATCH v6 21/47] net/bnxt: tf_ulp: add action read and clear support

2024-10-21 Thread Sriharsha Basavapatna
From: Jay Ding Implement action read and clear support. Change flow query count to reset the count after read in ULP. Update cli cmds accordingly. Fixed bnxt_mpc_xmit() to pad the mpc message to be multiple of 16 bytes. Signed-off-by: Jay Ding Signed-off-by: Sriharsha Basavapatna Reviewed-by:

RE: [RFC 0/2] introduce LLC aware functions

2024-10-21 Thread Varghese, Vipin
[AMD Official Use Only - AMD Internal Distribution Only] > > When are you going to send a new version? We had been testing this on various Intel and AMD platforms. We have completed testing over sub-NUMA domains on both SoC. We will be sharing the new patch (rfc-v2) before 22 Oct 2024. > > Need:

[PATCH v6 28/47] net/bnxt: tf_ulp: modify return values to adhere to C coding standard

2024-10-21 Thread Sriharsha Basavapatna
From: Shuanglin Wang Modified return values of the several ULP utilities to comply C coding standard. Like using macros EXIT_SUCCESS(0) and EXIT_FAILURE(1) for the conventional status value for success and failure, respectively. They are declared in the file stdlib.h. Signed-off-by: Shuanglin W

[PATCH v6 30/47] net/bnxt: tf_ulp: add mask defaults when mask is not specified

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha If application does not specify mask in a field description then use the default mask values from dpdk header files. This patch also includes the following related changes. fix stats collection for shared session The stats accumulation was being performed on def

[PATCH v6 27/47] net/bnxt: tf_ulp: fixed parent child db counters

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha The locking for the parent child counters need to be done till the stats are retrieved. Also the OVS is creating multiple F1 flows for same tunnel hence reference count needs to be maintined for the F1 flows. Fix name conflicts for class and action tables. Matcher alloca

RE: [PATCH v1 1/2] baseband/acc: FFT support in VRB2 PRQ device

2024-10-21 Thread Chautru, Nicolas
Hi Maxime, Do you want me to send a v2 for this or you can change the comment before applying? "Also, take the opportunity to fix some unused VRB2 registers definitions". > -Original Message- > From: Maxime Coquelin > Sent: Monday, October 21, 2024 8:06 AM > To: Chautru, Nicolas ; dev

Re: [PATCH v1 1/2] baseband/acc: FFT support in VRB2 PRQ device

2024-10-21 Thread Maxime Coquelin
On 10/21/24 22:12, Chautru, Nicolas wrote: Hi Maxime, Do you want me to send a v2 for this or you can change the comment before applying? "Also, take the opportunity to fix some unused VRB2 registers definitions". I can do it while applying. Thanks, Maxime -Original Message-

Re: [PATCH v3 3/9] raw/cnxk_rvu_lf: add PMD API to get BAR addresses

2024-10-21 Thread Thomas Monjalon
08/10/2024 20:49, Akhil Goyal: > Added rte_pmd_rvu_lf_bar_get() API to get BAR address > for application to configure hardware. In my opinion, we should not return PCI BAR addresses to an application. We should make an effort to have all theses details managed in the driver. Giving this level of a

[PATCH v1 72/73] net/ntnic: add meter module

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Meter module was added: 1. add/remove profile 2. create/destroy flow 3. add/remove meter policy 4. read/update stats eth_dev_ops struct was extended with ops above. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/include/ntos_drv.h | 14 + drivers/net/

[PATCH v1 69/73] net/ntnic: add thread termination

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Introduce clear_pdrv to unregister driver from global tracking. Modify drv_deinit to call clear_pdirv and ensure safe termination. Add flm sta and age event free. Signed-off-by: Danylo Vodopianov --- .../flow_api/profile_inline/flm_age_queue.c | 10 +++ .../flow_api

[PATCH v1 73/73] net/ntnic: add meter documentation

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov ntnic.ini was extended with rte_flow action meter support. Signed-off-by: Danylo Vodopianov --- doc/guides/nics/features/ntnic.ini | 1 + doc/guides/nics/ntnic.rst | 1 + doc/guides/rel_notes/release_24_11.rst | 1 + 3 files changed, 3 insertions(+) di

[PATCH v1 68/73] net/ntnic: add aged flow event

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Port thread was extended with new age event callback handler. LRN, INF, STA registers getter setter was added. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/include/hw_mod_backend.h| 7 + .../net/ntnic/nthw/flow_api/flow_id_table.c | 16 +++ .../net/nt

[PATCH v1 71/73] net/ntnic: add meter API

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Add meter API and implementation to the profile inline. management functions were extended with meter flow support. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/include/flow_api.h | 1 + drivers/net/ntnic/include/flow_api_engine.h | 5 + .../fl

[PATCH v1 67/73] net/ntnic: add info and configure flow API

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Inline profile was extended with flow info and create APIS. Module which operate with age queue was extended with create and free operations. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/include/flow_api.h | 3 + drivers/net/ntnic/nthw/flow_api/flow

[PATCH v1 62/73] net/ntnic: added flow statistics

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov xstats was extended with flow statistics support. Additional counters that shows learn, unlearn, lps, aps and other. Signed-off-by: Danylo Vodopianov --- .../net/ntnic/adapter/nt4ga_stat/nt4ga_stat.c | 40 drivers/net/ntnic/include/hw_mod_backend.h| 3 + dr

[PATCH v1 58/73] net/ntnic: add tsm module

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov tsm module which operate with timers in the physical nic was added. Necessary defines and implementation were added. The Time Stamp Module controls every aspect of packet timestamping, including time synchronization, time stamp format, PTP protocol, etc. Signed-off-by:

[PATCH v1 66/73] net/ntnic: add aged API to the inline profile

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Added implementation for flow get aged API. Module which operate with age queue was extended with get, count and size operations. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/meson.build | 1 + .../flow_api/profile_inline/flm_age_queue.c |

Re: [PATCH v2 0/7] DTS external DPDK build

2024-10-21 Thread Dean Marx
Hi Luca, I noticed in the new version of this series the "improve statistics" patch was taken out, was there any reason for this? I believe Juraj wanted to create a feature that wrote all of the test suite/case summaries in a JSON/text output file, is this going to be implemented later or in a dif

[PATCH v1 63/73] net/ntnic: add scrub registers

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Scrub fields were added to the fpga map file Remove duplicated macro Signed-off-by: Danylo Vodopianov --- .../supported/nthw_fpga_9563_055_049_.c | 17 - drivers/net/ntnic/ntnic_ethdev.c| 3 --- 2 files changed, 16 insertions(+),

[PATCH v1 60/73] net/ntnic: add TSM module

2024-10-21 Thread Serhii Iliushyk
From: Oleksandr Kolomeiets fpga map was extended with tsm module support which enable statistics functionality. Signed-off-by: Oleksandr Kolomeiets --- doc/guides/nics/features/ntnic.ini| 1 + .../supported/nthw_fpga_9563_055_049_.c | 394 +- .../nthw/suppor

[PATCH v1 61/73] net/ntnic: add xstats

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov Extended statistics implementation and initialization were added. eth_dev_ops api was extended with new xstats apis. Signed-off-by: Danylo Vodopianov --- doc/guides/nics/features/ntnic.ini| 1 + drivers/net/ntnic/include/ntnic_stat.h| 36 + drive

[PATCH v1 34/73] net/ntnic: add flm rcp module

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov The Flow Matcher module is a high-performance stateful SDRAM lookup and programming engine which supported exact match lookup in line-rate of up to hundreds of millions of flows. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/include/hw_mod_backend.h| 4 +

[PATCH v1 65/73] net/ntnic: added flow aged APIs

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov FLow aged API was added to the flow_filter_ops. Signed-off-by: Danylo Vodopianov --- drivers/net/ntnic/nthw/flow_api/flow_api.c| 71 +++ drivers/net/ntnic/ntnic_filter/ntnic_filter.c | 88 +++ drivers/net/ntnic/ntnic_mod_reg.h

[PATCH v1 59/73] net/ntnic: add STA module

2024-10-21 Thread Serhii Iliushyk
From: Oleksandr Kolomeiets fpga map was extended with STA module support which enable statistics functionality. Signed-off-by: Oleksandr Kolomeiets --- .../supported/nthw_fpga_9563_055_049_.c | 92 ++- .../nthw/supported/nthw_fpga_mod_str_map.c| 1 + .../nthw/support

[PATCH v1 70/73] net/ntnic: add age documentation

2024-10-21 Thread Serhii Iliushyk
From: Danylo Vodopianov ntnic.rst document was exntede with age feature specification. ntnic.ini was extended with rte_flow action age support. Signed-off-by: Danylo Vodopianov --- doc/guides/nics/features/ntnic.ini | 1 + doc/guides/nics/ntnic.rst | 18 ++ do

[PATCH v3 0/7] DTS external DPDK build

2024-10-21 Thread Luca Vizzarro
Hello, sending a fix for some minor problems found in the meantime. v3: - added Tomáš to mailmap - fixed docstrings - amended commit subject v2: - rebased on top of dts-next and resolved conflicts - fixed bugs - rephrased some docstrings - improved settings naming for less ambiguity - improved co

[PATCH v3 1/7] dts: rename build target to DPDK build

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec Since the DPDK may already be built, some more general name is needed that includes both the DPDK location and the build config (if we are going to build). Signed-off-by: Tomáš Ďurovec Signed-off-by: Luca Vizzarro --- .mailmap | 1 + dts

[PATCH v3 2/7] dts: enforce one dpdk build per test run

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec Given a pre-built DPDK repository can be supplied to DTS, there is no need to define multiple build targets. To simplify the process this change makes each test run use only one DPDK build whether it's pre-built or it needs to be built by DTS. Signed-off-by: Tomáš Ďurovec Si

[PATCH v3 7/7] dts: remove git ref option

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec Given the whole DPDK tree directory can now be copied to the nodes, there is no more need to use the git ref option, as the tree can be controlled directly by the user. Signed-off-by: Tomáš Ďurovec Signed-off-by: Luca Vizzarro --- doc/guides/tools/dts.rst | 9 --- dts/f

[PATCH v3 4/7] dts: enable copying directories to and from nodes

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec Currently there is no support to transfer whole directories between the DTS host and the nodes. This change adds this new feature. Signed-off-by: Tomáš Ďurovec Signed-off-by: Luca Vizzarro --- dts/framework/testbed_model/os_session.py| 120 ++- dts/fram

[PATCH v3 3/7] dts: change remote and local paths objects

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec The OSSession (and its subclasses) should accept PurePaths for remote paths to translate from OS-unaware (PurePath) to OS-aware (Path) only on the remote side. For local paths, they should accept Paths, as Python is OS-aware locally. Signed-off-by: Tomáš Ďurovec Signed-off-b

[PATCH v3 6/7] doc: update argument options for external DPDK build

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec By adding support for external build, we extend the argument documentation for supported options. Signed-off-by: Tomáš Ďurovec Signed-off-by: Luca Vizzarro --- doc/guides/tools/dts.rst | 75 1 file changed, 45 insertions(+), 30 dele

[PATCH v3 5/7] dts: add support for externally compiled DPDK

2024-10-21 Thread Luca Vizzarro
From: Tomáš Ďurovec Enable the user to use either a DPDK source tree directory or a tarball, with and without a pre-built build directory. These can be stored on either SUT node or the DTS host. The DPDK build setup or the pre-built binaries can be specified through the configuration file, the co

[PATCH v1 64/73] net/ntnic: update documentation

2024-10-21 Thread Serhii Iliushyk
From: Oleksandr Kolomeiets Update required documentation Signed-off-by: Oleksandr Kolomeiets --- doc/guides/nics/ntnic.rst | 30 ++ 1 file changed, 30 insertions(+) diff --git a/doc/guides/nics/ntnic.rst b/doc/guides/nics/ntnic.rst index 2c160ae592..e7e1cbcff7 1006

Re: [RFC v3 00/10] eventdev: remove single-event enqueue and dequeue

2024-10-21 Thread Mattias Rönnblom
On 2024-10-21 09:25, Jerin Jacob wrote: On Fri, Oct 18, 2024 at 1:14 AM Mattias Rönnblom wrote: Remove the single-event enqueue and dequeue functions from the eventdev "ops" struct, to reduce complexity, leaving performance unaffected. This ABI change has been announced as a DPDK deprication

[DPDK/other Bug 1569] dpdk-devbind not recognizing Hyper-V synthetic network adapters

2024-10-21 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1569 Bug ID: 1569 Summary: dpdk-devbind not recognizing Hyper-V synthetic network adapters Product: DPDK Version: 24.03 Hardware: All OS: All Status: UNCONFI

Re: [PATCH v6 5/9] net/zxdh: add msg chan enable implementation

2024-10-21 Thread Thomas Monjalon
16/10/2024 10:18, Junlong Wang: > Add msg chan enable implementation to support > send msg to get infos. Would be interesting to explain which module is receiving the message. > +union VPORT { Why uppercase? for differenciate with vport below? In general we tend to use only lowercase. > +

[PATCH v6 05/47] net/bnxt: tf_core: flow scale improvement

2024-10-21 Thread Sriharsha Basavapatna
From: Kishore Padmanabha Added logic to add flows to wildcard tcam if flows fail to be added to exact match table. Signed-off-by: Kishore Padmanabha Reviewed-by: Michael Baucom Reviewed-by: Ajit Khaparde Reviewed-by: Shahaji Bhosle Signed-off-by: Sriharsha Basavapatna --- drivers/net/bnxt/

RE: [PATCH v2] app/dma-perf: per device config support

2024-10-21 Thread Amit Prakash Shukla
Hi Thomas, Gentle ping. Could you please consider merging this patch. Thanks, Amit Shukla > -Original Message- > From: Amit Prakash Shukla > Sent: Thursday, September 26, 2024 5:43 PM > To: Cheng Jiang ; Chengwen Feng > > Cc: dev@dpdk.org; Jerin Jacob ; Vamsi Krishna > Attunuru ; Anoo

Re: [PATCH v6 6/9] net/zxdh: add zxdh get device backend infos

2024-10-21 Thread Thomas Monjalon
16/10/2024 10:18, Junlong Wang: > --- a/drivers/net/zxdh/zxdh_msg.c > +++ b/drivers/net/zxdh/zxdh_msg.c > @@ -18,8 +18,6 @@ > #define REPS_INFO_FLAG_USABLE 0x00 > #define BAR_SEQID_NUM_MAX 256 > > -#define ZXDH_BAR0_INDEX 0 > - > #define PCIEID_IS_PF_MASK (0x0800) > #define PCIEID_PF_IDX

Re: [PATCH v6 8/9] net/zxdh: add zxdh dev infos get ops

2024-10-21 Thread Thomas Monjalon
16/10/2024 10:18, Junlong Wang: > +static uint32_t zxdh_dev_speed_capa_get(uint32_t speed) > +{ > + switch (speed) { > + case RTE_ETH_SPEED_NUM_10G: return RTE_ETH_LINK_SPEED_10G; > + case RTE_ETH_SPEED_NUM_20G: return RTE_ETH_LINK_SPEED_20G; > + case RTE_ETH_SPEED_NUM_25G: retur

Re: [v12,12/12] crypto/zsda: add zsda crypto PMD

2024-10-21 Thread Hanxiao Li
Hi maintainers: Do we need to solve the error and warning? We haven't found the detailed reason for the error and warning in the output log. And we don't modified code about eal_flags_misc_autotes, cryptodev_sw_zuc_autotest or cryptodev_sw_snow3g_autotest, which can be ensured in

[PATCH 10/10] eventdev: remove single event enqueue and dequeue

2024-10-21 Thread Mattias Rönnblom
Remove the single event enqueue and dequeue, since they did not provide any noticeable performance benefits. This is a change of the ABI, previously announced as a deprecation notice. These functions were not directly invoked by the application, so the API remains unaffected. Signed-off-by: Matti

[PATCH 07/10] event/opdl: remove single event enqueue and dequeue

2024-10-21 Thread Mattias Rönnblom
Provide only burst enqueue and dequeue. Signed-off-by: Mattias Rönnblom --- drivers/event/opdl/opdl_evdev.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/drivers/event/opdl/opdl_evdev.c b/drivers/event/opdl/opdl_evdev.c index 25853166bf..ffa65ef930 100644 --- a/drivers/event/opdl/opdl_evd

[PATCH 03/10] event/octeontx: remove single event enqueue and dequeue

2024-10-21 Thread Mattias Rönnblom
Provide only burst enqueue and dequeue. Signed-off-by: Mattias Rönnblom --- drivers/event/octeontx/ssovf_evdev.h | 1 - drivers/event/octeontx/ssovf_worker.c | 40 +++ 2 files changed, 4 insertions(+), 37 deletions(-) diff --git a/drivers/event/octeontx/ssovf_evdev.h

  1   2   3   >