RE: [PATCH v1 1/1] crypto/ipsec_mb: unify some IPsec MB PMDs

2024-06-20 Thread Akhil Goyal
Hi Pablo, > > Subject: [PATCH v1 1/1] crypto/ipsec_mb: unify some IPsec MB PMDs > > > > Currently IPsec MB provides both the JOB API and direct API. > > AESNI_MB PMD is using the JOB API codepath while KASUMI and > > CHACHA20_POLY1305 are using the direct API. > > Instead of using the direct API fo

Re: [PATCH v5 5/5] doc: update release notes for 24.07

2024-06-20 Thread David Marchand
On Wed, Jun 19, 2024 at 11:02 PM Abdullah Sevincer wrote: > > Update release notes for new DLB features. > > Signed-off-by: Abdullah Sevincer > --- > doc/guides/rel_notes/release_24_07.rst | 32 ++ > 1 file changed, 32 insertions(+) > > diff --git a/doc/guides/rel_notes/r

RE: [PATCH v1 0/4] test/crypto: enhance modex tests

2024-06-20 Thread Akhil Goyal
> Subject: [PATCH v1 0/4] test/crypto: enhance modex tests > > This patch series enhances modex tests to: > * use common test function in existing test vectors > * add test for zero padded operands > > Gowrishankar Muthukrishnan (4): > test/crypto: validate modex result from first nonzero val

RE: [PATCH v5] net/af_xdp: parse umem map info from mempool range api

2024-06-20 Thread Morten Brørup
> From: Frank Du [mailto:frank...@intel.com] > > The current calculation assumes that the mbufs are contiguous. However, > this assumption is incorrect when the mbuf memory spans across huge page. > > Correct to directly read with mempool get range API. > > Fixes: d8a210774e1d ("net/af_xdp: supp

[PATCH v2 0/6] Optionally have rte_memcpy delegate to compiler memcpy

2024-06-20 Thread Mattias Rönnblom
This patch set make DPDK library, driver, and application code use the compiler/libc memcpy() by default when functions in are invoked. The various custom DPDK rte_memcpy() implementations may be retained by means of a build-time option. This patch set only make a difference on x86, PPC and ARM.

[PATCH v2 1/6] net/fm10k: add missing intrinsic include

2024-06-20 Thread Mattias Rönnblom
Add missing include, to get the _mm_cvtsi128_si64 prototype. Signed-off-by: Mattias Rönnblom --- drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/fm10k/fm10k_rxtx_vec.c b/drivers/net/fm10k/fm10k_rxtx_vec.c index 2b6914b1da..d417b31bbb 100644 --

[PATCH v2 3/6] net/octeon_ep: properly include vector API header file

2024-06-20 Thread Mattias Rönnblom
The octeon_ip driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/octeon_ep/otx_ep_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/octeon_ep/otx_ep_ethdev.c b/drivers/net/octeon_ep/otx_ep_ethdev.c ind

[PATCH v2 2/6] event/dlb2: include headers for vector and memory copy APIs

2024-06-20 Thread Mattias Rönnblom
The DLB2 PMD depended on being included as a side-effect of being included. In addition, DLB2 used rte_memcpy() but did not include , but rather depended on other include files to do so. This patch addresses both of those issues. Signed-off-by: Mattias Rönnblom --- drivers/event/dlb2/dlb2.c

[PATCH v2 5/6] fib: properly include vector API header file

2024-06-20 Thread Mattias Rönnblom
The trie implementation of the fib library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- lib/fib/trie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fib/trie.c b/lib/fib/trie.c index 09470e7287..74db8863df 100644 --- a/lib/fib/tri

[PATCH v2 4/6] distributor: properly include vector API header file

2024-06-20 Thread Mattias Rönnblom
The distributor library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- lib/distributor/rte_distributor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/distributor/rte_distributor.c b/lib/distributor/rte_distributor.c index e58727cd

[PATCH v2 6/6] eal: provide option to use compiler memcpy instead of RTE

2024-06-20 Thread Mattias Rönnblom
Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architecture rte_memcpy() implementations. A new meson build option 'use_cc_memcpy' is added. By default, the compiler/libc memcpy() is used. The

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-20 Thread Akhil Goyal
> Hi, > > > -Original Message- > > From: Akhil Goyal > > Sent: Friday, June 14, 2024 5:07 PM > > To: Suanming Mou ; Matan Azrad > > > > Cc: dev@dpdk.org > > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec > > operation > > > > > Hi Akhil, > > > > > > > -Ori

RE: Coding Style for local variables

2024-06-20 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 10/06/2024 18:31, Konstantin Ananyev: > > Morten said: > > > The coding style guide says: > > > > > > "Variables should be declared at the start of a block of code rather than > in the middle. The exception to this is when the variable is >

RE: Coding Style for local variables

2024-06-20 Thread Konstantin Ananyev
> > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > 10/06/2024 18:31, Konstantin Ananyev: > > > Morten said: > > > > The coding style guide says: > > > > > > > > "Variables should be declared at the start of a block of code rather > > > > than > > in the middle. The exception to this

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-20 Thread Suanming Mou
> -Original Message- > From: Akhil Goyal > Sent: Thursday, June 20, 2024 3:40 PM > To: Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > IPsec operation > > > Hi, > > > > > -Original Message- > > > From: Akh

Re: FW: compilation|FAILURE| pw(141419) sid(32237) job(PER_PATCH_BUILD12332)[v2,6/6] eal: provide option to use compiler memcpy instead of RTE

2024-06-20 Thread Mattias Rönnblom
On 2024-06-20 10:11, Mattias Rönnblom wrote: -Original Message- From: sys_...@intel.com Sent: Thursday, 20 June 2024 09:55 To: test-rep...@dpdk.org; Mattias Rönnblom Subject: compilation|FAILURE| pw(141419) sid(32237) job(PER_PATCH_BUILD12332)[v2,6/6] eal: provide option to use compi

Re: [PATCH v2] config/arm: add Ampere AmpereOneX platform

2024-06-20 Thread Ruifeng Wang
On 2024/4/11 5:23 PM, Yutang Jiang wrote: Signed-off-by: Yutang Jiang --- config/arm/arm64_ampereonex_linux_gcc | 16 config/arm/meson.build| 19 +++ 2 files changed, 35 insertions(+) create mode 100644 config/arm/arm64_ampereonex_linux_gc

Re: [PATCH v1] crypto/ipsec_mb: use new ipad/opad calculation API

2024-06-20 Thread Dooley, Brian
Recheck-request: iol-unit-arm64-testing From: Dooley, Brian Sent: Monday, June 10, 2024 9:19 AM To: Ji, Kai ; De Lara Guarch, Pablo Cc: dev@dpdk.org ; gak...@marvell.com Subject: Re: [PATCH v1] crypto/ipsec_mb: use new ipad/opad calculation API Recheck-request

RE: Coding Style for local variables

2024-06-20 Thread Morten Brørup
> From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > > > 10/06/2024 18:31, Konstantin Ananyev: > > > > Morten said: > > > > > The coding style guide says: > > > > > > > > > > "Variables should be declared at the start

Re: [PATCH v2 1/6] net/fm10k: add missing intrinsic include

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 09:24:47AM +0200, Mattias Rönnblom wrote: > Add missing include, to get the _mm_cvtsi128_si64 > prototype. > > Signed-off-by: Mattias Rönnblom > --- Acked-by: Bruce Richardson

Re: [PATCH v2 2/6] event/dlb2: include headers for vector and memory copy APIs

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 09:24:48AM +0200, Mattias Rönnblom wrote: > The DLB2 PMD depended on being included as a side-effect > of being included. > > In addition, DLB2 used rte_memcpy() but did not include , > but rather depended on other include files to do so. > > This patch addresses both of

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-20 Thread Akhil Goyal
> > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > > IPsec operation > > > > > Hi, > > > > > > > -Original Message- > > > > From: Akhil Goyal > > > > Sent: Friday, June 14, 2024 5:07 PM > > > > To: Suanming Mou ; Matan Azrad > > > > > > > > Cc: dev@dpdk.org > > > >

Re: FW: compilation|FAILURE| pw(141419) sid(32237) job(PER_PATCH_BUILD12332)[v2,6/6] eal: provide option to use compiler memcpy instead of RTE

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 10:20:42AM +0200, Mattias Rönnblom wrote: > On 2024-06-20 10:11, Mattias Rönnblom wrote: > > > > > > -Original Message- From: sys_...@intel.com > > Sent: Thursday, 20 June 2024 09:55 To: test-rep...@dpdk.org; Mattias > > Rönnblom Subject: compilation|FAILURE| > >

Re: [PATCH v2 4/6] distributor: properly include vector API header file

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 09:24:50AM +0200, Mattias Rönnblom wrote: > The distributor library relied on , but failed to provide > a direct include of this file. > > Signed-off-by: Mattias Rönnblom > --- Acked-by: Bruce Richardson

Re: [PATCH v2 5/6] fib: properly include vector API header file

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 09:24:51AM +0200, Mattias Rönnblom wrote: > The trie implementation of the fib library relied on , but > failed to provide a direct include of this file. > > Signed-off-by: Mattias Rönnblom > --- Acked-by: Bruce Richardson

Re: [PATCH v2 1/6] net/fm10k: add missing intrinsic include

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 09:24:47AM +0200, Mattias Rönnblom wrote: > Add missing include, to get the _mm_cvtsi128_si64 > prototype. > > Signed-off-by: Mattias Rönnblom > --- > drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/net/fm10k/fm10k_rxt

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-20 Thread Suanming Mou
> -Original Message- > From: Akhil Goyal > Sent: Thursday, June 20, 2024 5:07 PM > To: Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > IPsec operation > > > > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: op

Re: [PATCH v2 037/148] net/ice/base: fix NVM feature check

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:00:31PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Add defines required by NVM feature check. Although not directly used in this > patch this change is required in order to better match upstream. > > Signed-off-by: Ian Stokes > --- > drivers/net/ice/base/ic

Re: [PATCH v2 040/148] net/ice/base: add FW load status mask

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:00:34PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Add a mask used to extract FW load status from GL_MNG_FWSM. > > Signed-off-by: Jan Sokolowski > Signed-off-by: Ian Stokes > --- > drivers/net/ice/base/ice_hw_autogen.h | 1 + > 1 file changed, 1 insertion(

DPDK Release Status Meeting 2024-06-20

2024-06-20 Thread Mcnamara, John
Release status meeting minutes 2024-06-20 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * AMD * ARM * Intel * Marvell * Nvidia * Red Hat Release Dates - The following are the current/updated working dat

Re: [PATCH v2 1/6] net/fm10k: add missing intrinsic include

2024-06-20 Thread Mattias Rönnblom
On 2024-06-20 11:28, Bruce Richardson wrote: On Thu, Jun 20, 2024 at 09:24:47AM +0200, Mattias Rönnblom wrote: Add missing include, to get the _mm_cvtsi128_si64 prototype. Signed-off-by: Mattias Rönnblom --- drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + 1 file changed, 1 insertion(+) diff --g

Re: [PATCH v2 1/6] net/fm10k: add missing intrinsic include

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 01:40:42PM +0200, Mattias Rönnblom wrote: > On 2024-06-20 11:28, Bruce Richardson wrote: > > On Thu, Jun 20, 2024 at 09:24:47AM +0200, Mattias Rönnblom wrote: > > > Add missing include, to get the _mm_cvtsi128_si64 > > > prototype. > > > > > > Signed-off-by: Mattias Rönnbl

[PATCH v3 0/6] Optionally have rte_memcpy delegate to compiler memcpy

2024-06-20 Thread Mattias Rönnblom
This patch set make DPDK library, driver, and application code use the compiler/libc memcpy() by default when functions in are invoked. The various custom DPDK rte_memcpy() implementations may be retained by means of a build-time option. This patch set only make a difference on x86, PPC and ARM.

[PATCH v3 1/6] net/fm10k: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The fm10k PMD relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson --- drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/fm10k/fm10k_rxtx_vec.c b/drivers/net/fm10k/fm10k_rxtx

[PATCH v3 3/6] net/octeon_ep: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The octeon_ip driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/octeon_ep/otx_ep_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/octeon_ep/otx_ep_ethdev.c b/drivers/net/octeon_ep/otx_ep_ethdev.c ind

[PATCH v3 4/6] distributor: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The distributor library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson --- lib/distributor/rte_distributor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/distributor/rte_distributor.c b/lib/distributor/rte_

[PATCH v3 6/6] eal: provide option to use compiler memcpy instead of RTE

2024-06-20 Thread Mattias Rönnblom
Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architecture rte_memcpy() implementations. A new meson build option 'use_cc_memcpy' is added. By default, the compiler/libc memcpy() is used. The

[PATCH v3 5/6] fib: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The trie implementation of the fib library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson --- lib/fib/trie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fib/trie.c b/lib/fib/trie.c index 09470e7287..74db886

[PATCH v3 2/6] event/dlb2: include headers for vector and memory copy APIs

2024-06-20 Thread Mattias Rönnblom
The DLB2 PMD depended on being included as a side-effect of being included. In addition, DLB2 used rte_memcpy() but did not include , but rather depended on other include files to do so. This patch addresses both of those issues. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson ---

Re: [PATCH v5 1/5] event/dlb2: add support for HW delayed token

2024-06-20 Thread Jerin Jacob
On Thu, Jun 20, 2024 at 2:37 AM Abdullah Sevincer wrote: > > In DLB 2.5, hardware assist is available, complementing the Delayed > token POP software implementation. When it is enabled, the feature > works as follows: > > It stops CQ scheduling when the inflight limit associated with the CQ > is r

Re: [PATCH v2 047/148] net/ice/base: added informational message for NAC topology

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:00:41PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Use proper bitmask to verify primary/secondary mode instead of whole 'mode' > field, which also includes other information. In the result, for Mode 2a for > example, 'secondary' mode was always reported which

Re: [PATCH v5 3/5] event/dlb2: enhance DLB credit handling

2024-06-20 Thread Jerin Jacob
On Thu, Jun 20, 2024 at 2:31 AM Abdullah Sevincer wrote: > > This commit improves DLB credit handling scenarios when > ports hold on to credits but can't release them due to insufficient > accumulation (less than 2 * credit quanta). > > Worker ports now release all accumulated credits when back-to

[PATCH] net/*: replace intrinsic header include with rte_vect

2024-06-20 Thread Bruce Richardson
Rather than having the SSE code in each driver include tmmintrin.h, which often does not contain all needed intrinsics, e.g. _mm_cvtsi128_si64() for 32-bit x86 builds, we can just replace the include of ?mmintrin.h with rte_vect.h for all network drivers. Signed-off-by: Bruce Richardson --- driv

Re: [PATCH v3 1/6] net/fm10k: add missing vector API header include

2024-06-20 Thread Bruce Richardson
On Thu, Jun 20, 2024 at 01:50:22PM +0200, Mattias Rönnblom wrote: > The fm10k PMD relied on , but failed to provide a direct > include of this file. > > Signed-off-by: Mattias Rönnblom > Acked-by: Bruce Richardson > --- > drivers/net/fm10k/fm10k_rxtx_vec.c | 1 + > 1 file changed, 1 insertion(+

Re: [PATCH v2 072/148] net/ice/base: update strict status when assigning BW limits

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:06PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > In the BW configuration performed by DCF functions, the strict/WFQ and > priority > field (referred to as Generic in the EAS) is not updated in the FW. This > needs > to be updated so as to not incorrectly

Re: [PATCH v2 073/148] net/ice/base: remove unused define

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:07PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > In a previous patch a define was added that is not used. This is causing > issues > with CI builds. > > Signed-off-by: Dave Ertman > Signed-off-by: Ian Stokes > --- > drivers/net/ice/base/ice_sched.c | 1

Re: [PATCH 2/4] dts: Use First Core Logic Change

2024-06-20 Thread Nicholas Pratte
On Fri, Jun 14, 2024 at 2:09 PM Jeremy Spewock wrote: > > On Thu, Jun 13, 2024 at 4:21 PM Nicholas Pratte wrote: > > > > Removed use_first_core from the conf.yaml in favor of determining this > > within the framework. use_first_core continue to serve a purpose in that > > it is only enabled when

rte_bitmap_free() Re: DPDK Coverity issue 426433

2024-06-20 Thread Boyer, Andrew
Hello John, While Coverity is correct that this is a useless call, that's an internal implementation detail of rte_bitmap_free() - not really something the caller should know about. Can we annotate rte_bitmap_free() in some way to eliminate these? This is not the first PMD that's had this issue

RE: [EXTERNAL] [PATCH v2 1/2] crypto: fix build issues on unsetting crypto callbacks macro

2024-06-20 Thread Kundapura, Ganapati
Hi Akhil, > -Original Message- > From: Akhil Goyal > Sent: Thursday, June 13, 2024 11:34 PM > To: Kundapura, Ganapati ; dev@dpdk.org; > Gujjar, Abhinandan S ; Mcnamara, John > ; Richardson, Bruce > > Cc: Morten Brørup ; ferruh.yi...@amd.com; > fanzhang@gmail.com; tho...@monjalon.net

Re: [PATCH v2 5/6] fib: properly include vector API header file

2024-06-20 Thread Stephen Hemminger
On Thu, 20 Jun 2024 10:14:18 +0100 Bruce Richardson wrote: > On Thu, Jun 20, 2024 at 09:24:51AM +0200, Mattias Rönnblom wrote: > > The trie implementation of the fib library relied on , but > > failed to provide a direct include of this file. > > > > Signed-off-by: Mattias Rönnblom > > --- >

Re: [PATCH v2 084/148] net/ice/base: add function to read SDP section from NVM

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:18PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Add API and definitions related to reading SDP section from NVM, related to > PTP > pins assignment. > Not familiar with the acronym here, so checked datasheet: SDP == Software Definable Pin??? /Bruce

Re: Coding Style for local variables

2024-06-20 Thread Stephen Hemminger
On Thu, 20 Jun 2024 11:02:21 +0200 Morten Brørup wrote: > > From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > > > > > 10/06/2024 18:31, Konstantin Ananyev: > > > > > Morten said: > > > > > > The coding sty

Re: [PATCH v2 3/6] net/octeon_ep: properly include vector API header file

2024-06-20 Thread Stephen Hemminger
On Thu, 20 Jun 2024 09:24:49 +0200 Mattias Rönnblom wrote: > The octeon_ip driver relied on , but failed to provide a > direct include of this file. > > Signed-off-by: Mattias Rönnblom > --- Acked-by: Stephen Hemminger

[PATCH v2 0/7] Improvements and new test cases

2024-06-20 Thread Aakash Sasidharan
v2: * Remove unused variables from tests for padding corruption. Adding new test cases and improvements to test application. Aakash Sasidharan (4): test/crypto: add combined mode cases for TLS 1.3 test/security: add TLS 1.3 data walkthrough tests test/security: add out of place sgl tests fo

[PATCH v2 1/7] test/crypto: unit tests for padding for TLS-1.3

2024-06-20 Thread Aakash Sasidharan
From: Vidya Sagar Velumuri Add unit tests to verify the padding for TLS-1.3. Signed-off-by: Vidya Sagar Velumuri --- app/test/test_cryptodev.c | 31 +++ 1 file changed, 31 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 94438c

[PATCH v2 2/7] test/crypto: add combined mode cases for TLS 1.3

2024-06-20 Thread Aakash Sasidharan
Add cases to try TLS 1.3 record write(encrypt) + read(decrypt) operations. This is used for testing TLS 1.3 record features with all algorithms supported by the security device. Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 17 + 1 file changed, 17 insertions(+

[PATCH v2 3/7] test/security: add TLS 1.3 data walkthrough tests

2024-06-20 Thread Aakash Sasidharan
Add combined mode data walkthrough test and multi-segmented packet data walkthrough test for TLS 1.3. Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 41 +++ 1 file changed, 41 insertions(+) diff --git a/app/test/test_cryptodev.c b/app/test/t

[PATCH v2 4/7] test/crypto: verify padding corruption in TLS-1.2

2024-06-20 Thread Aakash Sasidharan
From: Vidya Sagar Velumuri Add unit test to verify corrupted padding bytes in TLS-1.2 record Signed-off-by: Vidya Sagar Velumuri Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 18 +- app/test/test_cryptodev_security_tls_record.c | 7 +

[PATCH v2 5/7] test/crypto: verify padding corruption in DTLS-1.2

2024-06-20 Thread Aakash Sasidharan
From: Vidya Sagar Velumuri Add unit test to verify corrupted padding bytes in DTLS-1.2 record Signed-off-by: Vidya Sagar Velumuri Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 17 + 1 file changed, 17 insertions(+) diff --git a/app/test/test_cryptodev.c b/a

[PATCH v2 6/7] test/security: add out of place sgl tests for TLS

2024-06-20 Thread Aakash Sasidharan
Add multi segmented test for TLS 1.3 and multi segmented out of place tests for DTLS 1.2 and TLS 1.3. Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 69 ++- 1 file changed, 39 insertions(+), 30 deletions(-) diff --git a/app/test/test_cryptod

[PATCH v2 7/7] test/security: use single session in data walkthrough test

2024-06-20 Thread Aakash Sasidharan
Existing data walkthrough test creates a new session per each test packet size. Enhance the test to use single session instead. Signed-off-by: Aakash Sasidharan --- app/test/test_cryptodev.c | 49 +-- app/test/test_cryptodev_security_tls_record.h | 1 + 2 fil

Re: [PATCH v2 087/148] net/ice/base: allow skipping PF clear

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:21PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > As per updated data sheet, add 'skip_clear_pf' field to ice_hw structure, > which > can be used to skip call to ice_clear_pf_cfg() in ice_init_hw(). > > Also, make 'fw_vsi_num' field of ice_hw structure visi

[PATCH 00/12] fixes and improvements to CNXK crypto PMD

2024-06-20 Thread Aakash Sasidharan
This series adds improvements to CNXK crypto PMD and fixes aes-gcm zero length input failure. Aakash Sasidharan (1): crypto/cnxk: fix aes-gcm zero len input cases Anoob Joseph (11): common/cnxk: add comments to denote skipped entries crypto/cnxk: update version map file with PMD APIs comm

[PATCH 01/12] common/cnxk: add comments to denote skipped entries

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Add comments to denote unused table entries. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_ae.c| 6 +++--- drivers/common/cnxk/roc_ae_fpm_tables.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/common/cnxk/roc_ae.c b/

[PATCH 02/12] crypto/cnxk: update version map file with PMD APIs

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Update version map with details of PMD APIs added. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/rte_pmd_cnxk_crypto.h | 2 ++ drivers/crypto/cnxk/version.map | 8 2 files changed, 10 insertions(+) diff --git a/drivers/crypto/cnxk/rte_pmd_cnxk_crypt

[PATCH 03/12] common/cnxk: make inline dev PF func get as idev API

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Inline PF FUNC would be required to set SSO_PF_FUNC in the instruction for cryptodev Rx inject. Move the API to idev to allow usage of the same. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_idev.c | 6 ++ drivers/common/cnxk/roc_idev.h | 2

[PATCH 04/12] crypto/cnxk: add flow control in Rx inject path

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Add flow control in Rx inject path to avoid over submission to CPT. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/cnxk/cn10k_cryptodev_ops.c b/dri

[PATCH 05/12] crypto/cnxk: use SSO PF func of inline device in inst

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph RVU PF FUNC of the CPT LF need not be set as the hardware would determine that. Instead SSO PF FUNC need to be set as inline device so that critical errors would reach inline device. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 2 +- drivers/cr

[PATCH 06/12] crypto/cnxk: use NEON for Rx inject inst preparation

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Use NEON instructions for Rx inject instruction preparation. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 57 +-- 1 file changed, 42 insertions(+), 15 deletions(-) diff --git a/drivers/crypto/cnxk/cn10k_cryptodev_ops.c b/d

[PATCH 07/12] crypto/cnxk: remove init of CPT result field in packet

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph The packet would be posted to CPT only when there is a valid result. Skip setting of the same. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 7 --- 1 file changed, 7 deletions(-) diff --git a/drivers/crypto/cnxk/cn10k_cryptodev_ops.c b/dri

[PATCH 08/12] crypto/cnxk: add dual submission in Rx inject

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Add dual submission to CPT in Rx inject path. Signed-off-by: Anoob Joseph Signed-off-by: Vidya Sagar Velumuri --- drivers/common/cnxk/roc_cpt.h | 43 +- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 70 +-- drivers/crypto/cnxk/cnxk_

[PATCH 09/12] crypto/cnxk: update sess pointer for next iteration

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Update sess pointer while working on next set of packets. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 13 - 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/drivers/crypto/cnxk/cn10k_cryptodev_ops.c b/drivers/crypto/c

[PATCH 10/12] crypto/cnxk: fix aes-gcm zero len input cases

2024-06-20 Thread Aakash Sasidharan
For aes-gcm (AEAD) zero length input, sg code path is taken unlike the digest only cases as AAD is treated as a separate input component. Fix the zero len case in SG path by avoiding the gather component only when it is a non AEAD algorithm. Also add sg version check as the fix only applies to spec

[PATCH 11/12] crypto/cnxk: make pack IV variable as const

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Make 'pack_iv' variable as const to avoid multiple checks. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cnxk_se.h | 27 +-- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/drivers/crypto/cnxk/cnxk_se.h b/drivers/crypto/cnxk/cnxk

[PATCH 12/12] crypto/cnxk: enable dual submission to CPT

2024-06-20 Thread Aakash Sasidharan
From: Anoob Joseph Submit two instructions in one LMTLINE. Signed-off-by: Anoob Joseph --- drivers/common/cnxk/roc_cpt.c | 17 +- drivers/common/cnxk/roc_cpt.h | 8 +- drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 182 +- drivers/crypto/cnxk/cn10k_c

RE: [PATCH] net/*: replace intrinsic header include with rte_vect

2024-06-20 Thread Konstantin Ananyev
> Rather than having the SSE code in each driver include tmmintrin.h, > which often does not contain all needed intrinsics, e.g. > _mm_cvtsi128_si64() for 32-bit x86 builds, we can just replace the > include of ?mmintrin.h with rte_vect.h for all network drivers. > > Signed-off-by: Bruce Richard

Re: [PATCH v2 093/148] net/ice/base: allow different FW API versions based on MAC type

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:27PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Allow the driver to be compatible with different FW API versions based > on the device's MAC type. Currently, E810 is only compatible with one > FW API version. Now the driver can be compatible with different

Re: [PATCH v2 095/148] net/ice/base: add E830 debug dump cluster ID values

2024-06-20 Thread Bruce Richardson
On Wed, Jun 12, 2024 at 04:01:29PM +0100, Anatoly Burakov wrote: > From: Ian Stokes > > Add E830 debug dump cluster ID values, which are different than the > values for E810. Rename E810 cluster IDs to make it easier to > distinguish which values are which.Add E830 debug dump cluster ID > values,

DTS WG Meeting Minutes - June 20, 2024

2024-06-20 Thread Patrick Robb
# Attendees * Patrick Robb * Juraj Linkeš * Paul Szczepanek * Jeremy Spewock * Nicholas Pratte * Dean Marx * Luca Vizzarro # Minutes

RE: [PATCH] examples/fips_validation: fix coverity issues

2024-06-20 Thread Dooley, Brian
Hey Gowrishankar, > -Original Message- > From: Gowrishankar Muthukrishnan > Sent: Saturday, June 15, 2024 12:31 PM > To: dev@dpdk.org; Dooley, Brian ; Gowrishankar > Muthukrishnan > Cc: Anoob Joseph ; sta...@dpdk.org > Subject: [PATCH] examples/fips_validation: fix coverity issues > > F

Community CI Meeting Minutes - June 13, 2024

2024-06-20 Thread Patrick Robb
# Attendees 1. Patrick Robb 2. Juraj Linkeš 3. Aaron Conole 4. Dean Marx 5. Jeremy Spewock 6. Manit Mahajan 7. Nicholas Pratte 8. Paul Szczepanek 9. Tomas Durovec ###

[PATCH v4 0/3] Improve interactive shell output gathering and logging

2024-06-20 Thread jspewock
From: Jeremy Spewock v4: * rebase on top of rc1. * address comments and fix typos in the added docstring example. Jeremy Spewock (3): dts: Improve output gathering in interactive shells dts: Add missing docstring from XML-RPC server dts: Improve logging for interactive shells dts/fra

[PATCH v4 1/3] dts: Improve output gathering in interactive shells

2024-06-20 Thread jspewock
From: Jeremy Spewock The current implementation of consuming output from interactive shells relies on being able to find an expected prompt somewhere within the output buffer after sending the command. This is useful in situations where the prompt does not appear in the output itself, but in some

[PATCH v4 2/3] dts: Add missing docstring from XML-RPC server

2024-06-20 Thread jspewock
From: Jeremy Spewock When this XML-RPC server implementation was added, the docstring had to be shortened in order to reduce the chances of this race condition being encountered. Now that this race condition issue is resolved, the full docstring can be restored. Signed-off-by: Jeremy Spewock --

[PATCH v4 3/3] dts: Improve logging for interactive shells

2024-06-20 Thread jspewock
From: Jeremy Spewock The messages being logged by interactive shells currently are using the same logger as the node they were created from. Because of this, when sending interactive commands, the logs make no distinction between when you are sending a command directly to the host and when you ar

[PATCH v4 02/13] net/iavf: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The iavf driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/iavf/iavf_rxtx_vec_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/iavf/iavf_rxtx_vec_sse.c b/drivers/net/iavf/iavf_rxtx_vec_s

[PATCH v4 00/13] Optionally have rte_memcpy delegate to compiler memcpy

2024-06-20 Thread Mattias Rönnblom
This patch set make DPDK library, driver, and application code use the compiler/libc memcpy() by default when functions in are invoked. The various custom DPDK rte_memcpy() implementations may be retained by means of a build-time option. This patch set only make a difference on x86, PPC and ARM.

[PATCH v4 01/13] net/i40e: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The i40e driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/i40e/i40e_rxtx_vec_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/i40e/i40e_rxtx_vec_sse.c b/drivers/net/i40e/i40e_rxtx_vec_s

[PATCH v4 04/13] net/ixgbe: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The ixgbe driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/ixgbe/ixgbe_rxtx_vec_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/ixgbe_rxtx_vec_sse.c b/drivers/net/ixgbe/ixgbe_rxt

[PATCH v4 03/13] net/ice: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The ice driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/ice/ice_rxtx_vec_sse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ice/ice_rxtx_vec_sse.c b/drivers/net/ice/ice_rxtx_vec_sse.c inde

[PATCH v4 06/13] net/txgbe: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The txgbe driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/txgbe/txgbe_rxtx_vec_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/txgbe/txgbe_rxtx_vec_sse.c b/drivers/net/txgbe/txgbe_rxt

[PATCH v4 07/13] net/virtio: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The virtio driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/virtio/virtio_rxtx_simple_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/virtio/virtio_rxtx_simple_sse.c b/drivers/net/virt

[PATCH v4 08/13] net/fm10k: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The fm10k PMD relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson --- drivers/net/fm10k/fm10k_rxtx_vec.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/fm10k/fm10k_rxtx_vec.c b/drivers/ne

[PATCH v4 09/13] event/dlb2: include headers for vector and memory copy APIs

2024-06-20 Thread Mattias Rönnblom
The DLB2 PMD depended on being included as a side-effect of being included. In addition, DLB2 used rte_memcpy() but did not include , but rather depended on other include files to do so. This patch addresses both of those issues. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson ---

[PATCH v4 10/13] net/octeon_ep: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The octeon_ip driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Stephen Hemminger --- drivers/net/octeon_ep/otx_ep_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/octeon_ep/otx_ep_ethdev.c b/drivers/net/

[PATCH v4 05/13] net/ngbe: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The ngbe driver relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom --- drivers/net/ngbe/ngbe_rxtx_vec_sse.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/net/ngbe/ngbe_rxtx_vec_sse.c b/drivers/net/ngbe/ngbe_rxtx_vec_s

[PATCH v4 13/13] eal: provide option to use compiler memcpy instead of RTE

2024-06-20 Thread Mattias Rönnblom
Provide build option to have functions in delegate to the standard compiler/libc memcpy(), instead of using the various custom DPDK, handcrafted, per-architecture rte_memcpy() implementations. A new meson build option 'use_cc_memcpy' is added. By default, the compiler/libc memcpy() is used. The

[PATCH v4 11/13] distributor: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The distributor library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson --- lib/distributor/rte_distributor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/distributor/rte_distributor.c b/lib/distributor/rte_

[PATCH v4 12/13] fib: add missing vector API header include

2024-06-20 Thread Mattias Rönnblom
The trie implementation of the fib library relied on , but failed to provide a direct include of this file. Signed-off-by: Mattias Rönnblom Acked-by: Bruce Richardson Acked-by: Stephen Hemminger --- lib/fib/trie.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/fib/trie.c b/lib/fib/tri

RE: [PATCH v1 7/9] test/bbdev: check assumptions on fft window

2024-06-20 Thread Chautru, Nicolas
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Wednesday, June 12, 2024 4:11 AM > To: Vargas, Hernan ; dev@dpdk.org; > gak...@marvell.com; t...@redhat.com > Cc: Chautru, Nicolas ; Zhang, Qi Z > > Subject: Re: [PATCH v1 7/9] test/bbdev: check assumptions on fft window >

  1   2   >