Re: [dpdk-dev] [PATCH v4 00/13] enhancements to host based flow table management

2021-09-23 Thread Ferruh Yigit
On 9/22/2021 9:21 PM, Ajit Khaparde wrote: > On Wed, Sep 22, 2021 at 10:36 AM Ferruh Yigit wrote: >> >> On 9/21/2021 5:50 AM, Ajit Khaparde wrote: >>> On Mon, Sep 20, 2021 at 12:42 AM Venkat Duvvuru >>> wrote: This patch set adds support for new offload features/enhancments for Tho

Re: [dpdk-dev] [PATCH v2 1/5] net/virtio: add initial RSS support

2021-09-23 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Wednesday, September 22, 2021 5:58 PM > To: dev@dpdk.org; Xia, Chenbo ; amore...@redhat.com; > david.march...@redhat.com; andrew.rybche...@oktetlabs.ru; Yigit, Ferruh > ; michae...@nvidia.com; viachesl...@nvidia.com; Li, > Xi

Re: [dpdk-dev] [PATCH v3 13/13] app/test: enable subset of unit tests on Windows

2021-09-23 Thread Dmitry Kozlyuk
2021-09-08 15:14 (UTC-0700), Jie Zhou: > On Tue, Sep 07, 2021 at 09:43:56AM -0400, Aaron Conole wrote: > > Jie Zhou writes: > > > > > Enable a subset of unit tests on Windows. Currently not all the > > > dependencies (e.g. libraries and some functionalities) of all unit > > > tests are supporte

Re: [dpdk-dev] [PATCH v2 2/5] app/testpmd: fix RSS key length

2021-09-23 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Wednesday, September 22, 2021 5:58 PM > To: dev@dpdk.org; Xia, Chenbo ; amore...@redhat.com; > david.march...@redhat.com; andrew.rybche...@oktetlabs.ru; Yigit, Ferruh > ; michae...@nvidia.com; viachesl...@nvidia.com; Li, > Xiaoyun > Cc:

Re: [dpdk-dev] [PATCH v2 3/5] app/testpmd: fix RSS type display

2021-09-23 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Wednesday, September 22, 2021 5:58 PM > To: dev@dpdk.org; Xia, Chenbo ; amore...@redhat.com; > david.march...@redhat.com; andrew.rybche...@oktetlabs.ru; Yigit, Ferruh > ; michae...@nvidia.com; viachesl...@nvidia.com; Li, > Xiaoyun > Cc:

[dpdk-dev] [PATCH v6 1/2] app/testpmd: update forward engine beginning

2021-09-23 Thread Alvin Zhang
For each forward engine, there may be some special conditions must be met before the forwarding runs. Adding checks for these conditions in configuring is not suitable, because one condition may rely on multiple configurations, and the conditions required by each forward engine is not general. Th

[dpdk-dev] [PATCH v6 2/2] app/testpmd: fix txonly forwarding

2021-09-23 Thread Alvin Zhang
When random number of Tx segments is enabled, because the actual number of segments may be only one, the first segment of the Tx packets must accommodate a complete being sending Eth/IP/UDP packet. Besides, if multiple flow is enabled, the forwarding will update the IP and UDP header, these header

Re: [dpdk-dev] [PATCH v4 1/2] eal: add additional info if core list too long

2021-09-23 Thread David Marchand
On Wed, Sep 22, 2021 at 2:29 PM David Hunt wrote: > > If the user requests to use an lcore above 128 using -l, > the eal will exit with "EAL: invalid core list syntax" and > very little else useful information. > > This patch adds some extra information suggesting to use --lcores > so that physica

Re: [dpdk-dev] [PATCH v4 2/2] eal: add additional info if core mask too long

2021-09-23 Thread David Marchand
On Wed, Sep 22, 2021 at 2:29 PM David Hunt wrote: > > If the user requests to use an lcore above 128 using -c, > the eal will exit with "EAL: invalid core list syntax" and > very little else useful information. invalid coremask* > > This patch adds some extra information suggesting to use --lco

Re: [dpdk-dev] [PATCH] net/virtio: fix indirect descriptors reconnection

2021-09-23 Thread Maxime Coquelin
Hi Xuan, On 8/19/21 07:35, Xuan Ding wrote: Since packed indirect descriptors are added and initialized when initializing vring, the reconnection path also needs to be considered. Fixes: 381f39ebb78a ("net/virtio: fix packed ring indirect descricptors setup") Cc: sta...@dpdk.org Cc: yong@in

Re: [dpdk-dev] [PATCH v1 0/7] make rte_intr_handle internal

2021-09-23 Thread David Marchand
Hello Harman, On Fri, Sep 3, 2021 at 2:42 PM Harman Kalra wrote: > > Moving struct rte_intr_handle as an internal structure to > avoid any ABI breakages in future. Since this structure defines > some static arrays and changing respective macros breaks the ABI. > Eg: > Currently RTE_MAX_RXTX_INTR

Re: [dpdk-dev] [PATCH] vhost: Clean iotlb cache on vring stop

2021-09-23 Thread Maxime Coquelin
On 8/27/21 18:12, Eugenio Pérez wrote: Old IOVA cache entries are left when there is a change on virtio driver in VM. In case that all these old entries have iova addresses lesser than new iova entries, vhost code will need to iterate all the cache to find the new ones. In case of just a new i

Re: [dpdk-dev] [PATCH] net/virtio: fix indirect descriptors reconnection

2021-09-23 Thread Ding, Xuan
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Thursday, September 23, 2021 4:16 PM > To: Ding, Xuan ; Xia, Chenbo > Cc: dev@dpdk.org; Hu, Jiayu ; Wang, Yinan > ; sta...@dpdk.org; Liu, Yong > Subject: Re: [PATCH] net/virtio: fix indirect descriptors reconnection > > Hi

[dpdk-dev] [PATCH] examples/vhost: fix use-after-free on drain vhost

2021-09-23 Thread Wenwu Ma
When a vdev is removed in destroy_device function, the corresponding vhost_txbuff[vdev->vid] will also be free, but the vhost_txbuff[vdev->vid] may still be used in the drain_vhost function, which will cause an error of heap-use-after-free. Therefore, before accessing vhost_txbuff[vdev->vid], we ne

Re: [dpdk-dev] [PATCH] vhost: Clean iotlb cache on vring stop

2021-09-23 Thread Xia, Chenbo
Hi Maxime, > -Original Message- > From: Maxime Coquelin > Sent: Thursday, September 23, 2021 4:34 PM > To: Eugenio Pérez ; Xia, Chenbo > Cc: dev@dpdk.org; Pei Zhang ; Jason Wang > > Subject: Re: [PATCH] vhost: Clean iotlb cache on vring stop > > > > On 8/27/21 18:12, Eugenio Pérez wr

Re: [dpdk-dev] [PATCH] vhost: Clean iotlb cache on vring stop

2021-09-23 Thread Maxime Coquelin
On 9/23/21 10:48, Xia, Chenbo wrote: Hi Maxime, -Original Message- From: Maxime Coquelin Sent: Thursday, September 23, 2021 4:34 PM To: Eugenio Pérez ; Xia, Chenbo Cc: dev@dpdk.org; Pei Zhang ; Jason Wang Subject: Re: [PATCH] vhost: Clean iotlb cache on vring stop On 8/27/21 18

Re: [dpdk-dev] [PATCH] vhost: Clean iotlb cache on vring stop

2021-09-23 Thread Xia, Chenbo
> -Original Message- > From: Maxime Coquelin > Sent: Thursday, September 23, 2021 4:50 PM > To: Xia, Chenbo ; Eugenio Pérez > Cc: dev@dpdk.org; Pei Zhang ; Jason Wang > > Subject: Re: [PATCH] vhost: Clean iotlb cache on vring stop > > > > On 9/23/21 10:48, Xia, Chenbo wrote: > > Hi Ma

Re: [dpdk-dev] [PATCH] net/virtio: fix indirect descriptors reconnection

2021-09-23 Thread Ding, Xuan
Hi Maxime, > -Original Message- > From: Ding, Xuan > Sent: Thursday, September 23, 2021 4:36 PM > To: Maxime Coquelin ; Xia, Chenbo > > Cc: dev@dpdk.org; Hu, Jiayu ; Wang, Yinan > ; sta...@dpdk.org; Liu, Yong > Subject: RE: [PATCH] net/virtio: fix indirect descriptors reconnection > > H

[dpdk-dev] [PATCH v2] ethdev: replace bit shifts with macros

2021-09-23 Thread Thomas Monjalon
The macros RTE_BIT32 and RTE_BIT64 are used to replace bit shifts. The macro UINT64C is also used to replace remaining occurrences of ULL. Only bit shifts of ETH_RSS_LEVEL_* are kept for aesthetic reason. The API of rte_mtr and rte_tm is using enums for 64-bit variables. As they are enums, RTE_BI

[dpdk-dev] [RFC PATCH v8 0/5] Add PIE support for HQoS library

2021-09-23 Thread Liguzinski, WojciechX
DPDK sched library is equipped with mechanism that secures it from the bufferbloat problem which is a situation when excess buffers in the network cause high latency and latency variation. Currently, it supports RED for active queue management (which is designed to control the queue length but

[dpdk-dev] [RFC PATCH v8 1/5] sched: add PIE based congestion management

2021-09-23 Thread Liguzinski, WojciechX
Implement PIE based congestion management based on rfc8033 Signed-off-by: Liguzinski, WojciechX --- drivers/net/softnic/rte_eth_softnic_tm.c | 6 +- lib/sched/meson.build| 10 +- lib/sched/rte_pie.c | 82 + lib/sched/rte_pie.h

[dpdk-dev] [RFC PATCH v8 2/5] example/qos_sched: add PIE support

2021-09-23 Thread Liguzinski, WojciechX
patch add support enable PIE or RED by parsing config file. Signed-off-by: Liguzinski, WojciechX --- config/rte_config.h | 1 - examples/qos_sched/app_thread.c | 1 - examples/qos_sched/cfg_file.c | 82 ++--- examples/qos_sched/init.c | 7 +- examples/qos_sched

[dpdk-dev] [RFC PATCH v8 3/5] example/ip_pipeline: add PIE support

2021-09-23 Thread Liguzinski, WojciechX
Adding the PIE support for IP Pipeline Signed-off-by: Liguzinski, WojciechX --- examples/ip_pipeline/tmgr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/ip_pipeline/tmgr.c b/examples/ip_pipeline/tmgr.c index e4e364cbc0..73da2da870 100644 --- a/examples/ip_pi

[dpdk-dev] [RFC PATCH v8 4/5] doc/guides/prog_guide: added PIE

2021-09-23 Thread Liguzinski, WojciechX
Added PIE related information to documentation. Signed-off-by: Liguzinski, WojciechX --- doc/guides/prog_guide/glossary.rst | 3 + doc/guides/prog_guide/qos_framework.rst | 60 +--- doc/guides/prog_guide/traffic_management.rst | 13 - 3 files changed, 66 inser

[dpdk-dev] [RFC PATCH v8 5/5] app/test: add tests for PIE

2021-09-23 Thread Liguzinski, WojciechX
Tests for PIE code added to test application. Signed-off-by: Liguzinski, WojciechX --- app/test/autotest_data.py | 18 + app/test/meson.build |4 + app/test/test_pie.c | 1065 + lib/sched/rte_pie.c |6 +- lib/sched/rte_pie.h |

Re: [dpdk-dev] [PATCH v4 1/2] eal: add additional info if core list too long

2021-09-23 Thread David Hunt
On 23/9/2021 9:11 AM, David Marchand wrote: On Wed, Sep 22, 2021 at 2:29 PM David Hunt wrote: If the user requests to use an lcore above 128 using -l, the eal will exit with "EAL: invalid core list syntax" and very little else useful information. This patch adds some extra information sugges

Re: [dpdk-dev] [PATCH v2 1/2] sched: adds function to get 64 bits greatest common divisor

2021-09-23 Thread Kevin Traynor
On 23/09/2021 09:11, Xueming Li wrote: This patch adds new function that compute the greatest common divisor of 64 bits, also changes the original 32 bits function to call this new 64 bits version. Signed-off-by: Xueming Li Cc: sta...@dpdk.org --- lgtm. Acked-by: Kevin Traynor

[dpdk-dev] [RFC PATCH v2 0/5] add new definitions for wait scheme

2021-09-23 Thread Feifei Wang
Add new definitions for wait scheme, and apply this new definitions into lib to replace rte_pause. v2: 1. use macro to create new wait scheme (Stephen) Feifei Wang (5): eal: add new definitions for wait scheme eal: use wait event for read pflock eal: use wait event scheme for mcslock lib/

[dpdk-dev] [RFC PATCH v2 1/5] eal: add new definitions for wait scheme

2021-09-23 Thread Feifei Wang
Introduce macros as generic interface for address monitoring. Signed-off-by: Feifei Wang Reviewed-by: Ruifeng Wang --- lib/eal/arm/include/rte_pause_64.h | 151 ++-- lib/eal/include/generic/rte_pause.h | 78 ++ 2 files changed, 175 insertions(+), 54 deletio

[dpdk-dev] [RFC PATCH v2 2/5] eal: use wait event for read pflock

2021-09-23 Thread Feifei Wang
Instead of polling for read pflock update, use wait event scheme for this case. Signed-off-by: Feifei Wang Reviewed-by: Ruifeng Wang --- lib/eal/include/generic/rte_pflock.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/eal/include/generic/rte_pflock.h b/lib/eal/in

[dpdk-dev] [RFC PATCH v2 3/5] eal: use wait event scheme for mcslock

2021-09-23 Thread Feifei Wang
Instead of polling for mcslock to be updated, use wait event scheme for this case. Signed-off-by: Feifei Wang Reviewed-by: Ruifeng Wang --- lib/eal/include/generic/rte_mcslock.h | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/lib/eal/include/generic/rte_mcslock.

[dpdk-dev] [RFC PATCH v2 4/5] lib/bpf: use wait event scheme for Rx/Tx iteration

2021-09-23 Thread Feifei Wang
First, fix the bug that keyword const of func arg should be after "*". This is because const before "*" means the value of "cbi" should not be changed. But we should monitor that cbi->use changed and then we can jump out of loop. Second, instead of polling for cbi->use to be updated, use wait even

[dpdk-dev] [RFC PATCH v2 5/5] lib/distributor: use wait event scheme

2021-09-23 Thread Feifei Wang
Instead of polling for bufptr64 to be updated, use wait event for this case. Signed-off-by: Feifei Wang Reviewed-by: Ruifeng Wang --- lib/distributor/rte_distributor_single.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/lib/distributor/rte_distributor_single.c

Re: [dpdk-dev] [PATCH v2] flow_classify: remove eperimental tag from the API

2021-09-23 Thread Kevin Traynor
Hi Bernard, On 22/09/2021 17:48, Bernard Iremonger wrote: This API was introduced in 17.11, removing experimental tag to promote to stable state. Signed-off-by: Bernard Iremonger --- examples/flow_classify/meson.build| 2 +- lib/flow_classify/rte_flow_classify.h | 7 --- lib/flow_c

Re: [dpdk-dev] [PATCH v3 1/5] net/enetfec: introduce NXP ENETFEC driver

2021-09-23 Thread Ferruh Yigit
On 9/9/2021 9:43 PM, Apeksha Gupta wrote: > ENETFEC (Fast Ethernet Controller) is a network poll mode driver > for NXP SoC i.MX 8M Mini. > Hi Apeksha, Before going into details, I have some high level comments to start with, please find comments below. > This patch adds skeleton for enetfec dri

Re: [dpdk-dev] [PATCH v3 2/5] net/enetfec: add UIO support

2021-09-23 Thread Ferruh Yigit
On 9/9/2021 9:43 PM, Apeksha Gupta wrote: > Implemented the fec-uio driver in kernel. enetfec PMD uses > UIO interface to interact with "fec-uio" driver implemented in > kernel for PHY initialisation and for mapping the allocated memory > of register & BD from kernel to DPDK which gives access to >

Re: [dpdk-dev] [PATCH v4 2/2] eal: add additional info if core mask too long

2021-09-23 Thread David Hunt
On 23/9/2021 9:12 AM, David Marchand wrote: On Wed, Sep 22, 2021 at 2:29 PM David Hunt wrote: int i, j, idx; int val; char c; + int lcores[RTE_MAX_LCORE]; + char *coremask_copy = NULL; Contrary to patch 1, coremask_copy is used. But, coremask is const,

Re: [dpdk-dev] [PATCH v4 1/5] test/crypto: add lookaside IPsec tests

2021-09-23 Thread Power, Ciara
Hi Anoob, One comment inline. Thanks, Ciara >-Original Message- >From: Anoob Joseph >Sent: Friday 17 September 2021 14:15 >To: Akhil Goyal ; Doherty, Declan >; Zhang, Roy Fan ; >Ananyev, Konstantin >Cc: Anoob Joseph ; Jerin Jacob ; >Archana Muniganti ; Tejasree Kondoj >; Hemant Agrawal

[dpdk-dev] [PATCH v3] net/mlx5: support new global device syntax

2021-09-23 Thread Xueming Li
This patch support new global device syntax like: bus=pci,addr=BB:DD.F/class=eth/driver=mlx5,devargs,.. In driver parameters check, ignores "driver" key which is part of new global device syntax instead of reporting error. Signed-off-by: Xueming Li Acked-by: Viacheslav Ovsiienko --- dr

Re: [dpdk-dev] [PATCH] lpm6: Fix missing ^ in documentation.

2021-09-23 Thread Thomas Monjalon
14/09/2021 19:23, Medvedkin, Vladimir: > On 14/09/2021 09:05, David Marchand wrote: > > On Mon, Sep 13, 2021 at 8:47 PM Ben Pfaff wrote: > > > > This is probably due to conversion from ms word to rst format. > > > > Fixes: fc1f2750a3ec ("doc: programmers guide") > > Cc: sta...@dpdk.org > > > >>

[dpdk-dev] [PATCH v5 1/2] eal: add additional info if core list too long

2021-09-23 Thread David Hunt
If the user requests to use an lcore above 128 using -l, the eal will exit with "EAL: invalid core list syntax" and very little else useful information. This patch adds some extra information suggesting to use --lcores so that physical cores above RTE_MAX_LCORE (default 128) can be used. This is a

[dpdk-dev] [PATCH v5 2/2] eal: add additional info if core mask too long

2021-09-23 Thread David Hunt
If the user requests to use an lcore above 128 using -c, the eal will exit with "EAL: invalid coremask syntax" and very little else useful information. This patch adds some extra information suggesting to use --lcores so that physical cores above RTE_MAX_LCORE (default 128) can be used. This is ac

Re: [dpdk-dev] [PATCH v4 1/5] test/crypto: add lookaside IPsec tests

2021-09-23 Thread Anoob Joseph
Hi Ciara, Please see inline. Thanks, Anoob > -Original Message- > From: Power, Ciara > Sent: Thursday, September 23, 2021 4:09 PM > To: Anoob Joseph ; Akhil Goyal ; > Doherty, Declan ; Zhang, Roy Fan > ; Ananyev, Konstantin > > Cc: Jerin Jacob Kollanukkaran ; Archana Muniganti > ; Teja

Re: [dpdk-dev] [PATCH v2 1/2] net/virtio: fix Tx cleanup functions to have same signature

2021-09-23 Thread Maxime Coquelin
On 9/15/21 11:19, Andrew Rybchenko wrote: From: Ivan Ilchenko There is a family of cleanup from completed transmits functions. Fix packed virtqueues cleanup functions to have the same signature as split virtqueues have. This lets all functions of the family to match the same callback prototy

[dpdk-dev] [PATCH v3 0/5] A means to negotiate delivery of Rx meta data

2021-09-23 Thread Ivan Malov
In 2019, commit [1] announced changes in DEV_RX_OFFLOAD namespace intending to add new flags, RSS_HASH and FLOW_MARK. Since then, only the former has been added. The problem hasn't been solved. Applications still assume that no efforts are needed to enable flow mark and similar meta data delivery.

[dpdk-dev] [PATCH v3 1/5] ethdev: add API to negotiate delivery of Rx meta data

2021-09-23 Thread Ivan Malov
Delivery of mark, flag and the likes might affect small packet performance. If these features are disabled by default, enabling them in started state without causing traffic disruption may not always be possible. Let applications negotiate delivery of Rx meta data beforehand. Signed-off-by: Ivan

[dpdk-dev] [PATCH v3 2/5] net/sfc: support API to negotiate delivery of Rx meta data

2021-09-23 Thread Ivan Malov
Initial support for the method. Later patches will extend it to make FLAG and MARK delivery available on EF100 native datapath. Signed-off-by: Ivan Malov Reviewed-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc.h| 2 ++ drivers/net/sfc/sfc_ethdev.c | 29

[dpdk-dev] [PATCH v3 3/5] net/sfc: support flow mark delivery on EF100 native datapath

2021-09-23 Thread Ivan Malov
MAE counter engine gets generation counts by virtue of the mark, so the code to extract the field is already in place, but flow action MARK doesn't benefit from it. Support this use case, too. Signed-off-by: Ivan Malov Reviewed-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc

[dpdk-dev] [PATCH v3 5/5] net/sfc: report user flag on EF100 native datapath

2021-09-23 Thread Ivan Malov
Detect the flag in Rx prefix and pass it to users. Signed-off-by: Ivan Malov Reviewed-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_ef100_rx.c | 18 ++ drivers/net/sfc/sfc_rx.c | 3 +++ 2 files changed, 21 insertions(+) diff --git a/drivers/net/

[dpdk-dev] [PATCH v3 4/5] common/sfc_efx/base: add RxQ flag to use Rx prefix user flag

2021-09-23 Thread Ivan Malov
Add an RxQ flag to request support for user flag field of Rx prefix. The feature is supported only on EF100 and EF10 ESSB. Signed-off-by: Ivan Malov Reviewed-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/common/sfc_efx/base/ef10_rx.c | 54 -- drivers/commo

Re: [dpdk-dev] [PATCH v2 2/2] net/virtio: fix Tx completed mbufs leak on device stop

2021-09-23 Thread Maxime Coquelin
On 9/15/21 11:19, Andrew Rybchenko wrote: From: Ivan Ilchenko Free Tx completed mbufs on device stop. Not completed Tx mbufs cannot be freed since they are still in use. Fixes: c1f86306a02 ("virtio: add new driver") Cc: sta...@dpdk.org Signed-off-by: Ivan Ilchenko Signed-off-by: Andrew Ry

Re: [dpdk-dev] [PATCH v4 1/5] test/crypto: add lookaside IPsec tests

2021-09-23 Thread Power, Ciara
Hi Anoob, >-Original Message- >From: Anoob Joseph >Sent: Thursday 23 September 2021 12:09 >To: Power, Ciara ; Akhil Goyal >; Doherty, Declan ; Zhang, >Roy Fan ; Ananyev, Konstantin > >Cc: Jerin Jacob Kollanukkaran ; Archana Muniganti >; Tejasree Kondoj ; >Hemant Agrawal ; Nicolau, Radu >

Re: [dpdk-dev] [PATCH] vhost: merge repeated loop in vhost Tx

2021-09-23 Thread Maxime Coquelin
On 9/10/21 11:05, Gaoxiang Liu wrote: To improve performance of vhost Tx, merge repeated loop in eth_vhost_tx. Move "vlan insert" from eth_vhost_tx to virtio_dev_rx_packed and virtio_dev_rx_split to reduce a loop iteration. Fixes: f63d356ee993 ("net/vhost: insert/strip VLAN header in software

Re: [dpdk-dev] [PATCH v4 1/5] test/crypto: add lookaside IPsec tests

2021-09-23 Thread Anoob Joseph
Hi Ciara, I'm planning to send next version addressing Akhil's comments. Can you review and ack patches if you don't have further comments? Thanks, Anoob > -Original Message- > From: Power, Ciara > Sent: Thursday, September 23, 2021 4:57 PM > To: Anoob Joseph ; Akhil Goyal ; > Doherty,

Re: [dpdk-dev] [PATCH] doc/contributing: add line continuation note to meson guide

2021-09-23 Thread Thomas Monjalon
15/09/2021 17:04, David Marchand: > On Wed, Sep 15, 2021 at 11:50 AM Bruce Richardson > wrote: > > > > Add a note for the preference of using "()" rather than "\" for line > > continuations in meson. > > > > Suggested-by: David Marchand > > Signed-off-by: Bruce Richardson > > Reviewed-by: David

[dpdk-dev] [PATCH v2 2/2] vdpa/mlx5: fix large VM memory region registration

2021-09-23 Thread Xueming Li
When VM size larger than 4G(u32) and memory region larger than 4G, the 32 bits GCD function overflow and returned wrong value that resulted memory registration failed. This patch calls 64 bits GCD function to avoid overflow. Fixes: cc07a42da250 ("vdpa/mlx5: prepare memory regions") Cc: ma...@mell

[dpdk-dev] [PATCH v2 1/2] sched: adds function to get 64 bits greatest common divisor

2021-09-23 Thread Xueming Li
This patch adds new function that compute the greatest common divisor of 64 bits, also changes the original 32 bits function to call this new 64 bits version. Signed-off-by: Xueming Li Cc: sta...@dpdk.org --- lib/sched/rte_sched_common.h | 15 --- 1 file changed, 12 insertions(+), 3

[dpdk-dev] [PATCH v2 0/2] sched: adds function to get 64 bits greatest common divisor

2021-09-23 Thread Xueming Li
Adds 64bit version of GCD. v1: keep both 32 and 64 bit version v2: - update 32bit function comments - add mlx5 patch Xueming Li (2): sched: adds function to get 64 bits greatest common divisor vdpa/mlx5: fix large VM memory region registration drivers/vdpa/mlx5/mlx5_vdpa_mem.c | 6 +++---

Re: [dpdk-dev] [PATCH v3] telemetry: add support for dicts of dicts

2021-09-23 Thread Thomas Monjalon
15/09/2021 10:30, Power, Ciara: > >From: Nicolau, Radu > > > >Add support for dicts of dicts to telemetry library. > >Increase the max string size to 128. > > > >Signed-off-by: Declan Doherty > >Signed-off-by: Radu Nicolau > >--- > > app/test/test_telemetry_data.c | 29 > >li

[dpdk-dev] [PATCH 2/2] vdpa/mlx5: retry VAR allocation during vDPA restart

2021-09-23 Thread Xueming Li
VAR is the device memory space for the virtio queues doorbells, qemu could mmap it to directly to speed up doorbell push. On a busy system, Qemu takes time to release VAR resources during driver shutdown. If vdpa restarted quickly, the VAR allocation failed with error 28 since the VAR is singleton

[dpdk-dev] [PATCH 1/2] vdpa/mlx5: workaround FW first completion in start

2021-09-23 Thread Xueming Li
After a vDPA application restart, qemu restores VQ with used and available index, new incoming packet triggers virtio driver to handle buffers. Under heavy traffic, no available buffer for firmware to receive new packets, no Rx interrupts generated, driver is stuck on endless interrupt waiting. As

[dpdk-dev] [dpdk-announce] DMARC mitigation in dpdk.org's mailing list

2021-09-23 Thread Ali Alnubani
Hi all, Due to the changes that Mailman (our mailing list software) does to posts before distributing them, DKIM and DMARC verification will fail for emails originating from the domains that support them. This causes some posts to go into spam/quarantine and sometimes completely discarded depen

Re: [dpdk-dev] [PATCH] net/af_xdp: fix support of secondary process

2021-09-23 Thread Loftus, Ciara
> > > > > > > > > > Doing basic operations like info_get or get_stats was broken > > > > > in af_xdp PMD. The info_get would crash because dev->device > > > > > was NULL in secondary process. Fix this by doing same initialization > > > > > as af_packet and tap devices. > > > > > > > > > > The get_s

Re: [dpdk-dev] [PATCH v6 01/10] security: add support for TSO on IPsec session

2021-09-23 Thread Ananyev, Konstantin
> Allow user to provision a per security session maximum segment size > (MSS) for use when Transmit Segmentation Offload (TSO) is supported. > The MSS value will be used when PKT_TX_TCP_SEG or PKT_TX_UDP_SEG > ol_flags are specified in mbuf. > > Signed-off-by: Declan Doherty > Signed-off-by: Ra

Re: [dpdk-dev] [PATCH v6 02/10] security: add UDP params for IPsec NAT-T

2021-09-23 Thread Ananyev, Konstantin
> Add support for specifying UDP port params for UDP encapsulation option. > RFC3948 section-2.1 does not enforce using specific the UDP ports for > UDP-Encapsulated ESP Header > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau > Signed-off-by: Abhijit Sinha > Signed-off-by: Dani

[dpdk-dev] [PATCH V2 1/2] app/testpmd: add tunnel types

2021-09-23 Thread Eli Britstein
Current testpmd implementation supports VXLAN only for tunnel offload. Add GRE, NVGRE and GENEVE for tunnel offload flow matches. For example: testpmd> flow tunnel create 0 type vxlan port 0: flow tunnel #1 type vxlan testpmd> flow tunnel create 0 type nvgre port 0: flow tunnel #2 type nvgre testp

[dpdk-dev] [PATCH V2 2/2] net/mlx5: add support for more tunnel types

2021-09-23 Thread Eli Britstein
Accept RTE_FLOW_ITEM_TYPE_GRE, RTE_FLOW_ITEM_TYPE_NVGRE and RTE_FLOW_ITEM_TYPE_GENEVE as valid tunnel types. Fixes: 4ec6360de37d ("net/mlx5: implement tunnel offload") Cc: sta...@dpdk.org Signed-off-by: Eli Britstein --- drivers/net/mlx5/mlx5_flow.c | 3 +++ 1 file changed, 3 insertions(+) dif

Re: [dpdk-dev] [PATCH v6 03/10] security: add ESN field to ipsec_xform

2021-09-23 Thread Ananyev, Konstantin
> > Update ipsec_xform definition to include ESN field. > This allows the application to control the ESN starting value. > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau > Signed-off-by: Abhijit Sinha > Signed-off-by: Daniel Martin Buckley > Acked-by: Fan Zhang > Acked-by: A

Re: [dpdk-dev] [PATCH v6 04/10] mbuf: add IPsec ESP tunnel type

2021-09-23 Thread Ananyev, Konstantin
> > Add tunnel type for IPsec ESP tunnels > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau > Signed-off-by: Abhijit Sinha > Signed-off-by: Daniel Martin Buckley > Acked-by: Fan Zhang > Acked-by: Akhil Goyal > Acked-by: Olivier Matz > --- > lib/mbuf/rte_mbuf_core.h | 1 + >

Re: [dpdk-dev] [PATCH v6 05/10] ipsec: add support for AEAD algorithms

2021-09-23 Thread Ananyev, Konstantin
> > Add support for AES_CCM, CHACHA20_POLY1305 and AES_GMAC. I think it would be good to add new test-cases to examples/ipsec-secgw/test harness to cover these new algs supported. Apart from that: Acked-by: Konstantin Ananyev > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau

[dpdk-dev] app/testpmd: [RFC] Create flex item object

2021-09-23 Thread Gregory Etelson
app/testpmd: [RFC] Create flex item object RTE flex item infrastructure allows application to create a parser for custom network header in port hardware and offload flow rules to match the custom protocol elements. RTE flex item API was introduced in https://patchwork.dpdk.org/project/dpdk/patch/2

Re: [dpdk-dev] [PATCH v3 2/8] dmadev: add burst capacity API

2021-09-23 Thread fengchengwen
On 2021/9/23 1:29, Jerin Jacob wrote: > On Wed, Sep 22, 2021 at 10:06 PM Bruce Richardson > wrote: >> >> On Wed, Sep 22, 2021 at 08:56:50AM +0100, Bruce Richardson wrote: >>> On Wed, Sep 22, 2021 at 09:51:42AM +0800, fengchengwen wrote: On 2021/9/22 2:11, Jerin Jacob wrote: > On Tue, Sep

Re: [dpdk-dev] [PATCH v4 0/5] Add lookaside IPsec tests

2021-09-23 Thread Power, Ciara
Hi Anoob, >-Original Message- >From: Anoob Joseph >Sent: Friday 17 September 2021 14:15 >To: Akhil Goyal ; Doherty, Declan >; Zhang, Roy Fan ; >Ananyev, Konstantin >Cc: Anoob Joseph ; Jerin Jacob ; >Archana Muniganti ; Tejasree Kondoj >; Hemant Agrawal ; >Nicolau, Radu ; Power, Ciara >;

Re: [dpdk-dev] [PATCH v2 0/6] port ioatfwd app to dmadev

2021-09-23 Thread fengchengwen
Hi Kevin, Can you add the following functions? 1. Add dump dmadev which trigger by signal, like: ... static void dma_dump(void) { uint32_t i, j; if (copy_mode != COPY_MODE_DMA_NUM) return; for (i = 0; i < cfg.nb_ports; i++) { for (j

Re: [dpdk-dev] [PATCH v2 0/6] port ioatfwd app to dmadev

2021-09-23 Thread Kevin Laatz
Hi Chengwen, On 23/09/2021 14:53, fengchengwen wrote: Hi Kevin, Can you add the following functions? 1. Add dump dmadev which trigger by signal, like: ... static void dma_dump(void) { uint32_t i, j; if (copy_mode != COPY_MODE_DMA_NUM) return;

Re: [dpdk-dev] [PATCH v6 06/10] ipsec: add transmit segmentation offload support

2021-09-23 Thread Ananyev, Konstantin
> Add support for transmit segmentation offload to inline crypto processing > mode. This offload is not supported by other offload modes, as at a > minimum it requires inline crypto for IPsec to be supported on the > network interface. > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Ni

Re: [dpdk-dev] [PATCH v2 2/2] vhost: enable IOMMU for async vhost

2021-09-23 Thread Hu, Jiayu
Hi Xuan, > -Original Message- > From: Ding, Xuan > Sent: Friday, September 17, 2021 1:26 PM > To: dev@dpdk.org; Burakov, Anatoly ; > maxime.coque...@redhat.com; Xia, Chenbo > Cc: Hu, Jiayu ; Jiang, Cheng1 ; > Richardson, Bruce ; Pai G, Sunil > ; Wang, Yinan ; Yang, > YvonneX ; Ding, Xuan

Re: [dpdk-dev] [PATCH v2 2/2] vhost: enable IOMMU for async vhost

2021-09-23 Thread Maxime Coquelin
On 9/23/21 16:39, Hu, Jiayu wrote: Hi Xuan, -Original Message- From: Ding, Xuan Sent: Friday, September 17, 2021 1:26 PM To: dev@dpdk.org; Burakov, Anatoly ; maxime.coque...@redhat.com; Xia, Chenbo Cc: Hu, Jiayu ; Jiang, Cheng1 ; Richardson, Bruce ; Pai G, Sunil ; Wang, Yinan ; Yan

[dpdk-dev] [PATCH v2 0/9] drivers/crypto: introduce ipsec_mb framework

2021-09-23 Thread Ciara Power
This set of patches introduces a new framework, making all common code of SW crypto PMD implementations built on top of intel-ipsec-mb library sharable. This helps to reduce future effort on the code maintenance and future updates. It also moves all SW PMD implementation specific details into singl

[dpdk-dev] [PATCH v2 1/9] drivers/crypto: introduce IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Fan Zhang This patch introduces the new framework making all common code of SW crypto PMDs implementations built on top of intel-ipsec-mb library shareable, also helps to reduce future effort on the code maintenance and feature updates. Signed-off-by: Fan Zhang Signed-off-by: Ciara Power

[dpdk-dev] [PATCH v2 2/9] drivers/crypto: move aesni-mb PMD to IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch removes the crypto/aesni_mb folder and gathers all aesni-mb PMD implementation specific details into a single file, pmd_aesni_mb.c in crypto/ipsec_mb. Signed-off-by: Piotr Bronowski Signed-off-by: Ciara Power --- v2: Updated maintainers file. --- MAINTAINERS

[dpdk-dev] [PATCH v2 3/9] drivers/crypto: move aesni-gcm PMD to IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch removes the crypto/aesni_gcm folder and gathers all aesni-gcm PMD implementation specific details into a single file, pmd_aesni_gcm.c in the crypto/ipsec_mb folder. A redundant check for iv length is removed. Signed-off-by: Piotr Bronowski Signed-off-by: Ciara P

[dpdk-dev] [PATCH v2 4/9] drivers/crypto: move kasumi PMD to IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch removes the crypto/kasumi folder and gathers all kasumi PMD implementation specific details into a single file, pmd_kasumi.c in the crypto/ipsec_mb folder. Signed-off-by: Piotr Bronowski Signed-off-by: Ciara Power --- v2: Updated maintainers file. --- MAINTAI

[dpdk-dev] [PATCH v2 5/9] drivers/crypto: move snow3g PMD to IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch removes the crypto/snow3g folder and gathers all snow3g PMD implementation specific details into a single file, pmd_snow3g.c in the crypto/ipsec_mb folder. Signed-off-by: Piotr Bronowski Signed-off-by: Ciara Power --- v2: Updated maintainers file. --- MAINTAI

[dpdk-dev] [PATCH v2 6/9] crypto/ipsec_mb: add snow3g digest appended ops support

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch enables out-of-place auth-cipher operations where digest should be encrypted along with the rest of raw data. It also adds support for partially encrypted digest when using auth-cipher operations. Signed-off-by: Damian Nowak Signed-off-by: Kai Ji Signed-off-by:

[dpdk-dev] [PATCH v2 7/9] drivers/crypto: move zuc PMD to IPsec-mb framework

2021-09-23 Thread Ciara Power
From: Piotr Bronowski This patch removes the crypto/zuc folder and gathers all zuc PMD implementation specific details into a single file, pmd_zuc.c in the crypto/ipsec_mb folder. Signed-off-by: Piotr Bronowski Signed-off-by: Ciara Power --- v2: Updated maintainers file. --- MAINTAINERS

[dpdk-dev] [PATCH v2 8/9] crypto/ipsec_mb: add chacha20-poly1305 PMD to framework

2021-09-23 Thread Ciara Power
From: Kai Ji Add in new chacha20_poly1305 support in ipsec_mb. Add in new chacha20_poly1305 test vector for SGL test. Signed-off-by: Kai Ji Signed-off-by: Ciara Power --- v2: - Added unused tag to session configure parameter. - Added release note. - Added documentation for PMD. --- app

[dpdk-dev] [PATCH v2 9/9] doc/rel_notes: added note for SW Crypto PMD change

2021-09-23 Thread Ciara Power
The SW Crypto PMDs were consolidated into one IPSec_MB PMD. This patch adds a release note to highlight this change. Signed-off-by: Ciara Power --- doc/guides/rel_notes/release_21_11.rst | 13 + 1 file changed, 13 insertions(+) diff --git a/doc/guides/rel_notes/release_21_11.rst b/

[dpdk-dev] Not able to start IAVF PMD with dpdk 20.11.3

2021-09-23 Thread Dey, Souvik
Hi All, Trying to test E810 Sr-IOV based nic card with 20.11.3 dpdk. I am running the host kernel driver and only the VF is attached to the VM where I am running dpdk. But when I attaching the VF to the testpmd it is throwing the below error. Is there are way to move forward here ? [root@c

Re: [dpdk-dev] [PATCH v2 1/6] examples/ioat: always use same lcore for both DMA requests enqueue and dequeue

2021-09-23 Thread Kevin Laatz
On 20/09/2021 12:24, Conor Walsh wrote: From: Konstantin Ananyev Few changes in ioat sample behaviour: - Always do SW copy for packet metadata (mbuf fields) - Always use same lcore for both DMA requests enqueue and dequeue Main reasons for that: a) it is safer, as idxd PMD doesn't support MT

Re: [dpdk-dev] [PATCH] net/virtio: fix virtio-user init when using existing tap

2021-09-23 Thread Olivier Matz
Hi David, On Fri, Sep 17, 2021 at 11:33:44AM +0200, David Marchand wrote: > When attaching to an existing mono queue tap, the virtio-user was not > reporting that the virtio device was not properly initialised which > prevented from starting the port later. > > $ ip tuntap add test mode tap > $ d

Re: [dpdk-dev] [PATCH v2 1/9] drivers/crypto: introduce IPsec-mb framework

2021-09-23 Thread Thomas Monjalon
23/09/2021 17:28, Ciara Power: > From: Fan Zhang > > This patch introduces the new framework making > all common code of SW crypto PMDs implementations built on top of > intel-ipsec-mb library shareable, also helps to reduce future effort > on the code maintenance and feature updates. Which PMD

Re: [dpdk-dev] [PATCH v10 06/12] pdump: support pcapng and filtering

2021-09-23 Thread Pattan, Reshma
> -Original Message- > From: dev On Behalf Of Stephen Hemminger > > +++ b/lib/meson.build > +'bpf', > 'bitratestats', If alphabetical order, should bpf come after bitratestats? > +/* > + * Note: version numbers intentionally start at 3 > + * in order to catch any ap

Re: [dpdk-dev] [PATCH] ethdev: group constant definitions in Doxygen

2021-09-23 Thread Kevin Traynor
On 30/08/2021 11:42, Thomas Monjalon wrote: A lot of flags are parts of a group but are documented alone. The Doxygen syntax @{ and @} for grouping is used to make flags appear together and have a common description. Some Rx/Tx offload flags and RSS definitions are not grouped because they need

Re: [dpdk-dev] [PATCH v6 07/10] ipsec: add support for NAT-T

2021-09-23 Thread Ananyev, Konstantin
> > Add support for the IPsec NAT-Traversal use case for Tunnel mode > packets. > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau > Signed-off-by: Abhijit Sinha > Signed-off-by: Daniel Martin Buckley > Acked-by: Fan Zhang > --- > lib/ipsec/iph.h | 17 ++

Re: [dpdk-dev] [PATCH] net/virtio: fix virtio-user init when using existing tap

2021-09-23 Thread David Marchand
On Thu, Sep 23, 2021 at 5:39 PM Olivier Matz wrote: > > Hi David, > > On Fri, Sep 17, 2021 at 11:33:44AM +0200, David Marchand wrote: > > When attaching to an existing mono queue tap, the virtio-user was not > > reporting that the virtio device was not properly initialised which > > prevented from

Re: [dpdk-dev] [PATCH v10 06/12] pdump: support pcapng and filtering

2021-09-23 Thread Stephen Hemminger
On Thu, 23 Sep 2021 16:11:42 + "Pattan, Reshma" wrote: > > +/* > > + * Note: version numbers intentionally start at 3 > > + * in order to catch any application built with older out > > + * version of DPDK using incompatible client request format. > > + */ > > enum pdump_version { > > - V1

Re: [dpdk-dev] [PATCH 1/5] compressdev: rename fields for Windows compatibility

2021-09-23 Thread Thomas Monjalon
15/09/2021 23:40, Dmitry Kozlyuk: > --- a/doc/guides/rel_notes/release_20_11.rst > +++ b/doc/guides/rel_notes/release_20_11.rst > @@ -662,6 +662,9 @@ API Changes > * sched: Removed ``tb_rate``, ``tc_rate``, ``tc_period`` and ``tb_size`` >from ``struct rte_sched_subport_params``. > > +* compr

Re: [dpdk-dev] [PATCH] bus/pci: fix numa node return value

2021-09-23 Thread Thomas Monjalon
23/09/2021 17:44, Tal Shnaiderman: > > Subject: [PATCH] bus/pci: fix numa node return value > > > > On older CPUs, currently numa_node returns value only for socket 0. > > Instead, application should be able to make correct decision and also to > > keep > > consistent with the Linux code, replace

Re: [dpdk-dev] [PATCH] eal/windows: fix token pasting build warning

2021-09-23 Thread Thomas Monjalon
15/09/2021 21:25, Dmitry Kozlyuk: > 2021-09-13 19:55 (UTC+0300), Tal Shnaiderman: > > When building DPDK on Windows in debug mode the following > > warning appear: > > > > warning: token pasting of ',' and __VA_ARGS__ is a GNU extension > > [-Wgnu-zero-variadic-macro-arguments] #define open(path,

  1   2   >