Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2020-01-18 Thread Anoob Joseph
Hi Ori, Please see inline. Thanks, Anoob > -Original Message- > From: Ori Kam > Sent: Thursday, January 16, 2020 7:08 PM > To: Anoob Joseph ; Medvedkin, Vladimir > ; Ananyev, Konstantin > ; Akhil Goyal ; Adrien > Mazarguil ; Doherty, Declan > ; Yigit, Ferruh ; Jerin > Jacob > Kollanukk

[dpdk-dev] [PATCH v2 02/15] common/octeontx2: add routine to check if sec capable otx2

2020-01-18 Thread Anoob Joseph
From: Vamsi Attunuru This routine returns true if given rte_eth_dev is security offload capable and belongs to octeontx2. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/common/octeontx2/otx2_common.c | 20 +++

[dpdk-dev] [PATCH v2 00/15] add OCTEONTX2 inline IPsec support

2020-01-18 Thread Anoob Joseph
This series adds inline IPsec support in OCTEONTX2 PMD. In the inbound path, rte_flow framework need to be used to configure the NPC block, which does the h/w lookup. The packets would get processed by the crypto block and would submit to the scheduling block, SSO. So inline IPsec mode can be enab

[dpdk-dev] [PATCH v2 01/15] common/octeontx2: add CPT LF mbox for inline inbound

2020-01-18 Thread Anoob Joseph
Adding the new mbox introduced to configure CPT LF to be used for inline inbound. Signed-off-by: Anoob Joseph Signed-off-by: Tejasree Kondoj --- drivers/common/octeontx2/otx2_mbox.h | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/common/octeontx2/otx2_mbox.h b/drivers/common

[dpdk-dev] [PATCH v2 04/15] crypto/octeontx2: create eth security ctx

2020-01-18 Thread Anoob Joseph
Adding security ctx to the eth device. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/common/octeontx2/otx2_common.c | 2 ++ drivers/common/octeontx2/otx2_common.h

[dpdk-dev] [PATCH v2 07/15] crypto/octeontx2: enable CPT to share QP with ethdev

2020-01-18 Thread Anoob Joseph
Adding the infrastructure to save one opaque pointer in idev and implement the consumer-producer in the PMDs which uses it accordingly. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- .

[dpdk-dev] [PATCH v2 03/15] crypto/octeontx2: configure for inline IPsec

2020-01-18 Thread Anoob Joseph
From: Tejasree Kondoj For enabling outbound inline IPsec, a CPT queue needs to be tied to a NIX PF_FUNC. Distribute CPT queues fairly among all available otx2 eth ports. For inbound, one CPT LF will be assigned and initialized by kernel. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph

[dpdk-dev] [PATCH v2 08/15] crypto/octeontx2: add eth security session operations

2020-01-18 Thread Anoob Joseph
Adding security session operations in eth security ctx. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/crypto/octeontx2/otx2_ipsec_fp.h | 293 ++ driver

[dpdk-dev] [PATCH v2 05/15] crypto/octeontx2: add security in eth dev configure

2020-01-18 Thread Anoob Joseph
From: Tejasree Kondoj Adding security in eth device configure. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- doc/guides/nics/octeontx2.rst | 20 + doc/guides/rel_

[dpdk-dev] [PATCH v2 06/15] crypto/octeontx2: add eth security capabilities

2020-01-18 Thread Anoob Joseph
From: Ankur Dwivedi Adding security capabilities supported by the eth PMD. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/crypto/octeontx2/otx2_security.c | 84 ++

[dpdk-dev] [PATCH v2 11/15] net/octeontx2: add inline ipsec rx path changes

2020-01-18 Thread Anoob Joseph
From: Tejasree Kondoj Adding post-processing required for inline IPsec inbound packets. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/crypto/octeontx2/Makefile| 1 +

[dpdk-dev] [PATCH v2 09/15] crypto/octeontx2: add datapath ops in eth security ctx

2020-01-18 Thread Anoob Joseph
From: Ankur Dwivedi Adding data path ops in eth security ctx. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/crypto/octeontx2/otx2_security.c | 23 +++ 1

[dpdk-dev] [PATCH v2 10/15] crypto/octeontx2: add lookup mem changes to hold sa indices

2020-01-18 Thread Anoob Joseph
From: Archana Muniganti lookup_mem provides fast accessing of data path fields. Storing sa indices in lookup_mem which are required in inline rx data path. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by:

[dpdk-dev] [PATCH v2 15/15] crypto/octeontx2: sync inline tag type cfg with Rx adapter configuration

2020-01-18 Thread Anoob Joseph
From: Vamsi Attunuru Tag type configuration for the inline processed packets is set during ethdev configuration, it might conflict with tag type configuration done during Rx adapter configuration which would be setup later. This conflict is fixed as part of flow rule creation by updating tag typ

[dpdk-dev] [PATCH v2 13/15] drivers/octeontx2: add sec in compiler optimized TX fastpath framework

2020-01-18 Thread Anoob Joseph
From: Archana Muniganti Added new flag for SECURITY in compiler optimized TX fastpath framework. With this, compiler autogenerates functions which have security enabled. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj S

[dpdk-dev] [PATCH v2 12/15] drivers/octeontx2: add sec in compiler optimized RX fastpath framework

2020-01-18 Thread Anoob Joseph
From: Archana Muniganti Added new flag for SECURITY in RX compiler optimized fastpath framework. With this, compiler autogenerates functions which have security enabled. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj S

[dpdk-dev] [PATCH v2 14/15] crypto/octeontx2: add inline tx path changes

2020-01-18 Thread Anoob Joseph
From: Ankur Dwivedi Adding pre-processing required for inline IPsec outbound packets. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Archana Muniganti Signed-off-by: Tejasree Kondoj Signed-off-by: Vamsi Attunuru --- drivers/crypto/octeontx2/otx2_security.c| 82

Re: [dpdk-dev] [PATCH v9 2/6] lib/ring: apis to support configurable element size

2020-01-18 Thread Ananyev, Konstantin
> > On Wed, Jan 15, 2020 at 11:25:07PM -0600, Honnappa Nagarahalli wrote: > > > Current APIs assume ring elements to be pointers. However, in many use > > > cases, the size can be different. Add new APIs to support configurable > > > ring element sizes. > > > > > > Signed-off-by: Honnappa Nagarah

Re: [dpdk-dev] [PATCH v2 01/15] common/octeontx2: add CPT LF mbox for inline inbound

2020-01-18 Thread Jerin Jacob
On Sat, Jan 18, 2020 at 4:19 PM Anoob Joseph wrote: > > Adding the new mbox introduced to configure CPT LF to be used for inline > inbound. > > Signed-off-by: Anoob Joseph > Signed-off-by: Tejasree Kondoj Acked-by: Jerin Jacob > --- > drivers/common/octeontx2/otx2_mbox.h | 7 +++ > 1 f

Re: [dpdk-dev] [PATCH v2 02/15] common/octeontx2: add routine to check if sec capable otx2

2020-01-18 Thread Jerin Jacob
On Sat, Jan 18, 2020 at 4:19 PM Anoob Joseph wrote: > > From: Vamsi Attunuru > > This routine returns true if given rte_eth_dev is security offload > capable and belongs to octeontx2. > > Signed-off-by: Anoob Joseph > Signed-off-by: Tejasree Kondoj > Signed-off-by: Vamsi Attunuru Acked-by: Je

Re: [dpdk-dev] [PATCH v2 00/15] add OCTEONTX2 inline IPsec support

2020-01-18 Thread Jerin Jacob
On Sat, Jan 18, 2020 at 4:19 PM Anoob Joseph wrote: > > This series adds inline IPsec support in OCTEONTX2 PMD. > > In the inbound path, rte_flow framework need to be used to configure > the NPC block, which does the h/w lookup. The packets would get > processed by the crypto block and would submi

Re: [dpdk-dev] [PATCH v9 2/6] lib/ring: apis to support configurable element size

2020-01-18 Thread Honnappa Nagarahalli
> > > > On Wed, Jan 15, 2020 at 11:25:07PM -0600, Honnappa Nagarahalli wrote: > > > > Current APIs assume ring elements to be pointers. However, in many > > > > use cases, the size can be different. Add new APIs to support > > > > configurable ring element sizes. > > > > > > > > Signed-off-by: H

Re: [dpdk-dev] [PATCH v9 3/6] test/ring: add functional tests for rte_ring_xxx_elem APIs

2020-01-18 Thread Honnappa Nagarahalli
> On Wed, Jan 15, 2020 at 11:25:08PM -0600, Honnappa Nagarahalli wrote: > > Add basic infrastructure to test rte_ring_xxx_elem APIs. > > Adjust the existing test cases to test for various ring element sizes. > > > > Signed-off-by: Honnappa Nagarahalli > > Reviewed-by: Gavin Hu > > --- > > app/

Re: [dpdk-dev] [PATCH v9 4/6] test/ring: modify perf test cases to use rte_ring_xxx_elem APIs

2020-01-18 Thread Honnappa Nagarahalli
> > On Wed, Jan 15, 2020 at 11:25:09PM -0600, Honnappa Nagarahalli wrote: > > Adjust the performance test cases to test rte_ring_xxx_elem APIs. > > > > Signed-off-by: Honnappa Nagarahalli > > Reviewed-by: Gavin Hu > > --- > > app/test/test_ring_perf.c | 454 > > +++

[dpdk-dev] [PATCH v10 0/6] lib/ring: APIs to support custom element size

2020-01-18 Thread Honnappa Nagarahalli
The current rte_ring hard-codes the type of the ring element to 'void *', hence the size of the element is hard-coded to 32b/64b. Since the ring element type is not an input to rte_ring APIs, it results in couple of issues: 1) If an application requires to store an element which is not 64b, it

[dpdk-dev] [PATCH v10 1/6] test/ring: use division for cycle count calculation

2020-01-18 Thread Honnappa Nagarahalli
Use division instead of modulo operation to calculate more accurate cycle count. Signed-off-by: Honnappa Nagarahalli Acked-by: Olivier Matz --- app/test/test_ring_perf.c | 22 -- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/app/test/test_ring_perf.c b/app/

[dpdk-dev] [PATCH v10 4/6] test/ring: modify perf test cases to use rte_ring_xxx_elem APIs

2020-01-18 Thread Honnappa Nagarahalli
Adjust the performance test cases to test rte_ring_xxx_elem APIs. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu --- app/test/test_ring_perf.c | 478 +++--- 1 file changed, 285 insertions(+), 193 deletions(-) diff --git a/app/test/test_ring_perf.c b/a

[dpdk-dev] [PATCH v10 3/6] test/ring: add functional tests for rte_ring_xxx_elem APIs

2020-01-18 Thread Honnappa Nagarahalli
Add basic infrastructure to test rte_ring_xxx_elem APIs. Adjust the existing test cases to test for various ring element sizes. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu --- app/test/test_ring.c | 1383 +- app/test/test_ring.h | 187 +

[dpdk-dev] [PATCH v10 5/6] lib/hash: use ring with 32b element size to save memory

2020-01-18 Thread Honnappa Nagarahalli
The freelist and external bucket indices are 32b. Using rings that use 32b element sizes will save memory. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ola Liljedahl Acked-by: Yipeng Wang --- lib/librte_hash/rte_cuckoo_hash.c | 94 --- lib

[dpdk-dev] [PATCH v10 2/6] lib/ring: apis to support configurable element size

2020-01-18 Thread Honnappa Nagarahalli
Current APIs assume ring elements to be pointers. However, in many use cases, the size can be different. Add new APIs to support configurable ring element sizes. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Dharmik Thakkar Reviewed-by: Gavin Hu Reviewed-by: Ruifeng Wang --- lib/librte_rin

[dpdk-dev] [PATCH v10 6/6] eventdev: use custom element size ring for event rings

2020-01-18 Thread Honnappa Nagarahalli
Use custom element size ring APIs to replace event ring implementation. This avoids code duplication. Signed-off-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ola Liljedahl Reviewed-by: Jerin Jacob --- lib/librte_eventdev/rte_event_ring.c | 147 ++- lib/l

Re: [dpdk-dev] 18.11.6 (LTS) patches review and test

2020-01-18 Thread Yu, PingX
Kevin, Intel finished the following regression test as bugs are found 18.11.6-rc1. All passed. * Intel(R) Testing # Basic Intel(R) NIC testing * PF(i40e): Pass * Build or compile: Pass #Basic cryptodev: Pass. Regards, Yu Ping > -Original Message- > From: Kevin Traynor [mailto:ktray...

Re: [dpdk-dev] [EXT] Re: [PATCH] ethdev: allow multiple security sessions to use one rte flow

2020-01-18 Thread Ori Kam
Hi Anoob, Thanks for your explanation. Best, Ori > -Original Message- > From: Anoob Joseph > Sent: Saturday, January 18, 2020 10:12 AM > To: Ori Kam ; Medvedkin, Vladimir > ; Ananyev, Konstantin > ; Akhil Goyal ; > Adrien Mazarguil ; Doherty, Declan > ; Yigit, Ferruh ; Jerin > Jacob Kol

[dpdk-dev] [PATCH v2 0/3] armv8 crypto PMD update

2020-01-18 Thread Ruifeng Wang
Maintainance of armv8_crypto library created by Marvell/Cavium will be discontinued. Going forward, Armv8 crypto PMD will link to AArch64 crypto library hosted by Arm. Patch 1/3, 2/3 update source code and document respectively to reflect the change. Patch 3/3 fixs Clang build issue when Armv8 cry

[dpdk-dev] [PATCH v2 3/3] crypto/armv8: fix clang build

2020-01-18 Thread Ruifeng Wang
1. Clang requires braces around initialization of subobject. 2. Clang complains implicit conversion of enumeration type. Trapped issue with Clang version 8.0 and CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO was set. Error messages: rte_armv8_pmd.c:144:2: error: suggest braces around initialization of subob

[dpdk-dev] [PATCH v2 1/3] crypto/armv8: link PMD to crypto library hosted by Arm

2020-01-18 Thread Ruifeng Wang
Armv8 crypto PMD linked to armv8_crypto library created by Marvell. Maintenance of armv8_crypto library will be discontinued. Change Armv8 PMD to link to AArch64 crypto library hosted by Arm. Signed-off-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ola Li

[dpdk-dev] [PATCH v2 2/3] doc: update link to the crypto library for armv8 PMD

2020-01-18 Thread Ruifeng Wang
Armv8 crypto PMD now uses crypto library hosted by Arm. Update doc with the crypto library link to reflect the change. Signed-off-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli Acked-by: Jerin Jacob --- doc/guides/cryptodevs/armv8.rst | 7 +++ 1 file changed, 3 insertions(+), 4 deletio