[PATCH 1/2] test/crypto: allow retries with stats test

2024-08-26 Thread Anoob Joseph
Stats need not be reflected instantly after the operation. Relax the test case to have retries to allow slower updates. Signed-off-by: Anoob Joseph --- app/test/test_cryptodev.h| 1 + app/test/test_cryptodev_security_ipsec.c | 11 ++- 2 files changed, 11 insertions(+), 1

[PATCH 2/2] crypto/cnxk: remove delay in stats

2024-08-26 Thread Anoob Joseph
Having 1 ms delay for retrieving stats per session would mean significant delay for a system with large number of sessions. If accurate stats are required, application can call stats again after a delay and get most updated stats. Signed-off-by: Anoob Joseph --- drivers/crypto/cnxk/cn10k_ipsec.c

Re: [PATCH] app/test-pmd: remove unnecessary cast

2024-08-26 Thread Ferruh Yigit
On 8/23/2024 5:26 PM, Stephen Hemminger wrote: > The list of builtin cmdline commands has unnecessary cast which > blocks compiler type checking. > > Signed-off-by: Stephen Hemminger > Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org I think good to backport this, to pre

[PATCH] ip_frag: support IPv6 reassembly with extensions

2024-08-26 Thread vignesh.purushotham.srinivas
From: Vignesh PS Add support to ip_frag library to perform IPv6 reassembly when extension headers are present before the fragment extension in the packet. Signed-off-by: Vignesh PS --- .mailmap | 1 + lib/ip_frag/ip_frag_common.h | 2 + lib/ip_frag/ip_reassembly

[PATCH v2 1/4] power: refactor core power management library

2024-08-26 Thread Sivaprasad Tummala
This patch introduces a comprehensive refactor to the core power management library. The primary focus is on improving modularity and organization by relocating specific driver implementations from the 'lib/power' directory to dedicated directories within 'drivers/power/core/*'. The adjustment of m

[PATCH v2 0/4] power: refactor power management library

2024-08-26 Thread Sivaprasad Tummala
This patchset refactors the power management library, addressing both core and uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/core/*' and 'drivers/power/uncore/*'. This refactor significantly improves code organizati

[PATCH v2 2/4] power: refactor uncore power management library

2024-08-26 Thread Sivaprasad Tummala
This patch refactors the power management library, addressing uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/uncore/*'. The adjustment of meson.build files enables the selective activation of individual drivers. This

[PATCH v2 3/4] test/power: removed function pointer validations

2024-08-26 Thread Sivaprasad Tummala
After refactoring the power library, power management operations are now consistently supported regardless of the operating environment, making function pointer checks unnecessary and thus removed from applications. v2: - removed function pointer validation in l3fwd-power app. Signed-off-by: Siv

[PATCH v2 4/4] power/amd_uncore: uncore power management support for AMD EPYC processors

2024-08-26 Thread Sivaprasad Tummala
This patch introduces driver support for power management of uncore components in AMD EPYC processors. v2: - fixed typo in comments section. - added fabric frequency get support for legacy platforms. Signed-off-by: Sivaprasad Tummala --- drivers/power/amd_uncore/amd_uncore.c | 328 +++

[PATCH v2 0/4] power: refactor power management library

2024-08-26 Thread Sivaprasad Tummala
This patchset refactors the power management library, addressing both core and uncore power management. The primary changes involve the creation of dedicated directories for each driver within 'drivers/power/core/*' and 'drivers/power/uncore/*'. This refactor significantly improves code organizati

Re: [PATCH] net/pcap: set live interface as non-blocking

2024-08-26 Thread Ferruh Yigit
On 8/24/2024 7:07 PM, Stephen Hemminger wrote: > The DPDK PMD's are supposed to be non-blocking and poll for packets. > Configure PCAP to do this on live interface. > > Bugzilla ID: 1526 > Reported-by: Ofer Dagan > Signed-off-by: Stephen Hemminger > Bugzilla ID: 1526 Fixes: 4c173302c307

RE: [RFC PATCH 1/2] power: fix power library with --lcores

2024-08-26 Thread Tummala, Sivaprasad
[AMD Official Use Only - AMD Internal Distribution Only] Hi Stephen, > -Original Message- > From: Stephen Hemminger > Sent: Wednesday, July 24, 2024 8:10 PM > To: Tummala, Sivaprasad > Cc: david.h...@intel.com; anatoly.bura...@intel.com; > tho...@monjalon.net; Yigit, Ferruh ; >

Re: [PATCH v2 1/4] power: refactor core power management library

2024-08-26 Thread Stephen Hemminger
On Mon, 26 Aug 2024 13:06:46 + Sivaprasad Tummala wrote: > +static struct rte_power_core_ops acpi_ops = { > + .name = "acpi", > + .init = power_acpi_cpufreq_init, > + .exit = power_acpi_cpufreq_exit, > + .check_env_support = power_acpi_cpufreq_check_supported, > + .get_ava

Re: [PATCH v3] net/cpfl: fix cpfl parser issue

2024-08-26 Thread Bruce Richardson
On Fri, Aug 23, 2024 at 11:14:50AM +, Praveen Shetty wrote: > CPFL parser was incorrectly parsing the mask value of the > next_proto_id field from recipe.json file as a string > instead of unsigned integer. > > Fixes: 41f20298ee8c ("net/cpfl: parse flow offloading hint from JSON") > Cc: sta...

Re: [PATCH v1] net/ice: fix incorrect reading of PHY timestamp

2024-08-26 Thread Bruce Richardson
On Fri, Aug 23, 2024 at 11:01:33AM +, Soumyadeep Hore wrote: > In E830 adapters, PHY timestamp for Tx packets should be read once > the ready status of PHY timestamp registers is 1. > > Fixes: 881169950d80 ("net/ice/base: implement initial PTP support for E830") > Cc: sta...@dpdk.org > > Sign

Re: [PATCH] ip_frag: support IPv6 reassembly with extensions

2024-08-26 Thread Stephen Hemminger
On Mon, 26 Aug 2024 13:23:28 +0200 wrote: > diff --git a/lib/ip_frag/ip_reassembly.h b/lib/ip_frag/ip_reassembly.h > index 54afed5417..429e74f1b3 100644 > --- a/lib/ip_frag/ip_reassembly.h > +++ b/lib/ip_frag/ip_reassembly.h > @@ -54,6 +54,8 @@ struct __rte_cache_aligned ip_frag_pkt { > uin

Re: [GRO] check whether ip_id continuity needs to be checked when two TCP packets are merged.

2024-08-26 Thread Stephen Hemminger
On Thu, 20 Apr 2023 02:30:41 + "Hu, Jiayu" wrote: > Hi Cheng, > > > -Original Message- > > From: jiangheng (G) > > Sent: Saturday, April 15, 2023 10:46 PM > > To: us...@dpdk.org; Hu, Jiayu ; dev@dpdk.org > > Subject: [GRO] check whether ip_id continuity needs to be checked when > >

Re: [PATCH v1] net/ice: fix incorrect reading of PHY timestamp

2024-08-26 Thread Patrick Robb
Recheck-request: iol-marvell-Functional On Fri, Aug 23, 2024 at 7:56 AM Soumyadeep Hore wrote: > > In E830 adapters, PHY timestamp for Tx packets should be read once > the ready status of PHY timestamp registers is 1. > > Fixes: 881169950d80 ("net/ice/base: implement initial PTP support for E830"

Re: [PATCH v3 00/12] Align ICE shared code with Base driver

2024-08-26 Thread Patrick Robb
Recheck-request: iol-marvell-Functional On Fri, Aug 23, 2024 at 6:51 AM Soumyadeep Hore wrote: > > Updating the latest shared code patches to ICE base driver. > > --- > v3: > - Addressed comments givn by reviewer > --- > v2: > - Addressed comments given by reviewer > - Corrected errors in Camel C

[PATCH v3] bus/fslmc/dpaa2: replace system("echo ...") with file i/o

2024-08-26 Thread Stephen Hemminger
Using system() is a bad idea in driver code because it introduces a number of potential security issues. The codeql analysis tool flags this a potential security issue. Instead just use normal stdio to do the same thing. Compile test only, do not have this hardware and therefore can not test this

Re: [PATCH v3 01/12] dts: fix default device error handling mode

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > The device_error_handling_mode of testpmd port may not be present, e.g. > in VM ports. > > Fixes: 61d5bc9bf974 ("dts: add port info command to testpmd shell") > > Signed-off-by: Juraj Linkeš Reviewed-by: Jeremy Spewock

Re: [PATCH v3 02/12] dts: add the aenum dependency

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > Regular Python enumerations create only one instance for members with > the same value, such as: > class MyEnum(Enum): > foo = 1 > bar = 1 > > MyEnum.foo and MyEnum.bar are aliases that return the same instance. I didn't know this w

Re: [PATCH v3 03/12] dts: add test case decorators

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > class DTSRunner: > @@ -232,9 +231,9 @@ def _get_test_suites_with_cases( > > for test_suite_config in test_suite_configs: > test_suite_class = > self._get_test_suite_class(test_suite_config.test_suite) > -te

Re: [PATCH v3 04/12] dts: add mechanism to skip test cases or suites

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > --- a/dts/framework/test_result.py > +++ b/dts/framework/test_result.py > @@ -75,6 +75,20 @@ def create_config(self) -> TestSuiteConfig: > test_cases=[test_case.__name__ for test_case in self.test_cases], > ) > > +@p

Re: [PATCH v3 05/12] dts: add support for simpler topologies

2024-08-26 Thread Jeremy Spewock
I just had one question below, otherwise: Reviewed-by: Jeremy Spewock On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > diff --git a/dts/framework/testbed_model/topology.py > b/dts/framework/testbed_model/topology.py > new file mode 100644 > index 00..19632ee890 > --- /dev/null >

Re: [PATCH v3 06/12] dst: add basic capability support

2024-08-26 Thread Jeremy Spewock
Just one comment about adding something to a doc-string, otherwise looks good to me: Reviewed-by: Jeremy Spewock On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > diff --git a/dts/framework/test_result.py b/dts/framework/test_result.py > index 306b100bc6..b4b58ef348 100644 > --- a/dts/fra

Re: [PATCH v3 07/12] dts: add testpmd port information caching

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > When using port information multiple times in a testpmd shell instance > lifespan, it's desirable to not get the information each time, so > caching is added. In case the information changes, there's a way to > force the update. > > Signed-o

Re: [PATCH v3 08/12] dts: add NIC capability support

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > @dataclass > class TestPmdPort(TextParser): > """Dataclass representing the result of testpmd's ``show port info`` > command.""" > @@ -962,3 +1043,96 @@ def _close(self) -> None: > self.stop() > self.send_command("qu

Re: [PATCH v3 09/12] dts: add topology capability

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > Add support for marking test cases as requiring a certain topology. The > default topology is a two link topology and the other supported > topologies are one link and no link topologies. > > The TestProtocol of test suites and cases is exte

Re: [PATCH v3 10/12] doc: add DTS capability doc sources

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > Add new files to generate DTS API documentation from. > > Signed-off-by: Juraj Linkeš Reviewed-by: Jeremy Spewock

Re: [PATCH v3 11/12] dts: add Rx offload capabilities

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > diff --git a/dts/framework/remote_session/testpmd_shell.py > b/dts/framework/remote_session/testpmd_shell.py > index 48c31124d1..f83569669e 100644 > --- a/dts/framework/remote_session/testpmd_shell.py > +++ b/dts/framework/remote_session/tes

Re: [PATCH v3 12/12] dts: add NIC capabilities from show port info

2024-08-26 Thread Jeremy Spewock
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > > Add the capabilities advertised by the testpmd command "show port info" > so that test cases may be marked as requiring those capabilities: > RUNTIME_RX_QUEUE_SETUP > RUNTIME_TX_QUEUE_SETUP > RXQ_SHARE > FLOW_RULE_KEEP > FLOW_SHARED_OBJECT_K

Re: [PATCH v3 00/12] dts: add test skipping based on capabilities

2024-08-26 Thread Jeremy Spewock
Hey Juraj, Thanks for the series! This is definitely a large shift in how the framework operates, but I think a lot of these changes are hugely helpful and the code is very well written in general. I left some comments mostly about places where I think some things could be a little more clear, and

Re: [RFC 3/6] ring/soring: introduce Staged Ordered Ring

2024-08-26 Thread Mattias Rönnblom
On 2024-08-15 10:53, Konstantin Ananyev wrote: From: Konstantin Ananyev Staged-Ordered-Ring (SORING) provides a SW abstraction for 'ordered' queues with multiple processing 'stages'. It is based on conventional DPDK rte_ring, re-uses many of its concepts, and even substantial part of its code.

[PATCH v1 0/1] dts: allow for updating MTU with testpmd

2024-08-26 Thread jspewock
From: Jeremy Spewock There are mechanisms to update the MTU of ports in the framework already, but only when those ports are bound to their kernel drivers. This series adds the functionality needed within testpmd to change the MTU of ports on the SUT which are bound to their DPDK driver. Jeremy

[PATCH v1 1/1] dts: add methods for modifying MTU to testpmd shell

2024-08-26 Thread jspewock
From: Jeremy Spewock There are methods within DTS currently that support updating the MTU of ports on a node, but the methods for doing this in a linux session rely on the ip command and the port being bound to the kernel driver. Since test suites are run while bound to the driver for DPDK, there

Re: [PATCH v2 1/2] dts: add csum HW offload to testpmd shell

2024-08-26 Thread Dean Marx
On Fri, Aug 23, 2024 at 10:54 AM Jeremy Spewock wrote: > On Wed, Aug 21, 2024 at 12:25 PM Dean Marx wrote: > > > > add csum_set_hw method to testpmd shell class. Port over > > set_verbose and port start/stop from queue start/stop suite. > > Since we had that discussion in a DTS meeting about the

[PATCH v2 0/1] dts: allow for updating MTU with testpmd

2024-08-26 Thread jspewock
From: Jeremy Spewock v2: * allow for setting the MTU of all ports with testpmd. * update doc-string Jeremy Spewock (1): dts: add methods for modifying MTU to testpmd shell dts/framework/remote_session/testpmd_shell.py | 44 +++ 1 file changed, 44 insertions(+) -- 2.46.0

[PATCH v2 1/1] dts: add methods for modifying MTU to testpmd shell

2024-08-26 Thread jspewock
From: Jeremy Spewock There are methods within DTS currently that support updating the MTU of ports on a node, but the methods for doing this in a linux session rely on the ip command and the port being bound to the kernel driver. Since test suites are run while bound to the driver for DPDK, there

Re: [PATCH v2 2/2] dts: checksum offload test suite

2024-08-26 Thread Dean Marx
> You could probably combine this line with the previous since they are > from the same module. > > > +from scapy.packet import Raw # type: ignore[import-untyped] > > I think you can also import `Packet` from this module if you wanted to > combine another two lines as well. > > Wow I didn't even

[PATCH v3 0/2] dts: port over checksum offload suite

2024-08-26 Thread Dean Marx
Port over checksum hardware offload testing suite from old DTS. The suite verifies the ability of the PMD to recognize whether an incoming packet has valid or invalid L4/IP checksum values. - v1: * In the original test plan, there were two Tx checksum test cases. I removed them due to the

[PATCH v3 1/2] dts: add csum HW offload to testpmd shell

2024-08-26 Thread Dean Marx
add csum_set_hw method to testpmd shell class. Port over set_verbose and port start/stop from queue start/stop suite. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py | 51 +++ 1 file changed, 51 insertions(+) diff --git a/dts/framework/remote_session/t

[PATCH v3 2/2] dts: checksum offload test suite

2024-08-26 Thread Dean Marx
test suite for verifying layer 3/4 checksum offload features on poll mode driver. Depends-on: patch-143033 ("dts: add text parser for testpmd verbose output") Depends-on: patch-142691 ("dts: add send_packets to test suites and rework packet addressing") Depends-on: patch-143005 ("dts: add function

[DPDK/core Bug 1527] Running ring_stress_autotest with > 112 CPUs hangs test

2024-08-26 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1527 Bug ID: 1527 Summary: Running ring_stress_autotest with > 112 CPUs hangs test Product: DPDK Version: 24.07 Hardware: All OS: All Status: UNCONFIRMED

Re: [PATCH v3] net/gve: add support for TSO in DQO RDA

2024-08-26 Thread Rushil Gupta
Acked-by: Rushil Gupta Thanks! On Fri, Aug 9, 2024 at 11:49 AM Tathagat Priyadarshi wrote: > > The patch intends on adding support for TSO in DQO RDA format. > > Signed-off-by: Tathagat Priyadarshi > Signed-off-by: Varun Lakkur Ambaji Rao > --- > drivers/net/gve/gve_tx_dqo.c | 26 ++

NXP roadmap for 24.11

2024-08-26 Thread Gagandeep Singh
Hi, Please find below roadmap of NXP for 24.11 release: bus/fslmc: Upgrade MC firmware to 10.39 for DPAA2 platform. Latest MC version with general bug fixes, TM issue fix for >8 queues, and API enhancements for flow distribution statistics. net/dpaa2: = -

[PATCH] net/octeon_ep: add device removal event callback

2024-08-26 Thread Vamsi Krishna
From: Vamsi Attunuru Patch adds an event callback to catch any device removal event occurred during driver probe. This callback helps in terminating the execution if there is any device removal event during the driver probe. Patch also moves global register configuration into dev_configure() rou