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
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
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
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
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
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
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
> 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
Reviewed-by: Patrick Robb
Applied to next-dts - thanks for finding this.
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
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
>
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
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
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
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
(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
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
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
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
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
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
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
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
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
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 ++
25 matches
Mail list logo