RE: [PATCH v2 2/2] net/intel: add Tx time queue

2025-02-18 Thread Hore, Soumyadeep
On Wed, Feb 12, 2025 at 09:47:11PM +, Soumyadeep Hore wrote: > Enabling Tx timestamp queue for supporting Tx time based scheduling of > packets. > Can you provide more details of this feature and how it can be used, how it is enabled/disabled etc. See also comments inline below. /Bruce >

RedHat QE's test result against DPDK release candidate 25.03-rc1

2025-02-18 Thread Yanghang Liu
I tested below 18 scenarios on RHEL 9.4 hosts and didn't find any new dpdk issues. - VM with device assignment(PF) throughput testing(1G hugepage size): PASS - VM with device assignment(PF) throughput testing(2M hugepage size) : PASS - VM with device assignment(VF) throughput testin

RE: [EXTERNAL] [PATCH] net/netvsc: add stats counters from VF

2025-02-18 Thread Wei Hu
> -Original Message- > From: lon...@linuxonhyperv.com > Sent: Wednesday, February 19, 2025 5:13 AM > To: Stephen Hemminger ; Wei Hu > > Cc: dev@dpdk.org; Long Li ; sta...@dpdk.org > Subject: [EXTERNAL] [PATCH] net/netvsc: add stats counters from VF > > From: Long Li > > The netvsc d

[PATCH v2 4/5] net: update use of versioning macros

2025-02-18 Thread Andre Muezerie
When compiling with MSVC the error below shows up due to function versioning: ../lib/net/rte_net_crc.c(418): error C2061: syntax error: identifier '__attribute__' MSVC allows alias function names to be exported, but the mechanism is different than the one used by gcc. It was considered to enh

[PATCH v2 2/5] buildtools: update map_to_win.py to use optional map file

2025-02-18 Thread Andre Muezerie
When compiling with MSVC the error below shows up due to function versioning: ../lib/net/rte_net_crc.c(418): error C2061: syntax error: identifier '__attribute__' MSVC allows alias function names to be exported, but the mechanism is different than the one used by gcc. It was considered to enh

[PATCH v2 3/5] eal: update versioning macros

2025-02-18 Thread Andre Muezerie
When compiling with MSVC the error below shows up due to function versioning: ../lib/net/rte_net_crc.c(418): error C2061: syntax error: identifier '__attribute__' MSVC allows alias function names to be exported, but the mechanism is different than the one used by gcc. It was considered to enh

[PATCH v2 5/5] mbuf: enable to be compiled with MSVC

2025-02-18 Thread Andre Muezerie
Now that the issues preventing this lib from be compiled with MSVC are fixed it can be included in the compilation. The "net" library will automatically get compiled as well as it has a dependency on "mbuf" which will now get fulfilled. Signed-off-by: Andre Muezerie Acked-by: Bruce Richardson -

[PATCH v2 0/5] mbuf: enable to be compiled with MSVC

2025-02-18 Thread Andre Muezerie
When compiling with MSVC the error below shows up due to function versioning: ../lib/net/rte_net_crc.c(418): error C2061: syntax error: identifier '__attribute__' MSVC allows alias function names to be exported, but the mechanism is different than the one used by gcc. It was considered to enh

[PATCH v2 1/5] doc: update guide on versioning macros

2025-02-18 Thread Andre Muezerie
Added explanation about new macro MAP_STATIC_BASE_SYMBOL. Signed-off-by: Andre Muezerie --- doc/guides/contributing/abi_versioning.rst | 6 ++ 1 file changed, 6 insertions(+) diff --git a/doc/guides/contributing/abi_versioning.rst b/doc/guides/contributing/abi_versioning.rst index 7afd1c18

Re: [PATCH v3 01/10] bus/auxiliary: remove weak symbols

2025-02-18 Thread fengchengwen
Acked-by: Chengwen Feng On 2025/2/18 23:37, David Marchand wrote: > Rather than use weak symbols, expose stubs symbols when needed. > > Signed-off-by: David Marchand

Re: [PATCH v3 05/10] net/hns3: remove weak symbols

2025-02-18 Thread fengchengwen
Acked-by: Chengwen Feng On 2025/2/18 23:37, David Marchand wrote: > Rather than use weak symbols, expose stubs symbols when needed. > > Signed-off-by: David Marchand

Re: [PATCH v3 10/10] eal: deprecate weak symbols

2025-02-18 Thread fengchengwen
Acked-by: Chengwen Feng On 2025/2/18 23:37, David Marchand wrote: > Mark __rte_weak as deprecated. > It will avoid having to support such feature with other linkers, > plus this was never really needed. > > Signed-off-by: David Marchand

[PATCH v13 00/28] [v13]drivers/net Add Support mucse N10 Pmd Driver

2025-02-18 Thread Wenbo Cao
For This patchset just to support the basic chip init work and user can just found the eth_dev, but can't control more. For Now just support 2*10g nic,the chip can support 2*10g,4*10g,4*1g,8*1g,8*10g. The Feature rx side can support rx-cksum-offload,rss,vlan-filter flow_clow,uncast_filter,mcast_fil

[PATCH v13 03/28] net/rnp: add log

2025-02-18 Thread Wenbo Cao
add log function for trace or debug Signed-off-by: Wenbo Cao --- drivers/net/rnp/rnp_ethdev.c | 2 ++ drivers/net/rnp/rnp_logs.h | 36 2 files changed, 38 insertions(+) create mode 100644 drivers/net/rnp/rnp_logs.h diff --git a/drivers/net/rnp/rnp_ethdev

[PATCH v13 09/28] net/rnp: add queue stop and start operations

2025-02-18 Thread Wenbo Cao
support rx/tx queue stop/start,for rx queue stop need to reset a queue,must stop all rx queue during reset this queue. Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini | 1 + doc/guides/nics/rnp.rst | 4 + drivers/net/rnp/base/rnp_common.c | 3 + drivers/net/rnp/rnp

[PATCH v13 08/28] net/rnp: add queue setup and release operations

2025-02-18 Thread Wenbo Cao
support tx/rx queue setup and release add hw bd queue reset,sw queue reset. Signed-off-by: Wenbo Cao --- doc/guides/nics/rnp.rst | 3 + drivers/net/rnp/base/meson.build| 1 + drivers/net/rnp/base/rnp_bdq_if.c | 398 +++ drivers/net/rnp/base/rnp_bdq_if.h

[PATCH v13 07/28] net/rnp: add support MAC promisc mode

2025-02-18 Thread Wenbo Cao
add support two method of MAC unicast promisc mulcast promisc broadcast promisc mode Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini| 2 + doc/guides/nics/rnp.rst | 11 +++ drivers/net/rnp/base/rnp_common.c | 5 ++ drivers/net/rnp/base/rnp_eth_regs.h | 15 ++

[PATCH v13 05/28] net/rnp: add device init and uninit

2025-02-18 Thread Wenbo Cao
add firmware communic method and basic device init, uninit and close resource function. Signed-off-by: Wenbo Cao Reviewed-by: Ferruh Yigit --- doc/guides/nics/rnp.rst | 10 + drivers/net/rnp/base/meson.build| 4 + drivers/net/rnp/base/rnp_common.c | 73 ++ drivers/net

[PATCH v13 12/28] net/rnp: add support link update operations

2025-02-18 Thread Wenbo Cao
This patch add support poll/irq link get mode. Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini | 2 + doc/guides/nics/rnp.rst | 3 + drivers/net/rnp/base/rnp_fw_cmd.c | 45 drivers/net/rnp/base/rnp_fw_cmd.h | 55 + drivers/net/rnp/base/rnp_hw.h | 2 +

[PATCH v13 06/28] net/rnp: add get device information operation

2025-02-18 Thread Wenbo Cao
add get device hardware capability function Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini | 1 + doc/guides/nics/rnp.rst | 1 + drivers/net/rnp/base/rnp_fw_cmd.c | 20 ++ drivers/net/rnp/base/rnp_fw_cmd.h | 80 + drivers/net/rnp/base/rnp_m

[PATCH v13 02/28] net/rnp: add ethdev probe and remove

2025-02-18 Thread Wenbo Cao
Add basic PCIe ethdev probe and remove. Signed-off-by: Wenbo Cao Reviewed-by: Stephen Hemminger --- doc/guides/nics/rnp.rst | 17 ++ drivers/net/rnp/rnp.h| 16 + drivers/net/rnp/rnp_ethdev.c | 66 3 files changed, 99 insertions(+

[PATCH v13 04/28] net/rnp: support mailbox basic operate

2025-02-18 Thread Wenbo Cao
This patch adds support for mailbox of rnp PMD driver, mailbox is used for communication between pf with fw and vf driver. Signed-off-by: Wenbo Cao Reviewed-by: Stephen Hemminger --- drivers/net/rnp/base/meson.build | 11 + drivers/net/rnp/base/rnp_hw.h| 77 + drivers/net/rnp/base/rnp

[PATCH v13 11/28] net/rnp: add RSS support operations

2025-02-18 Thread Wenbo Cao
add support rss reta updata/query rss hash update/get dev_configure add rss conf check. Signed-off-by: Wenbo Cao --- doc/guides/nics/features/rnp.ini| 4 + doc/guides/nics/rnp.rst | 7 + drivers/net/rnp/base/rnp_eth_regs.h | 16 ++ drivers/net/rnp/meson.build | 1 +

[PATCH v13 10/28] net/rnp: add support device start stop operations

2025-02-18 Thread Wenbo Cao
add basic support for device to start/stop function. Signed-off-by: Wenbo Cao --- doc/guides/nics/rnp.rst | 2 + drivers/net/rnp/base/rnp_common.c | 22 +++ drivers/net/rnp/base/rnp_common.h | 1 + drivers/net/rnp/base/rnp_dma_regs.h | 10 + drivers/net/rnp/base/rnp_eth_reg

[PATCH v13 17/28] net/rnp: add Rx scatter segment version

2025-02-18 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_rxtx.c | 132 ++- drivers/net/rnp/rnp_rxtx.h | 2 + 4 files changed, 135 inse

[PATCH v13 13/28] net/rnp: add support link setup operations

2025-02-18 Thread Wenbo Cao
add set link_down/link_up implement Signed-off-by: Wenbo Cao --- doc/guides/nics/rnp.rst | 2 + drivers/net/rnp/base/rnp_eth_regs.h | 3 + drivers/net/rnp/base/rnp_fw_cmd.c | 22 +++ drivers/net/rnp/base/rnp_fw_cmd.h | 6 ++ drivers/net/rnp/base/rnp_mbx_fw.c | 33 +++

[PATCH v13 14/28] net/rnp: add Rx burst simple support

2025-02-18 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 v13 15/28] net/rnp: add Tx burst simple support

2025-02-18 Thread Wenbo Cao
add only support simple send pkts. Signed-off-by: Wenbo Cao --- drivers/net/rnp/rnp_ethdev.c | 6 +++ drivers/net/rnp/rnp_rxtx.c | 85 +++- drivers/net/rnp/rnp_rxtx.h | 1 + 3 files changed, 91 insertions(+), 1 deletion(-) diff --git a/drivers/net/rnp/rnp_e

[PATCH v13 18/28] net/rnp: add Tx multiple segment version

2025-02-18 Thread Wenbo Cao
add support multiple segs mbuf send. Signed-off-by: Wenbo Cao --- drivers/net/rnp/rnp_rxtx.c | 127 - drivers/net/rnp/rnp_rxtx.h | 3 +- 2 files changed, 127 insertions(+), 3 deletions(-) diff --git a/drivers/net/rnp/rnp_rxtx.c b/drivers/net/rnp/rnp_rxtx.c

Re: [PATCH 00/10] enable "app" to be compiled with MSVC

2025-02-18 Thread David Marchand
On Tue, Feb 11, 2025 at 11:02 PM Andre Muezerie wrote: > > This series fixes many issues that prevent the "app" directory > from being compiled with MSVC. > > Andre Muezerie (10): > eal: add workaround for __builtin_constant_p > test_alarm: avoid warning about different qualifiers > test-pmd

Re: [PATCH] ci: build with MSVC in GHA

2025-02-18 Thread Andre Muezerie
On Tue, Feb 18, 2025 at 03:10:13PM +0100, David Marchand wrote: > On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote: > > > > David Marchand writes: > > > > > Add a build target in Windows 2022 for MSVC. > > > > > > Loading MSVC environment and having successive commands in a single > > > (cmd or

[PATCH v3 10/10] eal: deprecate weak symbols

2025-02-18 Thread David Marchand
Mark __rte_weak as deprecated. It will avoid having to support such feature with other linkers, plus this was never really needed. Signed-off-by: David Marchand --- doc/guides/rel_notes/release_25_03.rst | 2 ++ lib/eal/include/rte_common.h | 6 +- 2 files changed, 7 insertions(+),

[PATCH v3 08/10] net/virtio: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand Reviewed-by: Maxime Coquelin --- drivers/net/virtio/meson.build | 5 + drivers/net/virtio/virtio_rxtx.c| 6 -- drivers/net/virtio/virtio_rxtx_simple.c | 4 +++- 3 files changed

[PATCH v3 06/10] net/fm10k: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand Acked-by: Bruce Richardson --- drivers/net/intel/fm10k/fm10k_ethdev.c | 20 +++- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/drivers/net/intel/fm10k/fm10k_ethdev.c b

[PATCH v3 09/10] app/compress-perf: remove weak symbols

2025-02-18 Thread David Marchand
Remove dead code, those symbols are never used as the "strong" symbols are always linked in. Signed-off-by: David Marchand --- app/test-compress-perf/main.c | 62 --- 1 file changed, 62 deletions(-) diff --git a/app/test-compress-perf/main.c b/app/test-compress-p

[PATCH v2 03/10] test-pmd: fix printf format string mismatch

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in warnings like the one below: app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string '%d' requires an argument of type 'int', but variadic argument 1 has type 'uint64_t' Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/tes

[PATCH v2 06/10] test-pmd: avoid non-constant initializer

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in errors like the one below: app/test-pmd/cmdline_flow.c(8819): error C2099: initializer is not a constant Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test-pmd/cmdline_flow.c | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-

[PATCH v2 02/10] test_alarm: avoid warning about different qualifiers

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in the warning below: app/test/test_alarm.c(54): warning C4090: 'function': different '_Atomic' qualifiers The fix is to use a macro to explicitly drop the qualifier. Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test/test_alarm.c | 12

[PATCH v2 00/10] enable "app" to be compiled with MSVC

2025-02-18 Thread Andre Muezerie
v2: - use lcore_count as atomic always, not only when RTE_USE_C11_MEM_MODEL is set. - use PRIu64 in csumonly.c instead of casting variables to int. This series fixes many issues that prevent the "app" directory from being compiled with MSVC. Andre Muezerie (10): eal: add workaround for __buil

[PATCH v2 01/10] eal: add workaround for __builtin_constant_p

2025-02-18 Thread Andre Muezerie
There's no MSVC equivalent for compiler extension __builtin_constant_p. EAL already had __rte_constant which was used as a first attempt to workaround __builtin_constant_p when using MSVC. However, there are pieces of code that would benefit from being able to provide a default value to be used ins

Re: [PATCH v2 03/10] test-pmd: fix printf format string mismatch

2025-02-18 Thread Andre Muezerie
On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote: > On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote: > > Compiling with MSVC results in warnings like the one below: > > > > app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string > > '%d' requires a

RE: [PATCH v2 01/10] eal: add workaround for __builtin_constant_p

2025-02-18 Thread Morten Brørup
> From: Andre Muezerie [mailto:andre...@linux.microsoft.com] > Sent: Tuesday, 18 February 2025 17.32 > > There's no MSVC equivalent for compiler extension __builtin_constant_p. > EAL already had __rte_constant which was used as a first attempt to > workaround __builtin_constant_p when using MSVC.

Re: [PATCH v2 03/10] test-pmd: fix printf format string mismatch

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 09:03:01AM -0800, Andre Muezerie wrote: > On Tue, Feb 18, 2025 at 04:46:56PM +, Bruce Richardson wrote: > > On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote: > > > Compiling with MSVC results in warnings like the one below: > > > > > > app/test-pmd/csumonl

[PATCH v2 09/10] test: add workaround for __builtin_constant_p in test_memcpy_perf

2025-02-18 Thread Andre Muezerie
There's no MSVC equivalent for compiler extension __builtin_constant_p, so a workaround is needed. Signed-off-by: Andre Muezerie --- app/test/test_memcpy_perf.c | 106 ++-- 1 file changed, 53 insertions(+), 53 deletions(-) diff --git a/app/test/test_memcpy_perf.c

[PATCH v2 05/10] test-pmd: avoid undefined behavior

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in warnings like below: app/test-pmd/cmdline.c(9023): warning C5101: use of preprocessor directive in function-like macro argument list is undefined behavior Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test-pmd/cmdline.c | 15 +

[PATCH v2 10/10] app: enable app directory to be compiled with MSVC

2025-02-18 Thread Andre Muezerie
Enabled "app" directory to be compiled with MSVC along with all its contents. Signed-off-by: Andre Muezerie --- app/meson.build | 4 app/test-pmd/meson.build | 4 +++- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/app/meson.build b/app/meson.build index e2db888ae1.

[PATCH v2 07/10] test-pmd: don't return value from void function

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in the warning below: app/test-pmd/cmdline_flow.c(13964): warning C4098: 'cmd_set_raw_parsed': 'void' function returning a value Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test-pmd/cmdline_flow.c | 12 1 file changed, 8 inser

[PATCH v2 08/10] test-pmd: declare lcore_count atomic

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in the error below: app/test/test_ring_perf.c(197): error C7712: address argument to atomic operation must be a pointer to an atomic integer, 'volatile unsigned int *' is not valid The fix is to mark lcore_count as atomic. Signed-off-by: Andre Muezerie Signed

[PATCH v2 04/10] test-pmd: do explicit 64-bit shift to avoid implicit conversion

2025-02-18 Thread Andre Muezerie
Compiling with MSVC results in warnings like the one below: app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) Signed-off-by: Andre Muezerie Signed-off-by: Chengwen Feng --- app/test-pmd/cmdline.c | 4 ++-- app

Re: [PATCH] doc/dmadevs: clarify naming constraints for idxd devices

2025-02-18 Thread Kevin Laatz
On 31/01/2025 14:49, Bruce Richardson wrote: The requirement to have DPDK in the DSA wq name is given in the idxd chapter section 5.3.3 [1]. However, that information should also be given in section 5.3.1 [2] where we list out the fields to be set and what values they should have. [1]https://doc

[PATCH v3 03/10] drivers: remove weak symbols in Nitrox drivers

2025-02-18 Thread David Marchand
Make compress and crypto drivers register to the common driver. Remove (unneeded) include_directories(). Signed-off-by: David Marchand --- drivers/common/nitrox/meson.build | 3 -- drivers/common/nitrox/nitrox_device.c | 75 ++- drivers/common/nitrox/nitrox_device.h

Re: [PATCH v2 1/2] net/intel: add E830 ETF offload timestamp resolution

2025-02-18 Thread Bruce Richardson
On Wed, Feb 12, 2025 at 09:47:10PM +, Soumyadeep Hore wrote: > From: Paul Greenwalt > > Update E830 ETF offload time stamp resolution to 128ns along I'm not sure the word "update" is applicable here, since I just see a single new define being added. The timestamp resolution wasn't previously

Re: [PATCH v2 05/10] test-pmd: avoid undefined behavior

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:04AM -0800, Andre Muezerie wrote: > Compiling with MSVC results in warnings like below: > > app/test-pmd/cmdline.c(9023): warning C5101: use of preprocessor > directive in function-like macro argument list is undefined behavior > > Signed-off-by: Andre Muezerie

[PATCH] config/arm: update NVIDIA BlueField-3 configuration

2025-02-18 Thread Gregory Etelson
ARM configuration requires explicit `mcpu` specifications in the implementor description. The patch adds `mcpu` and `flags` description for the NVIDIA BlueField-3 configuration. Signed-off-by: Gregory Etelson --- config/arm/meson.build | 5 + 1 file changed, 5 insertions(+) diff --git a/co

Re: [PATCH] ci: build with MSVC in GHA

2025-02-18 Thread Aaron Conole
David Marchand writes: > Add a build target in Windows 2022 for MSVC. > > Loading MSVC environment and having successive commands in a single > (cmd or pwsh) shell does not seem to correctly report if one of the > commands failed. > For now, load MSVC environment and run commands in separate shel

[PATCH] ethdev: fix get_reg_info

2025-02-18 Thread Thierry Herbelot
'width' and 'offset' are input parameters when dumping the register info of an Ethernet device. They should be copied in the new request before calling the device callback function. Fixes: 083db2ed9e9 ('ethdev: add report of register names and filter') Cc: sta...@dpdk.org Signed-off-by: Thierry H

[Patch v2] net/mana: use mana_local_data for tracking usage data for primary process

2025-02-18 Thread longli
From: Long Li The driver uses mana_shared_data for tracking usage count for primary process. This is not correct as the mana_shared_data is allocated by the primary and is meant to track usage of secondary process by the primary process. And it creates a race condition when the device is removed

[PATCH] net/netvsc: add stats counters from VF

2025-02-18 Thread longli
From: Long Li The netvsc driver should add per-queue and rx_nombuf counters from VF. Fixes: 4e9c73e96e83 ("net/netvsc: add Hyper-V network device") Cc: sta...@dpdk.org Signed-off-by: Long Li --- drivers/net/netvsc/hn_ethdev.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) di

[DPDK/ethdev Bug 1664] rte_ipv6_addr_is_v4mapped wrong logic

2025-02-18 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1664 Bug ID: 1664 Summary: rte_ipv6_addr_is_v4mapped wrong logic Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONFIRMED Severity: normal

[PATCH v3 04/10] net/enic: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand --- drivers/net/enic/enic_main.c | 8 +++- drivers/net/enic/meson.build | 1 + 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_mai

[PATCH v3 01/10] bus/auxiliary: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand --- drivers/bus/auxiliary/auxiliary_common.c | 6 -- drivers/bus/auxiliary/meson.build| 1 + 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/drivers/bus/auxiliary/auxiliary_co

[PATCH v3 00/10] Remove weak symbols

2025-02-18 Thread David Marchand
This is an alternative to André series: https://inbox.dpdk.org/dev/1735009552-31906-1-git-send-email-andre...@linux.microsoft.com/ Weak symbols can be easily replaced with some linking updates, and make it clearer which symbols are actually ending up in the final binary. -- David Marchand Chan

[PATCH v3 07/10] net/nfp: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, link stubs code when needed. Signed-off-by: David Marchand Acked-by: Chaoyong He --- drivers/net/nfp/meson.build | 7 +-- drivers/net/nfp/nfdk/nfp_nfdk_vec_stub.c | 2 +- drivers/net/nfp/nfp_rxtx_vec_stub.c | 4 ++-- 3 files changed, 8 inserti

[PATCH v3 05/10] net/hns3: remove weak symbols

2025-02-18 Thread David Marchand
Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand --- Changes since v1: - fix build for Arm64 without SVE, --- drivers/net/hns3/hns3_rxtx.c | 22 +++--- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/drivers/net/hns3/hn

[PATCH v3 02/10] common/qat: remove weak symbols

2025-02-18 Thread David Marchand
Remove dead code, those symbols are never used as the "strong" symbols are always linked in. Signed-off-by: David Marchand --- drivers/common/qat/qat_qp.c | 8 drivers/common/qat/qat_qp.h | 5 - 2 files changed, 13 deletions(-) diff --git a/drivers/common/qat/qat_qp.c b/drivers/com

RE: [PATCH] net/mlx5: fix leak in HWS flow counter action

2025-02-18 Thread Dariusz Sosnowski
> -Original Message- > From: David Marchand > Sent: Monday, January 27, 2025 11:54 > To: dev@dpdk.org > Cc: sta...@dpdk.org; Dariusz Sosnowski ; Slava > Ovsiienko ; Bing Zhao ; Ori Kam > ; Suanming Mou ; Matan Azrad > ; Jack Min > Subject: [PATCH] net/mlx5: fix leak in HWS flow counter ac

Re: [PATCH v2 2/2] net/intel: add Tx time queue

2025-02-18 Thread Bruce Richardson
On Wed, Feb 12, 2025 at 09:47:11PM +, Soumyadeep Hore wrote: > Enabling Tx timestamp queue for supporting Tx time based > scheduling of packets. > Can you provide more details of this feature and how it can be used, how it is enabled/disabled etc. See also comments inline below. /Bruce > S

Re: [PATCH v2 07/10] test-pmd: don't return value from void function

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:06AM -0800, Andre Muezerie wrote: > Compiling with MSVC results in the warning below: > > app/test-pmd/cmdline_flow.c(13964): warning C4098: 'cmd_set_raw_parsed': > 'void' function returning a value > > Signed-off-by: Andre Muezerie > Signed-off-by: Chengwen Fen

Re: [PATCH v2 03/10] test-pmd: fix printf format string mismatch

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:02AM -0800, Andre Muezerie wrote: > Compiling with MSVC results in warnings like the one below: > > app/test-pmd/csumonly.c(1085): warning C4477: 'printf' : format string > '%d' requires an argument of type 'int', > but variadic argument 1 has type 'uint64_t'

Re: [PATCH v2 10/10] app: enable app directory to be compiled with MSVC

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:09AM -0800, Andre Muezerie wrote: > Enabled "app" directory to be compiled with MSVC along with all its > contents. > > Signed-off-by: Andre Muezerie > --- > app/meson.build | 4 > app/test-pmd/meson.build | 4 +++- > 2 files changed, 3 insertions(+),

Re: [PATCH v2 04/10] test-pmd: do explicit 64-bit shift to avoid implicit conversion

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 08:32:03AM -0800, Andre Muezerie wrote: > Compiling with MSVC results in warnings like the one below: > > app/test-pmd/util.c(201): warning C4334: '<<': result of 32-bit shift > implicitly converted to 64 bits (was 64-bit shift intended?) > > Signed-off-by: Andre Mueze

Re: [PATCH] ci: build with MSVC in GHA

2025-02-18 Thread Aaron Conole
David Marchand writes: > On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote: >> >> David Marchand writes: >> >> > Add a build target in Windows 2022 for MSVC. >> > >> > Loading MSVC environment and having successive commands in a single >> > (cmd or pwsh) shell does not seem to correctly report

Re: [PATCH v6 1/8] build: introduce optional internal dependencies

2025-02-18 Thread Bruce Richardson
On Tue, Feb 18, 2025 at 11:15:27AM +, Anatoly Burakov wrote: > Allow specifying internal dependencies as either mandatory or optional. > Specifying a dependency as optional will mean that the component being s/optional/mandatory/ > built will be skipped if said dependency is not being built. A

Re: [PATCH] ci: build with MSVC in GHA

2025-02-18 Thread David Marchand
On Tue, Feb 18, 2025 at 2:32 PM Aaron Conole wrote: > > David Marchand writes: > > > Add a build target in Windows 2022 for MSVC. > > > > Loading MSVC environment and having successive commands in a single > > (cmd or pwsh) shell does not seem to correctly report if one of the > > commands failed

Re: [PATCH v22 00/27] remove use of VLAs for Windows

2025-02-18 Thread David Marchand
On Fri, Feb 7, 2025 at 3:23 PM Konstantin Ananyev wrote: > > > As per guidance technical board meeting 2024/04/17. This series > > > removes the use of VLAs from code built for Windows for all 3 > > > toolchains. If there are additional opportunities to convert VLAs > > > to regular C arrays pleas

Re: [EXTERNAL] [PATCH v3 4/6] trace: support dumping binary inside a struct

2025-02-18 Thread David Marchand
On Wed, Feb 12, 2025 at 6:14 AM Sunil Kumar Kori wrote: > > > On Tue, Feb 11, 2025 at 9:53 AM Sunil Kumar Kori > > wrote: > > > > > > > diff --git a/lib/eal/common/eal_common_trace_ctf.c > > > > b/lib/eal/common/eal_common_trace_ctf.c > > > > index 6bc8bb9036..d9b307e076 100644 > > > > --- a/lib/

[PATCH 1/2] doc: fix mlx5 VXLAN matching limitations

2025-02-18 Thread Minggang Li(Gavin)
P bit of VXLAN-GPE and G bit of VXLAN-GBP should be set when matching the protocols. Fixes: 49765b78c81b ("net/mlx5/hws: match all VXLAN fields") Signed-off-by: Minggang Li(Gavin) --- doc/guides/nics/mlx5.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/mlx5.rst b/doc/

[PATCH 2/2] app/testpmd: use flags from user if it is set

2025-02-18 Thread Minggang Li(Gavin)
It's user's responsibility to set correct flags, especially the G bit, to distinguish the protocols, VXLAN and VXLAN-GBP, sharing the same port 4789. It will be set to 0x8 if user does not specify the flags. Fixes: da118115d95c ("app/testpmd: support matching any VXLAN field") Signed-off-by: Ming

RE: [PATCH v3 1/2] crypto/ipsec_mb: add SM4 GCM support

2025-02-18 Thread De Lara Guarch, Pablo
Hi Brian, > -Original Message- > From: Dooley, Brian > Sent: Monday, January 13, 2025 6:10 PM > Cc: dev@dpdk.org; gak...@marvell.com; Ji, Kai ; De Lara > Guarch, Pablo ; Dooley, Brian > > Subject: [PATCH v3 1/2] crypto/ipsec_mb: add SM4 GCM support > > This patch introduces SM4 GCM algo

[PATCH v6 1/8] build: introduce optional internal dependencies

2025-02-18 Thread Anatoly Burakov
Allow specifying internal dependencies as either mandatory or optional. Specifying a dependency as optional will mean that the component being built will be skipped if said dependency is not being built. At build time, the build system will resolve any optional dependencies and add them to the list

[PATCH v6 3/8] devtools: add script to flag unneeded dependencies

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson While not a serious problem, DPDK components often list more dependencies than are actually necessary to build, due to the use of recursive dependencies. In extreme cases, such as with core libraries, this can lead to longer configuration times due to meson having to dedupl

[PATCH v6 2/8] build: output a dependency log in build directory

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson As meson processes our DPDK source tree it manages dependencies specified by each individual driver. To enable future analysis of the dependency links between components, log the dependencies of each DPDK component as it gets processed. This could potentially allow other to

[PATCH v6 0/8] Record and rework component dependencies

2025-02-18 Thread Anatoly Burakov
As part of the meson build, we can record the dependencies for each component as we process it, logging them to a file. This file can be used as input to a number of other scripts and tools, for example, to graph the dependencies, or to allow higher-level build-config tools to automatically enable

[PATCH v6 4/8] drivers: remove kvargs from class dependencies

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson The kvargs library is used by EAL, and therefore is implicitly a dependency of every DPDK driver. Remove it from the minimum set of dependencies for each driver class as it's unnecessary to call it out there. Signed-off-by: Bruce Richardson --- drivers/event/meson.build

[PATCH v6 5/8] lib: reduce library dependencies

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson Rather than having each library depend up on EAL + any extra libs, we can take advantage of recursive dependency support in meson and just assign the dependencies of each directory directly, rather than appending to the array. For libraries which only depend upon EAL, keep

[PATCH v6 8/8] devtools: add script to generate DPDK dependency graphs

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson Rather than the single monolithic graph that would be output from the deps.dot file in a build directory, we can post-process that to generate simpler graphs for different tasks. This new "draw_dependency_graphs" script takes the "deps.dot" as input and generates an output

[PATCH v6 7/8] app: reduce app dependencies

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson Remove any unnecessary dependencies from the app dependency lists. This will give each app a near-minimum set of required dependencies. Signed-off-by: Bruce Richardson --- app/dumpcap/meson.build | 2 +- app/graph/meson.build| 2 +- app/pdump/meson.b

[PATCH v6 6/8] drivers: reduce driver dependencies

2025-02-18 Thread Anatoly Burakov
From: Bruce Richardson Remove any unnecessary dependencies from the driver dependency lists. This will give each driver a near-minimum set of required dependencies. Signed-off-by: Bruce Richardson Reviewed-by: Rosen Xu --- drivers/baseband/fpga_5gnr_fec/meson.build | 2 +- drivers/baseband/fp

RE: [PATCH 1/2] doc: fix mlx5 VXLAN matching limitations

2025-02-18 Thread Dariusz Sosnowski
> -Original Message- > From: Minggang(Gavin) Li > Sent: Tuesday, February 18, 2025 11:33 > To: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact-Thomas > Monjalon (EXTERNAL) ; Dariusz Sosnowski > ; Bing Zhao ; Suanming Mou > ; Alex Vesker ; rongwei liu > > Cc: dev@dpdk.org; Rasla

RE: [PATCH 2/2] app/testpmd: use flags from user if it is set

2025-02-18 Thread Dariusz Sosnowski
> -Original Message- > From: Minggang Li(Gavin) > Sent: Tuesday, February 18, 2025 11:33 > To: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact-Thomas > Monjalon (EXTERNAL) ; Aman Singh > ; Minggang(Gavin) Li > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH 2/2] app/testpm

[PATCH] app/testpmd: fix fail to set queue number when attach device

2025-02-18 Thread Huisong Li
Testpmd doesn't modify the Rx/Tx queue number of all ports after attach a new device. The root cause is that "port config all rxq " would check if all ports are stopped and the status of this port is still in 'RTE_PORT_HANDLING'. This status is changed to 'RTE_PORT_STOPPED' in setup_attached_port()

[PATCH 0/2] use flags from user if it is set

2025-02-18 Thread Minggang Li(Gavin)
This patch series also fixed mlx5 release notes on VXLAN limitations. Minggang Li (Gavin) (2): doc: fix mlx5 VXLAN matching limitations app/testpmd: use flags from user if it is set app/test-pmd/cmdline_flow.c | 3 ++- doc/guides/nics/mlx5.rst| 4 2 files changed, 6 insertions(+), 1

RE: [PATCH v3 2/2] app/test: add SM4 GCM tests

2025-02-18 Thread De Lara Guarch, Pablo
Hi Pablo, > -Original Message- > From: Dooley, Brian > Sent: Monday, January 13, 2025 6:10 PM > Cc: dev@dpdk.org; gak...@marvell.com; Ji, Kai ; De Lara > Guarch, Pablo ; Dooley, Brian > > Subject: [PATCH v3 2/2] app/test: add SM4 GCM tests > > Added SM4-GCM tests for the AESNI MB PMD. >

RE: [PATCH] net/mlx5: fix flow null ops seg fault

2025-02-18 Thread Dariusz Sosnowski
> -Original Message- > From: Kevin Traynor > Sent: Friday, February 14, 2025 11:06 > To: dev@dpdk.org > Cc: Dariusz Sosnowski ; Maayan Kashani > ; Raslan Darawsheh ; Ori Kam > ; Kevin Traynor ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix flow null ops seg fault > > External email:

Re: [RFC v2 08/10] net/virtio: remove weak symbols

2025-02-18 Thread Maxime Coquelin
Hi David, On 2/9/25 6:28 PM, David Marchand wrote: Rather than use weak symbols, expose stubs symbols when needed. Signed-off-by: David Marchand --- drivers/net/virtio/meson.build | 5 + drivers/net/virtio/virtio_rxtx.c| 6 -- drivers/net/virtio/virtio_rxtx_simple.

RE: [PATCH] event/dlb2: fix event weight handling in SSE code path

2025-02-18 Thread Jerin Jacob
> -Original Message- > From: Pathak, Pravin > Sent: Thursday, February 6, 2025 8:20 PM > To: Richardson, Bruce ; dev@dpdk.org > Cc: sta...@dpdk.org > Subject: [EXTERNAL] RE: [PATCH] event/dlb2: fix event weight handling in SSE > code path > > Reviewed-by: Pravin Pathak > -Original

Re: [RFC 00/11] Fix dev_ops dereferences

2025-02-18 Thread Bruce Richardson
On Mon, Feb 17, 2025 at 09:24:04PM +0100, Morten Brørup wrote: > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Monday, 17 February 2025 19.54 > > > > A common pattern in DPDK internals is to have an array of function > > pointers. When using these pointers an unnecessary

Re: [PATCH v1 1/1] usertools/devbind: add documentation for no-IOMMU mode

2025-02-18 Thread Burakov, Anatoly
On 02/12/2024 10:35, Anatoly Burakov wrote: Support for `--noiommu-mode` flag was added, but documentation for it was not. Add documentation for the flag. Signed-off-by: Anatoly Burakov --- doc/guides/tools/devbind.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/doc/guides/tools

Re: [PATCH v3 0/2] Rewrite devbind

2025-02-18 Thread Burakov, Anatoly
On 04/12/2024 10:47, Anatoly Burakov wrote: It has been suggested [1] that a major cleanup/rewrite of devbind would be beneficial in terms of long term maintainability of the code. I was in a coding mood over the weekend, and so I've went ahead and rewritten devbind. Note that this is one giant

[PATCH v2 1/3] eventdev/eth_rx: add API to burst add queues to Rx adapter

2025-02-18 Thread Shijith Thotton
This patch introduces a new API, rte_event_eth_rx_adapter_queues_add(), to allow bulk addition of multiple Rx queues in the eventdev Rx adapter. The existing rte_event_eth_rx_adapter_queue_add() API supports adding multiple queues by specifying rx_queue_id = -1, but it lacks the ability to apply s

  1   2   >