Re: [PATCH v4 2/2] config/arm: use common cpu arch for cross files

2023-12-07 Thread Stephen Hemminger
On Tue, 5 Dec 2023 03:52:59 + Joyce Kong wrote: > The cpu info in some cross files is inconsistent with > that in SoC flags. The mismatch doesn't cause any issue > because the cpu field in the cross file takes no effect > and machine_args in config/arm/meson.build actually works. > Use a com

Re: [PATCH v3 0/4] net/hns3: refactor mailbox

2023-12-07 Thread Jie Hai
On 2023/12/7 20:31, Ferruh Yigit wrote: On 12/7/2023 1:37 AM, Jie Hai wrote: This patchset refactors mailbox codes. -- v3: 1. fix the checkpatch warning on __atomic_xxx. -- Dengdui Huang (4): net/hns3: refactor VF mailbox message struct net/hns3: refactor PF mailbox message struct net

[PATCH 0/1] docs:programmers guide index reflow

2023-12-07 Thread David Young
Enhanced Organization of the Programmer's Guide for Better Clarity - Restructured main sections for coherent topic grouping; added 'Foundation Principles', 'Memory Management', 'CPU Management', and 'Device Libraries'. - 'Foundation Principles' now includes 'Introduction', 'Overview', 'Source

[PATCH 1/1] Modified Programmer's Guide index for better organization and readability

2023-12-07 Thread David Young
--- doc/guides/prog_guide/bpf_lib.rst | 4 +- doc/guides/prog_guide/dmadev.rst | 6 +- doc/guides/prog_guide/efd_lib.rst | 4 +- .../prog_guide/env_abstraction_layer.rst | 4 +- doc/guides/prog_guide/ethdev/index.rst| 12 ++ .../prog_guide

Re: [PATCH RESEND v6 0/5] app/testpmd: support multiple process attach and detach port

2023-12-07 Thread lihuisong (C)
Hi Ferruh and Thomas, This series have been discussing for over a year and a half. Looking back on previous discussions, we have also made some progress and consensus. I am sticking to track it. Because they resolve a real exist issue. Can you take a look at it again? BR, /Huisong 在 2023/10/

[PATCH v1] net/memif: remove extra mbuf refcnt update in zero copy Tx

2023-12-07 Thread Liangxing Wang
The refcnt update of stored mbufs in memif driver is redundant since those mbufs are only freed in eth_memif_tx_zc(). No other place can free those stored mbufs quietly. So remove the redundant mbuf refcnt update in dpdk memif driver to avoid extra heavy cost. Performance of dpdk memif zero copy tx

RE: [PATCH v4 1/2] config: correct cpu instruction set for cross build

2023-12-07 Thread Joyce Kong
> -Original Message- > From: Stephen Hemminger > Sent: Friday, December 8, 2023 6:41 AM > To: Joyce Kong > Cc: tho...@monjalon.net; Ruifeng Wang ; > bruce.richard...@intel.com; dev@dpdk.org; nd ; > sta...@dpdk.org > Subject: Re: [PATCH v4 1/2] config: correct cpu instruction set for cross

[PATCH 1/2] net/virtio-user: improve kick performance with notification area mapping

2023-12-07 Thread Srujana Challa
This patch introduces new virtio-user callback to map the vq notification area and implements it for the vhost-vDPA backend. This is simply done by using mmap()/munmap() for the vhost-vDPA fd. This patch also adds a parameter for configuring feature bit VIRTIO_NET_F_NOTIFICATION_DATA. If feature i

[PATCH 2/2] net/virtio-user: add VIRTIO_NET_F_RSS to supported features

2023-12-07 Thread Srujana Challa
This patch introduces new function to get rss device config and adds code to forward the RSS control command to backend through hw control queue if RSS feature is negotiated. This patch will help to negotiate VIRTIO_NET_F_RSS feature if vhost-vdpa backend supports RSS in HW. Signed-off-by: Srujana

[PATCH] bus/uacce: introduce UACCE bus

2023-12-07 Thread Chengwen Feng
UACCE (Unified/User-space-access-intended Accelerator Framework) was upstream to Linux kernel version 5.7, and it targets to provide Shared Virtual Addressing (SVA) between accelerators and processes. So accelerator can access any data structure of the main cpu. [1] for more information. This comm

[Bug 1334] Failures of testpmd on XXV710 card in VMs under Openshift Container Platform

2023-12-07 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1334 Bug ID: 1334 Summary: Failures of testpmd on XXV710 card in VMs under Openshift Container Platform Product: DPDK Version: 22.11 Hardware: x86 OS: Linux

Re: [PATCH v2 4/4] net/hns3: use stdatomic API

2023-12-07 Thread Jie Hai
On 2023/12/7 21:57, Ferruh Yigit wrote: On 12/7/2023 1:42 AM, Jie Hai wrote: Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional stdatomic API. Signed-off-by: Jie Hai <...> static void @@ -643,8 +643,8 @@ hns3vf_get_push_lsc_cap(struct hns3_

[PATCH v4 0/4] net/hns3: refactor mailbox

2023-12-07 Thread Jie Hai
This patchset refactors mailbox codes. We will send a patch fix for all __atomic_xxx, so this patchset still use __atomic_xxx. -- v4: 1. use __atomic_xxx instead of rte_atomic_XXX. 2. use '__rte_packed' instead of '#pragma pack()'. v3: 1. fix the checkpatch warning on __atomic_xxx. -- Dengdui Hua

[PATCH v4 1/4] net/hns3: refactor VF mailbox message struct

2023-12-07 Thread Jie Hai
From: Dengdui Huang The data region in VF to PF mbx memssage command is used to communicate with PF driver. And this data region exists as an array. As a result, some complicated feature commands, like setting promisc mode, map/unmap ring vector and setting VLAN id, have to use magic number to se

[PATCH v4 2/4] net/hns3: refactor PF mailbox message struct

2023-12-07 Thread Jie Hai
From: Dengdui Huang The data region in PF to VF mbx memssage command is used to communicate with VF driver. And this data region exists as an array. As a result, some complicated feature commands, like mailbox response, link change event, close promisc mode, reset request and update pvid state, h

[PATCH v4 3/4] net/hns3: refactor send mailbox function

2023-12-07 Thread Jie Hai
From: Dengdui Huang The 'hns3_send_mbx_msg' function has following problem: 1. the name is vague, missing caller indication 2. too many input parameters because the filling messages are placed in commands the send command. Therefore, a common interface is encapsulated to fill in the mailbox m

[PATCH v4 4/4] net/hns3: refactor handle mailbox function

2023-12-07 Thread Jie Hai
From: Dengdui Huang The mailbox messages of the PF and VF are processed in the same function. The PF and VF call the same function to process the messages. This code is excessive coupling and isn't good for maintenance. Therefore, this patch separates the interfaces that handle PF mailbox message

Re: [PATCH v2 4/4] net/hns3: use stdatomic API

2023-12-07 Thread Jie Hai
On 2023/12/8 1:42, Ferruh Yigit wrote: On 12/7/2023 1:57 PM, Ferruh Yigit wrote: On 12/7/2023 1:42 AM, Jie Hai wrote: Replace the use of gcc builtin __atomic_xxx intrinsics with corresponding rte_atomic_xxx optional stdatomic API. Signed-off-by: Jie Hai <...> static void @@ -643,8 +643

[PATCH v3 0/3] net/hns3: bugfix on reset

2023-12-07 Thread Jie Hai
This patchset fixes some bugs on reset, and the replaces of gcc builtin __atomic_xxx with rte_atomic_xxx is removed and will send later separately. Dengdui Huang (3): net/hns3: fix VF multiple count on one reset net/hns3: fix disable command with firmware net/hns3: fix incorrect reset level

[PATCH v3 1/3] net/hns3: fix VF multiple count on one reset

2023-12-07 Thread Jie Hai
From: Dengdui Huang There are two ways for the hns3 VF driver to know reset event, namely, interrupt task and periodic detection task. For the latter, the real reset process will delay several microseconds to execute. Both tasks cause the count to increase by 1. However, the periodic detection t

[PATCH v3 2/3] net/hns3: fix disable command with firmware

2023-12-07 Thread Jie Hai
From: Dengdui Huang Disable command only when need to delay handle reset. This patch fixes it. Fixes: 5be38fc6c0fc ("net/hns3: fix multiple reset detected log") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang Signed-off-by: Jie Hai --- drivers/net/hns3/hns3_ethdev.c | 8 +++- 1 file cha

[PATCH v3 3/3] net/hns3: fix incorrect reset level comparison

2023-12-07 Thread Jie Hai
From: Dengdui Huang Currently, there are two problems in hns3vf_is_reset_pending(): 1. The new detect reset level is not HNS3_NONE_RESET, but the last reset level is HNS3_NONE_RESET, this function returns false. 2. Comparison between last_req and new_req is opposite. In addition, the reset le

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

2023-12-07 Thread Amit Prakash Shukla
DMA library has a function to get DMA device based on device name but there is no function to get DMA device using device id. Added a function that lookup for the dma device using device id and returns the pointer to the same. Signed-off-by: Amit Prakash Shukla --- lib/dmadev/rte_dmadev.c |

RE: [EXT] [PATCH v4 1/3] node: support to add next node to ethdev Rx node

2023-12-07 Thread Sunil Kumar Kori
> -Original Message- > From: Rakesh Kudurumalla > Sent: Tuesday, December 5, 2023 2:57 PM > To: Nithin Kumar Dabilpuram ; Pavan > Nikhilesh Bhagavatula > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; > Rakesh Kudurumalla > Subject: [EXT] [PATCH v4 1/3] node: support to add next node to e

RE: [PATCH v5 09/19] net/mlx[45]: remove word sanity

2023-12-07 Thread Dariusz Sosnowski
> -Original Message- > From: Stephen Hemminger > Sent: Wednesday, November 29, 2023 18:26 > To: dev@dpdk.org > Cc: Stephen Hemminger ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori > Kam ; Suanming Mou ; Matan > Azrad > Subject: [PATCH v5 09/19] net/mlx[45]: remove word sanity > > The term

TODAY - webinar about 5G with DPDK

2023-12-07 Thread Thomas Monjalon
Exploring DPDK’s Role in 5G Architecture Experts from Intel, Ericsson and NVIDIA will talk about using DPDK for 5G. Join us at 2pm UTC for 1 hour (Q&A included), this Thursday 7 December. Register with this link: https://zoom.us/webinar/register/WN_LSyHZj9DRf2Q0XFoev60Sg#/registration

NVIDIA roadmap for 24.03

2023-12-07 Thread Maayan Kashani
Please find below NVIDIA roadmap for 24.03 release: A. rte_flow new APIs = 1. Add NAT64 action. Adding a new action for header re-write of NAT64. NAT64 (Network Address Translation 64) is a networking technology that facilitates communication between IPv6 and IPv4 network

Re: [PATCH v4 1/3] node: support to add next node to ethdev Rx node

2023-12-07 Thread David Marchand
On Tue, Dec 5, 2023 at 10:27 AM Rakesh Kudurumalla wrote: > diff --git a/lib/node/version.map b/lib/node/version.map > index 99ffcdd414..07abc3a79f 100644 > --- a/lib/node/version.map > +++ b/lib/node/version.map > @@ -16,6 +16,7 @@ EXPERIMENTAL { > rte_node_ip6_route_add; > > # ad

[PATCH v2] app/test-pmd: fix tcp/udp cksum with padding data

2023-12-07 Thread Kaiwen Deng
IEEE 802 packets may have a minimum size limit. The data fields should be padded when necessary. In some cases, the padding data is not zero. Testpmd does not trim these IP packets to the true length of the frame, so errors will occur when calculating TCP or UDP checksum. This commit fixes this is

Re: Next year of LTSes

2023-12-07 Thread Luca Boccassi
On Thu, 9 Nov 2023 at 10:30, Luca Boccassi wrote: > > Hi, > > We should start thinking about the next year of LTSes and how to organize. > > 20.11 will be EOL after the next upcoming release being prepared now, > as it's now 3 years old. So long, and thanks for all the fixes. > > Currently Kevin i

Re: [PATCH] version: 24.03-rc0

2023-12-07 Thread David Marchand
Hello maintainers, On Thu, Nov 30, 2023 at 10:23 AM David Marchand wrote: > For subtree maintainers. > > It should change nothing to you guys. > Please rebase your trees on v24.03-rc0 and push it to dpdk.org. > And then double check that the mirror happened (looking at git push > output, and chec

RE: [PATCH v8 0/3] test/dma: add vchan reconfig and SG tests

2023-12-07 Thread Gowrishankar Muthukrishnan
Hi, Could this patch series be reviewed ? As of now, patches are rebased without any conflicts. Thanks, Gowrishankar > -Original Message- > From: Gowrishankar Muthukrishnan > Sent: Thursday, November 16, 2023 11:15 PM > To: dev@dpdk.org > Cc: Anoob Joseph ; Chengwen Feng > ; Vamsi Krish

RE: [PATCH v8 0/4] PCI Dev and SG copy support

2023-12-07 Thread Gowrishankar Muthukrishnan
Hi, Could this patch series be reviewed ? As of now, patches are rebased without any conflicts. Thanks, Gowrishankar > -Original Message- > From: Gowrishankar Muthukrishnan > Sent: Wednesday, November 22, 2023 4:36 PM > To: dev@dpdk.org > Cc: Anoob Joseph ; Cheng Jiang > ; Kevin Laatz ;

Re: [PATCH] app/graph: generate cmdline boilerplate

2023-12-07 Thread Bruce Richardson
On Thu, Dec 07, 2023 at 12:42:05PM +0530, sk...@marvell.com wrote: > From: Sunil Kumar Kori > > Use the dpdk-cmdline-gen script to autogenerate all the boilerplate > structs and defines for the commandline part of the application. > > Depends-on: series-30459 ("enhancements for dpdk-cmdline-gen

Re: [RFT] net/nfb: use dynamic logtype

2023-12-07 Thread Martin Spinler
Thanks for patch! There are some issues. On Wed, 2023-12-06 at 09:51 -0800, Stephen Hemminger wrote: > > diff --git a/drivers/net/nfb/nfb_log.h b/drivers/net/nfb/nfb_log.h > new file mode 100644 > index ..fac66a38d4b3 > --- /dev/null > +++ b/drivers/net/nfb/nfb_log.h > @@ -0,0 +1,13 @

RE: [PATCH v4 2/3] app/graph: add ethdev forward command

2023-12-07 Thread Sunil Kumar Kori
> -Original Message- > From: Rakesh Kudurumalla > Sent: Tuesday, December 5, 2023 2:57 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > Kumar Dabilpuram > Subject: [PATCH v4 2/3] app/graph: add ethdev forward command > > Adds a tx

RE: [PATCH v4 3/3] app/graph: implement port forward usecase

2023-12-07 Thread Sunil Kumar Kori
> -Original Message- > From: Rakesh Kudurumalla > Sent: Tuesday, December 5, 2023 2:57 PM > To: Sunil Kumar Kori ; Rakesh Kudurumalla > > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; Nithin > Kumar Dabilpuram > Subject: [PATCH v4 3/3] app/graph: implement port forward usecase > > Added

RE: NVIDIA roadmap for 24.03

2023-12-07 Thread Maayan Kashani
Small correction, moved Geneve to mlx5 PMD updates. Regards, Maayan Kashani From: Maayan Kashani Sent: Thursday, 7 December 2023 11:29 To: dpdk-dev Subject: NVIDIA roadmap for 24.03 Please find below NVIDIA roadmap for 24.03 release: A. rte_flow new APIs = 1. Add NAT64

[PATCH 1/2] net/virtio-user: improve kick performance with notification area mapping

2023-12-07 Thread Srujana Challa
This patch introduces new virtio-user callback to map the vq notification area and implements it for the vhost-vDPA backend. This is simply done by using mmap()/munmap() for the vhost-vDPA fd. This patch also adds a parameter for configuring feature bit VIRTIO_NET_F_NOTIFICATION_DATA. If feature i

[PATCH 2/2] net/virtio-user: add VIRTIO_NET_F_RSS to supported features

2023-12-07 Thread Srujana Challa
This patch introduces new function to get rss device config and adds code to forward the RSS control command to backend through hw control queue if RSS feature is negotiated. This patch will help to negotiate VIRTIO_NET_F_RSS feature if vhost-vdpa backend supports RSS in HW. Signed-off-by: Srujana

Re: [PATCH v3 0/4] net/hns3: refactor mailbox

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 1:37 AM, Jie Hai wrote: > This patchset refactors mailbox codes. > > -- > v3: > 1. fix the checkpatch warning on __atomic_xxx. > -- > > Dengdui Huang (4): > net/hns3: refactor VF mailbox message struct > net/hns3: refactor PF mailbox message struct > net/hns3: refactor send mai

Re: [PATCH v3 1/4] net/hns3: refactor VF mailbox message struct

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 1:37 AM, Jie Hai wrote: > From: Dengdui Huang > > The data region in VF to PF mbx message command is > used to communicate with PF driver. And this data > region exists as an array. As a result, some complicated > feature commands, like setting promisc mode, map/unmap > ring vector a

[PATCH 00/14] Add TLS record test suite

2023-12-07 Thread Anoob Joseph
Add TLS record test suite in cryptodev autotest framework. The test suite would run based on capabilities exposed by the cryptodev. The test suite framework is similar to the framework used in case of IPsec tests. To avoid duplication of code, protocol independent code is moved to common files and

[PATCH 01/14] test/crypto: move security caps checks to separate file

2023-12-07 Thread Anoob Joseph
Move routines performing security caps verifications to a separate file to allow the usage of same for other protocol tests such as TLS record. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test-security-perf/meson.build | 1 + app/test-security-perf/test_sec

[PATCH 02/14] test/crypto: move algorithm list to common

2023-12-07 Thread Anoob Joseph
From: Vidya Sagar Velumuri The algorithm list and associated structs are used for IPsec combined mode tests. The same list can be employed for other security protocol testing as well. Move the same to test_security_proto.h for the same. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Vel

[PATCH 03/14] test/crypto: move algorithm display routines to common

2023-12-07 Thread Anoob Joseph
The functions that are used for printing algorithms in case of IPsec can be moved to the common header, test_security_proto.h. The same could be used for other security protocol testing. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test-security-perf/test_security_per

[PATCH 04/14] test/security: add sha1-hmac to auth list

2023-12-07 Thread Anoob Joseph
Add SHA1-HMAC with 12B digest to the auth list. This algorithm would be used in IPsec tests and combined tests would run on devices that support the capabilities. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test/test_security_proto.h | 6 ++ 1 file changed, 6 ins

[PATCH 05/14] test/crypto: move algorithm framework to common

2023-12-07 Thread Anoob Joseph
From: Vidya Sagar Velumuri Move algorithm list and the associated framework to common files (test_security_proto.c & .h) to be able to use same framework for other security offload tests such as TLS record. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test-security-

[PATCH 06/14] test/crypto: add TLS record tests

2023-12-07 Thread Anoob Joseph
Add framework for testing TLS record cases. The framework supports testing with known vector tests in both session types (read & write). Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test/meson.build | 1 + app/test/test_cryptodev.c

[PATCH 07/14] test/crypto: add AES-GCM 128 TLS 1.2 vector

2023-12-07 Thread Anoob Joseph
From: Tejasree Kondoj Add AES-GCM-128 test vector generated with kTLS. Signed-off-by: Tejasree Kondoj Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev.c | 8 +-- app/test/test_cryptodev_security_tls_record.h | 2 +- ...yptodev_security_tls_record_test_vect

[PATCH 08/14] test/crypto: add TLS1.2 vectors

2023-12-07 Thread Anoob Joseph
From: Akhil Goyal Added TLS 1.2 test vectors for AES-128-CBC-SHA1 Signed-off-by: Akhil Goyal --- app/test/test_cryptodev.c | 8 ++ app/test/test_cryptodev_security_tls_record.h | 1 + ...yptodev_security_tls_record_test_vectors.h | 91 +++ 3 files changed,

[PATCH 09/14] test/crypto: add TLS1.2/DTLS1.2 AES-128/256-GCM vectors

2023-12-07 Thread Anoob Joseph
From: Akhil Goyal Added test vectors for TLS1.2 and DTLS 1.2 for AES-128-GCM and AES-256-GCM. These vectors are generated using GnuTLS server and client applications. Signed-off-by: Akhil Goyal Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev.c | 43 ++- a

[PATCH 10/14] test/crypto: add combined mode cases

2023-12-07 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add cases to try TLS record write(encrypt) + read(decrypt) operations. This is used for testing TLS record features with all algorithms supported by the security device. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev.c

[PATCH 11/14] test/crypto: add verification of TLS headers

2023-12-07 Thread Anoob Joseph
Add verification of TLS headers in protocol offload tests. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev_security_tls_record.c | 118 +- 1 file changed, 117 insertions(+), 1 deletion(-) diff --git a/app/test/test_cryptodev_security_

[PATCH 12/14] test/security: add more algos to combined tests

2023-12-07 Thread Anoob Joseph
From: Vidya Sagar Velumuri Add following algos to combined mode cases. These are intended primarily for TLS record combined mode tests. - AES256-CBC - SHA256-HMAC - SHA1-HMAC [20B] Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- app/test/test_security_proto.h | 18 +++

[PATCH 13/14] test/security: add TLS 1.2 and DTLS 1.2 vectors

2023-12-07 Thread Anoob Joseph
From: Akhil Goyal Add TLS v1.2 vectors generated using gnuTLS for AES-256, SHA256, 3DES, CHACHA-POLY Add DTLS v1.2 test vectors generated using gnuTLS for AES-128-CBC, AES-256-CBC, SHA1, SHA256, 3DES-CBC, CHACHA20-POLY1305 and NULL cipher Signed-off-by: Akhil Goyal Signed-off-by: Vidya Sagar V

[PATCH 14/14] test/crypto: add multi segmented cases

2023-12-07 Thread Anoob Joseph
From: Tejasree Kondoj Add multi segmented buffer test cases in TLS suites. Signed-off-by: Tejasree Kondoj Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev.c | 29 ++- app/test/test_cryptodev_security_tls_record.h | 1 + doc/guides/rel_notes/

[PATCH v2 1/2] common/cnxk: support to dump debug info to file

2023-12-07 Thread Rakesh Kudurumalla
This patch dumps contents of receviced packet descriptor from CQ for debug to file Signed-off-by: Rakesh Kudurumalla --- V2: Resolve Warnings drivers/common/cnxk/roc_cpt.h | 2 +- drivers/common/cnxk/roc_cpt_debug.c | 56 + drivers/common/cnxk/roc_nix.h

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

2023-12-07 Thread Rakesh Kudurumalla
Add support for eth_rx_descriptor_dump for cn9k and cn10k. This patch dumps contents of receviced packet descriptor from CQ for debug to file Signed-off-by: Rakesh Kudurumalla --- drivers/net/cnxk/cn10k_ethdev.c | 67 + drivers/net/cnxk/cn9k_ethdev.c | 53 +++

Re: [PATCH v2 4/4] net/hns3: use stdatomic API

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 1:42 AM, Jie Hai wrote: > Replace the use of gcc builtin __atomic_xxx intrinsics with > corresponding rte_atomic_xxx optional stdatomic API. > > Signed-off-by: Jie Hai > <...> > static void > @@ -643,8 +643,8 @@ hns3vf_get_push_lsc_cap(struct hns3_hw *hw) > uint16_t exp = H

Re: [PATCH v2 4/4] net/hns3: use stdatomic API

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 1:42 AM, Jie Hai wrote: > Replace the use of gcc builtin __atomic_xxx intrinsics with > corresponding rte_atomic_xxx optional stdatomic API. > > Signed-off-by: Jie Hai > <...> > diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c > index b8f7e408d1e0..4572

Re: [PATCH v2] app/test-pmd: fix tcp/udp cksum with padding data

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 8:53 AM, Kaiwen Deng wrote: > IEEE 802 packets may have a minimum size limit. The data fields > should be padded when necessary. In some cases, the padding data > is not zero. Testpmd does not trim these IP packets to the true > length of the frame, so errors will occur when calculatin

[PATCH v3 0/8] add new command line argument parsing library

2023-12-07 Thread Euan Bourke
A recent thread on the mailing list[1] discussed corelist and coremask parsing and the idea of a new library dedicated to command line parsing was mentioned[2]. This patchset adds the library, along with the new APIs, and edits the existing EAL, DLB2 driver and some example application functions to

[PATCH v3 1/8] arg_parser: new library for command line parsing

2023-12-07 Thread Euan Bourke
Add a new library to make it easier for eal and other libraries to parse command line arguments. The first function in this library is one to parse a corelist string into an array of individual core ids. The function will then return the total number of cores described in the corelist. Signed-off

[PATCH v3 2/8] arg_parser: add new coremask parsing API

2023-12-07 Thread Euan Bourke
Add new coremask parsing API. This API behaves similarly to the corelist parsing API, taking a coremask string, a cores array and a cores_len int. Parsing the coremask string, filling its values into the cores array up to cores_len. The API also returns a 'count' which corresponds to the total num

[PATCH v3 3/8] eal: add support for new arg parsing library

2023-12-07 Thread Euan Bourke
Update to eal functions relating to corelist and coremask parsing to support the new arg parsing library. Functions now call the API instead of implementing their own version. Signed-off-by: Euan Bourke --- lib/eal/common/eal_common_options.c | 114 lib/eal/meson.bui

[PATCH v3 4/8] eal: update to service core related parsers

2023-12-07 Thread Euan Bourke
Updates to the parse service cores functions in EAL to call the arg parser API instead of implementing its own versions. Signed-off-by: Euan Bourke --- lib/eal/common/eal_common_options.c | 171 +++- 1 file changed, 41 insertions(+), 130 deletions(-) diff --git a/lib/eal

[PATCH v3 5/8] event/dlb2: add new arg parsing library API support

2023-12-07 Thread Euan Bourke
Switched the dlb2 driver to call the new arg parsing library instead of eal for coremask parsing, and updated the resource probe function to support the changed formatting of the API. Signed-off-by: Euan Bourke --- drivers/event/dlb2/dlb2_priv.h | 4 +- drivers/event/dlb2/pf/base/dl

[PATCH v3 6/8] arg_parser: added common core string and heuristic parsers

2023-12-07 Thread Euan Bourke
Two new functions, the first is a 'heuristic parser' which examines a string describing a set of cores and determines based off heuristics whether its a coremask or a corelist. Second is a 'combined parser' which calls the first function and then based off the returned value will call the relevant

[PATCH v3 7/8] examples/eventdev_pipeline: update to call arg parser API

2023-12-07 Thread Euan Bourke
Update to the eventdev_pipeline example application to call the arg parser library for its 'combined core string parser' instead of implementing its own coremask parser. The default_type passed into the function call is a coremask. Signed-off-by: Euan Bourke --- examples/eventdev_pipeline/main.c

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

2023-12-07 Thread Euan Bourke
Update to the l3fwd-power example application to call the arg parser library for its 'combined core string parser' instead of implementing its own corelist parser. The default_type passed into the function call is a corelist. Signed-off-by: Euan Bourke --- examples/l3fwd-power/perf_core.c | 51 +

Re: [PATCH v3 1/8] arg_parser: new library for command line parsing

2023-12-07 Thread Bruce Richardson
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote: > Add a new library to make it easier for eal and other libraries to parse > command line arguments. > > The first function in this library is one to parse a corelist string > into an array of individual core ids. The function will then

Re: [PATCH v3 6/8] arg_parser: added common core string and heuristic parsers

2023-12-07 Thread Bruce Richardson
On Thu, Dec 07, 2023 at 04:18:16PM +, Euan Bourke wrote: > Two new functions, the first is a 'heuristic parser' which examines a > string describing a set of cores and determines based off heuristics > whether its a coremask or a corelist. > > Second is a 'combined parser' which calls the firs

Re: [RFT] net/nfb: use dynamic logtype

2023-12-07 Thread Stephen Hemminger
On Thu, 07 Dec 2023 11:37:52 +0100 Martin Spinler wrote: > Also, the nfb_rx.h and nfb_tx.h files use the macro NFB_LOG inside, > please add '#include "nfb_log.h"' into them (then the include in > nfb_rx.c will be duplicate). Otherwise, all .c sources, which include > main nfb.h, don't compile. >

Re: [PATCH v3 0/8] add new command line argument parsing library

2023-12-07 Thread Stephen Hemminger
On Thu, 7 Dec 2023 16:18:10 + Euan Bourke wrote: > A recent thread on the mailing list[1] discussed corelist and coremask > parsing and the idea of a new library dedicated to command line parsing > was mentioned[2]. This patchset adds the library, along with the new > APIs, and edits the exi

Re: [PATCH v2 4/4] net/hns3: use stdatomic API

2023-12-07 Thread Ferruh Yigit
On 12/7/2023 1:57 PM, Ferruh Yigit wrote: > On 12/7/2023 1:42 AM, Jie Hai wrote: >> Replace the use of gcc builtin __atomic_xxx intrinsics with >> corresponding rte_atomic_xxx optional stdatomic API. >> >> Signed-off-by: Jie Hai >> > > <...> > >> static void >> @@ -643,8 +643,8 @@ hns3vf_get_pu

[PATCH 1/3] net/nfb: remove unused device args

2023-12-07 Thread Stephen Hemminger
The driver has no entries in VALID_KEYS array so there are no device args. And after parsing it just frees the result. Looks like it was copy/pasted from some other driver. Signed-off-by: Stephen Hemminger --- drivers/net/nfb/nfb.h| 2 -- drivers/net/nfb/nfb_ethdev.c | 16 --

[PATCH 0/3] net/nfb: driver cleanups

2023-12-07 Thread Stephen Hemminger
Replace static logtype with dynamic logtype and remove dead code. Compile tested on Fedora. Stephen Hemminger (3): net/nfb: remove unused device args net/nfb: make device path local to init function net/nfb: use dynamic logtype drivers/net/nfb/nfb.h| 10 drivers/net/nfb/nf

[PATCH 2/3] net/nfb: make device path local to init function

2023-12-07 Thread Stephen Hemminger
The device path is only used to call nfb_open() it does not have to be stored in internal structure. Signed-off-by: Stephen Hemminger --- drivers/net/nfb/nfb.h| 2 -- drivers/net/nfb/nfb_ethdev.c | 8 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/drivers/net/nfb

[PATCH 3/3] net/nfb: use dynamic logtype

2023-12-07 Thread Stephen Hemminger
All drivers should be using dynamic logtype. Fixes: 6435f9a0ac22 ("net/nfb: add new netcope driver") Signed-off-by: Stephen Hemminger --- drivers/net/nfb/nfb.h| 6 +- drivers/net/nfb/nfb_ethdev.c | 22 +- drivers/net/nfb/nfb_rx.c | 9 - drivers/net/n

[PATCH] eal: initialize shared plugins on Windows

2023-12-07 Thread Tyler Retzlaff
When EAL is built with MSVC it is possible to dynamically load plugins on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC and provide code to load plugins on Windows. Tyler Retzlaff (1): eal: initialize shared plugins on Windows lib/eal/common/eal_common_options.c | 92

[PATCH] eal: initialize shared plugins on Windows

2023-12-07 Thread Tyler Retzlaff
When EAL is built with MSVC it is possible to dynamically load plugins on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC and provide code to load plugins on Windows. Signed-off-by: Tyler Retzlaff --- lib/eal/common/eal_common_options.c | 92 ++

Re: [PATCH v3 1/8] arg_parser: new library for command line parsing

2023-12-07 Thread Tyler Retzlaff
On Thu, Dec 07, 2023 at 04:18:11PM +, Euan Bourke wrote: > Add a new library to make it easier for eal and other libraries to parse > command line arguments. > > The first function in this library is one to parse a corelist string > into an array of individual core ids. The function will then

Re: [PATCH] eal: initialize shared plugins on Windows

2023-12-07 Thread Tyler Retzlaff
On Thu, Dec 07, 2023 at 11:20:51AM -0800, Tyler Retzlaff wrote: > When EAL is built with MSVC it is possible to dynamically load plugins > on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC > and provide code to load plugins on Windows. > > Signed-off-by: Tyler Retzlaff > ---

[PATCH] maintainers: update Windows maintainers

2023-12-07 Thread Tyler Retzlaff
Remove Windows maintainers who are no longer working on DPDK and add myself. Signed-off-by: Tyler Retzlaff --- MAINTAINERS | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 0d1c812..4ac25b1 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -360,8 +

[PATCH v2] eal: initialize shared plugins on Windows

2023-12-07 Thread Tyler Retzlaff
When EAL is built with MSVC it is possible to dynamically load plugins on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC and provide code to load plugins on Windows. v2: * revert unintended / unrelated whitespace change * include inttypes.h for use of PRIu32 in log format

[PATCH v2] eal: initialize shared plugins on Windows

2023-12-07 Thread Tyler Retzlaff
When EAL is built with MSVC it is possible to dynamically load plugins on Windows. Hook eal_plugins_init into rte_eal_init if built with MSVC and provide code to load plugins on Windows. Signed-off-by: Tyler Retzlaff --- lib/eal/common/eal_common_options.c | 91 +++---

Re: [PATCH v4 1/2] config: correct cpu instruction set for cross build

2023-12-07 Thread Stephen Hemminger
On Tue, 5 Dec 2023 03:52:58 + Joyce Kong wrote: > The platform value would be 'native' only when not cross build. > Move the operation about modifying cpu_instruction_set while > platform equals 'native' to the not cross build branch. > > Fixes: bf66003b51ec ("build: use platform for generi