> -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
> -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
> -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
> -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
>
> -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
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
> -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
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
+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
> -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
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
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
> > -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
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
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:
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/
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
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
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
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(-)
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 +++
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
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
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
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
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(-)
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
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
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
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
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.
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
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
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_
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
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
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 ++
Reviewed-by: Patrick Robb
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
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
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
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.
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|
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
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
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 +---
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
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
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
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
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
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:
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
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
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(-)
-
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
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
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
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
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
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
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
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
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
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 |
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(-)
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
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
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
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
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
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
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
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
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
>
>>>
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
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
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
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
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
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
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
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:
> -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
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
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
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
87 matches
Mail list logo