[dpdk-dev] [PATCH v2 4/4] net/iavf: fix vector mapping with queue

2021-01-07 Thread Jingjing Wu
Fix the vector mapping with queue by changing the recircle when exceeds RX_VEC_START + nb_msix; Signed-off-by: Jingjing Wu --- drivers/net/iavf/iavf_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/iavf/iavf_ethdev.c b/drivers/net/iavf/iavf_ethdev.c index

Re: [dpdk-dev] [PATCH 1/1] mbuf: add extern "C" to rte_mbuf_dyn.h

2021-01-07 Thread David Marchand
On Thu, Jan 7, 2021 at 2:42 AM Ashish Sadanandan wrote: > > Hi Olivier, > > On Wed, Jan 6, 2021 at 6:21 AM Olivier Matz wrote: > > > > Hi Ashish, > > > > Yes, it should reference the patch that introduced the issue. In this case, > > it should be: > > > > Fixes: 4958ca3a443a ("mbuf: support dyn

[dpdk-dev] [PATCH v3 1/3] doc: fix testpmd command for i40e RSS flow

2021-01-07 Thread Zhang,Alvin
From: Alvin Zhang The command here does not create a queue region, but only sets the lookup table, so the descriptions in the doc is not exact. Signed-off-by: Alvin Zhang Fixes: feaae285b342 ("net/i40e: support hash configuration in RSS flow") Cc: sta...@dpdk.org --- V2: Divide the patch into

[dpdk-dev] [PATCH v3 2/3] net/i40e: fix return value

2021-01-07 Thread Zhang,Alvin
From: Alvin Zhang The api should return the system error status, but it returned the hardware error status, this is confused for the caller. This patch adds check on hardware execution status and returns -EIO in case of hardware execution failure. Signed-off-by: Alvin Zhang Fixes: 1d4b2b4966bb

[dpdk-dev] [PATCH v3 3/3] net/i40e: refactor RSS flow

2021-01-07 Thread Zhang,Alvin
From: Alvin Zhang 1. Delete original code. 2. Add 2 tables(One maps flow pattern and RSS type to PCTYPE, another maps RSS type to input set). 3. Parse RSS pattern and RSS type to get PCTYPE. 4. Parse RSS action to get queues, RSS function and hash field. 5. Create and destroy RSS filters. 6. C

[dpdk-dev] [PATCH v7] net/iavf: fix invalid RSS combinations rule can be created

2021-01-07 Thread Murphy Yang
Currently, when use 'flow' command to create a rule that combine with several RSS types, even the RSS type combination is invalid, it also be created successfully. Here list some invalid RSS combinations: - ETH_RSS_IPV4 | ETH_RSS_NONFRAG_IPV4_TCP - ETH_RSS_IPV6 | ETH_RSS_NONFRAG_IPV6_TCP For 'E

[dpdk-dev] [PATCH v2 0/3] AVX512 vPMD on i40e

2021-01-07 Thread Leyi Rong
This patchset aims to support AVX512 vPMD on i40e. And the changes are only target to AVX512 vector path. --- v2: - Add return value check on rte_mempool_default_cache(). Leyi Rong (3): net/i40e: remove devarg use-latest-supported-vec net/i40e: add AVX512 vector path net/i40e: optimize Tx b

[dpdk-dev] [PATCH v2 2/3] net/i40e: add AVX512 vector path

2021-01-07 Thread Leyi Rong
Add AVX512 support for i40e PMD. This patch adds i40e_rxtx_vec_avx512.c to support i40e AVX512 vPMD. This patch aims to enable AVX512 on i40e vPMD. Main changes are focus on Rx path compared with AVX2 vPMD. Signed-off-by: Leyi Rong Signed-off-by: Bruce Richardson --- drivers/net/i40e/i40e_rxtx

[dpdk-dev] [PATCH v2 3/3] net/i40e: optimize Tx by using AVX512

2021-01-07 Thread Leyi Rong
Optimize Tx path by using AVX512 instructions and vectorize the tx free bufs process. Signed-off-by: Leyi Rong Signed-off-by: Bruce Richardson --- drivers/net/i40e/i40e_rxtx.c| 19 +++ drivers/net/i40e/i40e_rxtx.h| 4 + drivers/net/i40e/i40e_rxtx_vec_avx512.c | 152 ++

[dpdk-dev] [PATCH v2 1/3] net/i40e: remove devarg use-latest-supported-vec

2021-01-07 Thread Leyi Rong
As eal parameter --force-max-simd-bitwidth is already introduced, to make it more clear when setting rx/tx function, remove devarg use-latest-supported-vec support. Signed-off-by: Leyi Rong --- doc/guides/nics/i40e.rst | 9 --- drivers/net/i40e/i40e_ethdev.c | 63 +-- dr

Re: [dpdk-dev] [v2 PATCH] usertools: show an error message if unable to reserve requested hugepages

2021-01-07 Thread Sarosh Arif
On Thu, Dec 17, 2020 at 11:19 PM Stephen Hemminger wrote: > > On Thu, 17 Dec 2020 16:16:16 +0500 > Sarosh Arif wrote: > > > +if get_hugepages(path) != pages: > > +print("Unable to reserve required pages. The pages reserved are:") > > +global SHOW_HUGEPAGES > > +SHOW_HU

[dpdk-dev] [PATCH v3 0/8] ethdev: introduce GENEVE header TLV option item

2021-01-07 Thread Shiri Kuzin
The Geneve tunneling protocol is designed to allow the user to specify some data context on the packet. The GENEVE TLV (Type-Length-Variable) Option is the mean intended to present the user data. In order to support GENEVE TLV Option the new rte_flow item "rte_flow_item_geneve_opt" is introduce

[dpdk-dev] [PATCH v3 1/8] lib/librte_ethdev: introduce GENEVE header TLV option item

2021-01-07 Thread Shiri Kuzin
The Geneve tunneling protocol is designed to allow the user to specify some data context on the packet. The GENEVE TLV (Type-Length-Variable) Option is the mean intended to present the user data. In order to support GENEVE TLV Option the new rte_flow item "rte_flow_item_geneve_opt" is added. The n

[dpdk-dev] [PATCH v3 2/8] app/testpmd: add GENEVE option item support

2021-01-07 Thread Shiri Kuzin
From: Viacheslav Ovsiienko The patch adds the GENEVE option rte flow item support to command line interpreter. The flow command with GENEVE option items looks like: flow create 0 ingress pattern eth / ipv4 / udp / geneve vni is 100 / geneve-opt class is 99 length is 1 type is 0 data is

[dpdk-dev] [PATCH v3 3/8] common/mlx5: check GENEVE TLV support in HCA attributes

2021-01-07 Thread Shiri Kuzin
This is preparation step to support match on GENEVE TLV option. In this Patch we add the HCA attributes that will allow supporting GENEVE TLV option matching. Signed-off-by: Shiri Kuzin Acked-by: Viacheslav Ovsiienko --- drivers/common/mlx5/mlx5_devx_cmds.c | 7 +++ drivers/common/mlx5/ml

[dpdk-dev] [PATCH v3 4/8] common/mlx5: create GENEVE TLV option object with DevX

2021-01-07 Thread Shiri Kuzin
TLV object is a special firmware maintained entity used to support match on GENEVE header extension option. The TLV object is created with DevX API and accepts the option class, type and lehgth fields. The class type and length fields are set using MLX5_SET and the Devx object is created using ml

[dpdk-dev] [PATCH v3 5/8] net/mlx5: create GENEVE TLV option management

2021-01-07 Thread Shiri Kuzin
Currently firmware supports the only TLV object per device to match on the GENEVE header option. This patch adds the simple TLV object management to the mlx5 PMD. Signed-off-by: Shiri Kuzin Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5.c | 2 + drivers/net/mlx5/mlx5.h

[dpdk-dev] [PATCH v3 6/8] net/mlx5: add GENEVE TLV option flow validation

2021-01-07 Thread Shiri Kuzin
This patch adds validation routine for the GENEVE header TLV option. The GENEVE TLV option match must include all fields with full masks due to NIC does not support masking on option class, type and length. The option data length must be non zero and provided data pattern should be zero neither d

[dpdk-dev] [PATCH v3 7/8] net/mlx5: add GENEVE TLV option flow translation

2021-01-07 Thread Shiri Kuzin
The GENEVE TLV option matching flows must be created using a translation function. This function checks whether we already created a Devx object for the matching and either creates the objects or updates the reference counter. Signed-off-by: Shiri Kuzin Acked-by: Viacheslav Ovsiienko --- drive

[dpdk-dev] [PATCH v3 8/8] doc: update GENEVE TLV option support

2021-01-07 Thread Shiri Kuzin
GENEVE TLV option support added to mlx5 PMD. The limitations and support were updated in documentation. Signed-off-by: Shiri Kuzin Acked-by: Viacheslav Ovsiienko --- doc/guides/nics/mlx5.rst | 23 ++- doc/guides/rel_notes/release_21_02.rst | 8 2 fil

[dpdk-dev] [PATCH v3 0/5] introduce new iavf driver on vfio-user client

2021-01-07 Thread Jingjing Wu
This series introduces a new net virtual device called iavf_client which is based on vfio-user client interface. Through vfio-user client interface, PCI liked device could be used similar as IntelĀ® Ethernet Adaptive Virtual Function specification. The code to enable iavf_client mainly contains two

[dpdk-dev] [PATCH v3 1/5] common/iavf: emulated pci interfaces on vfio-user client

2021-01-07 Thread Jingjing Wu
This patch implements Emulated pci interfaces on vfio-user client which is located in common/iavf/vfio_user/. Four main functions provided to upper layer (driver) to set up or talk to device: - client_vfio_user_setup - client_vfio_user_release - client_vfio_user_get_bar_addr - client_vfio_user_

[dpdk-dev] [PATCH v3 2/5] net/iavf_client: introduce iavf driver on vfio-user client

2021-01-07 Thread Jingjing Wu
This patch add a new net driver based on vdev abstraction, i.e. iavf_client_ethdev.c. It is using common iavf functions to talk with Emulated pci interfaces based on vfio-user. -- | -- | | | iavf driver | |> (iavf_client_ethdev.c)

[dpdk-dev] [PATCH v3 3/5] net/iavf_client: enable interrupt on control queue

2021-01-07 Thread Jingjing Wu
New devarg "intr": if intr=1, use interrupt mode on control queue Signed-off-by: Jingjing Wu --- drivers/net/iavf/iavf.h | 19 drivers/net/iavf/iavf_client_ethdev.c | 131 ++ drivers/net/iavf/iavf_ethdev.c| 18 +--- 3 files changed, 134 insert

[dpdk-dev] [PATCH v3 4/5] net/iavf_client: enable interrupt of Rx queue

2021-01-07 Thread Jingjing Wu
Signed-off-by: Jingjing Wu --- drivers/net/iavf/iavf_client_ethdev.c | 29 +-- drivers/net/iavf/iavf_ethdev.c| 9 +++-- 2 files changed, 26 insertions(+), 12 deletions(-) diff --git a/drivers/net/iavf/iavf_client_ethdev.c b/drivers/net/iavf/iavf_client_ethde

[dpdk-dev] [PATCH v3 5/5] net/iavf: fix vector mapping with queue

2021-01-07 Thread Jingjing Wu
Fix the vector mapping with queue by changing the recircle when exceeds RX_VEC_START + nb_msix; Fixes: d6bde6b5eae9 ("net/avf: enable Rx interrupt") Signed-off-by: Jingjing Wu --- drivers/net/iavf/iavf_ethdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/

Re: [dpdk-dev] [PATCH 4/8] emu/iavf: add vfio-user device register and unregister

2021-01-07 Thread Xia, Chenbo
Hi Beilei, > -Original Message- > From: Xing, Beilei > Sent: Thursday, January 7, 2021 3:19 PM > To: Xia, Chenbo ; dev@dpdk.org; tho...@monjalon.net; > david.march...@redhat.com > Cc: step...@networkplumber.org; Liang, Cunming ; Lu, > Xiuchun ; Li, Miao ; Wu, Jingjing > > Subject: RE: [d

[dpdk-dev] [PATCH v8] net/iavf: fix invalid RSS combinations rule can be created

2021-01-07 Thread Murphy Yang
Currently, when use 'flow' command to create a rule with following invalid RSS type combination, it can be created successfully. Invalid RSS combinations list: - ETH_RSS_IPV4 | ETH_RSS_NONFRAG_IPV4_TCP - ETH_RSS_IPV6 | ETH_RSS_NONFRAG_IPV6_TCP This patch adds these combinations in 'invalid_rss_

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Guo, Jia
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, January 7, 2021 6:12 AM > To: Guo, Jia > Cc: Zhang, Qi Z ; Wu, Jingjing > ; Yang, Qiming ; Wang, > Haiyue ; dev@dpdk.org; Yigit, Ferruh > ; andrew.rybche...@oktetlabs.ru > Subject: Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: ad

Re: [dpdk-dev] [PATCH v8] net/iavf: fix invalid RSS combinations rule can be created

2021-01-07 Thread Guo, Jia
Acked-by: Jeff Guo > -Original Message- > From: Murphy Yang > Sent: Thursday, January 7, 2021 5:17 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Guo, Jia ; > Zhang, Qi Z ; Yang, SteveX ; > Wu, Jingjing ; Xing, Beilei ; > Yang, MurphyX > Subject: [PATCH v8] net/iavf: fix invalid RSS combina

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Andrew Rybchenko
On 1/7/21 12:32 PM, Guo, Jia wrote: -Original Message- From: Thomas Monjalon Sent: Thursday, January 7, 2021 6:12 AM To: Guo, Jia Cc: Zhang, Qi Z ; Wu, Jingjing ; Yang, Qiming ; Wang, Haiyue ; dev@dpdk.org; Yigit, Ferruh ; andrew.rybche...@oktetlabs.ru Subject: Re: [dpdk-dev] [dpdk-de

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Thomas Monjalon
07/01/2021 10:32, Guo, Jia: > From: Thomas Monjalon > > 24/12/2020 07:59, Jeff Guo: > > > Add type of RTE_TUNNEL_TYPE_ECPRI into the enum of ethdev tunnel > > type. > > > > > > Signed-off-by: Jeff Guo > > > Reviewed-by: Qi Zhang > > [...] > > > --- a/lib/librte_ethdev/rte_ethdev.h > > > +++ b/li

Re: [dpdk-dev] [PATCH v2 1/9] ethdev: refactor representor infrastructure

2021-01-07 Thread Somnath Kotur
On Wed, Jan 6, 2021 at 9:48 PM Xueming Li wrote: > > To support extended representor syntax, this patch refactor represntor Typo in 'representor' > infrastructure: > 1. introduces representor type enum > 2. devargs representor port range extraction from partial value > > Signed-off-by: Xueming Li

Re: [dpdk-dev] [PATCH 4/4] vdpa/mlx5: set default event mode to polling

2021-01-07 Thread Maxime Coquelin
On 12/3/20 12:36 AM, Xueming Li wrote: > For better performance and latency, this patch sets default event > handling mode to polling mode which uses dedicate thread per device to > poll and process event. > > Signed-off-by: Xueming Li > Acked-by: Matan Azrad > --- > doc/guides/vdpadevs/mlx5

Re: [dpdk-dev] [PATCH v2] net/virtio-user: fix run close(0) and close callfd

2021-01-07 Thread Maxime Coquelin
Cc'ing sta...@dpdk.org. On 12/11/20 6:11 PM, Jiawei Zhu wrote: > From: Jiawei Zhu > > When i < VIRTIO_MAX_VIRTQUEUES and j == i, > dev->callfds[i] and dev->kickfds[i] are default 0. > So it will close(0), close the standard input (stdin). > And when the code fails in kickfd creation, > it will l

Re: [dpdk-dev] [PATCH v1 2/4] net/virtio: add vectorized packed ring Rx NEON path

2021-01-07 Thread Maxime Coquelin
On 1/5/21 3:27 PM, Maxime Coquelin wrote: > > > On 1/5/21 3:16 PM, Maxime Coquelin wrote: >> >> >> On 11/17/20 11:06 AM, Joyce Kong wrote: >>> Optimize packed ring Rx batch path with NEON instructions. >>> >>> Signed-off-by: Joyce Kong >>> Reviewed-by: Ruifeng Wang >>> --- >>> drivers/net/v

Re: [dpdk-dev] [PATCH v2 1/9] ethdev: refactor representor infrastructure

2021-01-07 Thread Somnath Kotur
On Thu, Jan 7, 2021 at 12:08 PM Xueming(Steven) Li wrote: > > > > >-Original Message- > >From: Somnath Kotur > >Sent: Thursday, January 7, 2021 2:32 PM > >To: Xueming(Steven) Li > >Cc: NBU-Contact-Thomas Monjalon ; Ferruh Yigit > >; Andrew Rybchenko > >; Olivier Matz ; > >Slava Ovsiienko

Re: [dpdk-dev] [PATCH v3] net/axgbe: add support for reading FW version

2021-01-07 Thread Somalapuram, Amaranath
-Original Message- From: Sebastian, Selwin Sent: Wednesday, January 6, 2021 1:31 PM To: dev@dpdk.org Cc: Somalapuram, Amaranath ; ferruh.yi...@intel.com Subject: [PATCH v3] net/axgbe: add support for reading FW version From: Selwin Sebastian Added support for fw_version_get API Si

Re: [dpdk-dev] [PATCH v3 0/2] Enhance Async Enqueue for Small Packets

2021-01-07 Thread Maxime Coquelin
On 12/25/20 9:28 AM, Jiayu Hu wrote: > Async enqueue offloads large copies to DMA devices, and small copies > are still performed by the CPU. However, it requires users to get > enqueue completed packets by rte_vhost_poll_enqueue_completed(), even > if they are completed by the CPU when rte_vhos

[dpdk-dev] [PATCH 3/5] common/dpaax/caamflib: update zuc-zuc descriptor sharing

2021-01-07 Thread Hemant Agrawal
From: Akhil Goyal the descriptor sharing needed to be changed for ZUC+ZUC as we were getting invalid CHA combination error due to sharing being done on DECOs simultaneously. Signed-off-by: Akhil Goyal --- drivers/common/dpaax/caamflib/desc/pdcp.h | 4 ++-- 1 file changed, 2 insertions(+), 2 de

[dpdk-dev] [PATCH 2/5] test/crypto: add AES-XCBC hash only test case

2021-01-07 Thread Hemant Agrawal
This patch adds test case for AES-XCBC hash only for Digest and Digest-verify Signed-off-by: Hemant Agrawal --- app/test/test_cryptodev_hash_test_vectors.h | 41 + 1 file changed, 41 insertions(+) diff --git a/app/test/test_cryptodev_hash_test_vectors.h b/app/test/test_cryp

[dpdk-dev] [PATCH 1/5] crypto/dpaa2_sec: support AES-XCBC-MAC

2021-01-07 Thread Hemant Agrawal
From: Akhil Goyal This patch add support for AES-XCBC-MAC for following cases - AES-XCBC-MAC auth only - AES-CBC/CTR + AES-XCBC-MAC (non-proto) - AES-CBC/CTR + AES-XCBC-MAC (protocol offload) - DES-CBC + AES-XCBC-MAC (non-proto) - 3DES-CBC + AES-XCBC-MAC (non-proto) Signed-off-by: Barry Cao Sig

[dpdk-dev] [PATCH 4/5] crypto/dpaa2_sec: add support for AES CMAC integrity check

2021-01-07 Thread Hemant Agrawal
This patch adds support for AES_CMAC integrity in non-security mode. This patch modifies the camm flib to handles the AES CMAC without conflicting the proto ALG operations. i.e. by creating another ALG operation routine. Signed-off-by: Hemant Agrawal --- doc/guides/cryptodevs/dpaa2_sec.rst

[dpdk-dev] [PATCH 5/5] crypto/dpaa_sec: reduce the log on queue closure

2021-01-07 Thread Hemant Agrawal
if for some reason the queue is not close properly, specially in test cases. The QUEUE retire prints are flooding the screen. They are not really required as WARNING. Signed-off-by: Hemant Agrawal --- drivers/crypto/dpaa_sec/dpaa_sec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Ferruh Yigit
On 1/7/2021 5:39 AM, George Prekas wrote: On 1/6/2021 12:02 PM, Ferruh Yigit wrote: On 12/5/2020 5:42 AM, George Prekas wrote: Strict-aliasing rules are violated by cast to uint16_t* in flowgen.c and the calculated IP checksum is wrong on GCC 9 and GCC 10. Signed-off-by: George Prekas --- v

Re: [dpdk-dev] [PATCH] mlx5: fix __mlx5_bit_off macro warning for Windows

2021-01-07 Thread Tal Shnaiderman
> Subject: Re: [dpdk-dev] [PATCH] mlx5: fix __mlx5_bit_off macro warning for > Windows > > External email: Use caution opening links or attachments > > > On Wed, 6 Jan 2021 15:42:21 +0200, Tal Shnaiderman wrote: > > While compiling with clang 11 the callers of the __mlx5_bit_off macro > > warns

[dpdk-dev] [PATCH v2] mlx5: fix __mlx5_bit_off macro warning for Windows

2021-01-07 Thread Tal Shnaiderman
While compiling with clang 11 the callers of the __mlx5_bit_off macro warns on the cast of pointers to unsigned long which is a smaller int type in Windows. warning: cast to smaller integer type 'unsigned long' from 'u8 (*)[16]' [-Wpointer-to-int-cast] To resolve it the type is changed to uintptr

[dpdk-dev] [PATCH v7] raw/ioat: add secondary process support

2021-01-07 Thread Kumar Amber
Add support for secondary processes in ioat devices. The update allocates a memzone for a primary process or returns it in a secondary process. Signed-off-by: Kumar Amber --- v5 * add error check for memzone lookup v6 * fix compilation v7 * include dev ops for secondary --- drivers/raw/ioat/ioa

Re: [dpdk-dev] [PATCH v7] raw/ioat: add secondary process support

2021-01-07 Thread Bruce Richardson
On Thu, Jan 07, 2021 at 05:53:12PM +0530, Kumar Amber wrote: > Add support for secondary processes in ioat devices. The update > allocates a memzone for a primary process or returns it in a > secondary process. > > Signed-off-by: Kumar Amber > > --- > v5 > * add error check for memzone lookup >

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Zhang, Qi Z
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, January 7, 2021 6:12 PM > To: Guo, Jia > Cc: Zhang, Qi Z ; Wu, Jingjing ; > Yang, Qiming ; Wang, Haiyue > ; dev@dpdk.org; Yigit, Ferruh > ; andrew.rybche...@oktetlabs.ru; or...@nvidia.com; > getel...@nvidia.com > Subject: R

Re: [dpdk-dev] [PATCH v2] mlx5: fix __mlx5_bit_off macro warning for Windows

2021-01-07 Thread Matan Azrad
From: Tal Shnaiderman > While compiling with clang 11 the callers of the __mlx5_bit_off macro warns > on the cast of pointers to unsigned long which is a smaller int type in > Windows. > > warning: cast to smaller integer type 'unsigned long' > from 'u8 (*)[16]' [-Wpointer-to-int-cast] > > To

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Ferruh Yigit
On 1/7/2021 11:32 AM, Ferruh Yigit wrote: On 1/7/2021 5:39 AM, George Prekas wrote: On 1/6/2021 12:02 PM, Ferruh Yigit wrote: On 12/5/2020 5:42 AM, George Prekas wrote: Strict-aliasing rules are violated by cast to uint16_t* in flowgen.c and the calculated IP checksum is wrong on GCC 9 and G

[dpdk-dev] [PATCH v3] mlx5: split multi-threaded flows per OS

2021-01-07 Thread Tal Shnaiderman
multi-threaded flows feature uses pthread function pthread_key_create but for Windows the destruction option in the function is unimplemented. to resolve it Windows will implement destruction mechanism to cleanup mlx5_flow_workspace object for each terminated thread. Linux flow will keep the curr

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Thomas Monjalon
07/01/2021 13:47, Zhang, Qi Z: > > > -Original Message- > > From: Thomas Monjalon > > Sent: Thursday, January 7, 2021 6:12 PM > > To: Guo, Jia > > Cc: Zhang, Qi Z ; Wu, Jingjing > > ; > > Yang, Qiming ; Wang, Haiyue > > ; dev@dpdk.org; Yigit, Ferruh > > ; andrew.rybche...@oktetlabs.ru;

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread David Marchand
On Thu, Jan 7, 2021 at 2:33 PM Thomas Monjalon wrote: > > Yes that may break the ABI but fortunately the checking-abi-compatibility > > tool shows negative :) , thanks Ferruh' s guide. > > https://github.com/ferruhy/dpdk/actions/runs/468859673 > > That's very strange. An enum value is changed. >

[dpdk-dev] [PATCH] net/enic: use 64B completion queue entries if available

2021-01-07 Thread Hyong Youb Kim
Latest VIC adapters support 64B CQ (completion queue) entries as well as 16B entries available on all VIC models. 64B entries can greatly reduce cache contention (CPU stall cycles) between DMA writes (Rx packet descriptors) and polling CPU. The effect is very noticeable on Intel platforms with DDIO

Re: [dpdk-dev] [PATCH v1 1/4] net/virtio: remove unnecessary rmb barrier

2021-01-07 Thread Maxime Coquelin
On 12/21/20 3:23 PM, Joyce Kong wrote: > As desc_is_used has a load-acquire or rte_io_rmb inside > and wait for used desc in virtqueue, it is ok to remove > virtio_rmb behind it. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > drivers/net/virtio/virtio_ethdev.c | 6 +++--- >

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Alexander Kozyrev
> Tuesday, January 5, 2021 17:17, Thomas Monjalon > > RTE Flows API lacks the ability to save an arbitrary header field in > > order to use it later for advanced packet manipulations. Examples > > include the usage of VxLAN ID after the packet is decapsulated or > > storing this ID inside the pack

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Dodji Seketeli
David Marchand writes: > On Thu, Jan 7, 2021 at 2:33 PM Thomas Monjalon wrote: >> > Yes that may break the ABI but fortunately the checking-abi-compatibility >> > tool shows negative :) , thanks Ferruh' s guide. >> > https://github.com/ferruhy/dpdk/actions/runs/468859673 >> >> That's very stran

Re: [dpdk-dev] [PATCH v1 2/4] net/virtio: replace smp barrier with IO barrier

2021-01-07 Thread Maxime Coquelin
On 12/21/20 3:23 PM, Joyce Kong wrote: > Replace rte_smp_wmb/rmb with rte_io_wmb/rmb as they are the same on x86 > and ppc platforms. Then, for function virtqueue_fetch_flags_packed/ > virtqueue_store_flags_packed, the if and else branch are still identical > for the platforms except Arm. > > S

Re: [dpdk-dev] [PATCH v9 2/2] eal: add generic thread-local-storage functions

2021-01-07 Thread Dmitry Kozlyuk
On Wed, 6 Jan 2021 22:35:53 +0200, Tal Shnaiderman wrote: [...] > +int > +rte_thread_tls_key_create(rte_tls_key *key, void (*destructor)(void *)) > +{ > + int err; > + > + *key = malloc(sizeof(**key)); > + if ((*key) == NULL) { > + RTE_LOG(DEBUG, EAL, "Cannot allocate TLS k

Re: [dpdk-dev] [PATCH v1 3/4] net/virtio: replace full barrier with relaxed barrier for Arm platform

2021-01-07 Thread Maxime Coquelin
On 12/21/20 3:23 PM, Joyce Kong wrote: > Relax the full write barriers to one-way barriers for virtio > control path for Arm platform > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > drivers/net/virtio/virtio_ethdev.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(

Re: [dpdk-dev] [PATCH 3/4] app/flow-perf: change clock measurement functions

2021-01-07 Thread Thomas Monjalon
26/11/2020 12:15, Wisam Jaddo: > The clock() function is not good practice to use for multiple > cores/threads, since it measures the CPU time used by the process > and not the wall clock time, while when running through multiple > cores/threads simultaneously, we can burn through CPU time much > f

Re: [dpdk-dev] [PATCH 0/4] app/flow-perf: add multi threaded support

2021-01-07 Thread Thomas Monjalon
26/11/2020 12:15, Wisam Jaddo: > After this series the application will start supporting testing > multiple threaded insertion and deletion rates. > > Also it will provide the latency & throughput rates of all threads. > > > Wisam Jaddo (4): > app/flow-perf: refactor flows handler > app/flow

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Thomas Monjalon
07/01/2021 15:17, Alexander Kozyrev: > > Tuesday, January 5, 2021 17:17, Thomas Monjalon > > > RTE Flows API lacks the ability to save an arbitrary header field in > > > order to use it later for advanced packet manipulations. Examples > > > include the usage of VxLAN ID after the packet is decaps

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Alexander Kozyrev
> > > Thursday, January 7, 2021 10:07, Thomas Monjalon > > > > RTE Flows API lacks the ability to save an arbitrary header field in > > > > order to use it later for advanced packet manipulations. Examples > > > > include the usage of VxLAN ID after the packet is decapsulated or > > > > storing th

Re: [dpdk-dev] [PATCH 1/2] regexdev: add resource limit reached rsp flag

2021-01-07 Thread Ori Kam
Hi I would very much like a review for this patch. Thank you, Ori > -Original Message- > From: Ori Kam > Sent: Thursday, December 17, 2020 12:38 PM > Subject: [PATCH 1/2] regexdev: add resource limit reached rsp flag > > When scanning a buffer it is possible that the scan will abort >

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Thomas Monjalon
07/01/2021 16:10, Alexander Kozyrev: > > > > Thursday, January 7, 2021 10:07, Thomas Monjalon > > > > > RTE Flows API lacks the ability to save an arbitrary header field in > > > > > order to use it later for advanced packet manipulations. Examples > > > > > include the usage of VxLAN ID after the

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Alexander Kozyrev
> 07/01/2021 16:10, Alexander Kozyrev: > > > > > Thursday, January 7, 2021 10:18, Thomas Monjalon > > > > > > > RTE Flows API lacks the ability to save an arbitrary header field in > > > > > > order to use it later for advanced packet manipulations. Examples > > > > > > include the usage of VxLAN

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Ferruh Yigit
On 1/7/2021 2:20 PM, George Prekas wrote: On 1/7/2021 5:32 AM, Ferruh Yigit wrote: On 1/7/2021 5:39 AM, George Prekas wrote: On 1/6/2021 12:02 PM, Ferruh Yigit wrote: On 12/5/2020 5:42 AM, George Prekas wrote: Strict-aliasing rules are violated by cast to uint16_t* in flowgen.c and the calcul

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Zhang, Qi Z
> -Original Message- > From: Thomas Monjalon > Sent: Thursday, January 7, 2021 9:34 PM > To: Guo, Jia ; Zhang, Qi Z > Cc: Wu, Jingjing ; Yang, Qiming > ; Wang, Haiyue ; > dev@dpdk.org; Yigit, Ferruh ; > andrew.rybche...@oktetlabs.ru; or...@nvidia.com; getel...@nvidia.com; > Dodji Seket

Re: [dpdk-dev] [PATCH] net/bnxt: limit per-poll Rx representor pkts

2021-01-07 Thread Ferruh Yigit
On 1/6/2021 8:54 PM, Lance Richardson wrote: On Wed, Jan 6, 2021 at 4:27 AM Ferruh Yigit wrote: On 12/14/2020 6:53 PM, Lance Richardson wrote: Limit number of representor packets transferred per poll to requested burst size. Hi Lance, Can you please describe the impact of the change? Sinc

Re: [dpdk-dev] [v2 PATCH] usertools: show an error message if unable to reserve requested hugepages

2021-01-07 Thread Stephen Hemminger
On Thu, 7 Jan 2021 13:06:35 +0500 Sarosh Arif wrote: > On Thu, Dec 17, 2020 at 11:19 PM Stephen Hemminger > wrote: > > > > On Thu, 17 Dec 2020 16:16:16 +0500 > > Sarosh Arif wrote: > > > > > +if get_hugepages(path) != pages: > > > +print("Unable to reserve required pages. The page

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Stephen Hemminger
On Wed, 6 Jan 2021 23:39:39 -0600 George Prekas wrote: > On 1/6/2021 12:02 PM, Ferruh Yigit wrote: > > On 12/5/2020 5:42 AM, George Prekas wrote: > >> Strict-aliasing rules are violated by cast to uint16_t* in flowgen.c > >> and the calculated IP checksum is wrong on GCC 9 and GCC 10. > >> > >>

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Ferruh Yigit
On 1/7/2021 3:50 PM, Stephen Hemminger wrote: On Wed, 6 Jan 2021 23:39:39 -0600 George Prekas wrote: On 1/6/2021 12:02 PM, Ferruh Yigit wrote: On 12/5/2020 5:42 AM, George Prekas wrote: Strict-aliasing rules are violated by cast to uint16_t* in flowgen.c and the calculated IP checksum is wro

Re: [dpdk-dev] [PATCH v1 4/4] net/virtio: replace full barrier with thread fence

2021-01-07 Thread Maxime Coquelin
On 12/21/20 3:23 PM, Joyce Kong wrote: > Replace the smp barriers with atomic thread fence for synchronization > between different threads, if there are no load/store operations. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > drivers/net/virtio/virtqueue.h | 8 >

Re: [dpdk-dev] [PATCH v2] app/testpmd: fix IP checksum calculation

2021-01-07 Thread Stephen Hemminger
On Thu, 7 Jan 2021 15:59:59 + Ferruh Yigit wrote: > >> > >> int main(void) > >> { > >>pkt_burst_flow_gen(); > >>return 0; > >> } > > > > If I change your code like this to use union, Gcc 10 is still broken. > > This worked fine for me: https://godbolt.org/z/vdsxh9 I was looking

Re: [dpdk-dev] [PATCH v1 1/8] examples/vhost: relax memory ordering when enqueue/dequeue

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Use C11 atomic APIs with one-way barriers to replace two-way > barriers when operating enqueue/dequeue. Used->idx and avail->idx > are the synchronization points for split vring. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > exampl

Re: [dpdk-dev] [PATCH v1 2/8] examples/vhost_blk: replace smp with thread fence

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Simply replace the rte_smp_mb barriers with SEQ_CST atomic thread fence, > if there is no load/store operations. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > examples/vhost_blk/vhost_blk.c | 8 > 1 file changed, 4 inserti

Re: [dpdk-dev] [PATCH v1 3/8] vhost: remove unnecessary smp barrier for desc flags

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > As function desc_is_avail performs a load-acquire barrier to > enforce the ordering between desc flags and desc content, it is > unnecessary to add a rte_smp_rmb barrier around the trace which > follows desc_is_avail. > > Signed-off-by: Joyce Kong > Rev

Re: [dpdk-dev] [PATCH v1 4/8] vhost: remove unnecessary smp barrier for avail idx

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > The ordering between avail index and desc reads has been enforced > by load-acquire for split vring, so smp_rmb barrier is not needed > behind it. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > lib/librte_vhost/virtio_net.c | 7 ++--

Re: [dpdk-dev] [PATCH v1 5/8] vhost: relax full barriers for desc flags

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Relax the full read barrier to one-way barrier for desc flags in > packed vring. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > lib/librte_vhost/virtio_net.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > Reviewed-

Re: [dpdk-dev] [PATCH v1 6/8] vhost: relax full barriers for used idx

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Used idx can be synchronized by one-way barrier instead of full > write barrier for split vring. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > lib/librte_vhost/vdpa.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) Rev

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Thomas Monjalon
07/01/2021 16:22, Alexander Kozyrev: > > 07/01/2021 16:10, Alexander Kozyrev: > > > > > > Thursday, January 7, 2021 10:18, Thomas Monjalon > > > > > > > > > RTE Flows API lacks the ability to save an arbitrary header field > > > > > > > in > > > > > > > order to use it later for advanced packet m

[dpdk-dev] [PATCH v2 0/5] regex/mlx5: pmd improvements

2021-01-07 Thread Ori Kam
This series adds a few fixes and improvements to the Nvidia RegEx PMD. V2: * Fix small issue in combined rule patch. * Add new patch for number of queues. Ori Kam (5): regex/mlx5: fix memory rule alignment regex/mlx5: add support for combined rule file regex/mlx5: fix support for group id

[dpdk-dev] [PATCH v2 2/5] regex/mlx5: add support for combined rule file

2021-01-07 Thread Ori Kam
The rof file holds programming instructions for a given HW version. In order to support future generation of HW it was decided that the rof file will hold number of rule configurations, and the driver will use the one that matches the HW version. In current code we force sync after each write bloc

[dpdk-dev] [PATCH v2 3/5] regex/mlx5: fix support for group id

2021-01-07 Thread Ori Kam
In order to know which groups in the RegEx engine should be used there is a need to check the req_flags. This commit adds the missing check. Cc: sta...@dpdk.org Fixes: 4d4e245ad637 ("regex/mlx5: support enqueue") Signed-off-by: Ori Kam --- drivers/regex/mlx5/mlx5_regex_fastpath.c | 21 +++

[dpdk-dev] [PATCH v2 1/5] regex/mlx5: fix memory rule alignment

2021-01-07 Thread Ori Kam
Due to Kernel requirement the memory allocated must be aligned to 2M. Fixes: b34d816363b5 ("regex/mlx5: support rules import") Cc: sta...@dpdk.org Signed-off-by: Ori Kam --- drivers/regex/mlx5/mlx5_rxp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/regex/mlx5/mlx

[dpdk-dev] [PATCH v2 4/5] regex/mlx5: add support for priority match

2021-01-07 Thread Ori Kam
The high priority match request flags means that the RegEx engine should stop on the first match. This commit add this flag check to the RegEx engine. Signed-off-by: Ori Kam --- drivers/regex/mlx5/mlx5_regex_fastpath.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drive

[dpdk-dev] [PATCH v2 5/5] regex/mlx5: fix num of supported queues

2021-01-07 Thread Ori Kam
The RegEx engine as no limitation on number of queues. This commits modifies the max supported queues reported to the application. Fixes: fbc8c7003b93 ("regex/mlx5: add completion queue creation") Cc: sta...@dpdk.org Signed-off-by: Ori Kam --- drivers/regex/mlx5/mlx5_rxp.c | 3 +-- 1 file chan

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Alexander Kozyrev
> 07/01/2021 16:22, Alexander Kozyrev: > > > 07/01/2021 16:10, Alexander Kozyrev: > > > > > > > Thursday, January 7, 2021 10:18, Thomas Monjalon > > > > > > > > > > > RTE Flows API lacks the ability to save an arbitrary header > > > > > > > > field in > > > > > > > > order to use it later for adv

Re: [dpdk-dev] [dpdk-dev v2 1/2] ethdev: add new tunnel type for ecpri

2021-01-07 Thread Thomas Monjalon
07/01/2021 16:24, Zhang, Qi Z: > From: Thomas Monjalon > > 07/01/2021 13:47, Zhang, Qi Z: > > > From: Thomas Monjalon > > > > 07/01/2021 10:32, Guo, Jia: > > > > > From: Thomas Monjalon > > > > > > 24/12/2020 07:59, Jeff Guo: > > > > > > > --- a/lib/librte_ethdev/rte_ethdev.h > > > > > > > +++ b

Re: [dpdk-dev] [RFC] ethdev: introduce copy_field rte flow action

2021-01-07 Thread Thomas Monjalon
07/01/2021 17:57, Alexander Kozyrev: > > 07/01/2021 16:22, Alexander Kozyrev: > > > > 07/01/2021 16:10, Alexander Kozyrev: > > > > > > > > Thursday, January 7, 2021 10:18, Thomas Monjalon > > > > > > > > > > > > > RTE Flows API lacks the ability to save an arbitrary header > > > > > > > > > field

Re: [dpdk-dev] [PATCH v1 7/8] vhost: replace smp with thread fence for packed vring

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Simply relace smp barriers with atomic thread fence for > virtio packed vring. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > lib/librte_vhost/virtio_net.c | 9 + > 1 file changed, 5 insertions(+), 4 deletions(-) > Reviewe

[dpdk-dev] [PATCH v2 1/1] mbuf: fix rte_mbuf_dyn.h inclusion from C++

2021-01-07 Thread Ashish Sadanandan
The header was missing the extern "C" directive which causes name mangling of functions by C++ compilers, leading to linker errors complaining of undefined references to these functions. Fixes: 4958ca3a443a ("mbuf: support dynamic fields and flags") Cc: olivier.m...@6wind.com Cc: sta...@dpdk.org

Re: [dpdk-dev] [PATCH v1 8/8] vhost: replace smp with thread fence for control path

2021-01-07 Thread Maxime Coquelin
On 12/21/20 4:50 PM, Joyce Kong wrote: > Simply replace the smp barriers with atomic thread fence for vhost control > path, if there are no synchronization points. > > Signed-off-by: Joyce Kong > Reviewed-by: Ruifeng Wang > --- > lib/librte_vhost/vhost.c | 18 +- > lib/l

Re: [dpdk-dev] [PATCH 1/2] common/mlx5: support vDPA completion queue moderation

2021-01-07 Thread Maxime Coquelin
On 1/6/21 4:06 AM, Xueming Li wrote: > This patch introduces new parameters for VirtQ CQ moderation, used for > performance tuning. > > Signed-off-by: Xueming Li > --- > drivers/common/mlx5/mlx5_devx_cmds.c | 3 +++ > drivers/common/mlx5/mlx5_devx_cmds.h | 3 +++ > drivers/common/mlx5/mlx5_pr

Re: [dpdk-dev] [PATCH 1/1] mbuf: add extern "C" to rte_mbuf_dyn.h

2021-01-07 Thread Ashish Sadanandan
Hi David, On Thu, Jan 7, 2021 at 1:02 AM David Marchand wrote: > On Thu, Jan 7, 2021 at 2:42 AM Ashish Sadanandan > wrote: > > > > Hi Olivier, > > > > On Wed, Jan 6, 2021 at 6:21 AM Olivier Matz > wrote: > > > > > > Hi Ashish, > > > > > > Yes, it should reference the patch that introduced the

Re: [dpdk-dev] [PATCH 2/2] vdpa/mlx5: hardware queue moderation

2021-01-07 Thread Maxime Coquelin
On 1/6/21 4:06 AM, Xueming Li wrote: > The next parameters control the HW queue moderation feature. > This feature helps to control the traffic performance and latency > tradeoff. > > Each packet completion report from HW to SW requires CQ processing by SW > and triggers interrupt for the guest

[dpdk-dev] DPDK Release Status Meeting 7/01/2021

2021-01-07 Thread Ferruh Yigit
Meeting minutes of 7 January 2021 - Agenda: * Release Dates * Subtrees * LTS * Opens Participants: * Arm * Broadcom * Debian/Microsoft * Intel * Marvell * Nvidia * NXP * Red Hat Release Dates - * Happy new year! * v21.02 dates * Proposal/V1 passe

  1   2   >