Re: [dpdk-dev] [PATCH v4] net/ice: enable Rx timestamp on Flex Descriptor

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: Su, Simei > Sent: Sunday, September 26, 2021 10:05 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org; Wang, Haiyue ; Su, Simei > > Subject: [PATCH v4] net/ice: enable Rx timestamp on Flex Descriptor > > Use the dynamic mbuf to register timestamp field and flag. > T

Re: [dpdk-dev] [PATCH] net/iavf: fix rx queue irqs resource leak

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Qiming Chen > Sent: Friday, September 10, 2021 2:55 PM > To: dev@dpdk.org > Cc: Xing, Beilei ; Wu, Jingjing > ; > Qiming Chen ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/iavf: fix rx queue irqs resource leak > > In the iavf_config_

Re: [dpdk-dev] [PATCH] common/iavf: fix arq resource leak

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Qiming Chen > Sent: Friday, September 10, 2021 11:13 AM > To: dev@dpdk.org > Cc: Xing, Beilei ; Wu, Jingjing > ; > Qiming Chen ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] common/iavf: fix arq resource leak > > In the iavf_init_arq func

Re: [dpdk-dev] [PATCH V2 1/5] pipeline: prepare for variable size headers

2021-09-27 Thread Thomas Monjalon
27/07/2021 19:43, Cristian Dumitrescu: > The emit instruction that is responsible for pushing headers into the > output packet is now reading the header length from internal run-time > structures as opposed to constant value from the instruction opcode. > > Signed-off-by: Cristian Dumitrescu Ser

Re: [dpdk-dev] [PATCH v9 1/3] ethdev: add an API to get device configuration info

2021-09-27 Thread Wang, Jie1X
> -Original Message- > From: Thomas Monjalon > Sent: Monday, September 27, 2021 2:19 PM > To: Wang, Jie1X > Cc: dev@dpdk.org; Yigit, Ferruh ; > andrew.rybche...@oktetlabs.ru; Li, Xiaoyun ; Yang, > SteveX > Subject: Re: [PATCH v9 1/3] ethdev: add an API to get device configuration > i

Re: [dpdk-dev] [PATCH] net/iavf: fix small probabilistic probe failure

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Qiming Chen > Sent: Saturday, September 11, 2021 4:05 PM > To: dev@dpdk.org > Cc: Xing, Beilei ; Wu, Jingjing > ; > Qiming Chen ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/iavf: fix small probabilistic probe failure > > In the embe

Re: [dpdk-dev] [PATCH V5 1/4] table: add support learner tables

2021-09-27 Thread Thomas Monjalon
20/09/2021 17:01, Cristian Dumitrescu: > A learner table is typically used for learning or connection tracking, > where it allows for the implementation of the "add on miss" scenario: > whenever the lookup key is not found in the table (lookup miss), the > data plane can decide to add this key to t

[dpdk-dev] [PATCH v5 0/2] support IOMMU for DMA device

2021-09-27 Thread Xuan Ding
This series supports DMA device to use vfio in async vhost. The first patch extends the capability of current vfio dma mapping API to allow partial unmapping for adjacent memory if the platform does not support partial unmapping. The second patch involves the IOMMU programming for guest memory in

[dpdk-dev] [PATCH v5 1/2] vfio: allow partially unmapping adjacent memory

2021-09-27 Thread Xuan Ding
Currently, if we map a memory area A, then map a separate memory area B that by coincidence happens to be adjacent to A, current implementation will merge these two segments into one, and if partial unmapping is not supported, these segments will then be only allowed to be unmapped in one go. In ot

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

2021-09-27 Thread Xuan Ding
The use of IOMMU has many advantages, such as isolation and address translation. This patch extends the capbility of DMA engine to use IOMMU if the DMA engine is bound to vfio. When set memory table, the guest memory will be mapped into the default container of DPDK. Signed-off-by: Xuan Ding ---

Re: [dpdk-dev] [PATCH v9 1/3] ethdev: add an API to get device configuration info

2021-09-27 Thread Thomas Monjalon
27/09/2021 09:21, Wang, Jie1X: > From: Thomas Monjalon > > 26/09/2021 11:20, Jie Wang: > > > This patch adds a new API "rte_eth_dev_conf_info_get()" to help users > > > get device configuration info. > > [...] > > > + * Retrieve the configuration of an Ethernet device. > > > + * > > > + * @param p

[dpdk-dev] [PATCH v2 01/27] common/cnxk: update policer MBOX APIs and HW definitions

2021-09-27 Thread skori
From: Sunil Kumar Kori To support ingress policer on CN10K, MBOX interfaces and HW definitions are synced. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/hw/nix.h

[dpdk-dev] [PATCH v2 02/27] common/cnxk: support RoC API to get level to index

2021-09-27 Thread skori
From: Sunil Kumar Kori CN10K platform supports policer up to 3 level of hierarchy. Implement RoC API to get corresponding index for given level. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorp

[dpdk-dev] [PATCH v2 03/27] common/cnxk: support RoC API to get profile count

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement interface to get available profile count for given nixlf. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h | 5

[dpdk-dev] [PATCH v2 04/27] common/cnxk: support RoC API to alloc bandwidth profiles

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC API to allocate HW resources i.e. bandwidth profiles for policer processing on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated driv

[dpdk-dev] [PATCH v2 05/27] common/cnxk: support RoC API to free bandwidth profiles

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC interface to free HW bandwidth profiles on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h | 6 +

[dpdk-dev] [PATCH v2 06/27] common/cnxk: support RoC API to configure bandwidth profile

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC API to configure HW bandwidth profile for CN10K platform. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h | 108 +

[dpdk-dev] [PATCH v2 07/27] common/cnxk: support RoC API to toggle profile state

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC API to enable or disable HW bandwidth profiles on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h

[dpdk-dev] [PATCH v2 08/27] common/cnxk: support RoC API to dump bandwidth profile

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC API to dump bandwidth profile on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h | 3 ++ driver

[dpdk-dev] [PATCH v2 09/27] common/cnxk: support RoC API to setup precolor table

2021-09-27 Thread skori
From: Sunil Kumar Kori For initial coloring of input packet, CN10K platform maintains precolor table for VLAN, DSCP and Generic. Implement RoC interface to setup pre color table. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear h

[dpdk-dev] [PATCH v2 10/27] common/cnxk: support RoC API to connect bandwidth profiles

2021-09-27 Thread skori
From: Sunil Kumar Kori To maintain chain of bandwidth profiles, they needs to be connected. Implement RoC API to connect two bandwidth profiles at different levels. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Re

[dpdk-dev] [PATCH v2 11/27] common/cnxk: support RoC API to get stats to index

2021-09-27 Thread skori
From: Sunil Kumar Kori CN10K platform supports different stats for HW bandwidth profiles. Implement RoC API to get index for given stats type. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorpor

[dpdk-dev] [PATCH v2 12/27] common/cnxk: support RoC API to read profile statistics

2021-09-27 Thread skori
From: Sunil Kumar Kori CN10K platform provides statistics per bandwidth profile and per nixlf. Implement RoC API to read stats for given bandwidth profile. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comm

[dpdk-dev] [PATCH v2 13/27] common/cnxk: support RoC API to reset profile stats

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement RoC API to reset stats per bandwidth profile or per nixlf. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_nix.h | 7 ++

[dpdk-dev] [PATCH v2 14/27] common/cnxk: support meter in action list

2021-09-27 Thread skori
From: Sunil Kumar Kori Meter action is added in supported action list. Signed-off-by: Sunil Kumar Kori --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/common/cnxk/roc_npc.c | 3 +++ drivers/common/cnxk/roc_np

[dpdk-dev] [PATCH v2 15/27] net/cnxk: support meter ops get API

2021-09-27 Thread skori
From: Sunil Kumar Kori To enable support for ingress meter, supported operations are exposed for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments inc

[dpdk-dev] [PATCH v2 16/27] net/cnxk: support ops to get meter capabilities

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement ethdev operation to get meter capabilities for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drive

[dpdk-dev] [PATCH v2 17/27] net/cnxk: support ops to create meter profile

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to add meter profile for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn10k_

[dpdk-dev] [PATCH v2 18/27] net/cnxk: support ops to delete meter profile

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to delete meter profile for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn1

[dpdk-dev] [PATCH v2 19/27] net/cnxk: support ops to validate meter policy

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to validate meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn

[dpdk-dev] [PATCH v2 20/27] net/cnxk: support ops to create meter policy

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to add meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn10k_e

[dpdk-dev] [PATCH v2 21/27] net/cnxk: support ops to delete meter policy

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to delete meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn10

[dpdk-dev] [PATCH v2 22/27] net/cnxk: support ops to create meter

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to create meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn

[dpdk-dev] [PATCH v2 23/27] net/cnxk: support ops to delete meter

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to delete meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/net/cnxk/cn

[dpdk-dev] [PATCH v2 24/27] net/cnxk: support ops to enable/disable meter

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to enable or disable meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comments incorporated drivers/

[dpdk-dev] [PATCH v2 25/27] net/cnxk: support ops to update precolor DSCP table

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to update DSCP table for pre-coloring for incoming packet per nixlf for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review

[dpdk-dev] [PATCH v2 26/27] net/cnxk: support ops to read/update meter stats

2021-09-27 Thread skori
From: Sunil Kumar Kori Implement API to read and update stats corresponding to given meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarchy - Review comme

[dpdk-dev] [PATCH v2 27/27] net/cnxk: support meter action to flow create

2021-09-27 Thread skori
From: Sunil Kumar Kori Meters are configured per flow using rte_flow_create API. Implement support for meter action applied on the flow. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v2: - Rebase support on latest DPDK - Handled multilevel chaining for linear hierarch

[dpdk-dev] [PATCH v5] net/ice: support IEEE 1588 PTP

2021-09-27 Thread Simei Su
Add ice support for new ethdev APIs to enable/disable and read/write/adjust IEEE1588 PTP timestamps. Currently, only scalar path supports 1588 PTP, vector path doesn't. The example command for running ptpclient is as below: ./build/examples/dpdk-ptpclient -c 1 -n 3 -- -T 0 -p 0x1 Signed-off-by: S

Re: [dpdk-dev] [PATCH] net/bnxt: improve error recovery information messages

2021-09-27 Thread Ajit Khaparde
On Thu, Sep 23, 2021 at 9:57 PM Kalesh A P wrote: > > From: Kalesh AP > > The error recovery async event messages are often mistaken > for errors. Improved the wording to clarify the meaning of > these events. > Also, take the first step towards more inclusive language. > The references to master

Re: [dpdk-dev] [PATCH] [v2] vdpa/ifc: increase readability in function

2021-09-27 Thread Wang, Xiao W
Hi, > -Original Message- > From: jilei chen > Sent: Monday, September 27, 2021 4:12 PM > To: Wang, Xiao W > Cc: dev@dpdk.org > Subject: [PATCH] [v2] vdpa/ifc: increase readability in function > > Optimize several parameters form order to better readability To the best of my English know

[dpdk-dev] [Bug 815] Incorrect average cycles print in Service Summary

2021-09-27 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=815 Bug ID: 815 Summary: Incorrect average cycles print in Service Summary Product: DPDK Version: 20.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

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

2021-09-27 Thread Nicolau, Radu
On 9/24/2021 10:11 AM, Hemant Agrawal wrote: On 9/6/2021 4:39 PM, Nicolau, Radu wrote: On 9/5/2021 3:19 PM, Akhil Goyal wrote: Hi Radu, Add support for specifying UDP port params for UDP encapsulation option. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Ab

Re: [dpdk-dev] [PATCH v4 18/18] net/i40e: fix redefinition warning

2021-09-27 Thread Xing, Beilei
> -Original Message- > From: Zhang, RobinX > Sent: Monday, September 6, 2021 10:03 AM > To: dev@dpdk.org > Cc: Xing, Beilei ; Zhang, Qi Z ; > Zhang, Helin ; Wu, Jingjing ; > remy.hor...@intel.com; jijiang@intel.com; jing.d.c...@intel.com; Zhu, > Heqing ; Liang, Cunming > ; Lu, Wenzh

[dpdk-dev] [PATCH] vdpa/ifc: increase readability in function

2021-09-27 Thread jilei chen
Optimize several parameters form order to better readability Signed-off-by: jilei chen --- drivers/vdpa/ifc/ifcvf_vdpa.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/vdpa/ifc/ifcvf_vdpa.c b/drivers/vdpa/ifc/ifcvf_vdpa.c index 1dc813d0a3..365da2a8b9

[dpdk-dev] [PATCH] [v2] vdpa/ifc: increase readability in function

2021-09-27 Thread jilei chen
Optimize several parameters form order to better readability Signed-off-by: jilei chen --- v2: * Concise subject of the patch * Optimize function parameters --- drivers/vdpa/ifc/ifcvf_vdpa.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/vdpa/ifc/ifc

[dpdk-dev] [PATCH] [v3] vdpa/ifc: increase readability in function

2021-09-27 Thread jilei chen
Use bool type for function's switch parameter, this could avoid passing "1" or "0" which is not reader friendly. Signed-off-by: jilei chen --- v3: * Update inappropriate description v2: * Concise subject of the patch * Optimize function parameters --- drivers/vdpa/ifc/ifcvf_vdpa.c | 16

Re: [dpdk-dev] [PATCH v2 02/15] crypto: add total raw buffer length

2021-09-27 Thread Ananyev, Konstantin
Hi Akhil, > > > On 9/21/2021 12:58 AM, Akhil Goyal wrote: > > > >>> From: Gagandeep Singh > > > >>> > > > >>> The current crypto raw data vectors is extended to support > > > >>> rte_security usecases, where we need total data length to know > > > >>> how much additional memory space is availabl

Re: [dpdk-dev] [PATCH v4 18/18] net/i40e: fix redefinition warning

2021-09-27 Thread Zhang, RobinX
Hi, Beilei > -Original Message- > From: Xing, Beilei > Sent: Monday, September 27, 2021 5:18 PM > To: Zhang, RobinX ; dev@dpdk.org > Cc: Zhang, Qi Z ; Zhang, Helin > ; Wu, Jingjing ; > remy.hor...@intel.com; jijiang@intel.com; jing.d.c...@intel.com; Zhu, > Heqing ; Liang, Cunming > ;

Re: [dpdk-dev] [PATCH v5 12/12] raw/ioat: deprecate ioat rawdev driver

2021-09-27 Thread Walsh, Conor
> From: Richardson, Bruce > Sent: Friday 24 September 2021 17:57 > To: Walsh, Conor > Cc: fengcheng...@huawei.com; jer...@marvell.com; Laatz, Kevin > ; dev@dpdk.org > Subject: Re: [PATCH v5 12/12] raw/ioat: deprecate ioat rawdev driver > > On Fri, Sep 24, 2021 at 02:33:35PM +, Conor Walsh wr

Re: [dpdk-dev] [PATCH v4 00/18] i40e base code update

2021-09-27 Thread Xing, Beilei
> -Original Message- > From: Zhang, RobinX > Sent: Monday, September 6, 2021 10:03 AM > To: dev@dpdk.org > Cc: Xing, Beilei ; Zhang, Qi Z ; > Zhang, Helin ; Wu, Jingjing ; > remy.hor...@intel.com; jijiang@intel.com; jing.d.c...@intel.com; Zhu, > Heqing ; Liang, Cunming > ; Lu, Wenzhu

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

2021-09-27 Thread Power, Ciara
Hi Thomas, >-Original Message- >From: Thomas Monjalon >Sent: Thursday 23 September 2021 16:46 >To: Power, Ciara ; Zhang, Roy Fan > >Cc: dev@dpdk.org; Bronowski, PiotrX ; >gak...@marvell.com; De Lara Guarch, Pablo >; Ray Kinsella >Subject: Re: [PATCH v2 1/9] drivers/crypto: introduce IPse

[dpdk-dev] [PATCH] ip_frag: modify the fragment offset and mf

2021-09-27 Thread huichao cai
From: huichao cai According to RFC791,the fragment offset value should be calculated based on the long datagram,the more fragments flag for the last fragment carries the same value as the long datagram. Signed-off-by: huichao cai --- lib/ip_frag/rte_ipv4_fragmentation.c | 9 ++--- 1 file c

[dpdk-dev] [PATCH] [v3] vdpa/ifc: increase readability in function

2021-09-27 Thread jilei chen
Use bool type for function's switch parameter, this could avoid passing "1" or "0" which is not reader friendly. Signed-off-by: jilei chen --- v3: * Update inappropriate description v2: * Concise subject of the patch * Optimize function parameters --- drivers/vdpa/ifc/ifcvf_vdpa.c | 16

Re: [dpdk-dev] [PATCH V3 01/24] pipeline: move data structures to internal header file

2021-09-27 Thread Thomas Monjalon
13/09/2021 18:44, Cristian Dumitrescu: > Start to consolidate the data structures and inline functions required > by the pipeline instructions into an internal header file. > > Signed-off-by: Cristian Dumitrescu Series applied, thanks.

Re: [dpdk-dev] [PATCH] pipeline: improve handling of learner table action arguments

2021-09-27 Thread Thomas Monjalon
14/09/2021 21:00, Cristian Dumitrescu: > The arguments of actions that are learned are now specified as part of > the learn instruction as opposed to being statically specified as part > of the learner table configuration. > > Signed-off-by: Cristian Dumitrescu Applied, thanks.

Re: [dpdk-dev] [PATCH] pipeline: remove experimental tag from API

2021-09-27 Thread Thomas Monjalon
01/09/2021 14:20, Jasvinder Singh: > These APIs were introduced in 18.05, therefore removing > experimental tag to promote them to stable state. > > Signed-off-by: Jasvinder Singh > --- > lib/pipeline/rte_port_in_action.h | 10 -- > lib/pipeline/rte_table_action.h | 18

[dpdk-dev] [PATCH v6 00/12] dma: add dmadev driver for ioat devices

2021-09-27 Thread Conor Walsh
This patchset adds a dmadev driver and associated documentation to support Intel QuickData Technology devices, part of the Intel I/O Acceleration Technology (Intel I/OAT). This driver is intended to ultimately replace the current IOAT part of the IOAT rawdev driver. This patchset passes all the dri

[dpdk-dev] [PATCH v6 01/12] dma/ioat: add device probe and removal functions

2021-09-27 Thread Conor Walsh
Add the basic device probe/remove skeleton code and initial documentation for new IOAT DMA driver. Maintainers update is also included in this patch. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz Reviewed-by: Chengwen Feng --- MAINTAINERS| 6 +++ doc/guides/d

[dpdk-dev] [PATCH v6 02/12] dma/ioat: create dmadev instances on PCI probe

2021-09-27 Thread Conor Walsh
When a suitable device is found during the PCI probe, create a dmadev instance for each channel. Internal structures and HW definitions required for device creation are also included. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz --- drivers/dma/ioat/ioat_dmadev.c | 102

[dpdk-dev] [PATCH v6 03/12] dma/ioat: add datapath structures

2021-09-27 Thread Conor Walsh
Add data structures required for the data path of IOAT devices. Signed-off-by: Conor Walsh Signed-off-by: Bruce Richardson Reviewed-by: Kevin Laatz --- drivers/dma/ioat/ioat_dmadev.c | 63 +- drivers/dma/ioat/ioat_hw_defs.h | 215 2 files changed, 277

[dpdk-dev] [PATCH v6 04/12] dma/ioat: add configuration functions

2021-09-27 Thread Conor Walsh
Add functions for device configuration. The info_get and close functions are included here also. info_get can be useful for checking successful configuration and close is used by the dmadev api when releasing a configured device. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz --- doc/guide

[dpdk-dev] [PATCH v6 05/12] dma/ioat: add start and stop functions

2021-09-27 Thread Conor Walsh
Add start, stop and recover functions for IOAT devices. Signed-off-by: Conor Walsh Signed-off-by: Bruce Richardson Reviewed-by: Kevin Laatz --- doc/guides/dmadevs/ioat.rst| 3 ++ drivers/dma/ioat/ioat_dmadev.c | 92 ++ 2 files changed, 95 insertions(+) dif

[dpdk-dev] [PATCH v6 06/12] dma/ioat: add data path job submission functions

2021-09-27 Thread Conor Walsh
Add data path functions for enqueuing and submitting operations to IOAT devices. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz Reviewed-by: Chengwen Feng --- doc/guides/dmadevs/ioat.rst| 9 drivers/dma/ioat/ioat_dmadev.c | 92 ++ 2 files changed,

[dpdk-dev] [PATCH v6 07/12] dma/ioat: add data path completion functions

2021-09-27 Thread Conor Walsh
Add the data path functions for gathering completed operations from IOAT devices. Signed-off-by: Conor Walsh Signed-off-by: Kevin Laatz Acked-by: Bruce Richardson --- doc/guides/dmadevs/ioat.rst| 33 +++- drivers/dma/ioat/ioat_dmadev.c | 141 + 2 files

[dpdk-dev] [PATCH v6 08/12] dma/ioat: add statistics

2021-09-27 Thread Conor Walsh
Add statistic tracking for operations in IOAT. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz Acked-by: Bruce Richardson --- drivers/dma/ioat/ioat_dmadev.c | 43 ++ 1 file changed, 43 insertions(+) diff --git a/drivers/dma/ioat/ioat_dmadev.c b/drivers/dma/

[dpdk-dev] [PATCH v6 09/12] dma/ioat: add support for vchan status function

2021-09-27 Thread Conor Walsh
Add support for the rte_dmadev_vchan_status API call. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz Acked-by: Bruce Richardson --- drivers/dma/ioat/ioat_dmadev.c | 21 + 1 file changed, 21 insertions(+) diff --git a/drivers/dma/ioat/ioat_dmadev.c b/drivers/dma/ioat/i

[dpdk-dev] [PATCH v6 10/12] dma/ioat: add burst capacity function

2021-09-27 Thread Conor Walsh
Adds the ability to find the remaining space in the IOAT ring. Signed-off-by: Conor Walsh Signed-off-by: Kevin Laatz Acked-by: Bruce Richardson --- drivers/dma/ioat/ioat_dmadev.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/drivers/dma/ioat/ioat_dmadev.c b/drivers/dma/io

[dpdk-dev] [PATCH v6 11/12] devbind: move ioat device IDs to dmadev category

2021-09-27 Thread Conor Walsh
Move Intel IOAT devices from Misc to DMA devices. Signed-off-by: Conor Walsh Reviewed-by: Kevin Laatz Reviewed-by: Bruce Richardson --- usertools/dpdk-devbind.py | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/usertools/dpdk-devbind.py b/usertools/dpdk-devbind.py inde

[dpdk-dev] [PATCH v6 12/12] raw/ioat: deprecate ioat rawdev driver

2021-09-27 Thread Conor Walsh
Deprecate the rawdev IOAT driver as both IOAT and IDXD drivers have moved to dmadev. Signed-off-by: Conor Walsh Acked-by: Kevin Laatz Acked-by: Bruce Richardson --- MAINTAINERS | 2 +- doc/guides/rawdevs/ioat.rst | 4 doc/guides/rel_notes/deprecation.rst

Re: [dpdk-dev] [PATCH] net/bnxt: remove code to initialize SRAM slice node

2021-09-27 Thread Ferruh Yigit
On 9/25/2021 3:24 PM, Ajit Khaparde wrote: > From: Kishore Padmanabha > > Remove the code to initialize SRAM slice mode explicitly. The > code is redundanat as the memory allocated is initialized to > zero by the rte_zmalloc. This fixes the compilation issue for > uninitialized pointer when debug

Re: [dpdk-dev] [PATCH v4 18/18] net/i40e: fix redefinition warning

2021-09-27 Thread Kevin Traynor
Hi, On 27/09/2021 10:30, Zhang, RobinX wrote: Hi, Beilei -Original Message- From: Xing, Beilei Sent: Monday, September 27, 2021 5:18 PM To: Zhang, RobinX ; dev@dpdk.org Cc: Zhang, Qi Z ; Zhang, Helin ; Wu, Jingjing ; remy.hor...@intel.com; jijiang@intel.com; jing.d.c...@intel.com;

Re: [dpdk-dev] [PATCH v4 18/18] net/i40e: fix redefinition warning

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: Kevin Traynor > Sent: Monday, September 27, 2021 6:38 PM > To: Zhang, RobinX ; Xing, Beilei > ; dev@dpdk.org > Cc: Zhang, Qi Z ; Zhang, Helin ; > Wu, Jingjing ; remy.hor...@intel.com; > jijiang@intel.com; jing.d.c...@intel.com; Zhu, Heqing > ; Liang, Cunm

Re: [dpdk-dev] [RFC PATCH 2/2] ethdev: add capability to keep indirect actions on restart

2021-09-27 Thread Dmitry Kozlyuk
2021-09-01 11:55 (UTC+0300), Dmitry Kozlyuk: > rte_flow_action_handle_create() did not mention what happens > with an indirect action when a device is stopped, possibly reconfigured, > and started again. It is natural for some indirect actions to be > persistent, like counters and meters; keeping o

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

2021-09-27 Thread Ferruh Yigit
On 9/23/2021 5:35 PM, Kevin Traynor wrote: > 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 fla

[dpdk-dev] [PATCH] net/mlx5: fix Tx metadata endianness in data path

2021-09-27 Thread Bing Zhao
The metadata can be set in the mbuf dynamic field and then used in flow rules steering for egress direction. The hardware requires network order for both the insertion of a rule and sending a packet. Indeed, there is no strict restriction for the endianness. The order for sending a packet and its s

Re: [dpdk-dev] [PATCH v3] Enable AddressSanitizer feature on DPDK

2021-09-27 Thread Burakov, Anatoly
On 18-Sep-21 8:41 AM, zhihongx.p...@intel.com wrote: From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happe

Re: [dpdk-dev] [PATCH v4 00/18] i40e base code update

2021-09-27 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Monday, September 27, 2021 5:42 PM > To: Zhang, RobinX ; dev@dpdk.org > Cc: Zhang, Qi Z ; Zhang, Helin ; > Wu, Jingjing ; remy.hor...@intel.com; > jijiang@intel.com; jing.d.c...@intel.com; Zhu, Heqing > ; Liang, Cunming ; Lu, > Wenzhu

Re: [dpdk-dev] [PATCH v4 1/2] Enable ASan for memory detector on DPDK

2021-09-27 Thread Burakov, Anatoly
On 24-Sep-21 10:52 AM, Olivier Matz wrote: Hi Zhihong, On Fri, Sep 24, 2021 at 02:16:29AM +, zhihongx.p...@intel.com wrote: From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overf

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

2021-09-27 Thread Burakov, Anatoly
On 27-Sep-21 8:48 AM, Xuan Ding wrote: The use of IOMMU has many advantages, such as isolation and address translation. This patch extends the capbility of DMA engine to use IOMMU if the DMA engine is bound to vfio. When set memory table, the guest memory will be mapped into the default containe

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

2021-09-27 Thread Nicolau, Radu
On 9/23/2021 1:43 PM, Ananyev, Konstantin wrote: 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:

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

2021-09-27 Thread Nicolau, Radu
On 9/23/2021 1:46 PM, Ananyev, Konstantin wrote: 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 Ac

[dpdk-dev] [PATCH 00/11] NXP DPAAx Bus and PMD changes

2021-09-27 Thread nipun . gupta
From: Nipun Gupta This series adds new functionality related to flow redirection, multiple ordered tx enqueues, generating HW hash key etc. It also updates the MC firmware version and includes a fix in dpaxx library. Gagandeep Singh (1): common/dpaax: fix paddr to vaddr invalid conversion Hem

[dpdk-dev] [PATCH 01/11] bus/fslmc: updated MC FW to 10.28

2021-09-27 Thread nipun . gupta
From: Hemant Agrawal Updating MC firmware support APIs to be latest. It supports improved DPDMUX (SRIOV equivalent) for traffic split between dpnis and additional PTP APIs. Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/mc/dpdmai.c | 4 +- drivers/bus/fslmc/mc/fsl_dpdmai.h |

[dpdk-dev] [PATCH 02/11] net/dpaa2: support Tx flow redirection action

2021-09-27 Thread nipun . gupta
From: Jun Yang TX redirection support by flow action RTE_FLOW_ACTION_TYPE_PHY_PORT and RTE_FLOW_ACTION_TYPE_PORT_ID This action is executed by HW to forward packets between ports. If the ingress packets match the rule, the packets are switched without software involved and perf is improved as we

[dpdk-dev] [PATCH 03/11] bus/fslmc: add qbman debug APIs support

2021-09-27 Thread nipun . gupta
From: Hemant Agrawal Add support for debugging qbman FQs Signed-off-by: Youri Querry Signed-off-by: Roy Pledge Signed-off-by: Hemant Agrawal Signed-off-by: Nipun Gupta --- .../bus/fslmc/qbman/include/fsl_qbman_debug.h | 203 +- drivers/bus/fslmc/qbman/qbman_debug.c | 623 +++

[dpdk-dev] [PATCH 05/11] net/dpaa2: add debug print for MTU set for jumbo

2021-09-27 Thread nipun . gupta
From: Hemant Agrawal This patch adds a debug print for MTU configured on the device when jumbo frames are enabled. Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/dpaa2_ethdev.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2

[dpdk-dev] [PATCH 04/11] net/dpaa2: support multiple Tx queues enqueue for ordered

2021-09-27 Thread nipun . gupta
From: Jun Yang Support the tx enqueue in order queue mode, where the queue id for each event may be different. Signed-off-by: Jun Yang --- drivers/event/dpaa2/dpaa2_eventdev.c | 12 ++- drivers/net/dpaa2/dpaa2_ethdev.h | 3 + drivers/net/dpaa2/dpaa2_rxtx.c | 142 ++

[dpdk-dev] [PATCH 06/11] net/dpaa2: add function to generate HW hash key

2021-09-27 Thread nipun . gupta
From: Hemant Agrawal This patch add support to generate the hash key in software equivalent to WRIOP key generation. Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/base/dpaa2_tlu_hash.c | 149 drivers/net/dpaa2/meson.build | 1 + drivers/net/dpaa2/rte_

[dpdk-dev] [PATCH 07/11] net/dpaa2: update RSS to support additional distributions

2021-09-27 Thread nipun . gupta
From: Vanshika Shukla This patch updates the RSS support to support following additional distributions: - VLAN - ESP - AH - PPPOE Signed-off-by: Vanshika Shukla --- drivers/net/dpaa2/base/dpaa2_hw_dpni.c | 70 +- drivers/net/dpaa2/dpaa2_ethdev.h | 7 ++- 2 files

[dpdk-dev] [PATCH 08/11] net/dpaa: add comments to explain driver behaviour

2021-09-27 Thread nipun . gupta
From: Rohit Raj This patch adds comment to explain how dpaa_port_fmc_ccnode_parse function is working to get the HW queue from FMC policy file Signed-off-by: Rohit Raj --- drivers/net/dpaa/dpaa_fmc.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/drivers/net/dpaa/dp

[dpdk-dev] [PATCH 09/11] raw/dpaa2_qdma: use correct params for config and queue setup

2021-09-27 Thread nipun . gupta
From: Nipun Gupta RAW configure and Queue setup APIs support size parameter for configure. This patch supports the same for DPAA2 QDMA PMD APIs Signed-off-by: Nipun Gupta --- drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 12 +--- drivers/raw/dpaa2_qdma/rte_pmd_dpaa2_qdma.h | 8 ---

[dpdk-dev] [PATCH 10/11] raw/dpaa2_qdma: remove checks for lcore ID

2021-09-27 Thread nipun . gupta
From: Nipun Gupta There is no need for preventional check of rte_lcore_id() in data path. This patch removes the same. Signed-off-by: Nipun Gupta --- drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 14 -- 1 file changed, 14 deletions(-) diff --git a/drivers/raw/dpaa2_qdma/dpaa2_qdma.c b/dr

[dpdk-dev] [PATCH 11/11] common/dpaax: fix paddr to vaddr invalid conversion

2021-09-27 Thread nipun . gupta
From: Gagandeep Singh If some of the VA entries of table are somehow not populated and are NULL, it can add offset to NULL and return the invalid VA in PA to VA conversion. In this patch, adding a check if the VA entry has valid address only then add offset and return VA. Fixes: 2f3d633aa593 ("

[dpdk-dev] [PATCH 0/8] net/mlx5: support more than 255 representors

2021-09-27 Thread Xueming Li
This patch set supports representor number of a PF to be more than 255. CX6 and current OFED driver supports maxium 512 SFs. CX5 supports max 255 SFs. Xueming Li (8): common/mlx5: add netlink API to get RDMA port state net/mlx5: use netlink when IB port greater than 255 net/mlx5: improve Ver

[dpdk-dev] [PATCH 1/8] common/mlx5: add netlink API to get RDMA port state

2021-09-27 Thread Xueming Li
Introduce netlink api to get rdma port state. Signed-off-by: Xueming Li --- drivers/common/mlx5/linux/meson.build | 2 + drivers/common/mlx5/linux/mlx5_nl.c | 116 +++--- drivers/common/mlx5/linux/mlx5_nl.h | 3 + drivers/common/mlx5/version.map | 1 + 4 files

[dpdk-dev] [PATCH 3/8] net/mlx5: improve Verbs flow priority discover for scalable

2021-09-27 Thread Xueming Li
To detect number flow Verbs flow priorities, PMD try to create Verbs flows in different priority. While Verbs is not designed to support ports larger than 255. When DevX supported by kernel driver, 16 Verbs priorities must be supported, no need to create Verbs flows. Signed-off-by: Xueming Li --

[dpdk-dev] [PATCH 6/8] net/mlx5: supports flow item of normal Tx queue

2021-09-27 Thread Xueming Li
Extends txq flow pattern to support both hairpin and regular txq. Signed-off-by: Xueming Li --- drivers/net/mlx5/mlx5_flow_dv.c | 16 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c index d4242a4aa8d

[dpdk-dev] [PATCH 2/8] net/mlx5: use netlink when IB port greater than 255

2021-09-27 Thread Xueming Li
IB spec doesn't allow 255 ports on a single HCA, port number of 256 was cast to u8 value 0 which invalid to ibv_query_port() This patch invoke netlink api to query port state when port number greater than 255. Signed-off-by: Xueming Li --- drivers/net/mlx5/linux/mlx5_os.c | 39 +

[dpdk-dev] [PATCH 7/8] net/mlx5: fix internal root table flow priroity

2021-09-27 Thread Xueming Li
When creating internal transfer flow on root table with lowerest priority, the flow was created with u32 priority. It was wrong since the flow is created in kernel and max priority supported is 16. This patch fixes this by adding internal flow check. Fixes: 5f8ae44dd454 ("net/mlx5: enlarge maxim

  1   2   3   >