Re: [PATCH] net/mlx5: do not poll CQEs when no available elts

2025-01-19 Thread Raslan Darawsheh
Hi, From: Gavin Hu Sent: Friday, December 6, 2024 2:58 AM To: dev@dpdk.org Cc: sta...@dpdk.org; Dariusz Sosnowski; Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad; Alexander Kozyrev Subject: [PATCH] net/mlx5: do not poll CQEs when no available elts In certain situations, the rece

Re: [PATCH v3] net/mlx5: fix RSS hash for non-RSS CQE zipping

2025-01-19 Thread Alexander Kozyrev
Raslan, please revert this patch. I rejected it last week. This fix is incorrect without the FW changes. Regards, Alex From: Raslan Darawsheh Sent: Sunday, January 19, 2025 6:47:48 a.m. To: Alexander Kozyrev ; dev@dpdk.org Cc: sta...@dpdk.org ; Slava Ovsiienko

[PATCH 1/2] mempool: add rte_errno in rte_mempool_set_ops_byname

2025-01-19 Thread Ariel Otilibili
rte_errno is not set for error exits. For the scenario described in BugZilla ID 1559, rte_mempool_create_empty() calls rte_mempool_set_ops_byname(), but does not set as well the proper rte_errno. rte_errno is now set in rte_mempool_set_ops_byname(); from there it cascades down to the calling funct

[PATCH 0/2] mempool: add rte_errno, and turn functions into single-exit ones

2025-01-19 Thread Ariel Otilibili
Hello, This series is for BugZilla ID 1559. rte_mempool_set_ops_byname() did not set rte_errno for error exit. As well, other functions did not consistently set the variable. For avoiding that, they are turned into single-exit functions. Thank you, Ariel Otilibili (2): mempool: add rte_errn

[PATCH 2/2] mempool: turn functions into single-exit ones

2025-01-19 Thread Ariel Otilibili
Some functions did not set rte_errno; for avoiding that, they are turned into single-exit ones. Bugzilla ID: 1559 Signed-off-by: Ariel Otilibili --- lib/mempool/rte_mempool_ops.c | 38 ++- 1 file changed, 28 insertions(+), 10 deletions(-) diff --git a/lib/mempool

Re: [PATCH v3] net/mlx5: fix RSS hash for non-RSS CQE zipping

2025-01-19 Thread Raslan Darawsheh
Hi, From: Alexander Kozyrev Sent: Saturday, November 30, 2024 2:39 AM To: dev@dpdk.org Cc: sta...@dpdk.org; Raslan Darawsheh; Slava Ovsiienko; Matan Azrad; Dariusz Sosnowski; Bing Zhao; Suanming Mou Subject: [PATCH v3] net/mlx5: fix RSS hash for non-RSS CQE zipping Take the RSS hash value from

Re: [PATCH v2] net/mlx5: fix RSS hash for non-RSS CQE zipping

2025-01-19 Thread Raslan Darawsheh
Hi, From: Alexander Kozyrev Sent: Friday, November 29, 2024 10:44 PM To: dev@dpdk.org Cc: sta...@dpdk.org; Raslan Darawsheh; Slava Ovsiienko; Matan Azrad; Dariusz Sosnowski; Bing Zhao; Suanming Mou Subject: [PATCH v2] net/mlx5: fix RSS hash for non-RSS CQE zipping Take the RSS hash and flow tag

RE: [PATCH 2/2] mempool: turn functions into single-exit ones

2025-01-19 Thread Konstantin Ananyev
> Some functions did not set rte_errno; for avoiding that, they are turned > into single-exit ones. > > Bugzilla ID: 1559 > Signed-off-by: Ariel Otilibili But reading through public API comments none of these functions are expected to set rte_errno value. If rte_mempool_create_empty() forgets

Re: [PATCH v1] dts: fix attribute error in checksum offload suite

2025-01-19 Thread Patrick Robb
Reviewed-by: Patrick Robb Applied to next-dts - thanks for finding this.

Re: [PATCH v1 1/2] dts: add fwd restart decorator to rx capabilities

2025-01-19 Thread Patrick Robb
On Fri, Jan 17, 2025 at 9:58 AM Nicholas Pratte wrote: > -@requires_started_ports +@requires_forwarding_restart > @requires_stopped_ports > def set_port_mtu(self, port_id: int, mtu: int, verify: bool = True) > -> None: > """Change the MTU of a port using testpmd. > Is

Re: [PATCH v1 2/2] dts: add mtu update and jumbo frames test suite

2025-01-19 Thread Patrick Robb
On Fri, Jan 17, 2025 at 9:58 AM Nicholas Pratte wrote: > > +def assess_mtu_boundary(self, testpmd_shell: TestPmdShell, mtu: int) > -> None: > +"""Sets the new MTU and verifies packets at the set boundary. > + > +Ensure that packets smaller than or equal to a set MTU will be >

RE: [PATCH v6 0/8] [v6]drivers/net Add Support mucse N10 Pmd Driver

2025-01-19 Thread 11
Hi Thomas, I will continue to work on it on this quarter, a more detail servial patchs will be summit after the Spring Festival. Regards Wenbo > -Original Message- > From: Thomas Monjalon > Sent: 2025年1月17日 0:50 > To: yao...@mucse.com; Wenbo Cao > Cc: dev@dpdk.org; ferruh.yi...@amd.c

[PATCH v8] app/testpmd: add attach and detach port for multiple process

2025-01-19 Thread Huisong Li
The port information needs to be updated due to attaching and detaching port. Currently, it is done in the same thread as removing or probing device, which doesn't satisfy the operation of attaching and detaching device in multiple process. If this operation is performed in one process, the other

[PATCH v8 06/15] net/zxdh: dev start/stop ops implementations

2025-01-19 Thread Junlong Wang
dev start/stop implementations, start/stop the rx/tx queues. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 2 + doc/guides/nics/zxdh.rst | 2 + drivers/net/zxdh/zxdh_ethdev.c| 71 drivers/net/zxdh/zxdh_pci.c | 21 +++ driver

[PATCH v8 04/15] net/zxdh: port tables unint implementations

2025-01-19 Thread Junlong Wang
delete port tables in host. Signed-off-by: Junlong Wang --- drivers/net/zxdh/zxdh_ethdev.c | 18 ++ drivers/net/zxdh/zxdh_msg.h| 1 + drivers/net/zxdh/zxdh_np.c | 103 + drivers/net/zxdh/zxdh_np.h | 9 +++ drivers/net/zxdh/zxdh_tables.c | 33

[PATCH v8 02/15] net/zxdh: zxdh np uninit implementation

2025-01-19 Thread Junlong Wang
(np)network processor release resources in host. Signed-off-by: Junlong Wang --- drivers/net/zxdh/zxdh_ethdev.c | 48 drivers/net/zxdh/zxdh_np.c | 470 + drivers/net/zxdh/zxdh_np.h | 107 3 files changed, 625 insertions(+) diff --git a/driv

[PATCH v8 05/15] net/zxdh: rx/tx queue setup and intr enable

2025-01-19 Thread Junlong Wang
rx/tx queue setup and intr enable implementations. Signed-off-by: Junlong Wang --- drivers/net/zxdh/zxdh_ethdev.c | 4 + drivers/net/zxdh/zxdh_queue.c | 149 + drivers/net/zxdh/zxdh_queue.h | 33 3 files changed, 186 insertions(+) diff --git a/drive

[PATCH v8 00/15] net/zxdh: updated net zxdh driver

2025-01-19 Thread Junlong Wang
V8: - using __rte_packed_begin/__rte_packed_end replace __rte_packed. V7: - resolved warning '-Waddress-of-packed-member' in function 'zxdh_dev_rss_reta_update'. V6: - Remove unnecessary __rte_packed in the virtqueue structure and others. - Remove Some blank before or after log messag

[PATCH v8 12/15] net/zxdh: vlan filter/ offload ops implementations

2025-01-19 Thread Junlong Wang
provided vlan filter, vlan offload ops. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 3 + doc/guides/nics/zxdh.rst | 3 + drivers/net/zxdh/zxdh_ethdev.c | 40 +- drivers/net/zxdh/zxdh_ethdev_ops.c | 223 + drivers/net/zxd

[PATCH v8 13/15] net/zxdh: rss hash config/update, reta update/get

2025-01-19 Thread Junlong Wang
provided rss hash config/update, reta update/get ops. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 3 + doc/guides/nics/zxdh.rst | 1 + drivers/net/zxdh/zxdh_ethdev.c | 52 drivers/net/zxdh/zxdh_ethdev.h | 3 + drivers/net/zxdh/zxdh_ethdev_op

[PATCH v8 09/15] net/zxdh: link info update, set link up/down

2025-01-19 Thread Junlong Wang
provided link info update, set link up /down, and link intr. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 2 + doc/guides/nics/zxdh.rst | 3 + drivers/net/zxdh/meson.build | 1 + drivers/net/zxdh/zxdh_ethdev.c | 21 drivers/net/zxdh/zxdh_et

[PATCH v8 10/15] net/zxdh: mac set/add/remove ops implementations

2025-01-19 Thread Junlong Wang
provided mac set/add/remove ops. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 2 + doc/guides/nics/zxdh.rst | 2 + drivers/net/zxdh/zxdh_common.c | 24 +++ drivers/net/zxdh/zxdh_common.h | 1 + drivers/net/zxdh/zxdh_ethdev.c | 33 - drive

[PATCH v8 07/15] net/zxdh: provided dev simple tx implementations

2025-01-19 Thread Junlong Wang
provided dev simple tx implementations. Signed-off-by: Junlong Wang --- drivers/net/zxdh/meson.build | 1 + drivers/net/zxdh/zxdh_ethdev.c | 22 ++ drivers/net/zxdh/zxdh_queue.h | 26 ++- drivers/net/zxdh/zxdh_rxtx.c | 396 + drivers/net/zxdh/zxdh_rxtx.h

[PATCH v8 08/15] net/zxdh: provided dev simple rx implementations

2025-01-19 Thread Junlong Wang
provided dev simple rx implementations. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 1 + doc/guides/nics/zxdh.rst | 1 + drivers/net/zxdh/zxdh_ethdev.c| 1 + drivers/net/zxdh/zxdh_rxtx.c | 313 ++ drivers/net/zxdh/zxdh_r

[PATCH v8 11/15] net/zxdh: promisc/allmulti ops implementations

2025-01-19 Thread Junlong Wang
provided promiscuous/allmulticast ops. Signed-off-by: Junlong Wang --- doc/guides/nics/features/zxdh.ini | 2 + doc/guides/nics/zxdh.rst | 2 + drivers/net/zxdh/zxdh_ethdev.c | 21 ++- drivers/net/zxdh/zxdh_ethdev.h | 2 + drivers/net/zxdh/zxdh_ethdev_ops.c | 128 ++