RE: [PATCH 1/3] net/mlx5/hws: support jump FDB Rx

2025-02-26 Thread Suanming Mou
> -Original Message- > From: Bing Zhao > Sent: Wednesday, February 26, 2025 6:29 PM > To: Suanming Mou ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori > Kam ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh ; Alex Vesker > > Subject: RE: [PATCH 1/3] net/mlx5/hws: support jump FDB Rx >

[PATCH] app/test-pmd: enable hw checksum offload for txonly

2025-02-26 Thread Nicolas PLANEL
This patch fix txonly forward mode, as it was lacking of MBUF offload flags for IPv4 and UDP when the hardware support it. Signed-off-by: Nicolas PLANEL --- app/test-pmd/txonly.c | 4 1 file changed, 4 insertions(+) diff --git a/app/test-pmd/txonly.c b/app/test-pmd/txonly.c index 59d821a22

RE: [PATCH 3/3] net/mlx5: allow FDB RSS

2025-02-26 Thread Bing Zhao
Hi > -Original Message- > From: Suanming Mou > Sent: Wednesday, February 26, 2025 9:43 PM > To: Bing Zhao ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori Kam > ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: RE: [PATCH 3/3] net/mlx5: allow FDB RSS > > > > > -Origina

RE: [PATCH 3/3] net/mlx5: allow FDB RSS

2025-02-26 Thread Suanming Mou
> -Original Message- > From: Bing Zhao > Sent: Wednesday, February 26, 2025 6:50 PM > To: Suanming Mou ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori > Kam ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: RE: [PATCH 3/3] net/mlx5: allow FDB RSS > > > > > -Original M

RE: [PATCH 2/3] net/mlx5: add jump FDB Rx flag

2025-02-26 Thread Suanming Mou
> -Original Message- > From: Bing Zhao > Sent: Wednesday, February 26, 2025 6:38 PM > To: Suanming Mou ; Dariusz Sosnowski > ; Slava Ovsiienko ; Ori > Kam ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: RE: [PATCH 2/3] net/mlx5: add jump FDB Rx flag > > Hi > > > -O

[PATCH] mempool: micro optimizations

2025-02-26 Thread Morten Brørup
The comparisons lcore_id < RTE_MAX_LCORE and lcore_id != LCORE_ID_ANY are equivalent, but the latter compiles to fewer bytes of code space. Similarly for lcore_id >= RTE_MAX_LCORE and lcore_id == LCORE_ID_ANY. The rte_mempool_get_ops() function is also used in the fast path, so RTE_VERIFY() was re

Re: [PATCH v3 0/3] net/mlx5: support jump FDB Rx

2025-02-26 Thread Raslan Darawsheh
Hi, From: Dariusz Sosnowski Sent: Wednesday, February 26, 2025 6:04 PM To: Dariusz Sosnowski; Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad Cc: dev@dpdk.org; Raslan Darawsheh Subject: [PATCH v3 0/3] net/mlx5: support jump FDB Rx Before FW introduced the JUMP_FDB_RX action featu

Re: [PATCH] mempool: micro optimizations

2025-02-26 Thread Bruce Richardson
On Wed, Feb 26, 2025 at 03:59:22PM +, Morten Brørup wrote: > The comparisons lcore_id < RTE_MAX_LCORE and lcore_id != LCORE_ID_ANY are > equivalent, but the latter compiles to fewer bytes of code space. > Similarly for lcore_id >= RTE_MAX_LCORE and lcore_id == LCORE_ID_ANY. > > The rte_mempool

RE: [EXTERNAL] Re: [v5 1/5] vhost: skip crypto op fetch before vring init

2025-02-26 Thread Gowrishankar Muthukrishnan
Hi Maxime, > > > > + if (unlikely(vq == NULL)) { > > + VC_LOG_ERR("Invalid virtqueue %u", qid); > > + return 0; > > + } > > + > > + if (unlikely(vq->avail == NULL)) { > > + VC_LOG_DBG("Virtqueue ring not yet initialized %u", qid); > > + return 0; > > +

[v6 4/5] vhost: support asymmetric RSA crypto ops

2025-02-26 Thread Gowrishankar Muthukrishnan
Support asymmetric RSA crypto operations in vhost-user. Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Akhil Goyal --- doc/guides/rel_notes/release_25_03.rst | 3 + lib/vhost/vhost_crypto.c | 486 +++-- lib/vhost/virtio_crypto.h | 67

[v6 5/5] examples/vhost_crypto: support asymmetric crypto

2025-02-26 Thread Gowrishankar Muthukrishnan
Support asymmetric crypto operations. Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Akhil Goyal --- doc/guides/sample_app_ug/vhost_crypto.rst | 5 +++ examples/vhost_crypto/main.c | 50 +-- 2 files changed, 43 insertions(+), 12 deletions(-) diff --git a/

[v5 4/6] crypto/virtio: add vDPA backend

2025-02-26 Thread Gowrishankar Muthukrishnan
Add vDPA backend to virtio_user crypto. Signed-off-by: Gowrishankar Muthukrishnan --- drivers/crypto/virtio/meson.build | 7 + drivers/crypto/virtio/virtio_cryptodev.c | 57 +- drivers/crypto/virtio/virtio_cryptodev.h | 3 + drivers/crypto/virtio/virtio_logs.h

[v5 6/6] test/crypto: add tests for virtio user PMD

2025-02-26 Thread Gowrishankar Muthukrishnan
Reuse virtio_crypto tests for testing virtio_crypto_user PMD. Signed-off-by: Gowrishankar Muthukrishnan --- app/test/test_cryptodev.c | 7 +++ app/test/test_cryptodev.h | 1 + app/test/test_cryptodev_asym.c | 15 +++ 3 files changed, 23 insertions(+) diff --git a/app

[v5 5/6] test/crypto: add asymmetric tests for virtio PMD

2025-02-26 Thread Gowrishankar Muthukrishnan
Add asymmetric tests for Virtio PMD. Signed-off-by: Gowrishankar Muthukrishnan --- app/test/test_cryptodev_asym.c | 28 1 file changed, 28 insertions(+) diff --git a/app/test/test_cryptodev_asym.c b/app/test/test_cryptodev_asym.c index 9b5f3c545e..ac47be724f 100644

[v5 2/6] crypto/virtio: refactor queue operations

2025-02-26 Thread Gowrishankar Muthukrishnan
Move existing control queue operations into a common place that would be shared with other virtio type of devices. Signed-off-by: Gowrishankar Muthukrishnan --- drivers/crypto/virtio/meson.build | 1 + drivers/crypto/virtio/virtio_crypto_algs.h | 2 +- drivers/crypto/virtio/virtio_c

[v6 2/5] vhost: update vhost_user crypto session parameters

2025-02-26 Thread Gowrishankar Muthukrishnan
As per requirements on vhost_user spec, session id should be located at the end of session parameter. Update VhostUserCryptoSessionParam structure to support newer QEMU versions (v9). Due to additional parameters added in QEMU, received payload from QEMU would be larger than existing payload. Henc

[v6 1/5] vhost: skip crypto op fetch before vring init

2025-02-26 Thread Gowrishankar Muthukrishnan
Until virtio avail ring is initialized (by VHOST_USER_SET_VRING_ADDR), worker thread should not try to fetch crypto op, which would lead to memory fault. Fixes: 939066d96563 ("vhost/crypto: add public function implementation") Cc: sta...@dpdk.org Signed-off-by: Gowrishankar Muthukrishnan Acked-b

[v6 3/5] examples/vhost_crypto: fix user callbacks

2025-02-26 Thread Gowrishankar Muthukrishnan
In order to handle new vhost user connection, use new_connection and destroy_connection callbacks. Fixes: f5188211c721 ("examples/vhost_crypto: add sample application") Cc: sta...@dpdk.org Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Akhil Goyal --- examples/vhost_crypto/main.c | 4 ++--

[v6 0/5] vhost: add RSA support

2025-02-26 Thread Gowrishankar Muthukrishnan
This patch series supports asymmetric RSA in vhost crypto library. It also includes changes to improve vhost crypto library: * support newer QEMU versions. * fix broken vhost_crypto example application. * stabilize crypto fastpath operations. Gowrishankar Muthukrishnan (5): vhost: skip crypto

[v5 0/6] crypto/virtio: enhancements for RSA and vDPA

2025-02-26 Thread Gowrishankar Muthukrishnan
This patch series enhances virtio crypto PMD to: * support RSA * support packed virtio ring * support vDPA backend Depends-on: patch-152109 ("vhost: support asymmetric RSA crypto ops") Gowrishankar Muthukrishnan (6): crypto/virtio: add asymmetric RSA support crypto/virtio: refactor queue o

[v5 1/6] crypto/virtio: add asymmetric RSA support

2025-02-26 Thread Gowrishankar Muthukrishnan
Asymmetric RSA operations (SIGN, VERIFY, ENCRYPT and DECRYPT) are supported in virtio PMD. Signed-off-by: Gowrishankar Muthukrishnan --- Depends-on: patch-152109 ("vhost: support asymmetric RSA crypto ops") v5: - fixed asym enqueue xmit func for correct head idx. - release notes updated. ---

[PATCH v11 1/2] net/af_xdp: Fix use after free in af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
tx_bytes is computed after both legs are tested. This might produce a use after memory free. The computation is now moved into each leg. Bugzilla ID: 1440 Fixes: d8a210774e1d ("net/af_xdp: support unaligned umem chunks") Signed-off-by: Ariel Otilibili Acked-by: Stephen Hemminger --- .mailmap

[v5 3/6] crypto/virtio: add packed ring support

2025-02-26 Thread Gowrishankar Muthukrishnan
Add packed ring support. Signed-off-by: Gowrishankar Muthukrishnan --- drivers/crypto/virtio/virtio_cryptodev.c | 125 +++ drivers/crypto/virtio/virtio_cryptodev.h | 13 +- drivers/crypto/virtio/virtio_cvq.c | 103 +- drivers/crypto/virtio/virtio_pci.h | 25 ++ drivers/cryp

[PATCH v11 2/2] net/af_xdp: Refactor af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
Both legs of the loop share the same logic: the common parts are about reserving and filling both address and length into the description. This is moved into reserve_and_fill(). Bugzilla ID: 1440 Suggested-by: Maryam Tahhan Signed-off-by: Ariel Otilibili Acked-by: Maryam Tahhan --- drivers/ne

Re: [PATCH] common/mlx5: add ConnectX-8 device ID

2025-02-26 Thread Raslan Darawsheh
Hi From: Raslan Darawsheh Sent: Sunday, February 23, 2025 9:16 AM To: NBU-Contact-Thomas Monjalon (EXTERNAL) Cc: dev@dpdk.org Subject: [PATCH] common/mlx5: add ConnectX-8 device ID This adds the ConnectX-8 device id to the list of supported Nvidia devices that run the MLX5 PMDs. Signed-off-by:

Re: [PATCH v2 1/1] pcapng: warn if NULL is passed to rte_pcapng_close

2025-02-26 Thread Ariel Otilibili
Hello Patrick, On Tue, Feb 25, 2025 at 9:42 PM Patrick Robb wrote: > Recheck-request: iol-marvell-Functional > > Putting in a recheck as I believe the fail CI reported is false. > >> >> Thanks for the heads up. This patch did supersede version 2, https://patches.dpdk.org/project/dpdk/patch/20250

[DPDK/other Bug 1665] __rte_trace_mem_get causing out of bounds write

2025-02-26 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1665 Bug ID: 1665 Summary: __rte_trace_mem_get causing out of bounds write Product: DPDK Version: 24.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

Re: [PATCH] Skip vfio in the scenario of non-privileged mode

2025-02-26 Thread Stephen Hemminger
On Wed, 22 Jan 2025 16:15:03 +0800 Yang Ming wrote: > On 2025/1/18 00:47, Stephen Hemminger wrote: > > Caution: This is an external email. Please be very careful when clicking > > links or opening attachments. See http://nok.it/nsb for additional > > information. > > > > On Fri, 17 Jan 2025 15:

Re: [PATCH] net/mlx5/hws: change error flow on matcher disconnect

2025-02-26 Thread Raslan Darawsheh
Hi, From: Gregory Etelson Sent: Sunday, February 9, 2025 3:48 PM To: dev@dpdk.org Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh; Itamar Gozlan Subject: [PATCH] net/mlx5/hws: change error flow on matcher disconnect From: Itamar Gozlan Currently, when a firmware (FW) failure occurs durin

Re: [PATCH] net/mlx5: fix packet hardware ptype translation

2025-02-26 Thread Raslan Darawsheh
Hi, From: Gregory Etelson Sent: Sunday, February 9, 2025 4:01 PM To: dev@dpdk.org Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh; Slava Ovsiienko; sta...@dpdk.org Subject: [PATCH] net/mlx5: fix packet hardware ptype translation From: Viacheslav Ovsiienko Since ConnectX-8 NIC the hardwa

Re: [PATCH 1/2] net/mlx5: add DROP destination to mirror clone actions

2025-02-26 Thread Raslan Darawsheh
Hi, From: Gregory Etelson Sent: Thursday, February 13, 2025 10:32 AM To: dev@dpdk.org Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh; Tamar Mashiah; sta...@dpdk.org Subject: [PATCH 1/2] net/mlx5: add DROP destination to mirror clone actions From: Tamar Mashiah Add DROP destination to m

Re: [PATCH] net/mlx5: support ESP in non-template RSS expansion

2025-02-26 Thread Raslan Darawsheh
Hi, From: Gregory Etelson Sent: Monday, February 17, 2025 9:13 AM To: dev@dpdk.org Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh Subject: [PATCH] net/mlx5: support ESP in non-template RSS expansion Add support for the ESP protocol in non-template RSS expansion. Signed-off-by: Gregory Et

[PATCH v2 2/3] net/mlx5: add jump FDB Rx flag

2025-02-26 Thread Suanming Mou
When jump FDB Rx is supported, flow will be able to jump from FDB Tx to FDB Rx, in that case the dest action in FDB Rx table should support FDB Tx as well. Signed-off-by: Suanming Mou --- v2: fix bool and update log info. --- drivers/common/mlx5/mlx5_devx_cmds.c | 8 drivers/common/ml

[PATCH v2 3/3] net/mlx5: allow FDB RSS

2025-02-26 Thread Suanming Mou
RSS can be used in FDB Rx rules when JUMP_FDB_RX action to allow jump from FDB Tx to FDB Rx table. Different with NIC RSS, FDB RSS will not do the internal implicit metadata copy. This commit enables the FDB RSS if JUMP_FDB_RX is supported. Signed-off-by: Suanming Mou --- v2: update limitation

[PATCH v2 1/3] net/mlx5/hws: support jump FDB Rx

2025-02-26 Thread Suanming Mou
Before FW introduced the JUMP_FDB_RX action feature, jump from FDB Tx to Rx is not allowed. JUMP_FDB_RX feature introduces the internal loopback for Tx case and allow the REG C0 C1 B be preserved as well. This commit adds the JUMP_FDB_RX cap bit check and use JUMP_FDB_RX instead of FT for dest tab

[PATCH v2 0/3] net/mlx5: support jump FDB Rx

2025-02-26 Thread Suanming Mou
Before FW introduced the JUMP_FDB_RX action feature, jump from FDB Tx to Rx is not allowed. JUMP_FDB_RX feature introduces the internal loopback for Tx case and allow the REG C0 C1 B be preserved as well. This series adds the jump from FDB Tx to FDB Rx support and allows RSS action in FDB domain r

Re: [PATCH V2 0/4] mlx5 unified fdb

2025-02-26 Thread Raslan Darawsheh
Hi, From: Ophir Munk Sent: Wednesday, February 26, 2025 10:38 AM To: Dariusz Sosnowski; Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad Cc: dev@dpdk.org; Raslan Darawsheh Subject: [PATCH V2 0/4] mlx5 unified fdb V1: initial version V2: rebase + determine unified fdb based on FW c

[PATCH v3 0/3] net/mlx5: support jump FDB Rx

2025-02-26 Thread Dariusz Sosnowski
Before FW introduced the JUMP_FDB_RX action feature, jump from FDB Tx to Rx is not allowed. JUMP_FDB_RX feature introduces the internal loopback for Tx case and allow the REG C0 C1 B be preserved as well. This series adds the jump from FDB Tx to FDB Rx support and allows RSS action in FDB domain r

[PATCH v3 3/3] net/mlx5: allow FDB RSS

2025-02-26 Thread Dariusz Sosnowski
From: Suanming Mou RSS can be used in FDB Rx rules when JUMP_FDB_RX action to allow jump from FDB Tx to FDB Rx table. Different with NIC RSS, FDB RSS will not do the internal implicit metadata copy. This commit enables the FDB RSS if JUMP_FDB_RX is supported. Signed-off-by: Suanming Mou Acked

[PATCH v3 2/3] net/mlx5: add jump FDB Rx flag

2025-02-26 Thread Dariusz Sosnowski
From: Suanming Mou When jump FDB Rx is supported, flow will be able to jump from FDB Tx to FDB Rx, in that case the dest action in FDB Rx table should support FDB Tx as well. Signed-off-by: Suanming Mou Acked-by: Dariusz Sosnowski --- drivers/common/mlx5/mlx5_devx_cmds.c | 8 drivers

[PATCH v3 1/3] net/mlx5/hws: support jump FDB Rx

2025-02-26 Thread Dariusz Sosnowski
From: Suanming Mou Before FW introduced the JUMP_FDB_RX action feature, jump from FDB Tx to Rx is not allowed. JUMP_FDB_RX feature introduces the internal loopback for Tx case and allow the REG C0 C1 B be preserved as well. This commit adds the JUMP_FDB_RX cap bit check and use JUMP_FDB_RX inste

RE: release candidate 25.03-rc1

2025-02-26 Thread Xu, HailinX
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, February 13, 2025 12:50 AM > To: annou...@dpdk.org > Subject: release candidate 25.03-rc1 > > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v25.03-rc1 > > There are 478 new patch

RE: [PATCH v3 0/3] net/mlx5: support jump FDB Rx

2025-02-26 Thread Bing Zhao
Thanks a lot, Dariusz. > -Original Message- > From: Dariusz Sosnowski > Sent: Thursday, February 27, 2025 12:04 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH v3 0/3] net/mlx5:

RE: [PATCH v2 1/3] net/mlx5/hws: support jump FDB Rx

2025-02-26 Thread Bing Zhao
> -Original Message- > From: Suanming Mou > Sent: Wednesday, February 26, 2025 10:01 PM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh ; Alex Vesker > > Subject: [PATCH v2 1/3] net/mlx5/hws: support jump FDB Rx >

[PATCH v12 2/2] net/af_xdp: Refactor af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
Both legs of the loop share the same logic: the common parts are about reserving and filling both address and length into the description. This is moved into reserve_and_fill(). Bugzilla ID: 1440 Suggested-by: Maryam Tahhan Signed-off-by: Ariel Otilibili Acked-by: Maryam Tahhan --- drivers/ne

[PATCH v12 0/2] Fix use after free, and refactor af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
Hello, The series addresses Bugzilla ID 1440 in two steps; 1. Fix use after free. 2. Refactor af_xdp_tx_zc(). Thank you, --- v12 * fixed style issues (http://mails.dpdk.org/archives/test-report/2025-February/857083.html) v11 * removed assignments in if statements (Stephen Hemminger) v10 (htt

[PATCH v11 0/2] Fix use after free, and refactor af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
Hello, The series addresses Bugzilla ID 1440 in two steps; 1. Fix use after free. 2. Refactor af_xdp_tx_zc(). Thank you, --- v11 * removed assignments in if statements (Stephen Hemminger) v10 (https://inbox.dpdk.org/dev/20250223215259.448723-1-ariel.otilib...@6wind.com/) * no change v9 (http

Re: [PATCH v6 2/2] net/af_xdp: Refactor af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
Hello Stephen, On Mon, Feb 24, 2025 at 8:25 PM Stephen Hemminger < step...@networkplumber.org> wrote: > > Please avoid doing assignment in a conditional statement, can be error > prone. > Surprised checkpatch doesn't complain about it. > Thanks for the feedback. checkpatch did catch them. Here

[PATCH v12 1/2] net/af_xdp: Fix use after free in af_xdp_tx_zc

2025-02-26 Thread Ariel Otilibili
tx_bytes is computed after both legs are tested. This might produce a use after memory free. The computation is now moved into each leg. Bugzilla ID: 1440 Fixes: d8a210774e1d ("net/af_xdp: support unaligned umem chunks") Signed-off-by: Ariel Otilibili Acked-by: Stephen Hemminger --- .mailmap

[PATCH v3 3/3] config: create top level variable cc_avx2_flags

2025-02-26 Thread Andre Muezerie
Top level variable cc_avx2_flags was created and set according to the compiler used. It is used in lower level directories like drivers/net and lib/acl. Signed-off-by: Andre Muezerie Acked-by: Bruce Richardson --- config/x86/meson.build | 6 ++ drivers/net/bnxt/meson.build

[PATCH v3 0/3] allow faster instruction sets to be used with MSVC

2025-02-26 Thread Andre Muezerie
Meson.build files were refactored to add MSVC support for the AVX2 instruction set with MSVC: Top level variable cc_avx2_flags was created and set according to the compiler used. It is used in lower level directories. Andre Muezerie (3): eal: make compatible with instruction set updates for MSVC

[PATCH v3 1/3] eal: make compatible with instruction set updates for MSVC

2025-02-26 Thread Andre Muezerie
After the instruction set updates for MSVC the error below popped up: ../lib/eal/common/rte_random.c(6): fatal error C1083: Cannot open include file: 'x86intrin.h': No such file or directory The fix is to not include header x86intrin.h with MSVC. Signed-off-by: Andre Muezerie Acked-by: Bruc

[PATCH v3 2/3] eal: only use numbers as align parameters for MSVC

2025-02-26 Thread Andre Muezerie
After the instruction set updates for MSVC the error below popped up: ..\lib\eal\x86\include\rte_vect.h(82): error C2059: syntax error: '(' The issue is that MSVC does not allow __rte_aligned(RTE_X86_ZMM_SIZE). It only accepts numbers that are power of 2. So, even though RTE_X86_ZMM_SIZE represen

Re: [PATCH] net/mlx5: fix queue counter error check

2025-02-26 Thread Raslan Darawsheh
Hi, From: Dariusz Sosnowski Sent: Tuesday, February 25, 2025 11:08 AM To: Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad; Shani Peretz Cc: dev@dpdk.org; Raslan Darawsheh Subject: [PATCH] net/mlx5: fix queue counter error check Whenever queue counter allocation fails, the FW syndr

[PATCH v16 14/29] net/rnp: add Rx burst simple support

2025-02-26 Thread Wenbo Cao
add only support simple recv pkts. Signed-off-by: Wenbo Cao --- drivers/net/rnp/rnp_ethdev.c | 7 ++ drivers/net/rnp/rnp_rxtx.c | 130 +++ drivers/net/rnp/rnp_rxtx.h | 5 ++ 3 files changed, 142 insertions(+) diff --git a/drivers/net/rnp/rnp_ethdev.c b/dr

[PATCH 2/2] net/mlx5: add MPLSoGRE matching in HWS

2025-02-26 Thread Maayan Kashani
Remove limitations in validation and MPLS match translation. For non relaxed mode, assume MPLSoUDP if no protocol is mentioned. Set UDP dest port to MPLS type only for UDP protocol. Signed-off-by: Maayan Kashani Acked-by: Dariusz Sosnowski --- doc/guides/nics/mlx5.rst | 2 -- dri

[PATCH 1/2] doc: fix MPLS limitations under HWS

2025-02-26 Thread Maayan Kashani
Update missing limitations. Fixes: 1e2a51f545b6 ("net/mlx5: support MPLS tunnel with HWS") Cc: sta...@dpdk.org Signed-off-by: Maayan Kashani Acked-by: Dariusz Sosnowski --- doc/guides/nics/mlx5.rst | 8 1 file changed, 8 insertions(+) diff --git a/doc/guides/nics/mlx5.rst b/doc/guide

[PATCH] app/test: fix the check of the oop header data

2025-02-26 Thread Arkadiusz Kusztal
The data of the out-of-place header is never checked. Therefore, the faulty PMD, which overwrites this data, will not be able to verify that with tests. New checks to support that were added to the GCM OOP functions. Fixes: 51e202f0596f ("test/crypto: rename GCM test code") Cc: sta...@dpdk.org Si

RE: [PATCH 3/3] net/mlx5: allow FDB RSS

2025-02-26 Thread Bing Zhao
> -Original Message- > From: Suanming Mou > Sent: Tuesday, February 25, 2025 8:45 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 3/3] net/mlx5: allow FDB RSS > > RSS can be used in FDB Rx rul

RE: [PATCH 2/3] net/mlx5: add jump FDB Rx flag

2025-02-26 Thread Bing Zhao
Hi > -Original Message- > From: Suanming Mou > Sent: Tuesday, February 25, 2025 8:45 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 2/3] net/mlx5: add jump FDB Rx flag > > When jump FDB Rx is s

Re: [PATCH 1/2] doc: fix MPLS limitations under HWS

2025-02-26 Thread Raslan Darawsheh
Hi, From: Maayan Kashani Sent: Wednesday, February 26, 2025 10:02 AM To: dev@dpdk.org Cc: Maayan Kashani; Dariusz Sosnowski; Raslan Darawsheh; sta...@dpdk.org; Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad; Michael Baum Subject: [PATCH 1/2] doc: fix MPLS limitations under HWS U

RE: [PATCH V2 4/4] net/mlx5/hws: allow different types in miss validation

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Ophir Munk > Sent: Wednesday, February 26, 2025 9:39 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH V2 4/4] net/mlx5/hws: allow different types in

[PATCH] crypto/qat: fix incorrect sm3 state size

2025-02-26 Thread Arkadiusz Kusztal
This commit fixes incorrectly set state size within the QAT PMD. Fixes: 75fd4bbc94ab ("crypto/qat: support SM3 hash algorithm") Cc: sta...@dpdk.org Signed-off-by: Arkadiusz Kusztal --- drivers/crypto/qat/qat_sym_session.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dri

RE: [PATCH v2 05/14] net/ipn3ke: remove unnecessary dereference

2025-02-26 Thread Xu, Rosen
Hi, > -Original Message- > From: Stephen Hemminger > Sent: Thursday, February 20, 2025 10:32 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Xu, Rosen > > Subject: [PATCH v2 05/14] net/ipn3ke: remove unnecessary dereference > > Since it is a function pointer, the expression *hw->f_mac_r

Re: [PATCH v2 5/5] acl: make compatible with instruction set updates for MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:56PM -0800, Andre Muezerie wrote: > Top level 'cc_avx2_flags' was created and holds the correct flags > depending on the compiler used. > > Signed-off-by: Andre Muezerie > --- Acked-by: Bruce Richardson This patch can probably be merged with the patch introducing t

Re: [PATCH v2 4/5] drivers/net: make compatible with instruction set updates for MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:55PM -0800, Andre Muezerie wrote: > Top level 'cc_avx2_flags' was created and holds the correct flags > depending on the compiler used. > > Signed-off-by: Andre Muezerie > --- Acked-by: Bruce Richardson

RE: [PATCH] net/mlx5: support ESP in non-template RSS expansion

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Gregory Etelson > Sent: Monday, February 17, 2025 8:13 AM > To: dev@dpdk.org > Cc: Gregory Etelson ; Maayan Kashani > ; Raslan Darawsheh > Subject: [PATCH] net/mlx5: support ESP in non-template RSS expansion > > External email: Use caution opening links or

[PATCH v16 22/29] net/rnp: add supported packet types

2025-02-26 Thread Wenbo Cao
add support parse hw packet types result. Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini | 1 + doc/guides/nics/rnp.rst | 2 ++ drivers/net/rnp/base/rnp_bdq_if.h | 4 +++ drivers/net/rnp/rnp_ethdev.c | 31 + drivers/net/rnp/rnp_rxtx.c

[PATCH v16 17/29] net/rnp: add Rx scatter segment version

2025-02-26 Thread Wenbo Cao
add support scatter multi segment received. Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini | 1 + doc/guides/nics/rnp.rst | 2 + drivers/net/rnp/rnp_ethdev.c | 2 + drivers/net/rnp/rnp_rxtx.c | 130 ++- drivers/net/rnp/rnp_rxtx.

RE: [PATCH 2/2] net/mlx5/hws: add DROP action to multi destination actions

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Gregory Etelson > Sent: Thursday, February 13, 2025 9:33 AM > To: dev@dpdk.org > Cc: Gregory Etelson ; Maayan Kashani > ; Raslan Darawsheh ; Tamar > Mashiah ; sta...@dpdk.org > Subject: [PATCH 2/2] net/mlx5/hws: add DROP action to multi destination > action

RE: [PATCH 1/2] net/mlx5: add DROP destination to mirror clone actions

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Gregory Etelson > Sent: Thursday, February 13, 2025 9:33 AM > To: dev@dpdk.org > Cc: Gregory Etelson ; Maayan Kashani > ; Raslan Darawsheh ; Tamar > Mashiah ; sta...@dpdk.org > Subject: [PATCH 1/2] net/mlx5: add DROP destination to mirror clone actions > >

RE: [PATCH] net/mlx5/hws: change error flow on matcher disconnect

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Gregory Etelson > Sent: Sunday, February 9, 2025 2:48 PM > To: dev@dpdk.org > Cc: Gregory Etelson ; Maayan Kashani > ; Raslan Darawsheh ; Itamar > Gozlan > Subject: [PATCH] net/mlx5/hws: change error flow on matcher disconnect > > External email: Use caution

[PATCH V2 0/4] mlx5 unified fdb

2025-02-26 Thread Ophir Munk
V1: initial version V2: rebase + determine unified fdb based on FW capability Bing Zhao (1): net/mlx5: remove unneeded FDB flag on representor action Ophir Munk (3): common/mlx5: support FDB unified capability query net/mlx5: support FDB unified domain net/mlx5/hws: allow different types

[PATCH V2 1/4] common/mlx5: support FDB unified capability query

2025-02-26 Thread Ophir Munk
This commit queries the FW for the new unified FDB mode and saves it in mlx5 shared device as fdb_unified_en bit. Signed-off-by: Ophir Munk --- drivers/common/mlx5/mlx5_devx_cmds.c | 3 +++ drivers/common/mlx5/mlx5_devx_cmds.h | 1 + 2 files changed, 4 insertions(+) diff --git a/drivers/common/

[PATCH V2 2/4] net/mlx5: support FDB unified domain

2025-02-26 Thread Ophir Munk
Legacy FDB domain is enhanced with optional three sub-domains: FDB_RX FDB_TX and FDB_UNIFIED. Based on FW capability bit mlx5 will work in either legacy or unified mode. To work in fdb unified mode the flow attribute transfer bit must be set and the fdb sub domains are determined by the table speci

[PATCH V2 3/4] net/mlx5: remove unneeded FDB flag on representor action

2025-02-26 Thread Ophir Munk
From: Bing Zhao The "send_to_kernel" action is shared and created during the HWS configuration stage. By default, the NIC Rx and Tx flags are needed. There is only one case that the FDB* flags are needed when creating the action, the same as other shared actions. Only the transfer proxy port nee

[PATCH V2 4/4] net/mlx5/hws: allow different types in miss validation

2025-02-26 Thread Ophir Munk
In validating Jump from group A to default miss group B DPDK requests that both groups types will be identical. In practice jumping from FDB_UNIFIED to FDB_RX or FDB_TX group types (or vice versa) is allowed. This commit enables this jumping between the different types. Fixes: b81f95ca770d ("net/m

RE: [PATCH] net/mlx5: fix packet hardware ptype translation

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Gregory Etelson > Sent: Sunday, February 9, 2025 3:01 PM > To: dev@dpdk.org > Cc: Gregory Etelson ; Maayan Kashani > ; Raslan Darawsheh ; Slava > Ovsiienko ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix packet hardware ptype translation > > External ema

Re: [PATCH v3] net/mlx5: add eCPRI support

2025-02-26 Thread Raslan Darawsheh
Hi, From: Bing Zhao Sent: Wednesday, February 26, 2025 9:17 AM To: Slava Ovsiienko; dev@dpdk.org; Raslan Darawsheh Cc: Ori Kam; Dariusz Sosnowski; Suanming Mou; Matan Azrad; Hamdan Agbariya Subject: [PATCH v3] net/mlx5: add eCPRI support Support eCPRI item matching over L2 (ETHER / VLAN) in HWS,

RE: [PATCH V2 1/4] common/mlx5: support FDB unified capability query

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Ophir Munk > Sent: Wednesday, February 26, 2025 9:39 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH V2 1/4] common/mlx5: support FDB unified capab

RE: [PATCH V2 2/4] net/mlx5: support FDB unified domain

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Ophir Munk > Sent: Wednesday, February 26, 2025 9:39 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH V2 2/4] net/mlx5: support FDB unified domain >

RE: [PATCH V2 3/4] net/mlx5: remove unneeded FDB flag on representor action

2025-02-26 Thread Dariusz Sosnowski
> -Original Message- > From: Ophir Munk > Sent: Wednesday, February 26, 2025 9:39 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh ; Jiawei(Jonny) > Wang > Subject: [PATCH V2 3/4] net/mlx5: remov

Re: [PATCH 3/6] config: allow faster instruction sets to be used with MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 06:01:38PM -0800, Andre Muezerie wrote: > On Tue, Feb 25, 2025 at 02:28:02PM +, Bruce Richardson wrote: > > On Mon, Feb 24, 2025 at 01:01:16PM -0800, Andre Muezerie wrote: > > > Up to now MSVC has being used with the default mode, which uses SSE2 > > > instructions for s

Re: [PATCH v2 1/5] eal: make compatible with instruction set updates for MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:52PM -0800, Andre Muezerie wrote: > After the instruction set updates for MSVC the error below popped up: > > ../lib/eal/common/rte_random.c(6): fatal error C1083: > Cannot open include file: 'x86intrin.h': No such file or directory > > The fix is to not include

Re: [PATCH v2 2/5] eal: only use numbers as align parameters for MSVC

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:53PM -0800, Andre Muezerie wrote: > After the instruction set updates for MSVC the error below popped up: > > ..\lib\eal\x86\include\rte_vect.h(82): error C2059: syntax error: '(' > > The issue is that MSVC does not allow __rte_aligned(RTE_X86_ZMM_SIZE). > It only ac

Re: [PATCH v2 3/5] config: create top level variable cc_avx2_flags

2025-02-26 Thread Bruce Richardson
On Tue, Feb 25, 2025 at 05:06:54PM -0800, Andre Muezerie wrote: > Top level variable cc_avx2_flags was created and set according to the > compiler used. It is used in lower level directories. > > Signed-off-by: Andre Muezerie > --- > config/x86/meson.build | 6 ++ > 1 file changed, 6 inserti

RE: [PATCH v2 2/5] eal: only use numbers as align parameters for MSVC

2025-02-26 Thread Konstantin Ananyev
> -Original Message- > From: Andre Muezerie > Sent: Wednesday, February 26, 2025 1:07 AM > To: andre...@linux.microsoft.com > Cc: dev@dpdk.org > Subject: [PATCH v2 2/5] eal: only use numbers as align parameters for MSVC > > After the instruction set updates for MSVC the error below pop

RE: [PATCH 1/3] net/mlx5/hws: support jump FDB Rx

2025-02-26 Thread Bing Zhao
Hi Suanming, PSB > -Original Message- > From: Suanming Mou > Sent: Tuesday, February 25, 2025 8:45 AM > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam > ; Matan Azrad > Cc: dev@dpdk.org; Raslan Darawsheh ; Alex Vesker > > Subject: [PATCH 1/3] net/mlx5/hws: support jump

RE: [PATCH v5 1/3] cryptodev: add SM4 GCM

2025-02-26 Thread De Lara Guarch, Pablo
> -Original Message- > From: Dooley, Brian > Sent: Monday, February 24, 2025 6:00 PM > To: Akhil Goyal ; Fan Zhang > Cc: dev@dpdk.org; Ji, Kai ; De Lara Guarch, Pablo > ; Dooley, Brian > Subject: [PATCH v5 1/3] cryptodev: add SM4 GCM > > Added support for symmetric algorithm SM4 GCM

RE: [PATCH v5 3/3] app/test: add SM4 GCM tests

2025-02-26 Thread De Lara Guarch, Pablo
> -Original Message- > From: Dooley, Brian > Sent: Monday, February 24, 2025 6:00 PM > To: Akhil Goyal ; Fan Zhang > Cc: dev@dpdk.org; Ji, Kai ; De Lara Guarch, Pablo > ; Dooley, Brian > Subject: [PATCH v5 3/3] app/test: add SM4 GCM tests > > Added SM4-GCM tests for the AESNI MB PMD.

RE: [PATCH v5 2/3] crypto/ipsec_mb: add SM4 GCM support

2025-02-26 Thread De Lara Guarch, Pablo
> -Original Message- > From: Dooley, Brian > Sent: Monday, February 24, 2025 6:00 PM > To: Ji, Kai ; De Lara Guarch, Pablo > > Cc: dev@dpdk.org; gak...@marvell.com; Dooley, Brian > > Subject: [PATCH v5 2/3] crypto/ipsec_mb: add SM4 GCM support > > This patch introduces SM4 GCM algori