[v1 1/4] lib: add optional fields in GRE header

2022-01-26 Thread Sean Zhang
There are optional fields in GRE header(checksum/key/sequence), this patch adds definition of structures of the optional fields. Signed-off-by: Sean Zhang --- lib/net/rte_gre.h | 21 + 1 file changed, 21 insertions(+) diff --git a/lib/net/rte_gre.h b/lib/net/rte_gre.h index

[v1 0/4] Add support for GRE optional fields matching

2022-01-26 Thread Sean Zhang
This patch set adds support for matching optional fields of GRE header. The optional fields are checksum, key and sequence number. Currently, key field is supported with pattern gre_key item '.. / gre / gre_key value is xx / ..' with field gre_key in misc, but misc does not support matching of chec

[v1 3/4] app/testpmd: add gre_option item command

2022-01-26 Thread Sean Zhang
Add gre_option command for matching optional fields(checksum/key/sequence) in GRE header. The item must follow gre item, and the item does not change the flags in gre item, the application should set the flags in gre item correspondingly. Application can still use gre_key item 'gre_key value is xx'

[v1 2/4] ethdev: support GRE optional fields

2022-01-26 Thread Sean Zhang
Add flow pattern items and header format for matching optional fields (checksum/key/sequence) in GRE header. And the flags in gre item should be correspondingly set with the new added items. Signed-off-by: Sean Zhang --- doc/guides/prog_guide/rte_flow.rst | 17 + lib/ethdev/rte_f

[v1 4/4] net/mlx5: support matching optional fields of GRE

2022-01-26 Thread Sean Zhang
This patch adds matching on the optional fields (checksum/key/sequence) of GRE header. The matching of checksum and sequence fields requests support from rdma-core with capability of misc5 and tunner_header 0-3. For patterns without checksum and sequence specified, keep using misc for matching as

Re: [PATCH v2 7/9] vhost: remove multi-line logs

2022-01-26 Thread Maxime Coquelin
Hi Chenbo, On 1/26/22 04:27, Xia, Chenbo wrote: Hi Maxime, -Original Message- From: Maxime Coquelin Sent: Tuesday, January 25, 2022 7:25 PM To: dev@dpdk.org; Xia, Chenbo ; david.march...@redhat.com Cc: Maxime Coquelin Subject: [PATCH v2 7/9] vhost: remove multi-line logs This patch

RE: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Ori Kam
> -Original Message- > From: Bruce Richardson > Sent: Tuesday, January 25, 2022 8:14 PM > To: Ori Kam > Subject: Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints > > On Tue, Jan 25, 2022 at 06:09:42PM +, Bruce Richardson wrote: > > On Tue, Jan 25, 2022 at 03:58:

RE: [PATCH v1] raw/ifpga: fix ifpga devices cleanup function

2022-01-26 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Rosen > Sent: Wednesday, January 26, 2022 3:08 PM > To: Huang, Wei ; dev@dpdk.org; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > > Subject: RE: [PATCH v1] raw/ifpga: fix ifpga devices cleanup function > > Hi, > > > -Origin

[PATCH v3 0/9] vhost: improve logging

2022-01-26 Thread Maxime Coquelin
This series aims at easing Vhost logs analysis, by prepending the Vhost-user socket path to all logs and to remove multi-line comments. Doing so, filtering Vhost-user ports logs is much easier. Changes in v3: == - Fix various typos reported (Chenbo) - Revert one multi-line comment remo

[PATCH v3 1/9] vhost: improve IOTLB logs

2022-01-26 Thread Maxime Coquelin
This patch adds IOTLB mempool name when logging debug or error messages, and also prepends the socket path. to all the logs. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/iotlb.c | 26 +++--- lib/vhost/iotlb.h | 10 +- lib/vhost/vhost

[PATCH v3 3/9] vhost: improve Vhost layer logs

2022-01-26 Thread Maxime Coquelin
This patch prepends Vhost logs with the Vhost-user socket path when available to ease filtering logs for a given port. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/vhost.c | 104 +++--- 1 file changed, 51 insertions(+), 53 deletion

[PATCH v3 2/9] vhost: improve vDPA registration failure log

2022-01-26 Thread Maxime Coquelin
This patch adds name of the device failing vDPA registration. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/vdpa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vhost/vdpa.c b/lib/vhost/vdpa.c index 09ad5d866e..6df2230a67 100644 --- a/lib/vho

[PATCH v3 4/9] vhost: improve Vhost-user layer logs

2022-01-26 Thread Maxime Coquelin
This patch adds the Vhost-user socket path to Vhost-user layer logs in order to ease logs filtering. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/vhost_user.c | 573 - 1 file changed, 275 insertions(+), 298 deletions(-) diff --git

[PATCH v3 5/9] vhost: improve socket layer logs

2022-01-26 Thread Maxime Coquelin
This patch adds the Vhost socket path whenever possible in order to make debugging possible when multiple Vhost devices are in use. Some vhost-user layer functions are modified to pass the device path down to the socket layer. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost

[PATCH v3 6/9] vhost: improve Virtio-net layer logs

2022-01-26 Thread Maxime Coquelin
This patch standardizes logging done in Virtio-net, so that the Vhost-user socket path is always prepended to the logs. It will ease log analysis when multiple Vhost-user ports are in use. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/virtio_net.c | 165 ++

[PATCH v3 7/9] vhost: remove multi-line logs

2022-01-26 Thread Maxime Coquelin
This patch replaces multi-lines logs in multiple single- line logs in order to ease logs filtering based on their socket path. Signed-off-by: Maxime Coquelin --- lib/vhost/socket.c | 10 ++-- lib/vhost/vhost.c | 8 ++-- lib/vhost/vhost_user.c | 103 ---

[PATCH v3 9/9] vhost: use proper logging type for data path

2022-01-26 Thread Maxime Coquelin
This patch changes type from config to data for functions called in the datapath. Suggested-by: David Marchand Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/vhost.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vhost/vhost.c b/lib/vhost/vhos

[PATCH v3 8/9] vhost: differentiate IOTLB logs

2022-01-26 Thread Maxime Coquelin
Same logging messages were used for both IOTLB cache insertion failure and IOTLB pending insertion failure. This patch differentiate them to ease logs analysis. Suggested-by: David Marchand Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- lib/vhost/iotlb.c | 12 1 file

RE: [PATCH v1] raw/ifpga/base: fix port feature ID

2022-01-26 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Rosen > Sent: Wednesday, January 26, 2022 9:18 AM > To: Huang, Wei ; dev@dpdk.org; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > > Subject: RE: [PATCH v1] raw/ifpga/base: fix port feature ID > > Hi, > > > -Original Message

Re: [PATCH] vhost: add vDPA resource cleanup callback

2022-01-26 Thread Maxime Coquelin
Hi Xueming, On 11/3/21 14:49, Maxime Coquelin wrote: On 11/3/21 14:45, Xueming(Steven) Li wrote: On Wed, 2021-11-03 at 09:46 +0100, Maxime Coquelin wrote: On 11/3/21 09:41, Xia, Chenbo wrote: Hi Xueming, -Original Message- From: Xueming(Steven) Li Sent: Thursday, October 21, 202

Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Bruce Richardson
On Wed, Jan 26, 2022 at 09:45:18AM +, Ori Kam wrote: > > > > -Original Message- > > From: Bruce Richardson > > Sent: Tuesday, January 25, 2022 8:14 PM > > To: Ori Kam > > Subject: Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints > > > > On Tue, Jan 25, 2022 at 06

Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Thomas Monjalon
26/01/2022 11:52, Bruce Richardson: > The scenario is as follows. Suppose we have the initial state as below: > > struct x_dev_cfg { >int x; > }; > > int > x_dev_cfg(int dev_id, struct x_dev_cfg *cfg) > { >struct x_dev *dev = x_devs[id]; >// some setup/config may go here >return d

Re: [dpdk-dev] [pull-request] dpdk-next-eventdev - v22.03 - RC1

2022-01-26 Thread Thomas Monjalon
24/01/2022 10:23, Jerin Jacob Kollanukkaran: > http://dpdk.org/git/next/dpdk-next-eventdev Pulled, thanks.

RE: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Ori Kam
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, January 26, 2022 1:22 PM > Subject: Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints > > 26/01/2022 11:52, Bruce Richardson: > > The scenario is as follows. Suppose we have the initial state as below: > >

[PATCH v4 0/2] Add config file support for l3fwd

2022-01-26 Thread Sean Morrissey
This patchset introduces config file support for l3fwd and its lookup methods LPM, FIB, and EM, similar to that of l3fwd-acl. This allows for route rules to be defined in configuration files and edited there instead of in each of the lookup methods hardcoded route tables. V4: * Fix nondeterministi

[PATCH v4 1/2] examples/l3fwd: add config file support for LPM/FIB

2022-01-26 Thread Sean Morrissey
Add support to define ipv4 and ipv6 forwarding tables from reading from a config file for LPM and FIB, with format similar to l3fwd-acl one. With the removal of the hardcoded route tables for IPv4 and IPv6, these routes have been moved to a separate default config file for use with LPM and FIB. S

[PATCH v4 2/2] examples/l3fwd: add config file support for EM

2022-01-26 Thread Sean Morrissey
Add support to define ipv4 and ipv6 forwarding tables from reading from a config file for EM with a format similar to l3fwd-acl one. With the removal of the hardcoded route tables for IPv4 and IPv6 from 'l3fwd_em', these routes have been moved to a separate default config file for use with EM. Re

[PATCH] net/bonding: fix MTU set for slaves

2022-01-26 Thread Ferruh Yigit
ethdev requires device to be configured before setting MTU. In bonding PMD, while configuring slaves, bonding first sets MTU later configures them, which causes failure if slaves are not configured in advance. Fixing by changing the order in slave configure as requested in ethdev layer, configure

Re: [PATCH] mbuf: delete dynamic fields copy in hdr copy

2022-01-26 Thread Olivier Matz
Hi, On Tue, Jan 11, 2022 at 05:45:49PM +0100, Thomas Monjalon wrote: > 14/12/2021 08:56, Gaoxiang Liu: > > Because dynamic fields are registered by the DPDK application, > > so it is up to the application to decide whether to copy the value of > > dynamic fields. > > So delete dynamic fields copy

Re: [PATCH] vdpa/mlx5: workaround queue stop with traffic

2022-01-26 Thread Maxime Coquelin
On 11/22/21 14:12, Matan Azrad wrote: When the event thread polls traffic and a virtq is stopping, the FW loses synchronization in the virtq indexes. It causes LM failure on synchronization between the HOST indexes to the GUEST indexes. Unset the event thread before the queue stop in the LM

Re: [PATCH] net/virtio: fix Tx queue 0 override by queue 128

2022-01-26 Thread Maxime Coquelin
On 12/2/21 14:50, Xueming Li wrote: Both Rx queue and Tx queue are VirtQ in virtio, VQ index is 256 for Tx queue 128. Uint8 type of TxQ VQ index overflows and overrides Tx queue 0 data. This patch fixes VQ index type with uint16 type. Fixes: c1f86306a026 ("virtio: add new driver") Cc: sta...

Re: [PATCH v1] raw/ifpga: fix ifpga devices cleanup function

2022-01-26 Thread Ferruh Yigit
On 1/26/2022 3:29 AM, Wei Huang wrote: Use rte_dev_remove() to replace rte_rawdev_pmd_release() in ifpga_rawdev_cleanup(), resources occupied by ifpga raw devices such as threads can be released correctly. As far as I understand you are fixing an issue that not all resources are released, is t

Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Bruce Richardson
On Wed, Jan 26, 2022 at 12:19:43PM +, Ori Kam wrote: > > > > -Original Message- > > From: Thomas Monjalon > > Sent: Wednesday, January 26, 2022 1:22 PM > > Subject: Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints > > > > 26/01/2022 11:52, Bruce Richardson: > > >

Re: [PATCH] net/iavf: fix null pointer dereference

2022-01-26 Thread Nicolau, Radu
On 1/25/2022 2:23 PM, Weiguo Li wrote: Check for memory allocation failure is added to avoid null pointer dereference. Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") Signed-off-by: Weiguo Li --- Acked-by: Radu Nicolau

Re: [PATCH 1/3] net/enic: add support for eCPRI matching

2022-01-26 Thread Ferruh Yigit
On 1/14/2022 3:10 AM, John Daley wrote: eCPRI message can be over Ethernet layer (.1Q supported also) or over UDP layer. Message header formats are the same in these two variants. Only up though the first packet header in the PDU can be matched. RSS on the eCPRI header fields is not supported.

Re: [PATCH 1/3] net/enic: add support for eCPRI matching

2022-01-26 Thread Ferruh Yigit
On 1/26/2022 2:00 PM, Ferruh Yigit wrote: On 1/14/2022 3:10 AM, John Daley wrote: eCPRI message can be over Ethernet layer (.1Q supported also) or over UDP layer. Message header formats are the same in these two variants. Only up though the first packet header in the PDU can be matched. RSS on

Re: [PATCH 3/3] net/enic: support max descriptors allowed by adapter

2022-01-26 Thread Ferruh Yigit
On 1/14/2022 3:10 AM, John Daley wrote: Newer VIC adapters have the max number of supported RX and TX descriptors in their configuration. Use these values as the maximums. Signed-off-by: John Daley Reviewed-by: Hyong Youb Kim <...> diff --git a/drivers/net/enic/enic_res.h b/drivers/net/eni

Re: [PATCH] vhost: fix data-plane access to released vq

2022-01-26 Thread Maxime Coquelin
Hi Yuan, On 12/3/21 17:34, Yuan Wang wrote: From: yuan wang When numa reallocation occurs, numa_realoc() on the control plane will free the old vq. If rte_vhost_dequeue_burst() on the data plane get the vq just before release, then it will access the released vq. We need to put the vq->access_

Re: [PATCH] net/memif: remove unnecessary rx_intr stub

2022-01-26 Thread Ferruh Yigit
On 1/15/2022 8:15 AM, Morten Brørup wrote: From: Stephen Hemminger [mailto:step...@networkplumber.org] Sent: Friday, 14 January 2022 21.47 The code in memif driver to stub out rx_irq_enable is unnecessary and causes different error returns than other drivers. The core ethdev code will return -EN

RE: [PATCH v2] net/i40e: reduce redundant store operation

2022-01-26 Thread Zhang, Qi Z
> -Original Message- > From: Feifei Wang > Sent: Tuesday, December 21, 2021 4:11 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Wang, Haiyue ; n...@arm.com; > Feifei Wang ; Ruifeng Wang > > Subject: [PATCH v2] net/i40e: reduce redundant store operation > > For free buffer operation in i40e

Re: [PATCH 0/3] three bugfixes for hns3 PMD

2022-01-26 Thread Ferruh Yigit
On 1/17/2022 2:42 AM, Min Hu (Connor) wrote: Three bugfixes: fix vector burst unsupported when PTP enable fix mailbox wait time uninitialization fix Rx/Tx when fast path operation introduced Huisong Li (1): net/hns3: fix mailbox wait time uninitialization Min Hu (Connor) (2): net/hns3: fi

DTS WG Meeting Minutes 1/19/22

2022-01-26 Thread Owen Hilyard
Hello Everyone, Sorry about being so late in sending these out. This document will always be up to date: https://docs.google.com/document/d/1E2mkTHNQ5vyln1JvnJTil15cjacUTXP7LXb9K960Vxs/edit#heading=h.6k5h0aafbuyy Here are the minutes: DTS Working Group Meeting Minutes for 2022 January 19, 2022

RE: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Ori Kam
> -Original Message- > From: Bruce Richardson > Sent: Wednesday, January 26, 2022 3:41 PM > To: Ori Kam > Subject: Re: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints > > On Wed, Jan 26, 2022 at 12:19:43PM +, Ori Kam wrote: > > > > > > > -Original Message- >

RE: [PATCH] common/mlx5: fix MR lookup for non-contiguous mempool

2022-01-26 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Dmitry Kozlyuk > Sent: Friday, January 14, 2022 12:52 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org; Wang Yunjian ; Slava > Ovsiienko ; Matan Azrad > Subject: [PATCH] common/mlx5: fix MR lookup for non-contiguous mempool > > Memory region (MR) lookup by ad

RE: [PATCH] net/mlx5: fix mark enabling for Rx datapath

2022-01-26 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Raja Zidane > Sent: Sunday, January 16, 2022 5:24 PM > To: dev@dpdk.org > Cc: Matan Azrad ; sta...@dpdk.org > Subject: [PATCH] net/mlx5: fix mark enabling for Rx datapath > > To optimize datapath, the mlx5 pmd checked for mark action on flow > creation, a

RE: [PATCH] common/mlx5: fix probing return value when failing

2022-01-26 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Bing Zhao > Sent: Monday, January 17, 2022 7:49 PM > To: Slava Ovsiienko ; Matan Azrad > > Cc: dev@dpdk.org; Raslan Darawsheh ; > Xueming(Steven) Li ; sta...@dpdk.org > Subject: [PATCH] common/mlx5: fix probing return value when failing > > While probing

RE: [PATCH] net/mlx5: reject jump to root table

2022-01-26 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Xiaoyu Min > Sent: Tuesday, January 18, 2022 1:39 PM > To: Matan Azrad ; Slava Ovsiienko > ; Dekel Peled > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: [PATCH] net/mlx5: reject jump to root table > > Currently root table as destination is not supported.

Re: [PATCH v2] net/bonding: fix RSS not work for bonding

2022-01-26 Thread Ferruh Yigit
On 1/18/2022 9:27 AM, Min Hu (Connor) wrote: 在 2022/1/18 17:18, Yu Wenjun 写道: RSS don't work when bond_ethdev_configure called before rte_eth_bond_slave_add. e.g.: dont't work(examples/bond/main.c): rte_eth_bond_create() rte_eth_dev_configure() rte_eth_bond_slave_add() rte_eth_dev_start() wor

DTS WG Meeting Minutes 1/26/22

2022-01-26 Thread Juraj Linkeš
Hello folks, The meeting minutes can be found here: https://docs.google.com/document/d/1E2mkTHNQ5vyln1JvnJTil15cjacUTXP7LXb9K960Vxs And here are the meeting minutes from Jan 26th: Attendees * Owen Hilyard * Juraj Linkes * Honnappa Nagarahalli * Lincoln Lavoie * Lijuan Tu *

[PATCH] net/ice: add support for setting promisc by DCF

2022-01-26 Thread Yiding Zhou
allow to enable/disable VFs promisc mode over VF0. this feature need to update ice kernel driver (newer than v1.8.0) Signed-off-by: Yiding Zhou --- drivers/net/ice/ice_dcf_vf_representor.c | 56 +--- 1 file changed, 39 insertions(+), 17 deletions(-) diff --git a/drivers/net/

Re: [PATCH v3 1/1] net/tap: add a check that Rx/Tx have the same num of queues

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 7:43 AM, Nobuhiro MIKI wrote: Users can create the desired number of RxQ and TxQ in DPDK. For example, if the number of RxQ = 2 and the number of TxQ = 5, a total of 8 file descriptors will be created for a tap device, including RxQ, TxQ, and one for keepalive. The RxQ and TxQ with t

Re: [PATCH 1/4] net/ark: add device capabilities record

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 7:12 PM, John Miller wrote: Add static record of supported device capabilities. Signed-off-by: John Miller --- drivers/net/ark/ark_ethdev.c | 58 +--- 1 file changed, 48 insertions(+), 10 deletions(-) diff --git a/drivers/net/ark/ark_ethdev.c b/d

Re: [PATCH 2/4] net/ark: support arbitrary mbuf size

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 7:12 PM, John Miller wrote: diff --git a/drivers/net/ark/ark_udm.h b/drivers/net/ark/ark_udm.h index 4e51a5e82c..1cbcd94a98 100644 --- a/drivers/net/ark/ark_udm.h +++ b/drivers/net/ark/ark_udm.h @@ -33,7 +33,7 @@ struct ark_rx_meta { #define ARK_RX_WRITE_TIME_NS 2500 #define ARK_

Re: [PATCH 3/4] net/ark: publish include file for external access

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 7:12 PM, John Miller wrote: publish rte_pmd_ark.h for external access to extension I have rejected same patch 2 or 3 times since PMD first upstreamed, it is frustrating that it keeps coming :( Please find the reasoning of why it is rejected from archives. Signed-off-by: John Mi

Re: [PATCH 3/4] net/ark: publish include file for external access

2022-01-26 Thread Ferruh Yigit
On 1/26/2022 4:48 PM, Ferruh Yigit wrote: On 1/19/2022 7:12 PM, John Miller wrote: publish rte_pmd_ark.h for external access to extension I have rejected same patch 2 or 3 times since PMD first upstreamed, it is frustrating that it keeps coming :( cc'ed Shepard & Ed. Please find the reas

Re: [PATCH 4/4] net/ark: support chunk DMA transfers

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 7:12 PM, John Miller wrote: Add support for chunk DMA transfers. Signed-off-by: John Miller --- drivers/net/ark/ark_ddm.c | 1 + drivers/net/ark/ark_ethdev_rx.c | 16 +--- drivers/net/ark/ark_mpu.c | 1 + drivers/net/ark/ark_pktchkr.c | 2 +- driv

Re: [dpdk-dev] [PATCH] net/nfp: free HW rings memzone on queue release

2022-01-26 Thread Ferruh Yigit
On 1/19/2022 11:48 AM, heinrich.k...@corigine.com wrote: From: Heinrich Kuhn During rx/tx queue setup, memory is reserved for the hardware rings. This memory zone should subsequently be freed in the queue release logic. This commit also adds a call to the release logic in the dev_close() callba

Re: [Bug 924] Mellanox ConnectX6 DPDK dpdk-testpmd Receive error len error checksum UDP packet performance is very low!

2022-01-26 Thread Asaf Penso
You mention flow2 is with the errors, but also show the performance is good. is this correct? Do you mean when you have errors you get perf drop? Regards, Asaf Penso From: bugzi...@dpdk.org Sent: Thursday, January 20, 2022 11:01:43 AM To: dev@dpdk.org Subject: [

Re: [PATCH] eal/windows: set pthread affinity

2022-01-26 Thread Menon, Ranjit
On 1/20/2022 4:17 PM, Pallavi Kadam wrote: Sometimes OS tries to switch the core. So, bind the lcore thread to a fixed core. Implement affinity call on Windows similar to Linux. Signed-off-by: Qiao Liu Signed-off-by: Pallavi Kadam --- lib/eal/windows/eal.c | 4 1 file changed, 4 insertio

Re: [PATCH v2 03/10] ethdev: bring in async queue-based flow rules

2022-01-26 Thread Ajit Khaparde
On Tue, Jan 25, 2022 at 9:03 PM Alexander Kozyrev wrote: > > On Monday, January 24, 2022 19:00 Ivan Malov wrote: > > This series is very helpful as it draws attention to > > the problem of making flow API efficient. That said, > > there is much room for improvement, especially in > > what comes t

[PATCH v4 1/2] gpudev: expose GPU memory to CPU

2022-01-26 Thread eagostini
From: Elena Agostini Enable the possibility to expose a GPU memory area and make it accessible from the CPU. GPU memory has to be allocated via rte_gpu_mem_alloc(). This patch allows the gpudev library to map (and unmap), through the GPU driver, a chunk of GPU memory and to return a memory poin

[PATCH v4 2/2] app/test-gpudev: test cpu_map/cpu_unmap functions

2022-01-26 Thread eagostini
From: Elena Agostini New test case added to test the gpudev cpu_map/cpu_unmap functions. Signed-off-by: Elena Agostini --- app/test-gpudev/main.c | 63 ++ 1 file changed, 63 insertions(+) diff --git a/app/test-gpudev/main.c b/app/test-gpudev/main.c inde

[PATCH v5 1/2] gpudev: expose GPU memory to CPU

2022-01-26 Thread eagostini
From: Elena Agostini Enable the possibility to expose a GPU memory area and make it accessible from the CPU. GPU memory has to be allocated via rte_gpu_mem_alloc(). This patch allows the gpudev library to map (and unmap), through the GPU driver, a chunk of GPU memory and to return a memory poin

[PATCH v5 2/2] app/test-gpudev: test cpu_map/cpu_unmap functions

2022-01-26 Thread eagostini
From: Elena Agostini New test case added to test the gpudev cpu_map/cpu_unmap functions. Signed-off-by: Elena Agostini --- app/test-gpudev/main.c | 63 ++ 1 file changed, 63 insertions(+) diff --git a/app/test-gpudev/main.c b/app/test-gpudev/main.c inde

[PATCH v2] net/enic: add support for eCPRI matching

2022-01-26 Thread John Daley
eCPRI message can be over Ethernet layer (.1Q supported also) or over UDP layer. Message header formats are the same in these two variants. Only up though the first packet header in the PDU can be matched. RSS on the eCPRI header fields is not supported. Signed-off-by: John Daley Reviewed-by: Hy

[PATCH v2] net/enic: support max descriptors allowed by adapter

2022-01-26 Thread John Daley
Newer VIC adapters have the max number of supported RX and TX descriptors in their configuration. Use these values as the maximums. Signed-off-by: John Daley Reviewed-by: Hyong Youb Kim --- v2: fix RTE_ASSERT drivers/net/enic/base/cq_enet_desc.h | 6 - drivers/net/enic/enic_res.c

RE: [PATCH] net/enic: adjust memory check and use in proper order

2022-01-26 Thread John Daley (johndale)
Reviewed-by: John Daley Thanks, John -Original Message- From: Weiguo Li Sent: Tuesday, January 25, 2022 4:01 AM To: John Daley (johndale) Cc: dev@dpdk.org Subject: [PATCH] net/enic: adjust memory check and use in proper order Fixes: bb66d562aefc ("net/enic: share flow actions with sa

RE: [PATCH v2 01/10] ethdev: introduce flow pre-configuration hints

2022-01-26 Thread Alexander Kozyrev
On Tuesday, January 25, 2022 13:44 Jerin Jacob wrote: > On Tue, Jan 25, 2022 at 6:58 AM Alexander Kozyrev > wrote: > > > > On Monday, January 24, 2022 12:41 Ajit Khaparde > wrote: > > > On Mon, Jan 24, 2022 at 6:37 AM Jerin Jacob > > > wrote: > > > > > > > Ok, I'll adopt this wording in the v3

RE: [RFC PATCH v1 0/4] Direct re-arming of buffers on receive side

2022-01-26 Thread Honnappa Nagarahalli
Thanks Morten, appreciate your comments. Few responses inline. > -Original Message- > From: Morten Brørup > Sent: Sunday, December 26, 2021 4:25 AM > To: Feifei Wang > Cc: dev@dpdk.org; nd > Subject: RE: [RFC PATCH v1 0/4] Direct re-arming of buffers on receive side > > > From: Feifei

RE: [PATCH] net/bonding: fix MTU set for slaves

2022-01-26 Thread Jiang, YuX
> -Original Message- > From: Yigit, Ferruh > Sent: Wednesday, January 26, 2022 9:11 PM > To: Chas Williams ; Min Hu (Connor) > ; Ivan Ilchenko ; > Andrew Rybchenko > Cc: dev@dpdk.org; Yigit, Ferruh ; sta...@dpdk.org; > Andrew Rybchenko ; Jiang, YuX > > Subject: [PATCH] net/bonding: fix M

RE: [PATCH v3 7/9] vhost: remove multi-line logs

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Wednesday, January 26, 2022 5:55 PM > To: dev@dpdk.org; Xia, Chenbo ; > david.march...@redhat.com > Cc: Maxime Coquelin > Subject: [PATCH v3 7/9] vhost: remove multi-line logs > > This patch replaces multi-lines logs in multiple single

RE: [PATCH] vdpa/mlx5: workaround queue stop with traffic

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Matan Azrad > Sent: Monday, November 22, 2021 9:13 PM > To: Maxime Coquelin > Cc: dev@dpdk.org; sta...@dpdk.org; Xueming Li > Subject: [PATCH] vdpa/mlx5: workaround queue stop with traffic > > When the event thread polls traffic and a virtq is stopping, the

RE: [PATCH] net/virtio: fix Tx queue 0 override by queue 128

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Xueming Li > Sent: Thursday, December 2, 2021 9:51 PM > To: dev@dpdk.org > Cc: xuemi...@nvidia.com; sta...@dpdk.org; Maxime Coquelin > ; Xia, Chenbo > Subject: [PATCH] net/virtio: fix Tx queue 0 override by queue 128 > > Both Rx queue and Tx queue are VirtQ i

RE: [PATCH v3] vdpa/ifc: fix log info mismatch

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Pei, Andy > Sent: Monday, December 13, 2021 3:01 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; sta...@dpdk.org > Subject: [PATCH v3] vdpa/ifc: fix log info mismatch > > Fix log info mismatch. > > Fixes: a3f8150eac6d ("net/ifcvf: add ifcvf vDPA driver") > Cc: sta.

RE: 回复: [RFC PATCH v1 0/4] Direct re-arming of buffers on receive side

2022-01-26 Thread Honnappa Nagarahalli
> > [quick summary: ethdev API to bypass mempool] > > 18/01/2022 16:51, Ferruh Yigit: > > On 12/28/2021 6:55 AM, Feifei Wang wrote: > > > Morten Brørup : > > >> The patch provides a significant performance improvement, but I am > > >> wondering if any real world applications exist that would us

RE: [PATCH] net/virtio: fix unreleased resource when creating virtio user dev is failed

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Harold Huang > Sent: Thursday, December 23, 2021 12:43 PM > To: dev@dpdk.org > Cc: Maxime Coquelin ; Xia, Chenbo > > Subject: [PATCH] net/virtio: fix unreleased resource when creating virtio user > dev is failed > > When eth_virtio_dev_init is failed, the reg

RE: 回复: [RFC PATCH v1 0/4] Direct re-arming of buffers on receive side

2022-01-26 Thread Honnappa Nagarahalli
> > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > Sent: Tuesday, 18 January 2022 17.54 > > > > [quick summary: ethdev API to bypass mempool] > > > > 18/01/2022 16:51, Ferruh Yigit: > > > On 12/28/2021 6:55 AM, Feifei Wang wrote: > > > > Morten Brørup : > > > >> The patch provides a si

RE: [dpdk-dev] [PATCH] net/virtio-user: check fd flags getting failure

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Yunjian Wang > Sent: Saturday, January 8, 2022 3:53 PM > To: dev@dpdk.org > Cc: maxime.coque...@redhat.com; Xia, Chenbo ; > dingxiaoxi...@huawei.com; xudin...@huawei.com; Yunjian Wang > ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/virtio-user: check fd f

RE: [dpdk-dev] [PATCH] net/virtio: fix uninitialized old_rss_key variable

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Yunjian Wang > Sent: Saturday, January 8, 2022 4:14 PM > To: dev@dpdk.org > Cc: maxime.coque...@redhat.com; Xia, Chenbo ; > dingxiaoxi...@huawei.com; xudin...@huawei.com; Yunjian Wang > ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/virtio: fix uninitializ

RE: [PATCH v2] vhost: add log for VHOST_USER_SET_VRING_BASE

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Pei, Andy > Sent: Friday, January 14, 2022 3:57 PM > To: dev@dpdk.org > Cc: Xia, Chenbo > Subject: [PATCH v2] vhost: add log for VHOST_USER_SET_VRING_BASE > > This patch adds log for vring related info in handling of vhost message > VHOST_USER_SET_VRING_BASE,

RE: [PATCH v3 0/9] vhost: improve logging

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Wednesday, January 26, 2022 5:55 PM > To: dev@dpdk.org; Xia, Chenbo ; > david.march...@redhat.com > Cc: Maxime Coquelin > Subject: [PATCH v3 0/9] vhost: improve logging > > This series aims at easing Vhost logs analysis, by > prependin

RE: [PATCH v2 09/83] lib/vhost: remove unnecessary NULL checks

2022-01-26 Thread Xia, Chenbo
Hi Stephen, > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 25, 2022 1:46 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Maxime Coquelin > ; Xia, Chenbo > Subject: [PATCH v2 09/83] lib/vhost: remove unnecessary NULL checks Title should be: vhost: remove unnecess

RE: [PATCH v2 10/83] examples/vhost_blk: remove unnecessary NULL checks

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 25, 2022 1:46 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Maxime Coquelin > ; Xia, Chenbo > Subject: [PATCH v2 10/83] examples/vhost_blk: remove unnecessary NULL checks > > Remove redundant NULL pointer checks be

RE: [PATCH v2 75/83] vdpa/ifc: remove unnecessary NULL checks

2022-01-26 Thread Xia, Chenbo
> -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 25, 2022 1:47 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Wang, Xiao W > > Subject: [PATCH v2 75/83] vdpa/ifc: remove unnecessary NULL checks > > Remove redundant NULL pointer checks before free functions > found

回复: [PATCH v2] net/i40e: reduce redundant store operation

2022-01-26 Thread Feifei Wang
> -邮件原件- > 发件人: Zhang, Qi Z > 发送时间: Wednesday, January 26, 2022 10:28 PM > 收件人: Feifei Wang ; Xing, Beilei > > 抄送: dev@dpdk.org; Wang, Haiyue ; nd > ; Ruifeng Wang > 主题: RE: [PATCH v2] net/i40e: reduce redundant store operation > > > > > -Original Message- > > From: Feifei W

RE: [PATCH v4 1/2] gpudev: expose GPU memory to CPU

2022-01-26 Thread Wang, Haiyue
> -Original Message- > From: eagost...@nvidia.com > Sent: Thursday, January 27, 2022 11:47 > To: dev@dpdk.org > Cc: Elena Agostini > Subject: [PATCH v4 1/2] gpudev: expose GPU memory to CPU > > From: Elena Agostini > > Enable the possibility to expose a GPU memory area and make it > ac

RE: [PATCH v2 15/15] vhost: make sure each queue callfd is configured

2022-01-26 Thread Xia, Chenbo
Hi Andy, > -Original Message- > From: Pei, Andy > Sent: Tuesday, January 25, 2022 5:37 PM > To: dev@dpdk.org > Cc: Xia, Chenbo ; maxime.coque...@redhat.com; Cao, Gang > ; Liu, Changpeng > Subject: [PATCH v2 15/15] vhost: make sure each queue callfd is configured > > During the vhost dat

RE: [EXT] Re: [dpdk-dev] [PATCH v2 2/2] app/testpmd: add queue based pfc CLI options

2022-01-26 Thread Sunil Kumar Kori
>-Original Message- >From: Ferruh Yigit >Sent: Tuesday, January 25, 2022 11:07 PM >To: Jerin Jacob Kollanukkaran ; dev@dpdk.org; Xiaoyun >Li ; Aman Singh ; Yuying >Zhang >Cc: tho...@monjalon.net; ajit.khapa...@broadcom.com; >abo...@pensando.io; andrew.rybche...@oktetlabs.ru; >beilei.x...

[PATCH v3] net/i40e: reduce redundant reset operation

2022-01-26 Thread Feifei Wang
For free buffer operation in i40e vector path, it is unnecessary to store 'NULL' into txep.mbuf. This is because when putting mbuf into Tx queue, tx_tail is the sentinel. And when doing tx_free, tx_next_dd is the sentinel. In all processes, mbuf==NULL is not a condition in check. Thus reset of mbuf