[dpdk-dev] [PATCH v2 11/38] net/sfc: add port representors infrastructure

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Provide minimal implementation for port representors that only can be configured and can provide device information. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- doc/guides/nics/sfc_efx.rst | 13 +- dr

[dpdk-dev] [PATCH v2 13/38] common/sfc_efx/base: add API to get mport selector by ID

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov The conversion is required when mport ID is received via mport allocation and mport selector is required for filter creation. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/common/sfc_efx/base/efx.

[dpdk-dev] [PATCH v2 14/38] common/sfc_efx/base: add mport alias MCDI wrappers

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov The APIs allow creation of mports for port representor traffic filtering. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/common/sfc_efx/base/efx.h | 13 drivers/common/sfc_efx/base/efx_mae

[dpdk-dev] [PATCH v2 15/38] net/sfc: add representor proxy port API

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov The API is required to create and destroy representor proxy port assigned to representor. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc.c| 12 + drivers/net/sfc/sfc.h

[dpdk-dev] [PATCH v2 16/38] net/sfc: implement representor queue setup and release

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Implement queue creation and destruction both in port representors and representor proxy. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_repr.c | 257 +

[dpdk-dev] [PATCH v2 17/38] net/sfc: implement representor RxQ start/stop

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Add extra libefx flags to Rx queue information initialization function interface to be able to specify the ingress m-port flag for a representor RxQ. Rx prefix of packets on that queue will contain ingress m-port field required for packet forwarding in representor proxy. Signe

[dpdk-dev] [PATCH v2 18/38] net/sfc: implement representor TxQ start/stop

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Implement Tx queue start and stop in port representor proxy. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_ev.h | 8 ++ drivers/net/sfc/sfc_repr_proxy.c | 166 +++

[dpdk-dev] [PATCH v2 20/38] net/sfc: implement port representor link update

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Implement the callback by reporting link down if the representor is not started, otherwise report link up with undefined link speed. Link speed is undefined since representors can pass traffic to each other even if the PF link is down. Signed-off-by: Igor Romanov Signed-off-

[dpdk-dev] [PATCH v2 19/38] net/sfc: implement port representor start and stop

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Implement queue start and stop operation both in port representors and representor proxy. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_mae.h| 9 +- drivers/net/sfc/sfc_r

[dpdk-dev] [PATCH v2 21/38] net/sfc: support multiple device probe

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Support probing the device multiple times so that additional port representors can be created with hotplug EAL API. To hotplug a representor, the PF must be hotplugged with different representor device argument. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Rev

[dpdk-dev] [PATCH v2 22/38] net/sfc: implement representor Tx routine

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Forward traffic that is transmitted from a port representor to the corresponding virtual function using the dedicated TxQ. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_repr.c |

[dpdk-dev] [PATCH v2 23/38] net/sfc: use xword type for EF100 Rx prefix

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Layout of the EF100 Rx prefix is defined in terms of a 32 bytes long value type (xword). Replace oword with xword to avoid truncation. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_ef1

[dpdk-dev] [PATCH v2 24/38] net/sfc: handle ingress m-port in EF100 Rx prefix

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Set ingress mport dynamic field in mbuf in EF100. For a given PF, Rx queues of representor devices function on top of the only Rx queue operated by the PF representor proxy facility. This field is a means to demultiplex traffic hitting the queue. Signed-off-by: Igor Romanov

[dpdk-dev] [PATCH v2 25/38] net/sfc: implement representor Rx routine

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Implement traffic forwarding for representor and representor proxy from virtual functions to representor Rx queues. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_repr.c | 12 +++

[dpdk-dev] [PATCH v2 26/38] net/sfc: add simple port representor statistics

2021-10-11 Thread Andrew Rybchenko
From: Igor Romanov Gather statistics of enqueued and dequeued packets in Rx and Tx burst callbacks to report in stats_get callback. Signed-off-by: Igor Romanov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_repr.c | 60 +

[dpdk-dev] [PATCH v2 27/38] net/sfc: free MAE lock once switch domain is assigned

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov If for some reason the hardware switch ID initialization function fails, MAE lock is still held after the function finishes. This patch fixes that. Fixes: 1e7fbdf0ba19 ("net/sfc: support concept of switch domains/ports") Cc: sta...@dpdk.org Signed-off-by: Viacheslav

[dpdk-dev] [PATCH v2 28/38] common/sfc_efx/base: add multi-host function M-port selector

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Provide helper function to compose multi-host aware PCIe function M-port selector. The firmware expects mport selectors to use different sets of values to represent a PCIe interface in mport selectors and elsewhere. In order to avoid having the user perform the conve

[dpdk-dev] [PATCH v2 29/38] common/sfc_efx/base: retrieve function interfaces for VNICs

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov This information is required to be able to fully identify the function. Add this information to the NIC configuration structure for easy access. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/common/sfc

[dpdk-dev] [PATCH v2 30/38] common/sfc_efx/base: add a means to read MAE mport journal

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov This is required to provide the driver with the current state of mports. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/common/sfc_efx/base/efx.h | 56 +++ drivers/common/sfc_efx/base/efx_mae.

[dpdk-dev] [PATCH v2 31/38] common/sfc_efx/base: allow getting VNIC MCDI client handles

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Equality checks between VNICs should be done by comparing their client handles. This means that clients should be able to retrieve client handles for arbitrary functions and themselves. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-

[dpdk-dev] [PATCH v2 32/38] net/sfc: maintain controller to EFX interface mapping

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Newer hardware may have arbitrarily complex controller configurations, and for this reason the mapping has been made dynamic: it is represented with a dynamic array that is indexed by controller numbers and each element contains an EFX interface number. Since the numb

[dpdk-dev] [PATCH v2 33/38] net/sfc: store PCI address for represented entities

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov This information will be useful when representor info API is implemented. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_ethdev.c | 11 +-- drivers/net/sfc/sfc_repr.c | 20

[dpdk-dev] [PATCH v2 34/38] net/sfc: include controller and port in representor name

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Make representor names unique on multi-host configurations. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_repr.c | 28 ++-- drivers/net/sfc/sfc_switch.c | 28 +

[dpdk-dev] [PATCH v2 36/38] net/sfc: use switch port ID as representor ID

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Representor IDs must be unique for each representor. VFs, which are currently used, are not unique as they may repeat in combination with different PCI controllers and PFs. On the other hand, switch port IDs are unique, so they are a better fit for this role. Signed-

[dpdk-dev] [PATCH v2 35/38] net/sfc: support new representor parameter syntax

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Allow the user to specify representor entities using the structured parameter values. Signed-off-by: Viacheslav Galaktionov Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- drivers/net/sfc/sfc_ethdev.c | 181 --- drive

[dpdk-dev] [PATCH v2 38/38] net/sfc: update comment about representor support

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov The representor support has been implemented to some extent, and the fact that ethdev mport is equivalent to entity mport is by design. Fixes: 1fb65e4dae8 ("net/sfc: support flow action port ID in transfer rules") Cc: sta...@dpdk.org Signed-off-by: Viacheslav Galakt

[dpdk-dev] [PATCH v2 37/38] net/sfc: implement the representor info API

2021-10-11 Thread Andrew Rybchenko
From: Viacheslav Galaktionov Let the driver provide the user with information about available representors by implementing the representor_info_get operation. Due to the lack of any structure to representor IDs, every ID range describes exactly one representor. Signed-off-by: Viacheslav Galakti

Re: [dpdk-dev] [PATCH v2 1/5] cryptodev: separate out internal structures

2021-10-11 Thread Zhang, Roy Fan
> -Original Message- > From: Akhil Goyal > Sent: Monday, October 11, 2021 1:43 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; > hemant.agra...@nxp.com; ano...@marvell.com; De Lara Guarch, Pablo > ; Trahe, Fiona ; > Doherty, Declan ; ma...@nvidia.com; > g.si...@

Re: [dpdk-dev] [PATCH] mbuf: remove deprecated bad outer IPv4 checksum flag on Rx

2021-10-11 Thread Andrew Rybchenko
Hi Olivier, On 9/30/21 12:51 AM, Olivier Matz wrote: > Hi Andrew, > > On Wed, Sep 29, 2021 at 10:37:34AM +0300, Andrew Rybchenko wrote: >> Removed offload flag PKT_RX_EIP_CKSUM_BAD. PKT_RX_OUTER_IP_CKSUM_BAD >> should be used as a replacement. >> >> Signed-off-by: Andrew Rybchenko > > FYI, I ju

Re: [dpdk-dev] [PATCH v2 2/5] cryptodev: allocate max space for internal qp array

2021-10-11 Thread Zhang, Roy Fan
> -Original Message- > From: Akhil Goyal > Sent: Monday, October 11, 2021 1:43 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; > hemant.agra...@nxp.com; ano...@marvell.com; De Lara Guarch, Pablo > ; Trahe, Fiona ; > Doherty, Declan ; ma...@nvidia.com; > g.si...@

Re: [dpdk-dev] [PATCH v2 4/5] cryptodev: update fast path APIs to use new flat array

2021-10-11 Thread Zhang, Roy Fan
Hi Akhil, > -Original Message- > From: Akhil Goyal > Sent: Monday, October 11, 2021 1:43 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; > hemant.agra...@nxp.com; ano...@marvell.com; De Lara Guarch, Pablo > ; Trahe, Fiona ; > Doherty, Declan ; ma...@nvidia.com;

[dpdk-dev] [PATCH] test/service: fix race in attr check

2021-10-11 Thread David Marchand
The CI reported rare (and cryptic) failures like: RTE>>service_autotest + --- + + Test Suite : service core test suite + --- + + TestCase [ 0] : unregister_all succeeded + TestCase [ 1] : s

Re: [dpdk-dev] [PATCH] test/service: fix race in attr check

2021-10-11 Thread Aaron Conole
David Marchand writes: > The CI reported rare (and cryptic) failures like: > > RTE>>service_autotest > + --- + > + Test Suite : service core test suite > + --- + > + TestCase [ 0] : unregis

Re: [dpdk-dev] [PATCH v2 5/5] cryptodev: move device specific structures

2021-10-11 Thread Zhang, Roy Fan
Hi Akhil, > -Original Message- > From: Akhil Goyal > Sent: Monday, October 11, 2021 1:43 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; > hemant.agra...@nxp.com; ano...@marvell.com; De Lara Guarch, Pablo > ; Trahe, Fiona ; > Doherty, Declan ; ma...@nvidia.com;

Re: [dpdk-dev] [PATCH v5 4/7] ethdev: copy fast-path API into separate structure

2021-10-11 Thread Ananyev, Konstantin
> > Copy public function pointers (rx_pkt_burst(), etc.) and related > > pointers to internal data from rte_eth_dev structure into a > > separate flat array. That array will remain in a public header. > > The intention here is to make rte_eth_dev and related structures internal. > > That should al

Re: [dpdk-dev] [RFC PATCH] ethdev: mtr: enhance input color table features

2021-10-11 Thread Dumitrescu, Cristian
Hi Jerin, > -Original Message- > From: jer...@marvell.com > Sent: Friday, August 20, 2021 9:24 AM > To: Dumitrescu, Cristian ; Thomas Monjalon > ; Yigit, Ferruh ; Andrew > Rybchenko > Cc: dev@dpdk.org; arybche...@solarflare.com; l...@nvidia.com; > ajit.khapa...@broadcom.com; Singh, Jasvi

Re: [dpdk-dev] [PATCH v5 4/7] ethdev: copy fast-path API into separate structure

2021-10-11 Thread Ananyev, Konstantin
> > Sorry to self-reply. > > I think it's better the 'struct rte_eth_dev *dev' hold a pointer to the > 'struct rte_eth_fp_ops', e.g. > > struct rte_eth_dev { > struct rte_eth_fp_ops *fp_ops; > ... // other field > } > > The eth framework set the pointer

Re: [dpdk-dev] [PATCH v2] ethdev: remove deprecated shared counter attribute

2021-10-11 Thread Ori Kam
Hi Andrew, > -Original Message- > From: Andrew Rybchenko > Subject: Re: [dpdk-dev] [PATCH v2] ethdev: remove deprecated shared counter > attribute > > Hi Ori, > > On 10/11/21 1:02 PM, Ori Kam wrote: > > Hi Andrew, > > > > Sorry but I think I missed something. > > > >> -Original Mes

Re: [dpdk-dev] [PATCH v2] app/testpmd: retain all original dev conf when config DCB

2021-10-11 Thread Ferruh Yigit
On 10/11/2021 10:12 AM, Min Hu (Connor) wrote: From: Huisong Li When configuring DCB, testpmd retains the rx_mode/tx_mode configuration in rte_port->dev_conf. But some configurations, such as the link_speed, were not saved if they were set before configuring DCB. Fixes: 1a572499beb6 ("app/test

Re: [dpdk-dev] [v1] ethdev: add telemetry endpoint for device info

2021-10-11 Thread Bruce Richardson
On Mon, Oct 11, 2021 at 03:40:58PM +0100, Ferruh Yigit wrote: > On 9/29/2021 5:25 AM, Gowrishankar Muthukrishnan wrote: > > Add telemetry endpoint /ethdev/info for device info. > > > > Signed-off-by: Gowrishankar Muthukrishnan > > Change-Id: I3e6ee2bd1a80675473adf0bd884b194f98e28536 > > --- > >

Re: [dpdk-dev] [PATCH v25 2/6] dmadev: add control plane API support

2021-10-11 Thread Bruce Richardson
On Mon, Oct 11, 2021 at 03:33:44PM +0800, Chengwen Feng wrote: > This patch add control plane API for dmadev. > > Signed-off-by: Chengwen Feng > Acked-by: Bruce Richardson > Acked-by: Morten Brørup > Reviewed-by: Kevin Laatz > Reviewed-by: Conor Walsh > --- > doc/guides/prog_guide/dmadev.rst

Re: [dpdk-dev] [v1] ethdev: add telemetry endpoint for device info

2021-10-11 Thread Ferruh Yigit
On 10/11/2021 4:40 PM, Bruce Richardson wrote: On Mon, Oct 11, 2021 at 03:40:58PM +0100, Ferruh Yigit wrote: On 9/29/2021 5:25 AM, Gowrishankar Muthukrishnan wrote: Add telemetry endpoint /ethdev/info for device info. Signed-off-by: Gowrishankar Muthukrishnan Change-Id: I3e6ee2bd1a80675473adf

Re: [dpdk-dev] [PATCH] net/hns3: remove similar macro function definitions

2021-10-11 Thread Ferruh Yigit
On 10/9/2021 8:48 AM, Min Hu (Connor) wrote: From: Chengchang Tang For different capabilities, we declare different macro functions to determine whether the capabilities are supported. This patch declare a unified macro function to judge capabilities. Signed-off-by: Chengchang Tang Signed-of

Re: [dpdk-dev] [PATCH v3 01/12] ethdev: add port representor item to flow API

2021-10-11 Thread Ori Kam
Hi Ivan, > -Original Message- > From: Ivan Malov > Sent: Sunday, October 10, 2021 5:39 PM > Subject: [PATCH v3 01/12] ethdev: add port representor item to flow API > > For use in "transfer" flows. Supposed to match traffic entering the embedded > switch from the given > ethdev. > > Mus

Re: [dpdk-dev] [PATCH] net/ena: remove useless address check

2021-10-11 Thread Ferruh Yigit
On 10/11/2021 7:49 AM, Michał Krawczyk wrote: pon., 4 paź 2021 o 19:27 Ferruh Yigit napisał(a): Reported by "gcc (GCC) 12.0.0 20211003 (experimental)": ./drivers/net/ena/ena_rss.c: In function ‘ena_rss_reta_query’: ./drivers/net/ena/ena_rss.c:140:66: error: the comparison will always

[dpdk-dev] [PATCH v4 00/28] Support ingress policer

2021-10-11 Thread skori
From: Sunil Kumar Kori Series adds support for ingress meter for CN10K platform. Series is divided in following two logical implementation: - common/cnxk: It implements RoC APIs over MBOX interfaces which are by network drivers. common/cnxk: update policer MBOX APIs and HW definitions

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

2021-10-11 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 Acked-by: Ray Kinsella --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during p

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cl

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement interface to get available profile count for given nixlf. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase support on

Re: [dpdk-dev] [PATCH v3 02/12] ethdev: add represented port item to flow API

2021-10-11 Thread Ori Kam
Hi Ivan, > -Original Message- > From: Ivan Malov > Sent: Sunday, October 10, 2021 5:39 PM > To: dev@dpdk.org > Cc: NBU-Contact-Thomas Monjalon ; Ori Kam > ; Xiaoyun Li > ; Ferruh Yigit ; Andrew > Rybchenko > > Subject: [PATCH v3 02/12] ethdev: add represented port item to flow API > >

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement RoC interface to free HW bandwidth profiles on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase suppor

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement RoC API to configure HW bandwidth profile for CN10K platform. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase support

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement RoC API to dump bandwidth profile on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase support on lates

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action durin

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter clea

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handl

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement RoC API to reset stats per bandwidth profile or per nixlf. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase support on

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Meter action is added in supported action list. Signed-off-by: Sunil Kumar Kori --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3: - Rebase support on latest DPDK - Handl

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

2021-10-11 Thread skori
From: Sunil Kumar Kori To enable support for ingress meter, supported operations are exposed for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement ethdev operation to get meter capabilities for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during po

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to add meter profile for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3:

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to delete meter profile for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to validate meter policy for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to add meter policy for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3:

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to delete meter policy for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown v3

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to create meter instance for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to delete meter instance for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port shutdown

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to enable or disable meter instance for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled meter cleanup during port

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to update DSCP table for pre-coloring for incoming packet per nixlf for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Ha

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

2021-10-11 Thread skori
From: Sunil Kumar Kori Implement API to read and update stats corresponding to given meter instance for CNXK platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow destroy - Handled

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

2021-10-11 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 --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled meter action during flow

[dpdk-dev] [PATCH v4 28/28] net/cnxk: support meter action to flow destroy

2021-10-11 Thread skori
From: Sunil Kumar Kori Meters are configured per flow using rte_flow_create API. Patch adds support for destroy operation for meter action applied on the flow. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v4: - Rebase support on dpdk-next-net-mrvl branch - Handled me

Re: [dpdk-dev] [EXT] [PATCH v3 8/8] examples/ipsec-secgw: add support for additional algorithms

2021-10-11 Thread Nicolau, Radu
Hi Akhil, thanks for the feedback, some comments below. On 10/8/2021 8:07 PM, Akhil Goyal wrote: Add support for AES-GMAC, AES_CTR, AES_XCBC_MAC, AES_CCM, CHACHA20_POLY1305 Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau --- examples/ipsec-secgw/ipsec.h | 3 +- examples/ipsec-s

Re: [dpdk-dev] [PATCH v5 7/7] ethdev: hide eth dev related structures

2021-10-11 Thread Ananyev, Konstantin
> > On 10/7/21 2:27 PM, Konstantin Ananyev wrote: > > Move rte_eth_dev, rte_eth_dev_data, rte_eth_rxtx_callback and related > > data into private header (ethdev_driver.h). > > Few minor changes to keep DPDK building after that. > > > > Signed-off-by: Konstantin Ananyev > > [snip] > > I realiz

Re: [dpdk-dev] [PATCH v5 5/7] ethdev: make fast-path functions to use new flat array

2021-10-11 Thread Ananyev, Konstantin
> > On 10/7/21 2:27 PM, Konstantin Ananyev wrote: > > Rework fast-path ethdev functions to use rte_eth_fp_ops[]. > > While it is an API/ABI breakage, this change is intended to be > > transparent for both users (no changes in user app is required) and > > PMD developers (no changes in PMD is requ

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

2021-10-11 Thread Dmitry Kozlyuk
> -Original Message- > From: Andrew Rybchenko > Sent: 11 октября 2021 г. 16:58 > To: Dmitry Kozlyuk ; Ajit Khaparde > > Cc: dpdk-dev ; Matan Azrad ; Ori Kam > ; NBU-Contact-Thomas Monjalon > ; Ferruh Yigit > Subject: Re: [dpdk-dev] [RFC PATCH 2/2] ethdev: add capability to keep > indire

Re: [dpdk-dev] [PATCH v2 0/5] cryptodev: hide internal structures

2021-10-11 Thread Zhang, Roy Fan
Hi Akhil, The approach looks great but we may have to check if it works in multi-process environment - since all enqueue/dequeue handlers are set by primary process the secondary process may not recognize the fp_ops data. We will run a quick test to see if it is true. Regards, Fan > -Origin

Re: [dpdk-dev] [PATCH v1] eventdev/rx-adapter: add telemetry callbacks

2021-10-11 Thread Jerin Jacob
On Thu, Oct 7, 2021 at 6:27 PM Ganapati Kundapura wrote: > > Added telemetry callbacks to get Rx adapter stats, reset stats and > to get rx queue config information. rx -> Rx Change the subject to eventdev/rx_adapter > > Signed-off-by: Ganapati Kundapura > > diff --git a/lib/eventdev/rte_event

Re: [dpdk-dev] [PATCH v5 2/7] ethdev: allocate max space for internal queue array

2021-10-11 Thread Ananyev, Konstantin
> > At queue configure stage always allocate space for maximum possible > > number (RTE_MAX_QUEUES_PER_PORT) of queue pointers. > > That will allow 'fast' inline functions (eth_rx_burst, etc.) to refer > > pointer to internal queue data without extra checking of current number > > of configured q

Re: [dpdk-dev] [dpdk-stable] [PATCH v2 2/2] net/i40e: fix risk in Rx descriptor read in scalar path

2021-10-11 Thread Ferruh Yigit
On 9/29/2021 4:29 PM, Honnappa Nagarahalli wrote: On 9/15/2021 9:33 AM, Ruifeng Wang wrote: Rx descriptor is 16B/32B in size. If the DD bit is set, it indicates that the rest of the descriptor words have valid values. Hence, the word containing DD bit must be read first before reading the res

Re: [dpdk-dev] [PATCH] doc/windows_gsg: update section on driver installation

2021-10-11 Thread Kadam, Pallavi
On 10/9/2021 1:20 PM, Dmitry Kozlyuk wrote: 2021-10-09 12:38 (UTC-0700), Kadam, Pallavi: On 10/8/2021 2:11 PM, Dmitry Kozlyuk wrote: [...] +virt2phys +~ -1. From Device Manager, Action menu, select "Add legacy hardware". -2. It will launch the "Add Hardware Wizard". Click "Next".

[dpdk-dev] [PATCH v5 0/5] ethdev: introduce shared Rx queue

2021-10-11 Thread Xueming Li
In current DPDK framework, all Rx queues is pre-loaded with mbufs for incoming packets. When number of representors scale out in a switch domain, the memory consumption became significant. Further more, polling all ports leads to high cache miss, high latency and low throughputs. This patch introd

[dpdk-dev] [PATCH v5 3/5] app/testpmd: dump port info for shared Rx queue

2021-10-11 Thread Xueming Li
In case of shared Rx queue, polling any member port returns mbufs for all members. This patch dumps mbuf->port for each packet. Signed-off-by: Xueming Li --- app/test-pmd/util.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test-pmd/util.c b/app/test-pmd/util.c index 51506e49404..e9

[dpdk-dev] [PATCH v5 1/5] ethdev: introduce shared Rx queue

2021-10-11 Thread Xueming Li
In current DPDK framework, each Rx queue is pre-loaded with mbufs for incoming packets. For some PMDs, when number of representors scale out in a switch domain, the memory consumption became significant. Polling all ports also leads to high cache miss, high latency and low throughput. This patch i

Re: [dpdk-dev] RHEL7 failures

2021-10-11 Thread Thinh Tran
Hi Linconln, I have this patch set 100042 - build/ppc: enable build support for Power10 https://patches.dpdk.org/patch/100042 Thanks, Thinh Tran On 10/11/2021 9:42 AM, Lincoln Lavoie wrote: Hi Thinh, The CI won't automatically go back and retest failures after a patch was applied.  This is

[dpdk-dev] [PATCH v5 4/5] app/testpmd: force shared Rx queue polled on same core

2021-10-11 Thread Xueming Li
Shared rxqs shares one set rx queue of groups zero. Shared Rx queue must must be polled from one core. Checks and stops forwarding if shared rxq being scheduled on multiple cores. Signed-off-by: Xueming Li --- app/test-pmd/config.c | 96 ++ app/test-pmd/

[dpdk-dev] [PATCH v5 5/5] app/testpmd: add forwarding engine for shared Rx queue

2021-10-11 Thread Xueming Li
To support shared Rx queue, this patch introduces dedicate forwarding engine. The engine groups received packets by mbuf->port into sub-group, updates stream statistics and simply frees packets. Signed-off-by: Xueming Li --- app/test-pmd/meson.build| 1 + app/test-pmd/share

[dpdk-dev] [PATCH v5 2/5] app/testpmd: new parameter to enable shared Rx queue

2021-10-11 Thread Xueming Li
Adds "--rxq-share" parameter to enable shared rxq for each rxq. Default shared rxq group 0 is used, Rx queues in same switch domain shares same rxq according to queue index. Shared Rx queue is enabled only if device support offloading flag RTE_ETH_RX_OFFLOAD_SHARED_RXQ. Signed-off-by: Xueming Li

Re: [dpdk-dev] [PATCH 00/11] net/sfc: support per-queue stats on EF100

2021-10-11 Thread Ferruh Yigit
On 9/28/2021 12:29 PM, Andrew Rybchenko wrote: Implement per-queue Rx and Tx statistics for EF100 in software. Packets and bytes stats are collected by the driver. Ivan Ilchenko (11): net/sfc: rename array of SW stats descriptions net/sfc: rename accumulative SW stats to total net/sfc:

Re: [dpdk-dev] [PATCH v5 4/7] ethdev: copy fast-path API into separate structure

2021-10-11 Thread Ananyev, Konstantin
> On 10/7/21 2:27 PM, Konstantin Ananyev wrote: > > Copy public function pointers (rx_pkt_burst(), etc.) and related > > pointers to internal data from rte_eth_dev structure into a > > separate flat array. That array will remain in a public header. > > The intention here is to make rte_eth_dev an

Re: [dpdk-dev] [EXT] Re: [PATCH v2 3/3] security: add reserved bitfields

2021-10-11 Thread Akhil Goyal
> 08/10/2021 22:45, Akhil Goyal: > > In struct rte_security_ipsec_sa_options, for every new option > > added, there is an ABI breakage, to avoid, a reserved_opts > > bitfield is added to for the remaining bits available in the > > structure. > > Now for every new sa option, these reserved_opts can

Re: [dpdk-dev] [PATCH v5 5/7] ethdev: make fast-path functions to use new flat array

2021-10-11 Thread Andrew Rybchenko
On 10/11/21 6:47 PM, Ananyev, Konstantin wrote: On 10/7/21 2:27 PM, Konstantin Ananyev wrote: Rework fast-path ethdev functions to use rte_eth_fp_ops[]. While it is an API/ABI breakage, this change is intended to be transparent for both users (no changes in user app is required) and PMD devel

Re: [dpdk-dev] [PATCH v5 7/7] ethdev: hide eth dev related structures

2021-10-11 Thread Andrew Rybchenko
On 10/11/21 6:54 PM, Ananyev, Konstantin wrote: On 10/7/21 2:27 PM, Konstantin Ananyev wrote: Move rte_eth_dev, rte_eth_dev_data, rte_eth_rxtx_callback and related data into private header (ethdev_driver.h). Few minor changes to keep DPDK building after that. Signed-off-by: Konstantin Anany

Re: [dpdk-dev] [PATCH v2 0/5] cryptodev: hide internal structures

2021-10-11 Thread Ji, Kai
Hi Akhil, Just ran a quick mutli process test against the patch set, unfortunately it failed on the secondary process enqueue or dequeue. USER1: Configuring vector 0, using session 0 USER1: Start enqueuing packets on dev 0 qp 0 USER1: Start dequeuing packets on dev 0 qp 0 USER1: Enqueuing - Dequ

Re: [dpdk-dev] [PATCH v4 1/6] ethdev: introduce shared Rx queue

2021-10-11 Thread Xueming(Steven) Li
On Mon, 2021-10-11 at 13:47 +0300, Andrew Rybchenko wrote: > On 9/30/21 5:55 PM, Xueming Li wrote: > > In current DPDK framework, each RX queue is pre-loaded with mbufs for > > RX -> Rx > > > incoming packets. When number of representors scale out in a switch > > domain, the memory consumption be

Re: [dpdk-dev] [PATCH v5 2/7] ethdev: allocate max space for internal queue array

2021-10-11 Thread Andrew Rybchenko
On 10/11/21 7:25 PM, Ananyev, Konstantin wrote: At queue configure stage always allocate space for maximum possible number (RTE_MAX_QUEUES_PER_PORT) of queue pointers. That will allow 'fast' inline functions (eth_rx_burst, etc.) to refer pointer to internal queue data without extra checking of

Re: [dpdk-dev] [dpdk-ci] RHEL7 failures

2021-10-11 Thread Brandon Lo
Hi Thinh, I have started a rerun of the patch https://patches.dpdk.org/patch/100042 (patchset https://lab.dpdk.org/results/dashboard/patchsets/19066/). You should see the new results reported over email soon. Thanks, Brandon On Mon, Oct 11, 2021 at 12:39 PM Thinh Tran wrote: > > Hi Linconln, >

  1   2   3   4   >