[PATCH] app/testpmd: fix parsing for connection tracking item

2024-06-02 Thread Maayan Kashani
In command line translation there were missing fields for connection tracking item, as a result this item was not parsed and was missing from the items list received from test-pmd. Fixes: 4d07cbefe3ba ("app/testpmd: add commands for conntrack") Cc: sta...@dpdk.org Signed-off-by: Maayan Kashani --

[PATCH 1/3] net/mlx5/hws: split the root rule creation and destruction

2024-06-02 Thread Maayan Kashani
From: Yevgeny Kliteynik Split the root rule creation/destruction into two stages: - do the job (create/destroy rule) - generate completion Completion generation is required for the usual HWS API. The create/destroy functions that don't generate completion are exposed in header file and will be

[PATCH 1/6] net/mlx5: update NTA rule pattern and actions flags

2024-06-02 Thread Maayan Kashani
From: Gregory Etelson Move pattern flags bitmap to flow_hw_list_create. Create actions flags bitmap in flow_hw_list_create. PMD uses pattern and actions bitmaps for direct queries instead of iterating arrays. Signed-off-by: Gregory Etelson --- drivers/net/mlx5/mlx5_flow_hw.c | 147 +++

[PATCH 1/4] net/mlx5: reorganize main structures

2024-06-02 Thread Maayan Kashani
Reorganize rte_flow_hw and rte_flow_nt2hws structures for better performance, and removed packed. Signed-off-by: Maayan Kashani --- drivers/net/mlx5/mlx5_flow.h | 26 -- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/drivers/net/mlx5/mlx5_flow.h b/drivers

[PATCH 1/7] net/mlx5/hws: fix bug in matcher disconnect error flow

2024-06-02 Thread Maayan Kashani
From: Yevgeny Kliteynik If error happens during disconnect of the first matcher in the list, the matcher should be reconnected back as the first matcher. Fixes: b81f95ca770d ("net/mlx5/hws: support default miss table") Cc: sta...@dpdk.org Signed-off-by: Yevgeny Kliteynik --- drivers/net/mlx5/h

[PATCH] app/testpmd: support retrying device stop

2024-06-02 Thread Maayan Kashani
From: Dariusz Sosnowski In some cases rte_eth_dev_stop() can fail with EBUSY error code meaning that port cannot be stopped, because of other resources referencing this port and port must be stopped again after these resources are freed. This patch adds handling of EBUSY error code on port stop

[PATCH] net/mlx5: fix non-template HWS RSS action configuration

2024-06-02 Thread Maayan Kashani
From: Gregory Etelson SWS mode checks flow items to adjust RSS action configuration. HWS mode relies on the application to provide the correct RSS configuration. The patch allows PMD in the non-template HWS mode to reconfigure RSS action according to items. Fixes: b73a84345231 ("net/mlx5: init

Re: [RFC] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 Thread Mattias Rönnblom
On 2024-05-29 23:56, Stephen Hemminger wrote: On Mon, 27 May 2024 13:11:51 +0200 Mattias Rönnblom wrote: #ifdef RTE_USE_CC_MEMCPY +static inline void +rte_mov16(uint8_t *dst, const uint8_t *src) +{ + memcpy(dst, src, 16); +} + +static inline void +rte_mov32(uint8_t *dst, const uint8_t *s

Re: [RFC v2] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 Thread Mattias Rönnblom
On 2024-05-31 18:50, Stephen Hemminger wrote: On Fri, 31 May 2024 07:19:41 +0200 Mattias Rönnblom wrote: On 2024-05-28 17:09, Bruce Richardson wrote: On Tue, May 28, 2024 at 07:59:36AM -0700, Stephen Hemminger wrote: On Tue, 28 May 2024 10:19:15 +0200 Mattias Rönnblom wrote: I'v

[RFC v3 0/5] Optionally have rte_memcpy delegate to compiler memcpy

2024-06-02 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.

[RFC v3 1/5] event/dlb2: include headers for vector and memory copy APIs

2024-06-02 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

[RFC v3 2/5] net/octeon_ep: properly include vector API header file

2024-06-02 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

[RFC v3 4/5] fib: properly include vector API header file

2024-06-02 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

[RFC v3 3/5] distributor: properly include vector API header file

2024-06-02 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

[RFC v3 5/5] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 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: [RFC v3 5/5] eal: provide option to use compiler memcpy instead of RTE

2024-06-02 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:mattias.ronnb...@ericsson.com] > Sent: Sunday, 2 June 2024 14.39 > > 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() > implementatio

Re: [PATCH] net/hns3: fix Rx packet truncation when KEEP CRC enabled

2024-06-02 Thread Jie Hai
On 2024/3/1 19:10, Ferruh Yigit wrote: On 3/1/2024 6:55 AM, huangdengdui wrote: On 2024/2/29 17:25, Ferruh Yigit wrote: On 2/29/2024 3:58 AM, huangdengdui wrote: On 2024/2/28 21:07, Ferruh Yigit wrote: On 2/28/2024 2:27 AM, huangdengdui wrote: On 2024/2/27 0:43, Ferruh Yigit wrote: On

Re: [PATCH] net/hns3: fix Rx packet truncation when KEEP CRC enabled

2024-06-02 Thread Stephen Hemminger
On Mon, 3 Jun 2024 09:38:19 +0800 Jie Hai wrote: > On 2024/3/1 19:10, Ferruh Yigit wrote: > > On 3/1/2024 6:55 AM, huangdengdui wrote: > >> > >> > >> On 2024/2/29 17:25, Ferruh Yigit wrote: > >>> On 2/29/2024 3:58 AM, huangdengdui wrote: > > > On 2024/2/28 21:07, Ferruh Yigit

RE: [PATCH] net/hns3: fix Rx packet truncation when KEEP CRC enabled

2024-06-02 Thread Morten Brørup
> IMHO the only sane thing is: > -if keep crc is enabled then pkt_len and data_len include the extra > bytes for the CRC. Agree. Consider a segmented packet where only the CRC is in the last segment. The length of that last segment would be zero if the CRC length was not included in pkt_len and

Re: [Help] O-RAN Fronthaul CUS-U data structure implementation

2024-06-02 Thread Mattia Milani
Hi Lincoln, Thank you very much for the feedback, I'll look into the documentation you provided. In the meanwhile may I ask if there is a publicly available recording of the training session you mentioned? (or similar training sessions done in the past). Thank you, Mattia On 31/05/2024 14:4