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

2019-12-08 Thread Anoob Joseph
The rte_security API which enables inline protocol/crypto feature mandates that for every security session an rte_flow is created. This would internally translate to a rule in the hardware which would do packet classification. In rte_securty, one SA would be one security session. And if an rte_flo

[dpdk-dev] [PATCH 2/3] drivers: use structure marker typedef in eal

2019-12-08 Thread jerinj
From: Jerin Jacob Use new marker typedef available in EAL. Signed-off-by: Jerin Jacob --- drivers/net/ark/ark_ethdev_rx.c | 2 +- drivers/net/ark/ark_ethdev_tx.c | 2 +- drivers/net/octeontx2/otx2_ethdev.h | 6 +++--- drivers/net/thunderx/nicvf_struct.h | 4 ++-- 4 files changed, 7 ins

[dpdk-dev] [PATCH 3/3] mbuf: use structure marker typedef in eal

2019-12-08 Thread jerinj
From: Jerin Jacob Use new marker typedef available in EAL and remove private marker typedef. Signed-off-by: Jerin Jacob --- lib/librte_mbuf/rte_mbuf_core.h | 21 - 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/lib/librte_mbuf/rte_mbuf_core.h b/lib/librte_mb

[dpdk-dev] [PATCH 1/3] eal: introduce structure marker typedefs

2019-12-08 Thread jerinj
From: Jerin Jacob Introduce EAL typedef for structure 1B, 2B, 4B, 8B alignment marking and a generic marker for a point in a structure. Signed-off-by: Jerin Jacob --- lib/librte_eal/common/include/rte_common.h | 12 1 file changed, 12 insertions(+) diff --git a/lib/librte_eal/com

[dpdk-dev] [PATCH 02/15] common/octeontx2: add routine to check if rte_eth_dev belongs to otx2

2019-12-08 Thread Anoob Joseph
From: Vamsi Attunuru This routine returns true if given rte_eth_dev 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 drivers/common/octeontx2/otx2_

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

2019-12-08 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 05/15] crypto/octeontx2: add security in eth dev configure

2019-12-08 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 + drivers/common/

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

2019-12-08 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 04/15] crypto/octeontx2: create eth security ctx

2019-12-08 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 08/15] crypto/octeontx2: add eth security session operations

2019-12-08 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 03/15] crypto/octeontx2: configure for inline IPsec

2019-12-08 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 availble 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 06/15] crypto/octeontx2: add eth security capabilities

2019-12-08 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 | 124 +

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

2019-12-08 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 10/15] crypto/octeontx2: add lookup mem changes to hold sa indices

2019-12-08 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 11/15] net/octeontx2: add inline ipsec rx path changes

2019-12-08 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 13/15] drivers/octeontx2: add sec in compiler optimized TX fastpath framework

2019-12-08 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 09/15] crypto/octeontx2: add datapath ops in eth security ctx

2019-12-08 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 14/15] crypto/octeontx2: add inline tx path changes

2019-12-08 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

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

2019-12-08 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 15/15] crypto/octeontx2: sync inline tag type cfg with Rx adapter configuration

2019-12-08 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 04/14] examples/ipsec-secgw: add Rx adapter support

2019-12-08 Thread Anoob Joseph
Add Rx adapter support. The event helper init routine will initialize the Rx adapter according to the configuration. If Rx adapter config is not present it will generate a default config. It will check the available eth ports and event queues and map them 1:1. So one eth port will be connected to o

[dpdk-dev] [PATCH 00/14] add eventmode to ipsec-secgw

2019-12-08 Thread Anoob Joseph
This series introduces event-mode additions to ipsec-secgw. This effort is based on the proposed changes for l2fwd-event and the additions in l3fwd for event support. With this series, ipsec-secgw would be able to run in eventmode. The worker thread (executing loop) would be receiving events and w

[dpdk-dev] [PATCH 01/14] examples/ipsec-secgw: add default rte_flow for inline Rx

2019-12-08 Thread Anoob Joseph
From: Ankur Dwivedi The default flow created would enable security processing on all ESP packets. If the default flow is created, SA based rte_flow creation would be skipped. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph --- examples/ipsec-secgw/ipsec-secgw.c | 56 +

[dpdk-dev] [PATCH 02/14] examples/ipsec-secgw: add framework for eventmode helper

2019-12-08 Thread Anoob Joseph
Add framework for eventmode helper. Event mode would involve initialization of multiple devices, like eventdev, ethdev etc. Add routines to initialize and uninitialize event devices. Generate a default config for event devices if it is not specified in the configuration. The init routine will itera

[dpdk-dev] [PATCH 05/14] examples/ipsec-secgw: add Tx adapter support

2019-12-08 Thread Anoob Joseph
Add Tx adapter support. The event helper init routine will initialize the Tx adapter according to the configuration. If Tx adapter config is not present it will generate a default config. Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/event_helper.c | 326 ++

[dpdk-dev] [PATCH 07/14] examples/ipsec-secgw: add routines to launch workers

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik With eventmode, workers can be drafted differently according to the capabilities of the underlying event device. The added functions will receive an array of such workers and probe the eventmode properties to choose the worker. Signed-off-by: Anoob Joseph Signed-off-by: Lu

[dpdk-dev] [PATCH 03/14] examples/ipsec-secgw: add eventdev port-lcore link

2019-12-08 Thread Anoob Joseph
Add event device port-lcore link and specify which event queues should be connected to the event port. Generate a default config for event port-lcore links if it is not specified in the configuration. This routine will check the number of available ports and then create links according to the numbe

[dpdk-dev] [PATCH 06/14] examples/ipsec-secgw: add routines to display config

2019-12-08 Thread Anoob Joseph
Add routines to display the eventmode configuration. This gives an overview of the devices used. Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/event_helper.c | 207 examples/ipsec-secgw/event_helper.h | 14 +++ 2 files

[dpdk-dev] [PATCH 10/14] examples/ipsec-secgw: add app inbound worker

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik Add application inbound worker thread. Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/ipsec_worker.c | 85 - 1 file changed, 84 insertions(+), 1 deletion(-) diff --git a/examples/ipsec-secgw/ipsec_

[dpdk-dev] [PATCH 09/14] examples/ipsec-secgw: add eventmode to ipsec-secgw

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik Add eventmode support to ipsec-secgw. This uses event helper to setup and use the eventmode capabilities. Add driver inbound worker. Example command: ./ipsec-secgw -c 0x1 -w 0002:02:00.0,ipsec_in_max_spi=100 -w 0002:07:00.0 -w 0002:0e:00.0 -w 0002:10:00.1 -- -P -p 0x3 -u 0

[dpdk-dev] [PATCH 12/14] examples/ipsec-secgw: add driver outbound worker

2019-12-08 Thread Anoob Joseph
From: Ankur Dwivedi This patch adds the driver outbound worker thread for ipsec-secgw. In this mode the security session is a fixed one and sa update is not done. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/ipsec-secgw.c |

[dpdk-dev] [PATCH 11/14] examples/ipsec-secgw: add app processing code

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik Add IPsec application processing code for event mode. Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/ipsec-secgw.c | 124 ++ examples/ipsec-secgw/ipsec-secgw.h | 81 examples/ipsec-secgw/ipsec.h

[dpdk-dev] [PATCH 08/14] examples/ipsec-secgw: add support for internal ports

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik Add support for Rx and Tx internal ports. When internal ports are available then a packet can be received from eth port and forwarded to event queue by HW without any software intervention. The same applies to Tx side where a packet sent to an event queue can by forwarded by

[dpdk-dev] [PATCH 14/14] examples/ipsec-secgw: add cmd line option for bufs

2019-12-08 Thread Anoob Joseph
From: Lukasz Bartosik Add command line option -s which can be used to configure number of buffers in a pool. Default number of buffers is 8192. Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/ipsec-secgw.c | 23 +++ 1 file changed, 19 in

[dpdk-dev] [PATCH 13/14] examples/ipsec-secgw: add app outbound worker

2019-12-08 Thread Anoob Joseph
From: Ankur Dwivedi This patch adds the app outbound worker thread. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Lukasz Bartosik --- examples/ipsec-secgw/ipsec_worker.c | 193 +++- 1 file changed, 192 insertions(+), 1 deletion(-) di

[dpdk-dev] [PATCH v1 1/6] raw/octeontx2_ep: add build infra and device probe

2019-12-08 Thread Mahipal Challa
Add the OCTEON TX2 SDP EP device probe along with the build infrastructure for Make and meson builds. Signed-off-by: Mahipal Challa --- MAINTAINERS| 5 + config/common_base | 5 + doc/guides/rawdevs/index.rst

[dpdk-dev] [PATCH v1 2/6] raw/octeontx2_ep: add device configuration

2019-12-08 Thread Mahipal Challa
Register "dev_configure" API to configure/initialize the SDP VF PCIe devices. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst| 29 ++ drivers/common/octeontx2/hw/otx2_sdp.h | 184 + drivers/common/octeontx2/otx2_common.c |

[dpdk-dev] [PATCH v1 4/6] raw/octeontx2_ep: add enqueue operation

2019-12-08 Thread Mahipal Challa
Add rawdev enqueue operation for SDP VF devices. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst | 6 + drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 242 ++ drivers/raw/octeontx2_ep/otx2_ep_enqdeq.h | 39 + drivers/raw/octeontx2_ep/ot

[dpdk-dev] [PATCH v1 3/6] raw/octeontx2_ep: add device uninitialization

2019-12-08 Thread Mahipal Challa
Add rawdev close/uninitialize operation for SDP VF devices. Signed-off-by: Mahipal Challa --- drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 111 ++ drivers/raw/octeontx2_ep/otx2_ep_rawdev.c | 78 + drivers/raw/octeontx2_ep/otx2_ep_rawdev.h | 8 +++

[dpdk-dev] [PATCH v1 0/6] OCTEON TX2 End Point Driver

2019-12-08 Thread Mahipal Challa
This patchset adds support for OCTEON TX2 end point mode of operation. The driver implementation uses DPDK rawdevice sub-system. Mahipal Challa (6): raw/octeontx2_ep: add build infra and device probe raw/octeontx2_ep: add device configuration raw/octeontx2_ep: add device uninitialization r

[dpdk-dev] [PATCH v1 5/6] raw/octeontx2_ep: add dequeue operation

2019-12-08 Thread Mahipal Challa
Add rawdev dequeue operation for SDP VF devices. Signed-off-by: Mahipal Challa --- drivers/raw/octeontx2_ep/otx2_ep_enqdeq.c | 199 ++ drivers/raw/octeontx2_ep/otx2_ep_enqdeq.h | 2 + drivers/raw/octeontx2_ep/otx2_ep_rawdev.c | 1 + drivers/raw/octeontx2_ep/otx2_e

[dpdk-dev] [PATCH v1 6/6] raw/octeontx2_ep: add driver self test

2019-12-08 Thread Mahipal Challa
Add rawdev's selftest feature in SDP VF driver, which verifies the EP mode functionality test. Signed-off-by: Mahipal Challa --- doc/guides/rawdevs/octeontx2_ep.rst | 13 +++ drivers/raw/octeontx2_ep/Makefile | 1 + drivers/raw/octeontx2_ep/meson.build | 1 + drivers/raw/

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: do not inherit slave device configuration

2019-12-08 Thread Chas Williams
On 2019-11-19 07:40, Andrew Rybchenko wrote: > On 11/19/19 3:18 PM, Ferruh Yigit wrote: >> On 11/19/2019 9:03 AM, Andrew Rybchenko wrote: >>> Bonding device should control bonded devices configuration. >>> >>> Also avoid usage of slave's data->dev_conf. >>> >>> Fixes: 2efb58cbab6e ("bond: new l

[dpdk-dev] KNI interface vEtho flaps

2019-12-08 Thread Prashanth Fernando
Hi, I am running KNI example. Once I run KNI, a virtual interface is created and I assign an IP to it. After a few minutes the IP address is gone, ( I assume the interface would have flapped). This issue is seen in random. Can anyone help me out in debugging this issue further. Thanks, Prashan

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-08 Thread Ananyev, Konstantin
Hi Ajit, > This patch adds ability to configure RSS hash level in hardware. > This feature will allow an application to select RSS hash calculation > on outer or inner headers for tunneled packets. > > Signed-off-by: Ajit Khaparde > --- > lib/librte_ethdev/rte_ethdev.h | 27

Re: [dpdk-dev] Admin Queue ENA

2019-12-08 Thread kumaraparameshwaran rathinavel
Thanks a lot Michal. Will follow approach that you have suggested. Also I see that in case if TSO is enabled we set, 336 /* this param needed only for TSO */ 337 ena_meta->l3_outer_hdr_len = 0; 338 ena_meta->l3_outer_hdr_offset = 0; So even if TSO is enabled shoul

Re: [dpdk-dev] [PATCH v2 04/17] net/ionic: register and initialize the adapter

2019-12-08 Thread Alfredo Cardigliano
> On 2 Dec 2019, at 17:09, Ferruh Yigit wrote: > >> + * There is no room in struct rte_pci_driver to keep a reference >> + * to the adapter, using a static list for the time being. >> + */ >> +static LIST_HEAD(ionic_pci_adapters_list, ionic_adapter) ionic_pci_adapters >> = >> +LIST

Re: [dpdk-dev] [PATCH] net/i40e: fix flow control broken

2019-12-08 Thread Zhang, Qi Z
> -Original Message- > From: Sun, GuinanX > Sent: Friday, December 6, 2019 11:41 PM > To: dev@dpdk.org > Cc: Xing, Beilei ; Zhang, Qi Z ; > Yang, Qiming ; Sun, GuinanX > ; sta...@dpdk.org > Subject: [PATCH] net/i40e: fix flow control broken > > Repeat switching flow control on or off d

[dpdk-dev] [PATCH v2] net/pcap: truncate packet if it is too large

2019-12-08 Thread Zhike Wang
From: Zhike Wang Previously large packet would be dropped, instead now it is better to keep it via truncating it. Signed-off-by: Zhike Wang --- drivers/net/pcap/rte_eth_pcap.c | 16 ++-- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/drivers/net/pcap/rte_eth_pcap.c

Re: [dpdk-dev] [DPDK] net/virtio: packed ring notification data feature support

2019-12-08 Thread Liu, Yong
> -Original Message- > From: dev On Behalf Of Cheng Jiang > Sent: Wednesday, December 04, 2019 11:03 PM > To: dev@dpdk.org > Cc: maxime.coque...@redhat.com; Bie, Tiwei ; Wang, > Zhihong ; Jiang, Cheng1 > Subject: [dpdk-dev] [DPDK] net/virtio: packed ring notification data > feature sup

Re: [dpdk-dev] [PATCH v3] build: add dockerfile for building docker image

2019-12-08 Thread Ruifeng Wang (Arm Technology China)
> -Original Message- > From: Halim, Abdul > Sent: Friday, December 6, 2019 19:13 > To: Yasufumi Ogawa ; Ruifeng Wang (Arm > Technology China) ; dev@dpdk.org > Cc: Kinsella, Ray ; nd ; Richardson, > Bruce > Subject: RE: [dpdk-dev] [PATCH v3] build: add dockerfile for building docker > imag

[dpdk-dev] [PATCH] net/i40e: add PF MDD event handler

2019-12-08 Thread taox . zhu
From: Zhu Tao This patch adds a handler for malicious driver detection event. We just gave a warning log and a statistical count on the PF. Signed-off-by: Zhu Tao --- doc/guides/nics/i40e.rst | 1 + doc/guides/rel_notes/release_20_02.rst | 4 ++ drivers/net/i40e/i40e_ethdev.c

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: do not inherit slave device configuration

2019-12-08 Thread Andrew Rybchenko
On 12/8/19 6:44 PM, Chas Williams wrote: > On 2019-11-19 07:40, Andrew Rybchenko wrote: >> On 11/19/19 3:18 PM, Ferruh Yigit wrote: >>> On 11/19/2019 9:03 AM, Andrew Rybchenko wrote: Bonding device should control bonded devices configuration. Also avoid usage of slave's data->dev_con

Re: [dpdk-dev] [PATCH 1/3] ethdev: add RSS hash level

2019-12-08 Thread Andrew Rybchenko
On 12/7/19 10:56 PM, Ajit Khaparde wrote: > On Sat, Dec 7, 2019 at 1:14 AM Andrew Rybchenko > wrote: > >> On 12/7/19 3:59 AM, Ajit Khaparde wrote: >>> This patch adds ability to configure RSS hash level in hardware. >>> This feature will allow an application to select RSS hash calculation >>> on

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

2019-12-08 Thread Jerin Jacob
On Sun, Dec 8, 2019 at 4:19 PM Anoob Joseph wrote: > > The rte_security API which enables inline protocol/crypto feature > mandates that for every security session an rte_flow is created. This > would internally translate to a rule in the hardware which would do > packet classification. > > In rte

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

2019-12-08 Thread Jerin Jacob
On Sun, Dec 8, 2019 at 5:25 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 fil

Re: [dpdk-dev] [PATCH 02/15] common/octeontx2: add routine to check if rte_eth_dev belongs to otx2

2019-12-08 Thread Jerin Jacob
On Sun, Dec 8, 2019 at 5:25 PM Anoob Joseph wrote: > > From: Vamsi Attunuru > > This routine returns true if given rte_eth_dev belongs to octeontx2 > > Signed-off-by: Anoob Joseph > Signed-off-by: Tejasree Kondoj > Signed-off-by: Vamsi Attunuru > --- > drivers/common/octeontx2/otx2_common.c

Re: [dpdk-dev] discussion: creating a new class for vdpa driversxiao.w.w...@intel.com

2019-12-08 Thread Andrew Rybchenko
On 12/8/19 10:06 AM, Matan Azrad wrote: > From: Andrew Rybchenko >> On 12/6/19 8:32 AM, Liang, Cunming wrote: >>> >>> -Original Message- From: Bie, Tiwei Sent: Friday, December 6, 2019 12:28 PM To: Matan Azrad Cc: Wang, Xiao W ; Thomas Monjalon ; maxime.coque

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

2019-12-08 Thread Jerin Jacob
On Sun, Dec 8, 2019 at 5:26 PM Anoob Joseph wrote: > > 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 availble > otx2 eth ports. > > For inbound, one CPT LF will be assigned and initialized by k

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

2019-12-08 Thread Jerin Jacob
On Sun, Dec 8, 2019 at 5:26 PM Anoob Joseph wrote: > > 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 > --- >

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

2019-12-08 Thread Anoob Joseph
Hi Jerin, Please see inline. Thanks, Anoob > -Original Message- > From: Jerin Jacob > Sent: Monday, December 9, 2019 1:17 PM > To: Anoob Joseph > Cc: Akhil Goyal ; Declan Doherty > ; Thomas Monjalon ; > Tejasree Kondoj ; Jerin Jacob Kollanukkaran > ; Narayana Prasad Raju Athreya > ; Ki

[dpdk-dev] [PATCH v1] net/virtio-user: fix packed ring server mode

2019-12-08 Thread Xuan Ding
This patch fixes the situation where datapath does not work properly when vhost reconnects to virtio in server mode with packed ring. Currently, virtio and vhost share memory of vring. For split ring, vhost can read the status of discriptors directly from the available ring and the used ring durin

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

2019-12-08 Thread Jerin Jacob
On Mon, Dec 9, 2019 at 1:22 PM Anoob Joseph wrote: > > Hi Jerin, > > Please see inline. > > Thanks, > Anoob > > > -Original Message- > > From: Jerin Jacob > > Sent: Monday, December 9, 2019 1:17 PM > > To: Anoob Joseph > > Cc: Akhil Goyal ; Declan Doherty > > ; Thomas Monjalon ; > > Teja