> -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
>
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
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
> -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
> -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
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
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
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
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;
> > +
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
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/
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
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
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
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
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
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
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 ++--
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
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
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.
---
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
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
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
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:
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
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
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:
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
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
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
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
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
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
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
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
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
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
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
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
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
> -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
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:
> -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
>
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
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
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
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
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
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
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
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
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
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
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
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
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
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
> -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
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
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
> -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
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
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
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
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
> -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
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
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.
> -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
> -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
>
>
> -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
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
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/
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
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
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
> -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
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,
> -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
> -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
>
> -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
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
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
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
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
> -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
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
> -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
> -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.
> -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
91 matches
Mail list logo