RE: [PATCH v2 4/7] app/testpmd: add insertion by index with pattern option

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:05 PM > > Allow to specify both the rule index and the pattern > in the flow rule creation command line parameters. > Both are needed for rte_flow_async_create_by_index_with_pattern(). > > flow queue

RE: [PATCH v2 6/7] app/testpmd: add jump to table index action

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:06 PM > > Add a new command line options to create the > RTE_FLOW_ACTION_TYPE_JUMP_TO_TABLE_INDEX action > from the testpmd command line. > > flow queue 0 create 0 template_table 0 pattern_template 0

RE: [PATCH v2 5/7] ethdev: add jump to table index action

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:06 PM > > Introduce the RTE_FLOW_ACTION_TYPE_JUMP_TO_TABLE_INDEX action. > It redirects packets to a particular index in a flow table. > > Signed-off-by: Alexander Kozyrev > --- Acked-by: Ori Kam

RE: [PATCH v2 7/7] ethdev: add trace points to flow insertion by index

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:06 PM > > Adds trace points for rte_flow rule insertion by index functions: > rte_flow_async_create_by_index and > rte_flow_async_create_by_index_with_pattern. > > Signed-off-by: Alexander Kozyrev >

RE: [PATCH v2 3/7] ethdev: add flow rule insertion by index with pattern

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:05 PM > > Add a new API to enqueue flow rule creation by index with pattern. > The new template table rules insertion type, > index-based insertion with pattern, requires a new flow rule creation > fu

Re:[PATCH] raw/zxdh: introduce zxdh raw device driver

2024-09-26 Thread Yong Zhang
Hi thomas, I hope this message finds you well. I initially submitted the zxdh rawdev driver on June 12th, and the final version was submitted on August 12th. Since then, I have not received any feedback from the community. I would appreciate it if you could provide any suggestions for modific

RE: [PATCH v2 2/7] app/testpmd: add index with pattern insertion type

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:05 PM > > Provide index_with_pattern command line option > for the template table insertion type. > > flow template_table 0 create table_id 2 group 13 priority 0 > insertion_type index_with_pattern

Re: [PATCH v6 1/1] dts: add text parser for testpmd verbose output

2024-09-26 Thread Juraj Linkeš
diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py @@ -581,6 +581,506 @@ class TestPmdPortStats(TextParser): tx_bps: int = field(metadata=TextParser.find_int(r"Tx-bps:\s+(\d+)")) +class PacketOffloadFlag(Flag): +#: R

Re: [PATCH v2 1/1] dts: add send_packets to test suites and rework packet addressing

2024-09-26 Thread Juraj Linkeš
+if num_ip_layers > 0: +ip_src_is_unset = "src" not in l3_to_use.fields +ip_dst_is_unset = "dst" not in l3_to_use.fields +else: +ip_src_is_unset = None +ip_dst_is_unset = None -# The packet is r

RE: [PATCH v2 1/7] ethdev: add insertion by index with pattern

2024-09-26 Thread Ori Kam
> -Original Message- > From: Alexander Kozyrev > Sent: Wednesday, September 25, 2024 9:05 PM > > There are two flow table rules insertion type today: > pattern-based insertion when packets match on the pattern and > index-based insertion when packets always hit at the index. > We need a

Re: [PATCH v4 1/1] dts: Remove XML-RPC server for Scapy TG and instead use PythonShell

2024-09-26 Thread Juraj Linkeš
The subject line should start with a lowercase character and it's also over the character limit. This fits and basically says the same: use PythonShell for Scapy instead of XML-RPC Scapy TG didn't fit but I think the above still works. diff --git a/dts/framework/remote_session/single_active_in

Re: [PATCH v1] dts: add send_packets to test_suite

2024-09-26 Thread Juraj Linkeš
On 25. 9. 2024 20:36, jspew...@iol.unh.edu wrote: From: Jeremy Spewock Currently the only methods provided in the test suite class for sending packets capture the resulting received traffic after sending. There is, in some cases, a need to send multiple packets at once while not really needi

RE: [EXTERNAL] Re: [PATCH v2 1/3] eventdev: introduce event pre-scheduling

2024-09-26 Thread Pavan Nikhilesh Bhagavatula
> > -Original Message- > > From: Pavan Nikhilesh Bhagavatula > > Sent: Wednesday, September 25, 2024 6:30 AM > > To: Mattias Rönnblom ; Pathak, Pravin > > ; Jerin Jacob ; Shijith > Thotton > > ; Sevincer, Abdullah > ; > > hemant.agra...@nxp.com; sachin.sax...@oss.nxp.com; Van Haaren, Harry

Re: [PATCH v2 1/1] dts: add send_packets to test suites and rework packet addressing

2024-09-26 Thread Juraj Linkeš
diff --git a/dts/framework/test_suite.py b/dts/framework/test_suite.py @@ -243,41 +255,74 @@ def get_expected_packet(self, packet: Packet) -> Packet: Returns: `packet` with injected L2/L3 addresses. """ -return self._adjust_addresses(packet, expec

[PATCH v2] net/nfp: implement the device packet type set interface

2024-09-26 Thread Chaoyong He
From: Long Wu Using the Rx packet offload flag rather than the device capability to control the packet type offload configuration. Also implement the device packet type set interface to let application can set the Rx packet offload flag. Signed-off-by: Long Wu Reviewed-by: Chaoyong He --- V2:

[PATCH v2 14/18] net/cnxk: support Rx burst vector for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add Rx vector support for cn20k Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_rx.h | 463 +++- 1 file changed, 459 insertions(+), 4 deletions(-) diff --git a/

[PATCH v2 03/18] common/cnxk: use new NPA aq enq mbox for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Ashwin Sekhar T K A new mbox npa_cn20k_aq_enq_req has been added for cn20k. Use this mbox for NPA configurations. Note that the size of these new mbox request and response remains same when compared to the older mboxes. Also the new contexts npa_cn20k_aura_s/ npa_cn20k_pool_s which has bee

[PATCH v2 10/18] net/cnxk: add cn20k base control path support

2024-09-26 Thread Nithin Dabilpuram
Add cn20k base control path support for ethdev. Signed-off-by: Nithin Dabilpuram Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla Signed-off-by: Satha Rao Signed-off-by: Rahul Bhansali --- doc/guides/rel_notes/release_24_11.rst | 4 + drivers/net/cnxk/cn20k_ethdev.c

[PATCH v7 0/1] dts: testpmd verbose parser

2024-09-26 Thread jspewock
From: Jeremy Spewock v7: * update from string methods in both PacketOffloadFlag and RtePType to match the ones in the rss offload flag * update the doc-string in RtePType to have proper references to the DPDK libraries where the information is taken from. Jeremy Spewock (1): dts: add t

[PATCH v2 02/18] common/cnxk: accommodate change in aura field width

2024-09-26 Thread Nithin Dabilpuram
From: Ashwin Sekhar T K Aura field width has changed from 20 bits to 17 bits in cn20k. Adjust the bit fields accordingly for register reads/writes. Signed-off-by: Ashwin Sekhar T K --- drivers/common/cnxk/roc_npa.h | 24 1 file changed, 16 insertions(+), 8 deletions(-)

[PATCH v2 06/18] common/cnxk: support NIX queue config for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Satha Rao Add support to setup NIX RQ, SQ, CQ for cn20k. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_fc.c | 52 ++- drivers/common/cnxk/roc_nix_inl.c| 2 + drivers/common/cnxk/roc_nix_priv.h | 1 + drivers/common/cnxk/roc_nix_queue.c | 532 +++

[PATCH v2 09/18] common/cnxk: add RSS support for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Satha Rao Add RSS configuration support for cn20k. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_rss.c | 74 +-- 1 file changed, 70 insertions(+), 4 deletions(-) diff --git a/drivers/common/cnxk/roc_nix_rss.c b/drivers/common/cnxk/roc_nix_rss.c in

[PATCH v2 12/18] net/cnxk: support Tx function select for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add support to select Tx function based on offload flags for cn20k. Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn20k_ethdev.c | 80 ++ drivers/net/cnxk/cn20k_ethdev.h | 1 + drivers/net/cnxk/cn20k_tx.h | 237 ++ driv

[PATCH v2 11/18] net/cnxk: support Rx function select for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add support to select Rx function based on offload flags for cn20k. Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn20k_ethdev.c | 59 - drivers/net/cnxk/cn20k_ethdev.h | 3 + drivers/net/cnxk/cn20k_rx.h | 226 ++ drive

[PATCH v2 13/18] net/cnxk: support Rx burst scalar for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add Rx burst support scalar version for cn20k. Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_ethdev.c| 126 + drivers/net/cnxk/cn20k_rx.h| 394

[PATCH v2 16/18] net/cnxk: support Tx multi-seg in cn20k

2024-09-26 Thread Nithin Dabilpuram
Add Tx multi-seg support in scalar for cn20k. Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_tx.h | 352 +++- 1 file changed, 347 insertions(+), 5 deletions(-)

[PATCH v2 17/18] net/cnxk: support Tx burst vector for cn20k

2024-09-26 Thread Nithin Dabilpuram
Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_tx.h | 1445 ++- 1 file changed, 1441 insertions(+), 4 deletions(-) diff --git a/drivers/net/cnxk/cn20k_tx.h b/dr

[PATCH v2 15/18] net/cnxk: support Tx burst scalar for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add scalar Tx support for cn20k. Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_ethdev.c | 127 drivers/net/cnxk/cn20k_tx.h | 987 +++- 2 files changed, 11

[PATCH v2 18/18] net/cnxk: support Tx multi-seg in vector for cn20k

2024-09-26 Thread Nithin Dabilpuram
Add Tx multi-seg support for cn20k. Signed-off-by: Nithin Dabilpuram Signed-off-by: Jerin Jacob Signed-off-by: Rahul Bhansali Signed-off-by: Pavan Nikhilesh --- drivers/net/cnxk/cn20k_tx.h | 485 ++-- 1 file changed, 463 insertions(+), 22 deletions(-) diff --g

[PATCH v2 00/18] add Marvell cn20k SOC support for mempool and net

2024-09-26 Thread Nithin Dabilpuram
This series adds support for Marvell cn20k SOC for mempool and net PMD's. This series also adds few net/cnxk PMD updates to expose IPsec features supported by HW that are very custom in nature and some enhancements for cn10k. Ashwin Sekhar T K (4): mempool/cnxk: add cn20k PCI device ids comm

Re: [PATCH v1] dts: add send_packets to test_suite

2024-09-26 Thread Patrick Robb
Recheck-request: iol-mellanox-Performance When I enabled this test on Monday I accidentally set the delta threshold to 1.5% instead of 5%. So the accepted results window was too small and led to this false positive test fail.

[PATCH v7 1/1] dts: add text parser for testpmd verbose output

2024-09-26 Thread jspewock
From: Jeremy Spewock Multiple test suites from the old DTS framework rely on being able to consume and interpret the verbose output of testpmd. The new framework doesn't have an elegant way for handling the verbose output, but test suites are starting to be written that rely on it. This patch cre

[PATCH v2 04/18] mempool/cnxk: initialize mempool ops for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Ashwin Sekhar T K Initialize mempool ops for cn20k. Signed-off-by: Ashwin Sekhar T K --- drivers/mempool/cnxk/cnxk_mempool_ops.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mempool/cnxk/cnxk_mempool_ops.c b/drivers/mempool/cnxk/cnxk_mempool_ops.c index a1

Re: [PATCH v8 8/8] net/hns3: support filter registers by module names

2024-09-26 Thread Jie Hai
Hi, fengchengwen, Thanks for your review. On 2024/9/26 9:46, fengchengwen wrote: On 2024/9/25 14:40, Jie Hai wrote: This patch support dumping registers which module name is the `filter` string. The module names are in lower case and so is the `filter`. Available module names are cmdq, common_

[PATCH v9 0/8] support dump reigster names and filter

2024-09-26 Thread Jie Hai
The registers can be dumped through the API rte_eth_dev_get_reg_info. However, only register values are exported, which is inconvenient for users to interpret. Therefore, an extension of the structure "rte_dev_reg_info" and a new API rte_eth_dev_get_reg_info_ext is added to support the capability o

[PATCH v9 1/8] ethdev: support report register names and filter

2024-09-26 Thread Jie Hai
This patch adds "filter" and "names" fields to "rte_dev_reg_info" structure. Names of registers in data fields can be reported and the registers can be filtered by their module names. The new API rte_eth_dev_get_reg_info_ext() is added to support reporting names and filtering by modules. And the o

[PATCH v9 5/8] net/hns3: remove separators between register module

2024-09-26 Thread Jie Hai
Since the driver is going to support reporting names of all registers, remove the counter and insert of separators between different register modules. Signed-off-by: Jie Hai Reviewed-by: Huisong Li Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_regs.c | 68 ++

Re: [PATCH v1] dts: add send_packets to test_suite

2024-09-26 Thread Patrick Robb
Reviewed-by: Patrick Robb

Re: [PATCH v6 1/1] dts: add text parser for testpmd verbose output

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 4:25 AM Juraj Linkeš wrote: > > > > diff --git a/dts/framework/remote_session/testpmd_shell.py > > b/dts/framework/remote_session/testpmd_shell.py > > > @@ -581,6 +581,506 @@ class TestPmdPortStats(TextParser): > > tx_bps: int = field(metadata=TextParser.find_int(r"T

Re: [PATCH v4 1/1] dts: Remove XML-RPC server for Scapy TG and instead use PythonShell

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 5:12 AM Juraj Linkeš wrote: > > The subject line should start with a lowercase character and it's also > over the character limit. This fits and basically says the same: > use PythonShell for Scapy instead of XML-RPC > > Scapy TG didn't fit but I think the above still works

Re: [PATCH v4 1/1] dts: Remove XML-RPC server for Scapy TG and instead use PythonShell

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 5:12 AM Juraj Linkeš wrote: > > The subject line should start with a lowercase character and it's also > over the character limit. This fits and basically says the same: > use PythonShell for Scapy instead of XML-RPC > > Scapy TG didn't fit but I think the above still works

Re: [PATCH dpdk] mbuf: fix strict aliasing error in allocator

2024-09-26 Thread Patrick Robb
Recheck-request: iol-mellanox-Performance When I enabled this test on Monday I accidentally set the delta threshold to 1.5% instead of 5%. So the accepted results window was too small and led to this false positive test fail.

[PATCH v5 0/1] dts: replace XML-RPC server

2024-09-26 Thread jspewock
From: Jeremy Spewock v5: * renamed commit subject to match contribution guidelines * reformatted doc-strings to add more context and clarity * removed unnecessary hyphens Jeremy Spewock (1): dts: use PythonShell for Scapy instead of XML-RPC .../single_active_interactive_shell.py|

Re: [PATCH v3 1/1] dts: rework packet addressing

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 8:31 AM Juraj Linkeš wrote: > > > > diff --git a/dts/framework/test_suite.py b/dts/framework/test_suite.py > > > +def _adjust_addresses(self, packets: list[Packet], expected: bool = > > False) -> list[Packet]: > > +# The packet is routed from TG egress to T

Re: [PATCH v3 1/1] dts: rework packet addressing

2024-09-26 Thread Juraj Linkeš
diff --git a/dts/framework/test_suite.py b/dts/framework/test_suite.py +def _adjust_addresses(self, packets: list[Packet], expected: bool = False) -> list[Packet]: +# The packet is routed from TG egress to TG ingress regardless of whether it is +# expected or no

[PATCH v9 7/8] net/hns3: support report names of registers

2024-09-26 Thread Jie Hai
This patch adds names for register lists, and support report names of registers. Some registers has different names on different platform, use names of HIP08 as default names. Signed-off-by: Jie Hai Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_regs.c | 1088 +---

[PATCH v9 2/8] ethdev: add telemetry cmd for registers

2024-09-26 Thread Jie Hai
This patch adds a telemetry command for registers dump, and supports obtaining the registers of a specified module. In one way, the number of registers that can be exported is limited by the number of elements carried by dict and container. In another way, the length of the string exported by tele

[PATCH v9 3/8] net/hns3: remove some basic address dump

2024-09-26 Thread Jie Hai
For security reasons, some address registers are not suitable to be exposed, remove them. Cc: sta...@dpdk.org Signed-off-by: Jie Hai Acked-by: Huisong Li Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_regs.c | 12 ++-- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/d

[PATCH v9 4/8] net/hns3: fix dump counter of registers

2024-09-26 Thread Jie Hai
Since the driver dumps the queue interrupt registers according to the intr_tqps_num, the counter should be the same. Fixes: acb3260fac5c ("net/hns3: fix dump register out of range") Fixes: 936eda25e8da ("net/hns3: support dump register") Cc: sta...@dpdk.org Signed-off-by: Jie Hai Acked-by: Huiso

[PATCH v9 6/8] net/hns3: refactor register dump

2024-09-26 Thread Jie Hai
This patch refactors codes dumping registers from firmware. Signed-off-by: Jie Hai Acked-by: Chengwen Feng --- drivers/net/hns3/hns3_regs.c | 203 --- 1 file changed, 115 insertions(+), 88 deletions(-) diff --git a/drivers/net/hns3/hns3_regs.c b/drivers/net/hns3

[PATCH v2] app/dma-perf: per device config support

2024-09-26 Thread Amit Prakash Shukla
Add support to configure device specific config parameters for a testcase. Example: lcore_dma0=lcore=11,dev=:00:04.1,dir=mem2dev,raddr=0x3, coreid=1,pfid=2,vfid=3 lcore_dma1=lcore=12,dev=:00:04.2,dir=dev2mem,raddr=0x2, coreid=3,pfid=2,vfid=1 Signed-off-by: Amit Prakash Shu

[PATCH v9 8/8] net/hns3: support filter registers by module names

2024-09-26 Thread Jie Hai
This patch support dumping registers which module name is the `filter` string. The module names are in lower case and so is the `filter`. Available module names are cmdq, common_pf, common_vf, ring, tqp_intr, 32_bit_dfx, 64_bit_dfx, bios, igu_egu, ssu, ppp, rpu, ncsi, rtc, rcb, etc. Signed-off-by:

[PATCH v2 05/18] common/cnxk: add cn20k NIX register definitions

2024-09-26 Thread Nithin Dabilpuram
From: Satha Rao Add cn20k NIX register definitions. Signed-off-by: Satha Rao Signed-off-by: Nithin Dabilpuram --- drivers/common/cnxk/hw/nix.h | 524 + drivers/common/cnxk/hw/rvu.h | 7 +- drivers/common/cnxk/roc_mbox.h | 52 drivers/common/cnxk/roc

[PATCH v4 1/1] dts: rework packet addressing

2024-09-26 Thread jspewock
From: Jeremy Spewock This patch updates the _adjust_addresses method of test suites so that addresses of packets are only modified if the developer did not configure them beforehand. This allows for developers to have more control over the content of their packets when sending them through the fr

[PATCH v4 0/1] dts: adjust packet addressing

2024-09-26 Thread jspewock
From: Jeremy Spewock v4: * changed _adjust_addresses so that it doesn't use unneeded variables * modify doc-strings Jeremy Spewock (1): dts: rework packet addressing dts/framework/test_suite.py | 71 + 1 file changed, 48 insertions(+), 23 deletions(-) -

Re: [PATCH v1] dts: add send_packets to test_suite

2024-09-26 Thread Jeremy Spewock
On Thu, Sep 26, 2024 at 5:56 AM Juraj Linkeš wrote: > > > > On 25. 9. 2024 20:36, jspew...@iol.unh.edu wrote: > > From: Jeremy Spewock > > > > Currently the only methods provided in the test suite class for sending > > packets capture the resulting received traffic after sending. There is, > > in

[PATCH v5 1/2] dts: rework packet addressing

2024-09-26 Thread jspewock
From: Jeremy Spewock This patch updates the _adjust_addresses method of test suites so that addresses of packets are only modified if the developer did not configure them beforehand. This allows for developers to have more control over the content of their packets when sending them through the fr

[PATCH v5 1/1] dts: use PythonShell for Scapy instead of XML-RPC

2024-09-26 Thread jspewock
From: Jeremy Spewock Previously all scapy commands were handled using an XML-RPC server that ran on the TGNode. This unnecessarily enforces a minimum Python version of 3.10 on the server that is being used as a traffic generator and complicates the implementation of scapy methods. This patch remo

[PATCH v5 0/2] dts: adjust packet addressing and add send_packets to test_suite

2024-09-26 Thread jspewock
From: Jeremy Spewock v5: * add send_packets patch back into this series but as its own patch Jeremy Spewock (2): dts: rework packet addressing dts: add send_packets to test_suite dts/framework/test_suite.py| 83 +++--- dts/framework/testbed_model/tg_node.py

[RFC PATCH v9] mempool: fix mempool cache size

2024-09-26 Thread Morten Brørup
This patch refactors the mempool cache to fix two bugs: 1. When a mempool is created with a cache size of N objects, the cache was actually created with a size of 1.5 * N objects. 2. The mempool cache field names did not reflect their purpose; the "flushthresh" field held the size, and the "size" f

[PATCH v5 2/2] dts: add send_packets to test_suite

2024-09-26 Thread jspewock
From: Jeremy Spewock Currently the only methods provided in the test suite class for sending packets capture the resulting received traffic after sending. There is, in some cases, a need to send multiple packets at once while not really needing to capture any of said received traffic. It is favor

[PATCH v2 01/18] mempool/cnxk: add cn20k PCI device ids

2024-09-26 Thread Nithin Dabilpuram
From: Ashwin Sekhar T K Add cn20k PCI device ids. Signed-off-by: Ashwin Sekhar T K --- doc/guides/rel_notes/release_24_11.rst | 4 drivers/mempool/cnxk/cnxk_mempool.c| 2 ++ 2 files changed, 6 insertions(+) diff --git a/doc/guides/rel_notes/release_24_11.rst b/doc/guides/rel_notes/r

[PATCH v3 2/2] dts: add pf smoke testing suite

2024-09-26 Thread jspewock
From: Jeremy Spewock This patch adds a smoke testing suite for Physical Function features. The goal of this suite is to test some of the most basic features of DPDK on a physical function and bail out early if any of these features aren't supported as expected. Unlike DTS smoke tests, these ones

[PATCH v3 1/2] dts: add ability to modify number of queues on a port to testpmd

2024-09-26 Thread jspewock
From: Jeremy Spewock The ability to change the configuration of a port at runtime is a crucial aspect of DPDK. This patch adds both the steps required to modify the number of queues on a port at runtime and also the verification steps to ensure that the command behaved as expected. Signed-off-by

[PATCH v3 0/2] dts: pf_smoke port

2024-09-26 Thread jspewock
From: Jeremy Spewock v3: * rebase on next-dts * update dependencies Jeremy Spewock (2): dts: add ability to modify number of queues on a port to testpmd dts: add pf smoke testing suite dts/framework/config/conf_yaml_schema.json| 3 +- dts/framework/remote_session/testpmd_shell.py |

[PATCH v2 07/18] common/cnxk: support bandwidth profile for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Satha Rao Add support to setup bandwidth profile config for cn20k for Rx policier. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_bpf.c | 528 ++-- drivers/common/cnxk/roc_nix_queue.c | 136 --- 2 files changed, 425 insertions(+), 239 deletions(-)

[PATCH v2 08/18] common/cnxk: support NIX debug for cn20k

2024-09-26 Thread Nithin Dabilpuram
From: Satha Rao Add support to dump cn20k queue structs and also provide the same in telemetry data. Signed-off-by: Satha Rao --- drivers/common/cnxk/cnxk_telemetry_nix.c | 260 ++- drivers/common/cnxk/roc_nix_debug.c | 234 +++- drivers/common/cnxk/roc

[PATCH v2 3/3] dts: add vf_smoke tests suite

2024-09-26 Thread jspewock
From: Jeremy Spewock VFs should be tested against the same criteria as PFs, therefore the smoke testing suite for VFs inherits the same test cases and testing coverage from the PF smoke testing suite. The primary difference between the two suites is that VF smoke initially creates virtual functio

[PATCH v2 2/3] dts: parameterize ports used in pf_smoke suite

2024-09-26 Thread jspewock
From: Jeremy Spewock Currently the pf_smoke testing suite only uses the default ports for sending and receiving packets. When looking at that suite in isolation, this is fine since its primary goal is to test the physical functions in the test run (which the defaults should represent). However, s

[PATCH v2 1/3] dts: allow specifying ingress port in send_packets

2024-09-26 Thread jspewock
From: Jeremy Spewock In order to use VFs in the framework, methods for sending packets had to be modified so that they support choosing which ports to use when sending and receiving. This patch creates the same support for the send_packets method so that it can be used with VFs. Signed-off-by: J

[PATCH v2 0/3] dts: port vf_smoke to new DTS

2024-09-26 Thread jspewock
From: Jeremy Spewock v2: * rebase on next-dts * update dependencies Depends-on: series-33149 ("dts: pf_smoke port") Depends-on: series-33109 ("dts: add VFs to the framework") Jeremy Spewock (3): dts: allow specifying ingress port in send_packets dts: parameterize ports used in pf_smoke su

[RFC PATCH v10] mempool: fix mempool cache size

2024-09-26 Thread Morten Brørup
This patch refactors the mempool cache to fix two bugs: 1. When a mempool is created with a cache size of N objects, the cache was actually created with a size of 1.5 * N objects. 2. The mempool cache field names did not reflect their purpose; the "flushthresh" field held the size, and the "size" f

[PATCH v4 1/2] bbdev: add new function to dump debug information

2024-09-26 Thread Nicolas Chautru
This provides a new API to dump more debug information related to the status on a given bbdev queue. Some of this information is visible at bbdev level. This also provides a new option dev op, to print more information at the lower PMD level. This helps user to troubleshoot issues related to previo

Re: [PATCH v9 8/8] net/hns3: support filter registers by module names

2024-09-26 Thread fengchengwen
Acked-by: Chengwen Feng On 2024/9/26 20:42, Jie Hai wrote: > This patch support dumping registers which module name is the > `filter` string. The module names are in lower case and so is > the `filter`. Available module names are cmdq, common_pf, > common_vf, ring, tqp_intr, 32_bit_dfx, 64_bit_df

Re: [PATCH v1] ethdev: fix int overflow in descriptor count logic

2024-09-26 Thread Ferruh Yigit
On 9/26/2024 3:03 PM, Meade, Niall wrote: >> From: Ferruh Yigit >> Sent: Thursday, September 26, 2024 12:16 AM >> To: Meade, Niall ; Thomas Monjalon >> ; Andrew Rybchenko ; >> Roman Zhukov >> Cc: dev@dpdk.org >> Subject: Re: [PATCH v1] ethdev: fix int overflow in descriptor count logic > >>>

Re: [PATCH v4] doc: add new driver guidelines

2024-09-26 Thread Ferruh Yigit
On 9/16/2024 5:28 PM, Stephen Hemminger wrote: > From: Nandini Persad > > This document was created to assist contributors in creating DPDK drivers > and provides suggestions and guidelines on how to upstream effectively. > > Co-authored-by: Ferruh Yigit > Co-authored-by: Thomas Monjalon > Sig

[PATCH v4 2/2] baseband/acc: improvement to logging mechanism

2024-09-26 Thread Nicolas Chautru
Support the new dev op to dump operations information related to a given queue tracked internally in PMD. Signed-off-by: Nicolas Chautru Acked-by: Hemant Agrawal --- drivers/baseband/acc/rte_vrb_pmd.c | 59 +- 1 file changed, 58 insertions(+), 1 deletion(-) diff --g

[PATCH v4 0/2] bbdev: dump debug information

2024-09-26 Thread Nicolas Chautru
v4: updated to remove device error logging part which may use different mechanism in the future, possibly rte trace point. v3: updated based on Maxime comments related to passing string through function prototype. Thanks v2: updated with comments from Hemant and rebased. v1: Hi Maxime. Adding

[PATCH v6 2/2] net/bnxt: code refactor for supporting speed lanes

2024-09-26 Thread Damodharam Ammepalli
Broadcom Thor2 NICs support link mode settings where user can configure fixed speed and associated supported number of lanes. This patch does code-refactoring to address proposed poll mode library design updates. Signed-off-by: Damodharam Ammepalli --- drivers/net/bnxt/bnxt.h| 3 + dri

[PATCH v6 1/2] ethdev: Add link_speed lanes support

2024-09-26 Thread Damodharam Ammepalli
Update the eth_dev_ops structure with new function vectors to get, get capabilities and set ethernet link speed lanes. Update the testpmd to provide required config and information display infrastructure. The supporting ethernet controller driver will register callbacks to avail link speed lanes c

[PATCH v6 0/2] Add link_speed lanes support

2024-09-26 Thread Damodharam Ammepalli
This patch series is a continuation of the patch set that supports configuring speed lanes. https://patchwork.dpdk.org/project/dpdk/patch/20240708232351.491529-1-damodharam.ammepa...@broadcom.com/ The patchset consists 1) rtelib/testpmd changes (Addressing the comments). Earlier comments are ava

Re: [PATCH v2 0/7] ethdev: jump to table support

2024-09-26 Thread Ferruh Yigit
On 9/25/2024 7:05 PM, Alexander Kozyrev wrote: > Introduce new Flow API JUMP_TO_TABLE_INDEX action. > It allows bypassing a hierarchy of groups and going directly > to a specified flow table. That gives a user the flexibility > to jump between different priorities in a group and eliminates > the ne

[PATCH v3] net/nfp: implement the device packet type set interface

2024-09-26 Thread Chaoyong He
From: Long Wu Using the Rx packet offload flag rather than the device capability to control the packet type offload configuration. Also implement the device packet type set interface to let application can set the Rx packet offload flag. Signed-off-by: Long Wu Reviewed-by: Chaoyong He --- V3:

RE: [EXTERNAL] Re: [PATCH v2 1/3] eventdev: introduce event pre-scheduling

2024-09-26 Thread Pathak, Pravin
> -Original Message- > From: Pavan Nikhilesh Bhagavatula > Sent: Thursday, September 26, 2024 6:03 AM > To: Pathak, Pravin ; Mattias Rönnblom > ; Jerin Jacob ; Shijith Thotton > ; Sevincer, Abdullah ; > hemant.agra...@nxp.com; sachin.sax...@oss.nxp.com; Van Haaren, Harry > ; mattias.ron

Re: [PATCH v6 0/2] Add link_speed lanes support

2024-09-26 Thread Ferruh Yigit
On 9/26/2024 10:43 PM, Damodharam Ammepalli wrote: > This patch series is a continuation of the patch set that supports > configuring speed lanes. > https://patchwork.dpdk.org/project/dpdk/patch/20240708232351.491529-1- > damodharam.ammepa...@broadcom.com/ > > The patchset consists > 1) rtelib/te

Re: [PATCH v2] net/nfp: implement the device packet type set interface

2024-09-26 Thread Ferruh Yigit
On 9/26/2024 8:16 AM, Chaoyong He wrote: > From: Long Wu > > Using the Rx packet offload flag rather than the device > capability to control the packet type offload configuration. > Also implement the device packet type set interface to > let application can set the Rx packet offload flag. > > S

Re: [PATCH v6 1/2] ethdev: Add link_speed lanes support

2024-09-26 Thread Ferruh Yigit
On 9/26/2024 10:43 PM, Damodharam Ammepalli wrote: > Update the eth_dev_ops structure with new function vectors > to get, get capabilities and set ethernet link speed lanes. > Update the testpmd to provide required config and information > display infrastructure. > > The supporting ethernet contro