RE: [PATCH v6 2/2] Add l2reflect measurement application

2022-09-25 Thread Moessbauer, Felix
> -Original Message- > From: Maxime Coquelin > Sent: Tuesday, September 20, 2022 10:02 PM > To: Moessbauer, Felix (T CED SES-DE) ; > dev@dpdk.org > Cc: Schild, Henning (T CED SES-DE) ; Kiszka, Jan > (T CED) ; tho...@monjalon.net; Marcelo Tosatti > > Subject: Re: [PATCH v6 2/2] Add l2refle

mbuf pool pointer optimization is obsolete

2022-09-25 Thread Morten Brørup
Dear Olivier, Thomas and DPDK PMD developers: In November 2020, the pool pointer in the mbuf structure was moved to the first cache line [1]. [1]: http://git.dpdk.org/dpdk/commit/lib/librte_mbuf/rte_mbuf_core.h?id=4630290af46ed44a58515067b6d2add9c044252a That patch also made rte_mbuf_to_baddr(

[PATCH] examples/pipeline: fix build with some compilers

2022-09-25 Thread Ali Alnubani
Fixes the following build failure with gcc 5.4.0 because of uninitialized variables: [..] examples/pipeline/cli.c:1801:10: error: 'idx' may be used uninitialized in this function [-Werror=maybe-uninitialized] [..] examples/pipeline/cli.c:1916:10: error: 'idx' may be used uninitialized in this

Re: [PATCH v2 1/3] net/bonding: support Tx prepare

2022-09-25 Thread Chas Williams
On 9/21/22 22:12, fengchengwen wrote: On 2022/9/20 7:02, Chas Williams wrote: On 9/19/22 10:07, Konstantin Ananyev wrote: On 9/16/22 22:35, fengchengwen wrote: Hi Chas, On 2022/9/15 0:59, Chas Williams wrote: On 9/13/22 20:46, fengchengwen wrote: The main problem is hard to desig

Re: [PATCH V3] net/bonding: add link speeds configuration

2022-09-25 Thread Chas Williams
Thanks for making the changes! Signed-off-by: 3ch...@gmail.com On 9/21/22 21:33, Huisong Li wrote: This patch adds link speeds configuration. --- -v3: add an intersection of the supported speeds to check 'link_speeds'. -v2: resend due to CI compiling failure. Signed-off-by: Huisong Li --

Re: [PATCH] net/bonding: fix error in bonding mode 4 with dedicated queues enabled

2022-09-25 Thread Chas Williams
It's probably cleaner to just move the bond_ethdev_8023ad_flow_set until after the device start. For the reader, they don't need to understand why you might not have started the device earlier. On 9/24/22 10:19, Usman Tanveer wrote: when dedicated queues are enable with bonding mode 4 (mlx5), th

Re: [PATCH] examples/pipeline: fix build with some compilers

2022-09-25 Thread Thomas Monjalon
25/09/2022 11:20, Ali Alnubani: > Fixes the following build failure with gcc 5.4.0 because > of uninitialized variables: > > [..] > examples/pipeline/cli.c:1801:10: error: 'idx' may be used > uninitialized in this function [-Werror=maybe-uninitialized] > [..] > examples/pipeline/cli.c:1916:10: e

RE: DPDK with i225/226 on elkhartlake

2022-09-25 Thread SamChen 陳嘉良
Hi Qiming, Thanks for your information. From the log of i226V, you can see that the string "Requested device :03:00.0 cannot be used" appeared at init 03:00.0. Then its execution stopped at "EAL: Probe PCI driver: net_igc (8086:125c) device: :06:00.0 (socket 0)" with no subsequent actio

[PATCH] dumpcap: fix list interfaces

2022-09-25 Thread Stephen Hemminger
The change to do argument process before EAL init broke the support of list-interfaces option. Fix by setting flag and doing list-interfaces later. Fixes: a8dde09f97df ("app/dumpcap: allow help/version without primary process") Cc: konce...@gmail.com Signed-off-by: Stephen Hemminger --- app/dump

[PATCH v5 0/4] support protocol based buffer split

2022-09-25 Thread Yuan Wang
Protocol type based buffer split consists of splitting a received packet into several separate segments based on the packet content. It is useful in some scenarios, such as GPU acceleration. The splitting will help to enable true zero copy and hence improve the performance significantly. This patc

[PATCH v5 1/4] ethdev: introduce protocol header API

2022-09-25 Thread Yuan Wang
Add a new ethdev API to retrieve supported protocol headers of a PMD, which helps to configure protocol header based buffer split. Signed-off-by: Yuan Wang Signed-off-by: Xuan Ding Signed-off-by: Wenxuan Wu Reviewed-by: Andrew Rybchenko --- doc/guides/rel_notes/release_22_11.rst | 5 li

[PATCH v5 2/4] ethdev: introduce protocol hdr based buffer split

2022-09-25 Thread Yuan Wang
Currently, Rx buffer split supports length based split. With Rx queue offload RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT enabled and Rx packet segment configured, PMD will be able to split the received packets into multiple segments. However, length based buffer split is not suitable for NICs that do split b

[PATCH v5 3/4] app/testpmd: add rxhdrs commands and parameters

2022-09-25 Thread Yuan Wang
Add command line parameter: --rxhdrs=eth,[eth-ipv4,eth-ipv4-udp] Set the protocol_hdr of segments to scatter packets on receiving if split feature is engaged. And the queues with BUFFER_SPLIT flag. Add interactive mode command: testpmd>set rxhdrs eth,eth-ipv4,eth-ipv4-udp (protocol sequence shoul

[PATCH v5 4/4] net/ice: support buffer split in Rx path

2022-09-25 Thread Yuan Wang
This patch adds support for protocol based buffer split in normal Rx data paths. When the Rx queue is configured with specific protocol type, packets received will be directly split into protocol header and payload parts limitation of pmd. And the two parts will be put into different mempools. Cur

[PATCH v6 1/2] eventdev/eth_tx: add queue start stop API

2022-09-25 Thread Naga Harish K S V
Add support to start or stop a particular queue that is associated with the adapter. Start function enables the Tx adapter to start enqueueing packets to the Tx queue. Stop function stops the Tx adapter from enqueueing any packets to the Tx queue. The stop API also frees any packets that may have

[PATCH v6 2/2] test/eth_tx: add testcase for queue start stop APIs

2022-09-25 Thread Naga Harish K S V
Added testcase for rte_event_eth_tx_adapter_queue_start() and rte_event_eth_tx_adapter_queue_stop() APIs. Signed-off-by: Naga Harish K S V --- app/test/test_event_eth_tx_adapter.c | 86 1 file changed, 86 insertions(+) diff --git a/app/test/test_event_eth_tx_adapter

RE: [PATCH v2] vhost: fix build

2022-09-25 Thread Xia, Chenbo
Hi Min, > -Original Message- > From: Min Zhou > Sent: Monday, August 29, 2022 4:29 PM > To: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, Chenbo > ; zhou...@loongson.cn > Cc: dev@dpdk.org; maob...@loongson.cn > Subject: [PATCH v2] vhost: fix build > > On CentOS 8 or Debian

Re: [PATCH v2] vhost: fix build

2022-09-25 Thread zhoumin
Hi Chenbo, On Mon, 26 Sep 2022, 10:57, Xia, Chenbo wrote: Hi Min, -Original Message- From: Min Zhou Sent: Monday, August 29, 2022 4:29 PM To: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, Chenbo ; zhou...@loongson.cn Cc: dev@dpdk.org; maob...@loongson.cn Subject: [PATCH

[PATCH v2] net/iavf: fix TSO offload for tunnel case

2022-09-25 Thread Zhichao Zeng
This patch is to fix the tunnel TSO not enabling issue, simplify the logic of calculating 'Tx Buffer Size' of data descriptor with IPSec and fix handling that the mbuf size exceeds the TX descriptor hardware limit(1B-16KB) which causes malicious behavior to the NIC. Fixes: 1e728b01120c ("net/iavf:

RE: [PATCH v7 2/3] timer: fix function to stop all timers

2022-09-25 Thread Naga Harish K, S V
Hi Thomas, Did you get a chance to review this patch? Without this patch, the periodic event timer tests for SW timer adapter hangs. -Harish > -Original Message- > From: Jerin Jacob > Sent: Thursday, September 15, 2022 12:12 PM > To: Naga Harish K, S V ; Thomas Monjalon > > Cc: jer.

RE: [PATCH v2 1/2] vhost: introduce DMA vchannel unconfiguration

2022-09-25 Thread Xia, Chenbo
> -Original Message- > From: Ding, Xuan > Sent: Tuesday, September 6, 2022 1:22 PM > To: maxime.coque...@redhat.com; Xia, Chenbo > Cc: dev@dpdk.org; Hu, Jiayu ; He, Xingguang > ; Yang, YvonneX ; Jiang, > Cheng1 ; Wang, YuanX ; Ma, > WenwuX ; Ding, Xuan > Subject: [PATCH v2 1/2] vhost: in

RE: [PATCH v2 1/2] vhost: introduce DMA vchannel unconfiguration

2022-09-25 Thread Ding, Xuan
Hi Chenbo, Thanks for your comments, please see replies inline. > -Original Message- > From: Xia, Chenbo > Sent: Monday, September 26, 2022 2:07 PM > To: Ding, Xuan ; maxime.coque...@redhat.com > Cc: dev@dpdk.org; Hu, Jiayu ; He, Xingguang > ; Yang, YvonneX ; > Jiang, Cheng1 ; Wang, Yuan

RE: [PATCH v3] net/vhost: support asynchronous data path

2022-09-25 Thread Xia, Chenbo
> -Original Message- > From: Wang, YuanX > Sent: Wednesday, August 24, 2022 12:36 AM > To: maxime.coque...@redhat.com; Xia, Chenbo ; > dev@dpdk.org > Cc: Hu, Jiayu ; He, Xingguang ; > Jiang, Cheng1 ; Wang, YuanX ; > Ma, WenwuX > Subject: [PATCH v3] net/vhost: support asynchronous data pat

RE: [PATCH v2] vhost: use dedicated variable for vhost message result code

2022-09-25 Thread Xia, Chenbo
> -Original Message- > From: Pei, Andy > Sent: Friday, September 23, 2022 10:33 AM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com > Subject: [PATCH v2] vhost: use dedicated variable for vhost message result > code > > Currently in function vhost_user_msg_handler, variab