Reminder - CFPs for the DPDK APAC Summit in Bangkok, Thailand due THIS SUNDAY, June 2nd, at 11:59 PM, SE Asia Standard Time !

2024-05-31 Thread Nathan Southern
Good Evening! A reminder that our *Call for Papers for the upcoming Jul. 9-10 DPDK APAC Summit in Bangkok, Thailand* closes *THIS SUNDAY*, June 2nd 11:59 PM, SE Asia Standard Time! If you are interested in speaking at this event in Bangkok,* please* get your submissions in now! All accepted spe

[PATCH v2] dumpcap: add lcores option

2024-05-31 Thread Stephen Hemminger
The dumpcap application is reading from ring and writing to the kernel. By default the EAL init will cause the main thread to bound to the first lcore (cpu 0). Add a command line option to select the lcore to use; or if no lcores are specified then just be a normal process and let the CPU scheduler

Re: Depends-on

2024-05-31 Thread Patrick Robb
Hi all, Found my way to this thread based on the CI testing call yesterday, as I am about to put together the blurb for the dpdk website testing page that documents support (or lack thereof) for depends-on in CI. On Wed, May 29, 2024 at 10:40 AM Morten Brørup wrote: > > From: Aaron Conole [mail

Re: [PATCH v2 4/4] dts: add test case that utilizes offload to pmd_buffer_scatter

2024-05-31 Thread Jeremy Spewock
On Fri, May 31, 2024 at 12:33 PM Luca Vizzarro wrote: > > While testing this patch against the Intel NICs we have, I've detected > that upon port start and stopping two ICMPv6 packets are sent out. This > has caused these packets to appear in the first capture, causing it to > intermittently fail

Re: [PATCH v2 3/4] dts: add methods for modifying MTU to testpmd shell

2024-05-31 Thread Jeremy Spewock
On Fri, May 31, 2024 at 12:34 PM Luca Vizzarro wrote: > > Due to the nature of this patch the console is spammed with a lot of > commands. Would it be better to log these in debug and instead log: >Setting port X to MTU > as INFO? Potentially, but this would require a global change for h

Re: [PATCH v2 1/4] dts: improve starting and stopping interactive shells

2024-05-31 Thread Jeremy Spewock
On Fri, May 31, 2024 at 12:37 PM Luca Vizzarro wrote: > > On 30/05/2024 17:33, jspew...@iol.unh.edu wrote: > > @@ -93,17 +102,39 @@ def __init__( > > def _start_application(self, get_privileged_command: Callable[[str], > > str] | None) -> None: > > """Starts a new interactive appl

Re: [PATCH v2 5/5] dts: add `show port stats` command to TestPmdShell

2024-05-31 Thread Jeremy Spewock
Other than Nick's comment: Reviewed-by: Jeremy Spewock

Re: [PATCH v2 4/5] dts: add `show port info` command to TestPmdShell

2024-05-31 Thread Jeremy Spewock
All looks good to me, with one documentation nit-pick On Thu, May 9, 2024 at 7:26 AM Luca Vizzarro wrote: > > Add a new TestPmdPort data structure to represent the output > returned by `show port info`, which is implemented as part of > TestPmdShell. > > The TestPmdPort data structure and its der

Re: [PATCH v2 3/5] dts: add parsing utility module

2024-05-31 Thread Jeremy Spewock
On Thu, May 9, 2024 at 7:26 AM Luca Vizzarro wrote: > > Adds parsing text into a custom dataclass. It provides a new > `TextParser` dataclass to be inherited. This implements the `parse` > method, which combined with the parser functions, it can automatically > parse the value for each field. > >

Re: [PATCH v2 2/5] dts: skip first line of send command output

2024-05-31 Thread Jeremy Spewock
On Thu, May 9, 2024 at 7:26 AM Luca Vizzarro wrote: > > The first line of the InteractiveShell send_command method is generally > the command input field. This sometimes is unwanted, therefore this > commit enables the possibility of omitting the first line from the > returned output. > > Signed-o

Re: [PATCH v2 1/5] dts: fix InteractiveShell command prompt filtering

2024-05-31 Thread Jeremy Spewock
On Thu, May 9, 2024 at 7:26 AM Luca Vizzarro wrote: > > When sending a command using an instance of InteractiveShell the output > should filter out the trailing shell prompt when returning it. After > every command two shell prompts are summoned. One is consumed as it is > used as a delimiter for

[PATCH] Revert "bus/vdev: fix devargs in secondary process"

2024-05-31 Thread Stephen Hemminger
This reverts commit 628362c94a0b567a39a0177539c12c97d999. That commit broke use of dumpcap with vdev's and probably other uses of secondary processes with vdev as well. Bugzilla ID: 1450 Signed-off-by: Stephen Hemminger --- drivers/bus/vdev/vdev.c | 22 +- 1 file change

[DPDK/core Bug 1450] Regression: vdev device not setup in secondary process

2024-05-31 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1450 Bug ID: 1450 Summary: Regression: vdev device not setup in secondary process Product: DPDK Version: 24.03 Hardware: All OS: Linux Status: UNCONFIRMED Severity: ma

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

2024-05-31 Thread Stephen Hemminger
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've tested this

Re: [PATCH v3 2/3] dts: Add missing docstring from XML-RPC server

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v3 3/3] dts: Improve logging for interactive shells

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v3 1/3] dts: Improve output gathering in interactive shells

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [RFC PATCH v2] dts: skip test cases based on capabilities

2024-05-31 Thread Luca Vizzarro
Hi again Juraj, sorry for yet another comment! On 11/04/2024 09:48, Juraj Linkeš wrote: +def get_capas_rxq( +self, supported_capabilities: MutableSet, unsupported_capabilities: MutableSet +) -> None: +"""Get all rxq capabilities and divide them into supported and unsup

[PATCH] dumpcap: add lcores option

2024-05-31 Thread Stephen Hemminger
The dumpcap application is reading from ring and writing to the kernel. By default the EAL init will cause the main thread to bound to the first lcore (cpu 0). Add a command line option to select the lcore to use; or if no lcores are specified then just be a normal process and let the CPU scheduler

Re: [PATCH v2 2/4] dts: add context manager for interactive shells

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v2 1/4] dts: improve starting and stopping interactive shells

2024-05-31 Thread Luca Vizzarro
On 30/05/2024 17:33, jspew...@iol.unh.edu wrote: @@ -93,17 +102,39 @@ def __init__( def _start_application(self, get_privileged_command: Callable[[str], str] | None) -> None: """Starts a new interactive application based on the path to the app. -This method is often ov

Re: [PATCH v2 3/4] dts: add methods for modifying MTU to testpmd shell

2024-05-31 Thread Luca Vizzarro
Due to the nature of this patch the console is spammed with a lot of commands. Would it be better to log these in debug and instead log: Setting port X to MTU as INFO?

Re: [PATCH v2 4/4] dts: add test case that utilizes offload to pmd_buffer_scatter

2024-05-31 Thread Luca Vizzarro
While testing this patch against the Intel NICs we have, I've detected that upon port start and stopping two ICMPv6 packets are sent out. This has caused these packets to appear in the first capture, causing it to intermittently fail if they were the first packets to arrive or not. Sometimes th

Re: Get involved

2024-05-31 Thread Ferruh Yigit
On 5/28/2024 8:13 PM, Mahmoud Maatouq wrote: > Hello, > First of all, sorry if this is not the right place for this subject. > I'm trying to get involved and contribute to dpdk, I went through the > contribution page in docs but I think it doesn have enough info, I can > see some bugs reported on B

[PATCH v2 16/17] net/ntnic: add link 100G module

2024-05-31 Thread Serhii Iliushyk
Add ntnic 100G link support. Signed-off-by: Serhii Iliushyk --- v2: * Fixed WARNING:REPEATED_WORD --- drivers/net/ntnic/include/nt4ga_link.h| 8 + .../link_mgmt/link_100g/nt4ga_link_100g.c | 840 .../link_mgmt/link_100g/nt4ga_link_100g.h | 11 + .../net/ntnic/

[PATCH v2 17/17] net/ntnic: add NIM module

2024-05-31 Thread Serhii Iliushyk
Includes support for NIM QSFP and QSFP+. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/meson.build | 16 +- drivers/net/ntnic/nim/i2c_nim.c | 1359 + drivers/net/ntnic/nim/i2c_nim.h | 77 + .../net/ntnic/nim/include/qsfp_regi

[PATCH v2 09/17] net/ntnic: add VFIO module

2024-05-31 Thread Serhii Iliushyk
Add ntnic VFIO functionality. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/ntnic_vfio.c | 232 + drivers/net/ntnic/ntnic_vfio.h | 21 +++ 2 files changed, 253 insertions(+) create mode 100644 drivers/net/ntnic/ntnic_vfio.c create mode 100644 drivers/net

[PATCH v2 13/17] net/ntnic: add adapter initialization

2024-05-31 Thread Serhii Iliushyk
Add ntnic HW interfaces (PCIe, I2C) API. Signed-off-by: Serhii Iliushyk --- v2: * Fixed WARNING:TYPO_SPELLING --- drivers/net/ntnic/adapter/nt4ga_pci_ta_tg.c | 550 ++ drivers/net/ntnic/adapter/nt4ga_tfg.c | 69 +++ drivers/net/ntnic/include/nt4ga_tfg.h | 2 +

[PATCH v2 10/17] net/ntnic: add Logs and utilities implementation

2024-05-31 Thread Serhii Iliushyk
Add ntnic logging API and utilities. Signed-off-by: Serhii Iliushyk --- v2: * Fixed unused header * Fixed error on -Wformat-nonliteral --- drivers/net/ntnic/ntlog/include/ntlog.h| 162 + drivers/net/ntnic/ntlog/ntlog.c| 111 ++ drivers/net/ntnic/nt

[PATCH v2 02/17] net/ntnic: add core platform functionality

2024-05-31 Thread Serhii Iliushyk
Add ntnic platform interfaces for FPGA registers Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/nthw/nthw_drv.h | 94 +++ drivers/net/ntnic/nthw/nthw_epp.c | 226 ++ drivers/net/ntnic/nthw/nthw_epp.h | 92 +++ drivers/net/ntnic/nthw/nthw_helper.h | 3

[PATCH v2 15/17] net/ntnic: add link management module

2024-05-31 Thread Serhii Iliushyk
Add ntnic link control. Signed-off-by: Serhii Iliushyk --- v2: * Fixed unused header --- drivers/net/ntnic/link_mgmt/nt4ga_link.c | 263 +++ 1 file changed, 263 insertions(+) create mode 100644 drivers/net/ntnic/link_mgmt/nt4ga_link.c diff --git a/drivers/net/ntnic/link_mgm

[PATCH v2 11/17] net/ntnic: add ethdev and makes PMD available

2024-05-31 Thread Serhii Iliushyk
Add ethdev to ntnic. Signed-off-by: Serhii Iliushyk --- v2: * Fixed error on -Wformat-nonliteral * Fixed WARNING:TYPO_SPELLING * Fixed commented lines in meson file * Fixed unused functions --- .mailmap |1 + MAINTAINERS|6 + doc/guides/n

[PATCH v2 14/17] net/ntnic: add adapter initialization API

2024-05-31 Thread Serhii Iliushyk
Add ntnic adapter initialization API. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/adapter/nt4ga_adapter.c | 496 ++ drivers/net/ntnic/meson.build | 1 + 2 files changed, 497 insertions(+) create mode 100644 drivers/net/ntnic/adapter/nt4ga_adapter.c di

[PATCH v2 06/17] net/ntnic: add interfaces for PMD driver modules

2024-05-31 Thread Serhii Iliushyk
Add ntnic base interfaces for: link, NIM, sensors, statistics. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/include/nt4ga_link.h| 132 + drivers/net/ntnic/include/ntnic_dbs.h | 356 drivers/net/ntnic/include/ntnic_nim.h | 160 ++ .../include/n

[PATCH v2 08/17] net/ntnic: add interfaces for flow API engine

2024-05-31 Thread Serhii Iliushyk
Add ntnic basic flow filter functionality. Signed-off-by: Serhii Iliushyk --- drivers/net/ntnic/include/flow_api.h | 89 ++ drivers/net/ntnic/include/flow_api_actions.h | 13 + drivers/net/ntnic/include/flow_api_engine.h | 46 + drivers/net/ntnic/include/flow_filter.h | 15

[PATCH v2 07/17] net/ntnic: add API for PMD driver modules

2024-05-31 Thread Serhii Iliushyk
Add API for ntnic PMD driver modules, thus allow modules to be enabled/disabled. Signed-off-by: Serhii Iliushyk --- v2: * Fixed WARNING:TYPO_SPELLING --- drivers/net/ntnic/dpdk_mod_reg.c | 64 drivers/net/ntnic/dpdk_mod_reg.h | 167 ++ drivers/net/ntnic/ntnic_mod_reg.c | 382

[PATCH v2 03/17] net/ntnic: add interfaces for platform functionality

2024-05-31 Thread Serhii Iliushyk
Add ntnic structures and prototypes for platform interfaces. Signed-off-by: Serhii Iliushyk --- .../nthw/core/include/nthw_clock_profiles.h | 20 ++ .../net/ntnic/nthw/core/include/nthw_core.h | 32 +++ .../net/ntnic/nthw/core/include/nthw_fpga.h | 54 + .../ntnic/nthw/core/include/

[PATCH v2 04/17] net/ntnic: add FPGA model implementation

2024-05-31 Thread Serhii Iliushyk
Add ntnic query FPGA functionality. Signed-off-by: Serhii Iliushyk --- .../net/ntnic/nthw/model/nthw_fpga_model.c| 1218 + .../net/ntnic/nthw/model/nthw_fpga_model.h| 247 2 files changed, 1465 insertions(+) create mode 100644 drivers/net/ntnic/nthw/model/nthw_fpga

[PATCH v2 05/17] net/ntnic: add NTNIC adapter interfaces

2024-05-31 Thread Serhii Iliushyk
Add ntnic adapter interfaces structures. Signed-off-by: Serhii Iliushyk --- v2: * Fixed unused header. --- .../ntnic/include/clock_profiles_structs.h| 69 +++ .../net/ntnic/include/common_adapter_defs.h | 15 ++ drivers/net/ntnic/include/fpga_model.h| 153 +++ dri

Re: [PATCH v3 6/8] dts: use testpmd params for scatter test suite

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Update the buffer scatter test suite to use TestPmdParameters > instead of the StrParams implementation. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek > --- > d

Re: [PATCH v3 7/8] dts: rework interactive shells

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > The way nodes and interactive shells interact makes it difficult to > develop for static type checking and hinting. The current system relies > on a top-down approach, attempting to

Re: [PATCH v3 8/8] dts: use Unpack for type checking and hinting

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Interactive shells that inherit DPDKShell initialise their params > classes from a kwargs dict. Therefore, static type checking is > disabled. This change uses the functionality of

Re: [PATCH v3 3/8] dts: refactor EalParams

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Move EalParams to its own module to avoid circular dependencies. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek > --- > dts/framework/params/eal.py

Re: [PATCH v3 4/8] dts: remove module-wide imports

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Remove the imports in the testbed_model and remote_session modules init > file, to avoid the initialisation of unneeded modules, thus removing or > limiting the risk of circular dep

Re: [PATCH v3 5/8] dts: add testpmd shell params

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Implement all the testpmd shell parameters into a data structure. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek > --- > dts/framework/params/testpmd.py

Re: [PATCH v3 2/8] dts: use Params for interactive shells

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > Make it so that interactive shells accept an implementation of `Params` > for app arguments. Convert EalParameters to use `Params` instead. > > String command line parameters can st

Re: [PATCH v3 1/8] dts: add params manipulation module

2024-05-31 Thread Nicholas Pratte
Tested-by: Nicholas Pratte Reviewed-by: Nicholas Pratte On Thu, May 30, 2024 at 11:25 AM Luca Vizzarro wrote: > > This commit introduces a new "params" module, which adds a new way > to manage command line parameters. The provided Params dataclass > is able to read the fields of its child class

Re: [PATCH v6 3/3] dts: store stderr in RemoteCommandExecutionError

2024-05-31 Thread Juraj Linkeš
On Fri, May 31, 2024 at 1:22 PM Luca Vizzarro wrote: > > Store the stderr of an executed command in RemoteCommandExecutionError. > Consequently, when the exception is logged the error message includes > the stderr. > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek Reviewed-by: Jur

Re: [PATCH v6 2/3] dts: constrain DPDK source argument

2024-05-31 Thread Juraj Linkeš
On Fri, May 31, 2024 at 1:22 PM Luca Vizzarro wrote: > > DTS needs an input to gather the DPDK source code from. This is then > built on the remote target. This commit makes sure that this input is > more constrained, separating the Git revision ID – used to create a > tarball using Git – and prov

Re: [PATCH v6 1/3] dts: rework arguments framework

2024-05-31 Thread Juraj Linkeš
On Fri, May 31, 2024 at 1:22 PM Luca Vizzarro wrote: > > The existing argument handling in the code relies on basic argparse > functionality and a custom argparse action to integrate environment > variables. This commit improves the current handling by augmenting > argparse. > > This rework implem

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

2024-05-31 Thread Lincoln Lavoie
Hi Mattia, The code is being used, and there are some patches in flight, but are currently coming from Open Air Interface folks. There's a lot of documentation here: https://gitlab.eurecom.fr/oai/openairinterface5g/-/blob/develop/doc/ORAN_FHI7.2_Tutorial.md?ref_type=heads We are actually running

Re: [PATCH v8 2/2] dts: Change hugepage 'amount' to a different term

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

Re: [PATCH v8 1/2] dts: Change hugepage runtime config to 2MB Exclusively

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

[PATCH v6 3/3] dts: store stderr in RemoteCommandExecutionError

2024-05-31 Thread Luca Vizzarro
Store the stderr of an executed command in RemoteCommandExecutionError. Consequently, when the exception is logged the error message includes the stderr. Signed-off-by: Luca Vizzarro Reviewed-by: Paul Szczepanek --- dts/framework/exception.py | 13 ++--- dts/framewor

[PATCH v6 2/3] dts: constrain DPDK source argument

2024-05-31 Thread Luca Vizzarro
DTS needs an input to gather the DPDK source code from. This is then built on the remote target. This commit makes sure that this input is more constrained, separating the Git revision ID – used to create a tarball using Git – and providing tarballed source code directly, while retaining mutual exc

[PATCH v6 0/3] error and usage improvements

2024-05-31 Thread Luca Vizzarro
v6: - made members of settings.py private - fixed find_action bug - exchanged the env var HOF for a regular function - minor refactoring v5: - re-sent correct patches v4: - fix spelling typo v3: - amended arguments rework so that it retains the original functional style - re-implemetend functiona

[PATCH v6 1/3] dts: rework arguments framework

2024-05-31 Thread Luca Vizzarro
The existing argument handling in the code relies on basic argparse functionality and a custom argparse action to integrate environment variables. This commit improves the current handling by augmenting argparse. This rework implements the following improvements: - There are duplicate expressions

Re: [PATCH v4 3/3] dts: add API doc generation

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro Tested-by: Luca Vizzarro

Re: [PATCH v4 2/3] dts: add API doc sources

2024-05-31 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro Tested-by: Luca Vizzarro

Re: [PATCH v4 1/3] dts: add doc generation dependencies

2024-05-31 Thread Luca Vizzarro
All looks good to me. Reviewed-by: Luca Vizzarro Tested-by: Luca Vizzarro

RE: [PATCH v13 2/6] mempool: add functions to get extra mempool info

2024-05-31 Thread Morten Brørup
> From: Paul Szczepanek [mailto:paul.szczepa...@arm.com] > Sent: Thursday, 30 May 2024 11.41 > > Add two functions: > - rte_mempool_get_mem_range - get virtual memory range > of the objects in the mempool, > - rte_mempool_get_obj_alignment - get alignment of > objects in the mempool. > > Add two

Re: [PATCH v3 2/2] dts: clean up config types

2024-05-31 Thread Juraj Linkeš
On Thu, May 30, 2024 at 5:20 PM Luca Vizzarro wrote: > > Clean up types used with the configuration classes, and use Self from > the newly added typing_extensions module. > > Methods that instantiate their own class should be @classmethod instead > of @staticmethod. > > Bugzilla ID: 1433 > > Signe

Re: [PATCH v3 1/2] dts: update mypy static checker

2024-05-31 Thread Juraj Linkeš
On Thu, May 30, 2024 at 5:20 PM Luca Vizzarro wrote: > > Update the mypy static checker to the latest version and fix all the > reported errors. > > Bump up supported Poetry shell version. > > Bugzilla ID: 1433 > > Signed-off-by: Luca Vizzarro > Reviewed-by: Paul Szczepanek Reviewed-by: Juraj L

Re: [PATCH v5 1/3] dts: rework arguments framework

2024-05-31 Thread Juraj Linkeš
On Thu, May 30, 2024 at 8:43 PM Luca Vizzarro wrote: > > On 30/05/2024 16:30, Juraj Linkeš wrote: > > There is a difference in behavior when I pass no arguments and then I > > either have or don't have an env var set: > > ./main.py > > usage: main.py [-h] [--config-file FILE_PATH] ... > > ... > >

Re: [PATCH 2/2] eal/riscv: add support for zicbop extension

2024-05-31 Thread Daniel Gregory
On Thu, May 30, 2024 at 06:19:48PM +0100, Daniel Gregory wrote: > + * The RTE_RISCV_ZICBOP option controls whether we emit them manually for > older > + * compilers that may not have the support to assemble them. > + */ > static inline void rte_prefetch0(const volatile void *p) > { > - RTE_S

[DPDK/ethdev Bug 1449] mlx5_net: Cannot change the Tx SQ state to RESET Remote I/O error

2024-05-31 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1449 Bug ID: 1449 Summary: mlx5_net: Cannot change the Tx SQ state to RESET Remote I/O error Product: DPDK Version: 23.11 Hardware: All OS: All Status: UNCON