[PATCH v5 02/15] net/xsc: add xsc device initialization

2025-01-06 Thread WanRenyong
XSC device is a hardware abstract level device serving as a handle to interact with hardware. Signed-off-by: WanRenyong --- v5: * Fix coding style issue with misspelling * Rearrange the elements in struct xsc_hwinfo to reduce holes --- drivers/net/xsc/meson.build | 1 + drivers/net/xsc/xsc_

[PATCH v5 03/15] net/xsc: add xsc mailbox

2025-01-06 Thread WanRenyong
XSC mailbox is a mechanism used for interaction between PMD and firmware. Signed-off-by: WanRenyong Signed-off-by: Rong Qian --- drivers/net/xsc/meson.build | 1 + drivers/net/xsc/xsc_cmd.h | 387 ++ drivers/net/xsc/xsc_defs.h | 2 + drivers/net/xsc/xsc_vfio_m

[PATCH v5 01/15] net/xsc: add xsc PMD framework

2025-01-06 Thread WanRenyong
Add xsc PMD framework, doc and build infrastructure, supporting PCI probe. Signed-off-by: WanRenyong --- .mailmap | 5 ++ MAINTAINERS| 10 +++ doc/guides/nics/features/xsc.ini | 9 +++ doc/guides/nics/index.rst | 1 +

[PATCH v5 04/15] net/xsc: add xsc dev ops to support VFIO driver

2025-01-06 Thread WanRenyong
XSC PMD is designed to support both VFIO and private kernel drivers. This commit add xsc dev ops to support VFIO driver. Signed-off-by: WanRenyong Signed-off-by: Na Na --- v5 * Using RTE_ETHER_ADDR_LEN instead of numeral 6. * Initialize some local variables while be defined. * Fix compilation

[PATCH v5 05/15] net/xsc: add PCT interfaces

2025-01-06 Thread WanRenyong
PCT is the abbreviation of Packet classifier table, which is built in NP to define behavior of various packets. Signed-off-by: WanRenyong --- drivers/net/xsc/meson.build | 1 + drivers/net/xsc/xsc_defs.h | 29 +++ drivers/net/xsc/xsc_dev.c | 19 +- drivers/net/xsc/xsc_dev.h | 3 + dri

[PATCH v5 06/15] net/xsc: initialize xsc representors

2025-01-06 Thread WanRenyong
For the design of the xsc PMD, each ethdev corresponds to a representor. Signed-off-by: WanRenyong --- drivers/net/xsc/xsc_defs.h | 11 +++ drivers/net/xsc/xsc_dev.c| 95 drivers/net/xsc/xsc_dev.h| 3 + drivers/net/xsc/xsc_ethdev.c | 170 +++

[PATCH v5 09/15] net/xsc: add ethdev start

2025-01-06 Thread WanRenyong
Implement xsc ethdev start function. Signed-off-by: WanRenyong Signed-off-by: Rong Qian --- v5: * Remove unnecessary call of rte_wmb. --- drivers/net/xsc/meson.build | 2 + drivers/net/xsc/xsc_dev.c| 33 drivers/net/xsc/xsc_dev.h| 8 + drivers/net/xsc/xsc_ethdev.c | 172

[PATCH v5 10/15] net/xsc: add ethdev stop and close

2025-01-06 Thread WanRenyong
Implement xsc ethdev close and stop functions. Signed-off-by: WanRenyong --- drivers/net/xsc/xsc_dev.c| 12 drivers/net/xsc/xsc_dev.h| 2 + drivers/net/xsc/xsc_ethdev.c | 108 +++ drivers/net/xsc/xsc_rx.c | 47 +++ drivers/net/xsc/

[PATCH v5 08/15] net/xsc: add Rx and Tx queue setup

2025-01-06 Thread WanRenyong
Implement xsc ethdev Rx and Tx queue setup functions. Signed-off-by: WanRenyong Signed-off-by: Rong Qian --- drivers/net/xsc/xsc_defs.h | 4 ++ drivers/net/xsc/xsc_ethdev.c | 83 drivers/net/xsc/xsc_rx.h | 59 + drivers/net/xsc

[PATCH v5 07/15] net/xsc: add ethdev configure and RSS ops

2025-01-06 Thread WanRenyong
Implement xsc ethdev configure and RSS hash functions. Signed-off-by: WanRenyong --- v5: * Remove some unnecessary parameter checks. --- doc/guides/nics/features/xsc.ini | 3 ++ drivers/net/xsc/xsc_defs.h | 15 ++ drivers/net/xsc/xsc_dev.c| 26 ++ drivers/net/xsc/xsc

[PATCH v5 11/15] net/xsc: add ethdev Rx burst

2025-01-06 Thread WanRenyong
Implement xsc ethdev Rx burst function. Signed-off-by: WanRenyong Signed-off-by: Xiaoxiong Zhang --- drivers/net/xsc/xsc_ethdev.c | 3 + drivers/net/xsc/xsc_rx.c | 174 +++ drivers/net/xsc/xsc_rx.h | 1 + drivers/net/xsc/xsc_rxtx.h | 13 +++ 4 file

[PATCH v5 14/15] net/xsc: add ethdev infos get

2025-01-06 Thread WanRenyong
Implement xsc ethdev information get ops. Signed-off-by: WanRenyong --- drivers/net/xsc/xsc_ethdev.c | 61 1 file changed, 61 insertions(+) diff --git a/drivers/net/xsc/xsc_ethdev.c b/drivers/net/xsc/xsc_ethdev.c index 000e27222d..584890aa6f 100644 --- a/dri

[PATCH v5 12/15] net/xsc: add ethdev Tx burst

2025-01-06 Thread WanRenyong
Implement xsc ethdev Tx burst function. Signed-off-by: WanRenyong Signed-off-by: Dongwei Xu --- doc/guides/nics/features/xsc.ini | 4 + drivers/net/xsc/xsc_ethdev.c | 1 + drivers/net/xsc/xsc_tx.c | 228 +++ drivers/net/xsc/xsc_tx.h | 1 + 4

[PATCH v5 00/15] XSC PMD for Yunsilicon NICs

2025-01-06 Thread WanRenyong
This xsc PMD (**librte_net_xsc**) provides poll mode driver for Yunsilicon metaScale serials NICs. Features: - - MTU update - TSO - RSS hash - RSS key update - RSS reta update - L3 checksum offload - L4 checksum offload - Inner L3 checksum - Inner L4 checksum - Basic stats Support NICs:

[PATCH v5 15/15] net/xsc: add ethdev link and MTU ops

2025-01-06 Thread WanRenyong
Implement xsc ethdev link and MTU ops. Signed-off-by: WanRenyong --- doc/guides/nics/features/xsc.ini | 1 + drivers/net/xsc/xsc_dev.c| 33 ++ drivers/net/xsc/xsc_dev.h| 4 +++ drivers/net/xsc/xsc_ethdev.c | 60 4 files chang

[PATCH v5 13/15] net/xsc: add basic stats ops

2025-01-06 Thread WanRenyong
Implement xsc ethdev basic statatics ops. Signed-off-by: WanRenyong --- doc/guides/nics/features/xsc.ini | 1 + drivers/net/xsc/xsc_ethdev.c | 75 2 files changed, 76 insertions(+) diff --git a/doc/guides/nics/features/xsc.ini b/doc/guides/nics/features/xsc

Re: [PATCH] drivers_net: use 64-bit shift and avoid signed/unsigned mismatch

2025-01-06 Thread Andre Muezerie
On Mon, Jan 06, 2025 at 10:54:43AM +, Bruce Richardson wrote: > On Thu, Dec 26, 2024 at 12:59:30PM -0800, Andre Muezerie wrote: > > This patch avoids warnings like the ones below emitted by MSVC: > > > > 1) > > ../drivers/net/ice/base/ice_flg_rd.c(71): warning C4334: '<<': > > result of 32

RE: [PATCH v2 2/5] lib/eal: add portable version of __builtin_add_overflow

2025-01-06 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Monday, 6 January 2025 12.34 > > On Mon, Jan 06, 2025 at 12:21:39PM +0100, Morten Brørup wrote: > > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > > Sent: Monday, 6 January 2025 12.07 > > > > > > On Fri, Jan 03,

[PATCH v3 1/2] config/arm: strict use of -mcpu for supported CPUs

2025-01-06 Thread Wathsala Vithanage
Arm recommends using -mcpu over -march and march-extensions when the compiler supports the target CPU (neoverse-n1 etc.). Arm build so far has been an amalgam of -mcpu and -march. When march is in use, it has been the case so far to silently fall back to a downgraded march when the compiler does no

Re: [PATCH v2 2/5] lib/eal: add portable version of __builtin_add_overflow

2025-01-06 Thread Bruce Richardson
On Mon, Jan 06, 2025 at 12:21:39PM +0100, Morten Brørup wrote: > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Sent: Monday, 6 January 2025 12.07 > > > > On Fri, Jan 03, 2025 at 12:39:38PM -0800, Andre Muezerie wrote: > > > __builtin_add_overflow is gcc specific. There's a need

[PATCH v2] drivers/net: use 64-bit shift and avoid signed/unsigned mismatch

2025-01-06 Thread Andre Muezerie
This patch avoids warnings like the ones below emitted by MSVC: 1) ../drivers/net/ice/base/ice_flg_rd.c(71): warning C4334: '<<': result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) 2) ../drivers/net/ice/ice_dcf_sched.c(177): warning C4018: '>=': signed

[PATCH v3 2/2] config/arm: sort SOCs alphabetically

2025-01-06 Thread Wathsala Vithanage
Order SOC configurations and names alphabetically. Signed-off-by: Wathsala Vithanage Reviewed-by: Dhruv Tripathi --- config/arm/meson.build | 86 +- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/config/arm/meson.build b/config/arm/meson

[PATCH v14] dts: port over queue start/stop suite

2025-01-06 Thread Dean Marx
This suite tests the ability of the Poll Mode Driver to enable and disable Rx/Tx queues on a port. The verify argument in the deferred start method has been excluded due to a bug in testpmd, which renders checking port queue info for deferred start status impossible within a single method. Signed-

[DPDK/other Bug 1610] dpdk-dumpcap does not support packet capture on vhost-user-client interfaces.

2025-01-06 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1610 Bug ID: 1610 Summary: dpdk-dumpcap does not support packet capture on vhost-user-client interfaces. Product: DPDK Version: 23.11 Hardware: All OS: All S

[PATCH v2] net/af_packet: allow changing fanout mode

2025-01-06 Thread Tudor Cornea
This allows us to control the algorithm used to spread traffic between sockets, adding more fine grained control. If the user does not specify a fanout mode, the PMD driver will default to PACKET_FANOUT_HASH. Signed-off-by: Tudor Cornea --- v2: * Renamed the patch * Replaced packet_fanout argume

Re: [PATCH v4 01/24] net/_common_intel: add pkt reassembly fn for intel drivers

2025-01-06 Thread Bruce Richardson
On Fri, Dec 20, 2024 at 08:15:40AM -0800, Stephen Hemminger wrote: > On Fri, 20 Dec 2024 14:38:58 + > Bruce Richardson wrote: > > > + > > + if (!split_flags[buf_idx]) { > > + /* it's the last packet of the set */ > > + star

[PATCH 2/2] app/test: enable ipsec-related tests

2025-01-06 Thread Andre Muezerie
Removed ifdefs which were bypassing the ipsec tests on Windows. Removed "return" from void function to avoid warning on MSVC. Signed-off-by: Andre Muezerie --- app/test/test_ipsec.c | 17 ++--- app/test/test_ipsec_perf.c| 13 - app/test/test_i

[PATCH 0/2] compile ipsec on Windows

2025-01-06 Thread Andre Muezerie
Removed VLA for compatibility with MSVC (which does not support VLAs). Used alloca when a constant fixed length that can be used instead is not known. Implementation for rte_ipsec_pkt_crypto_group and rte_ipsec_ses_from_crypto was moved to new file lib\ipsec\ipsec_group.c because these functions g

[PATCH 1/2] lib/ipsec: compile ipsec on Windows

2025-01-06 Thread Andre Muezerie
Removed VLA for compatibility with MSVC (which does not support VLAs). Used alloca when a constant fixed length that can be used instead is not known. Implementation for rte_ipsec_pkt_crypto_group and rte_ipsec_ses_from_crypto was moved to new file lib\ipsec\ipsec_group.c because these functions g

[PATCH v3] dts: reform hello world test suite

2025-01-06 Thread Dean Marx
Add a test suite to replace hello_world which simply starts and stops a testpmd session. The user can use this as a confidence check to verify their configuration. Signed-off-by: Dean Marx Reviewed-by: Paul Szczepanek --- dts/tests/TestSuite_hello_world.py | 68 ++ 1

Re: [PATCH] net/af_packet: allow disabling packet fanout

2025-01-06 Thread Tudor Cornea
> This is a great idea. Would introducing a new devarg, (e.g > 'fanout_mode') be the proper way to allow the application to customize > fanout in more detail ? > > --vdev=net_af_packet0,iface=eth1,blocksz=4096,framesz=2048,framecnt=512,qpairs=1,fanout_mode=[fanout_hash|fanout_cpu|fanout_rnd|fanout_

RE: [PATCH v16 1/4] lib: add generic support for reading PMU events

2025-01-06 Thread Tomasz Duszynski
>> Add support for programming PMU counters and reading their values in >> runtime bypassing kernel completely. >> >> This is especially useful in cases where CPU cores are isolated i.e >> run dedicated tasks. In such cases one cannot use standard perf >> utility without sacrificing latency and per

[DPDK/ethdev Bug 1611] net/af_xdp, numa_node and socket_id is assigned incorrectly for numa scenario

2025-01-06 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1611 Bug ID: 1611 Summary: net/af_xdp, numa_node and socket_id is assigned incorrectly for numa scenario Product: DPDK Version: 22.11 Hardware: All OS: All S

Re: [PATCH 1/2] drivers/common: remove unused variables and add MSVC compiler flag

2025-01-06 Thread Bruce Richardson
On Thu, Dec 26, 2024 at 10:41:43AM -0800, Andre Muezerie wrote: > Removed unused variables and added MSVC specific compiler flag to > ignore warnings about unused variables, like is being done for > other compilers. > > Signed-off-by: Andre Muezerie > --- > drivers/common/idpf/base/meson.build

Re: [PATCH] drivers_net: use 64-bit shift and avoid signed/unsigned mismatch

2025-01-06 Thread Bruce Richardson
On Thu, Dec 26, 2024 at 12:59:30PM -0800, Andre Muezerie wrote: > This patch avoids warnings like the ones below emitted by MSVC: > > 1) > ../drivers/net/ice/base/ice_flg_rd.c(71): warning C4334: '<<': > result of 32-bit shift implicitly converted to 64 bits > (was 64-bit shift intended?)

Re: [PATCH v11 0/3] add diagnostics macros to make code portable

2025-01-06 Thread Bruce Richardson
On Fri, Jan 03, 2025 at 01:26:34PM -0800, Andre Muezerie wrote: > On Fri, Jan 03, 2025 at 11:24:02AM -0800, Stephen Hemminger wrote: > > On Fri, 3 Jan 2025 07:36:48 -0800 > > Andre Muezerie wrote: > > > > > From: Andre Muezerie > > > To: andre...@linux.microsoft.com > > > Cc: dev@dpdk.org, ste

Re: [PATCH v2 2/5] lib/eal: add portable version of __builtin_add_overflow

2025-01-06 Thread Bruce Richardson
On Fri, Jan 03, 2025 at 12:39:38PM -0800, Andre Muezerie wrote: > __builtin_add_overflow is gcc specific. There's a need for a portable > version that can also be used with other compilers. > > This patch introduces rte_add_overflow. > > Signed-off-by: Andre Muezerie > --- > lib/eal/include/mes

Re: [PATCH] doc: install guides and api docs to different directories

2025-01-06 Thread Bruce Richardson
On Mon, Dec 23, 2024 at 03:38:40PM +, luca.bocca...@gmail.com wrote: > From: Luca Boccassi > > Otherwise they both get installed to /usr/share/doc/dpdk/html/ and overwrite > each other's files > > Signed-off-by: Luca Boccassi > --- > doc/api/meson.build| 2 +- > doc/guides/meson.build

Re: [PATCH] doc: add install_tag to meson

2025-01-06 Thread Bruce Richardson
On Mon, Dec 23, 2024 at 01:21:13PM +, luca.bocca...@gmail.com wrote: > From: "bl...@debian.org" > > This allows building and installing only the documentation, without > recompiling the whole project, using: > > meson build -Denable_docs=true > meson compile -C build doc > meson install -C b

RE: [PATCH v2 2/5] lib/eal: add portable version of __builtin_add_overflow

2025-01-06 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Monday, 6 January 2025 12.07 > > On Fri, Jan 03, 2025 at 12:39:38PM -0800, Andre Muezerie wrote: > > __builtin_add_overflow is gcc specific. There's a need for a portable > > version that can also be used with other compilers. >