[RFC] net/ice: add E830 support

2024-01-03 Thread Qiming Yang
Add E830 device ids. Signed-off-by: Qiming Yang --- drivers/net/ice/base/ice_common.c | 33 --- drivers/net/ice/base/ice_ddp.c| 6 + drivers/net/ice/base/ice_ddp.h| 1 + drivers/net/ice/base/ice_devids.h | 8 +++ drivers/net/ice/base/ice

[Bug 1340] net/i40e do not match packet with non-zero 802.1p priority when flow rule for VLAN ID only is used

2024-01-03 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1340 Bug ID: 1340 Summary: net/i40e do not match packet with non-zero 802.1p priority when flow rule for VLAN ID only is used Product: DPDK Version: 23.11 Hardware: All

Re: [PATCH v1 1/1] net/thunderx: update dmac control register to appropriately

2024-01-03 Thread Jerin Jacob
On Thu, Dec 21, 2023 at 7:18 PM Hanumanth Pothula wrote: > > By default dmac control register is set to reject packets > on mac address match, leading all unicast packets to drop. > > Update DMAC control register to allow packets on MAC address > match rather than dropping. > > Signed-off-by: Hanu

RE: [PATCH v3] net/iavf: fix VF startup coredump

2024-01-03 Thread Zhang, Qi Z
> -Original Message- > From: He, ShiyangX > Sent: Wednesday, January 3, 2024 6:42 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; He, ShiyangX > ; sta...@dpdk.org; Wu, Jingjing > ; Xing, Beilei ; Wang, Liang- > min ; Zhang, Qi Z > Subject: [PATCH v3] net/iavf: fix VF startup coredump > > W

Re: [PATCH 2/2] common/cnxk: fix VLAN check for inner header

2024-01-03 Thread Jerin Jacob
On Thu, Dec 21, 2023 at 12:09 PM Harman Kalra wrote: > > Adding the has vlan check in inner headers i.e in LF layer. If > has_vlan is 0 it should be masked out while installing flow rule. > > Fixes: c34ea71b878d ("common/cnxk: add NPC parsing API") > Cc: sta...@dpdk.org > > Signed-off-by: Harman K

[PATCH v8 0/2] net/iavf: fix Rx/Tx burst and add diagnostics

2024-01-03 Thread Mingjin Ye
Fixed Rx/Tx crash in multi-process environment and added Tx diagnostic feature. Mingjin Ye (2): net/iavf: fix Rx/Tx burst in multi-process net/iavf: add diagnostic support in TX path doc/guides/nics/intel_vf.rst | 9 ++ drivers/net/iavf/iavf.h| 54 ++- drivers/net/iavf/iavf_

[PATCH v8 1/2] net/iavf: fix Rx/Tx burst in multi-process

2024-01-03 Thread Mingjin Ye
In a multi-process environment, a secondary process operates on shared memory and changes the function pointer of the primary process, resulting in a crash when the primary process cannot find the function address during an Rx/Tx burst. Fixes: 5b3124a0a6ef ("net/iavf: support no polling when link

[PATCH v8 2/2] net/iavf: add diagnostic support in TX path

2024-01-03 Thread Mingjin Ye
The only way to enable diagnostics for TX paths is to modify the application source code. Making it difficult to diagnose faults. In this patch, the devarg option "mbuf_check" is introduced and the parameters are configured to enable the corresponding diagnostics. supported cases: mbuf, size, seg

RE: [PATCH v2] net/iavf: fix no polling mode switch

2024-01-03 Thread Zhang, Qi Z
> -Original Message- > From: Mingjin Ye > Sent: Thursday, December 14, 2023 6:33 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Ye, MingjinX > ; sta...@dpdk.org; Wu, Jingjing > ; Xing, Beilei > Subject: [PATCH v2] net/iavf: fix no polling mode switch > > PMD does not switch to no polling

[PATCH] net/bonding: fix query-count flags not set

2024-01-03 Thread Mário Kuka
The rte_flow_query_count structure returned from the bonding driver always indicates that hits and bytes are invalid (bytes_set and hits_set flags are zero) because bond_flow_query_count() from the net/bonding driver does not set the bytes_set and hits_set flags. Fixes: 49dad9028e2a ("net/bonding:

Re: [PATCH v4 1/7] dts: add required methods to testpmd_shell

2024-01-03 Thread Juraj Linkeš
On Thu, Dec 21, 2023 at 8:38 PM Jeremy Spewock wrote: > > > > On Tue, Dec 19, 2023 at 11:45 AM Juraj Linkeš > wrote: >> >> The subject could be improved. That these methods are required is >> kinda obvious. We should try to actually include some useful >> information in the subject, such as "add

Re: [PATCH v4 7/7] dts: add scatter test suite

2024-01-03 Thread Juraj Linkeš
On Thu, Dec 21, 2023 at 10:47 PM Jeremy Spewock wrote: > > > > On Tue, Dec 19, 2023 at 12:29 PM Juraj Linkeš > wrote: >> >> Should we use the full name (pmd_buffer_scatter) in the subject? I >> lean towards the full name. >> >> On Mon, Dec 18, 2023 at 7:13 PM wrote: >> > >> > From: Jeremy Spewo

RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Anoob Joseph
Hi Suanming, Good catch. Please see inline. Thanks, Anoob > -Original Message- > From: Suanming Mou > Sent: Wednesday, January 3, 2024 9:24 AM > To: Ciara Power > Cc: dev@dpdk.org > Subject: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next operation > > External Email > > --

RE: [EXT] [PATCH 1/2] app/test-crypto-perf: fix invalid memcmp results

2024-01-03 Thread Anoob Joseph
> The function memcmp() returns an integer less than, equal to, or greater than > zero. In current code, if the first memcmp() returns less than zero and the > second memcmp() returns greater than zero, the sum of results may still be 0 > and indicates verify succussed. > > This commit converts th

RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Suanming Mou
Hi, > -Original Message- > From: Anoob Joseph > Sent: Wednesday, January 3, 2024 7:22 PM > To: Suanming Mou > Cc: dev@dpdk.org; Ciara Power > Subject: RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next > operation > > Hi Suanming, > > Good catch. Please see inline. > > Th

[PATCH] dts: improve documentation

2024-01-03 Thread Luca Vizzarro
Improve instructions for installing dependencies, configuring and launching the project. Finally, document the configuration schema by adding more comments to the example and documenting every property and definition. Reviewed-by: Paul Szczepanek Signed-off-by: Luca Vizzarro --- .mailmap

RE: 22.11.4 patches review and test

2024-01-03 Thread Ali Alnubani
> -Original Message- > From: Xueming(Steven) Li > Sent: Wednesday, December 20, 2023 9:19 AM > To: sta...@dpdk.org > Cc: Xueming(Steven) Li ; dev@dpdk.org; Abhishek > Marathe ; Ali Alnubani > ; benjamin.wal...@intel.com; David Christensen > ; Hemant Agrawal ; > Ian Stokes ; Jerin Jacob ; J

RE: 21.11.6 patches review and test

2024-01-03 Thread Ali Alnubani
> -Original Message- > From: Kevin Traynor > Sent: Wednesday, December 20, 2023 3:23 PM > To: sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; benjamin.wal...@intel.com; David > Christensen ; Hemant Agrawal > ; Ian Stokes ; Jerin Jacob > ; John McNamara ; Ju- > Hyoun

RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Anoob Joseph
Hi Suanming, Please see inline. Thanks, Anoob > -Original Message- > From: Suanming Mou > Sent: Wednesday, January 3, 2024 6:06 PM > To: Anoob Joseph > Cc: dev@dpdk.org; Ciara Power > Subject: RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next > operation > > Hi, > > > -

RE: [RFC] ethdev: fast path async flow API

2024-01-03 Thread Dariusz Sosnowski
Hi Ivan, > Hi Dariusz, > > I appreciate the proposal. You say that a reference PMD implementation will > be made available for 24.03 release. What about the applications? > Is this supposed to go to upstream code of some applications? No source code changes are required in applications which alre

RE: [RFC] ethdev: fast path async flow API

2024-01-03 Thread Ivan Malov
Hi Dariusz, I appreciate your response. All to the point. I have to confess my question was inspired by the 23.11 merge commit in OVS mailing list. I first thought that an obvious consumer for the async flow API could have been OVS but saw no usage of it in the current code. It was my impression

RE: [RFC] ethdev: fast path async flow API

2024-01-03 Thread Dariusz Sosnowski
> -Original Message- > From: Stephen Hemminger > Sent: Thursday, December 28, 2023 18:17 > > However, at the moment I see one problem with this approach. > > It would require DPDK to expose the rte_eth_dev struct definition, > > because of implied locking implemented in the flow API. > >

RE: [PATCH] net/e1000: support launchtime feature

2024-01-03 Thread Chuanyu Xue
Hi, Simei Thank you for your guidance on how to test this feature. >> Following is how I try to test with testpmd. Please let me know if I did >> something wrong. >> >> sudo ./dpdk-testpmd -- -i --forward-mode=txonly >> >> testpmd> port stop 0 >> testpmd> set burst 1 >>

[PATCH v5 0/7] dts: Port scatter suite over

2024-01-03 Thread jspewock
From: Jeremy Spewock v5: Addressed comments and made changes to files where appropriate. Notably, added things such as verification to testpmd methods and a flag which hides messages about "link state change events" in testpmd as such messages changed the expected format of the terminal and caus

[PATCH v5 1/7] dts: add startup verification and forwarding modes to testpmd shell

2024-01-03 Thread jspewock
From: Jeremy Spewock Added commonly used methods in testpmd such as starting and stopping packet forwarding, changing foward modes, and verifying link status of ports so that developers can configure testpmd and start forwaring through the provided class rather than sending commands to the testpm

[PATCH v5 2/7] dts: limit EAL parameters to DPDK apps and add parameters to all apps

2024-01-03 Thread jspewock
From: Jeremy Spewock Changed the factory method for creating interactive apps in the SUT Node so that EAL parameters would only be passed into DPDK apps since non-DPDK apps wouldn't be able to process them. Also modified interactive apps to allow for the ability to pass parameters into the app on

[PATCH v5 3/7] dts: add optional packet filtering to scapy sniffer

2024-01-03 Thread jspewock
From: Jeremy Spewock Added the options to filter out LLDP and ARP packets when sniffing for packets with scapy. This was done using BPF filters to ensure that the noise these packets provide does not interfere with test cases. Signed-off-by: Jeremy Spewock --- dts/framework/test_suite.py

[PATCH v5 5/7] dts: allow configuring MTU of ports

2024-01-03 Thread jspewock
From: Jeremy Spewock Adds methods in both os_session and linux session to allow for setting MTU of port interfaces so that suites that require the sending and receiving of packets of a specific size, or the rejection of packets over a certain size, can configure this maximum as needed. Signed-of

[PATCH v5 4/7] dts: add pci addresses to EAL parameters

2024-01-03 Thread jspewock
From: Jeremy Spewock Added allow list to the EAL parameters created in DTS to ensure that only the relevant PCI devices are considered when launching DPDK applications. Signed-off-by: Jeremy Spewock --- dts/framework/testbed_model/sut_node.py | 12 1 file changed, 12 insertions(+)

[PATCH v5 6/7] dts: add scatter to the yaml schema

2024-01-03 Thread jspewock
From: Jeremy Spewock Allow for scatter to be specified in the configuration file. Signed-off-by: Jeremy Spewock --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/confi

[PATCH v5 7/7] dts: add pmd_buffer_scatter test suite

2024-01-03 Thread jspewock
From: Jeremy Spewock This test suite provides testing of the support of scattered packets by Poll Mode Drivers using testpmd, verifying the ability to receive and transmit scattered multi-segment packets made up of multiple non-contiguous memory buffers. This is tested through 5 different cases i

[PATCH v6 0/7] dts: Port scatter suite over

2024-01-03 Thread jspewock
From: Jeremy Spewock v6: Fixed spelling mistake that caused checkpatch failure. Jeremy Spewock (7): dts: add startup verification and forwarding modes to testpmd shell dts: limit EAL parameters to DPDK apps and add parameters to all apps dts: add optional packet filtering to scapy sniffer

[PATCH v6 1/7] dts: add startup verification and forwarding modes to testpmd shell

2024-01-03 Thread jspewock
From: Jeremy Spewock Added commonly used methods in testpmd such as starting and stopping packet forwarding, changing forward modes, and verifying link status of ports so that developers can configure testpmd and start forwarding through the provided class rather than sending commands to the test

[PATCH v6 2/7] dts: limit EAL parameters to DPDK apps and add parameters to all apps

2024-01-03 Thread jspewock
From: Jeremy Spewock Changed the factory method for creating interactive apps in the SUT Node so that EAL parameters would only be passed into DPDK apps since non-DPDK apps wouldn't be able to process them. Also modified interactive apps to allow for the ability to pass parameters into the app on

[PATCH v6 3/7] dts: add optional packet filtering to scapy sniffer

2024-01-03 Thread jspewock
From: Jeremy Spewock Added the options to filter out LLDP and ARP packets when sniffing for packets with scapy. This was done using BPF filters to ensure that the noise these packets provide does not interfere with test cases. Signed-off-by: Jeremy Spewock --- dts/framework/test_suite.py

[PATCH v6 5/7] dts: allow configuring MTU of ports

2024-01-03 Thread jspewock
From: Jeremy Spewock Adds methods in both os_session and linux session to allow for setting MTU of port interfaces so that suites that require the sending and receiving of packets of a specific size, or the rejection of packets over a certain size, can configure this maximum as needed. Signed-of

[PATCH v6 4/7] dts: add pci addresses to EAL parameters

2024-01-03 Thread jspewock
From: Jeremy Spewock Added allow list to the EAL parameters created in DTS to ensure that only the relevant PCI devices are considered when launching DPDK applications. Signed-off-by: Jeremy Spewock --- dts/framework/testbed_model/sut_node.py | 12 1 file changed, 12 insertions(+)

[PATCH v6 7/7] dts: add pmd_buffer_scatter test suite

2024-01-03 Thread jspewock
From: Jeremy Spewock This test suite provides testing of the support of scattered packets by Poll Mode Drivers using testpmd, verifying the ability to receive and transmit scattered multi-segment packets made up of multiple non-contiguous memory buffers. This is tested through 5 different cases i

[PATCH v6 6/7] dts: add scatter to the yaml schema

2024-01-03 Thread jspewock
From: Jeremy Spewock Allow for scatter to be specified in the configuration file. Signed-off-by: Jeremy Spewock --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/confi

RE: [PATCH v5 0/3] net/iavf: support Tx LLDP on scalar and AVX512

2024-01-03 Thread Zhang, Qi Z
> -Original Message- > From: Zeng, ZhichaoX > Sent: Thursday, December 28, 2023 11:22 AM > To: dev@dpdk.org > Cc: Zhang, Qi Z ; Zeng, ZhichaoX > > Subject: [PATCH v5 0/3] net/iavf: support Tx LLDP on scalar and AVX512 > > This patch set adds an IAVF testpmd command "set tx lldp on|off

Re: [RFC] ethdev: fast path async flow API

2024-01-03 Thread Stephen Hemminger
On Wed, 3 Jan 2024 19:14:49 + Dariusz Sosnowski wrote: > In summary, in my opinion extending the async flow API with bulking > capabilities or exposing the queue directly to the application is not > desirable. > This proposal aims to reduce the I-cache overhead in async flow API by > reusi

Re: [PATCH v2] net/ice: fix link update

2024-01-03 Thread Shuang Han
ice_atomic_write_link_status in ice_link_update function is not protected by the spinlock, there maybe a situation: 1.dev_start call ice_link_update with wait_to_complete = 1,and get link_status = 0 2.LSC interrupt handler call ice_link_update and get link_status = 1 3.LSC interrupt handler call ic

RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Suanming Mou
> -Original Message- > From: Anoob Joseph > Sent: Wednesday, January 3, 2024 11:43 PM > To: Suanming Mou > Cc: dev@dpdk.org; Ciara Power > Subject: RE: [EXT] [PATCH] app/test-crypto-perf: fix invalid mbuf next > operation > > Hi Suanming, > > Please see inline. > > Thanks, > Anoob

[PATCH v2] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Suanming Mou
In fill_multi_seg_mbuf(), when remaining_segments is 0, rte_mbuf m's next should pointer to NULL instead of a new rte_mbuf, that causes setting m->next as NULL out of the while loop to the invalid mbuf. This commit fixes the invalid mbuf next operation. Fixes: bf9d6702eca9 ("app/crypto-perf: use

RE: [PATCH 0/6] net/ice improve qos

2024-01-03 Thread Wu, Wenjun1
> -Original Message- > From: Zhang, Qi Z > Sent: Wednesday, January 3, 2024 3:42 AM > To: Yang, Qiming ; Wu, Wenjun1 > > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH 0/6] net/ice improve qos > > The patchset enhanced ice rte_tm implemenations > > Qi Zhang (6): > net/ice: remove re

RE: [PATCH v2] net/ice: fix link update

2024-01-03 Thread Zhang, Qi Z
Thanks for raising this. Agree with your finding, the current implementation ensures data integrity but not guarantee 100% correctness, as updates to link status by interrupts could be missed in certain cases though less happen. Please raise a Bugzilla if you think its urgent for your usage and w

RE: [PATCH] net/e1000: support launchtime feature

2024-01-03 Thread Su, Simei
Hi Chuanyu, > -Original Message- > From: Chuanyu Xue > Sent: Thursday, January 4, 2024 5:52 AM > To: Su, Simei > Cc: Xing, Beilei ; chuanyu@uconn.edu; > dev@dpdk.org; Zhang, Qi Z ; Lu, Wenzhuo > > Subject: RE: [PATCH] net/e1000: support launchtime feature > > Hi, Simei > > Thank y

RE: [PATCH 0/6] net/ice improve qos

2024-01-03 Thread Zhang, Qi Z
> -Original Message- > From: Wu, Wenjun1 > Sent: Thursday, January 4, 2024 10:29 AM > To: Zhang, Qi Z ; Yang, Qiming > > Cc: dev@dpdk.org > Subject: RE: [PATCH 0/6] net/ice improve qos > > > -Original Message- > > From: Zhang, Qi Z > > Sent: Wednesday, January 3, 2024 3:42 AM

RE: [PATCH v2] net/e1000: support launchtime feature

2024-01-03 Thread Su, Simei
> -Original Message- > From: Chuanyu Xue > Sent: Sunday, December 31, 2023 12:35 AM > To: Su, Simei ; Lu, Wenzhuo ; > Zhang, Qi Z ; Xing, Beilei > Cc: dev@dpdk.org; Chuanyu Xue > Subject: [PATCH v2] net/e1000: support launchtime feature > > Enable the time-based scheduled Tx of packet

[PATCH v2] net/i40e: updated 23.11 recommended matching list

2024-01-03 Thread Simei Su
Add suggested DPDK/kernel driver/firmware version matching list. Signed-off-by: Simei Su --- v2: * Add commit log. doc/guides/nics/i40e.rst | 4 1 file changed, 4 insertions(+) diff --git a/doc/guides/nics/i40e.rst b/doc/guides/nics/i40e.rst index 3432eab..15689ac 100644 --- a/doc/guides/

RE: [PATCH v2] net/i40e: updated 23.11 recommended matching list

2024-01-03 Thread Xing, Beilei
> -Original Message- > From: Su, Simei > Sent: Thursday, January 4, 2024 11:15 AM > To: Xing, Beilei ; Zhang, Qi Z > Cc: dev@dpdk.org; Yang, Qiming ; Su, Simei > > Subject: [PATCH v2] net/i40e: updated 23.11 recommended matching list > > Add suggested DPDK/kernel driver/firmware vers

RE: [EXT] [PATCH v2] app/test-crypto-perf: fix invalid mbuf next operation

2024-01-03 Thread Anoob Joseph
> In fill_multi_seg_mbuf(), when remaining_segments is 0, rte_mbuf m's next > should pointer to NULL instead of a new rte_mbuf, that causes setting m->next > as NULL out of the while loop to the invalid mbuf. > > This commit fixes the invalid mbuf next operation. > > Fixes: bf9d6702eca9 ("app/cry

RE: [EXT] [PATCH 2/2] app/test-crypto-perf: fix encrypt operation verify

2024-01-03 Thread Anoob Joseph
Hi Suanming, Please see inline. Thanks, Anoob > -Original Message- > From: Suanming Mou > Sent: Wednesday, January 3, 2024 9:26 AM > To: Ciara Power > Cc: dev@dpdk.org > Subject: [EXT] [PATCH 2/2] app/test-crypto-perf: fix encrypt operation verify > > External Email > > -

RE: [PATCH v2] net/i40e: updated 23.11 recommended matching list

2024-01-03 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Thursday, January 4, 2024 11:30 AM > To: Su, Simei ; Zhang, Qi Z > Cc: dev@dpdk.org; Yang, Qiming > Subject: RE: [PATCH v2] net/i40e: updated 23.11 recommended matching list > > > > > -Original Message- > > From: Su, Simei

Re: [PATCH v1] app/testpmd: use Tx preparation in txonly engine

2024-01-03 Thread Jerin Jacob
On Wed, Jan 3, 2024 at 7:38 AM Kaiwen Deng wrote: > > Txonly forwarding engine does not call the Tx preparation API > before transmitting packets. This may cause some problems. > > TSO breaks when MSS spans more than 8 data fragments. Those > packets will be dropped by Tx preparation API, but it w

RE: 22.11.4 patches review and test

2024-01-03 Thread Xueming(Steven) Li
Hi Ali, Thanks for the testing and report! Regards, Xueming > -Original Message- > From: Ali Alnubani > Sent: 1/3/2024 22:41 > To: Xueming(Steven) Li ; sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > benjamin.wal...@intel.com; David Christensen ; > Hemant Agrawal ; Ian Stokes >