Re: [dpdk-dev] [PATCH v4 4/4] vhost: destroy unused virtqueues when multiqueue not negotiated

2017-12-13 Thread Maxime Coquelin
On 12/13/2017 04:16 AM, Tiwei Bie wrote: On Mon, Dec 11, 2017 at 04:15:03PM +0100, Maxime Coquelin wrote: QEMU sends VHOST_USER_SET_VRING_CALL requests for all queues declared in QEMU command line before the guest is started. It has the effect in DPDK vhost-user backend to allocate vrings for

Re: [dpdk-dev] [PATCH v3 3/4] net/bond: dedicated hw queues for LACP control traffic

2017-12-13 Thread linhaifeng
Hi, What is the purpose of this patch? fix problem or improve performance? 在 2017/7/5 0:46, Declan Doherty 写道: > From: Tomasz Kulasek > > Add support for hardware flow classification of LACP control plane > traffic to be redirect to a dedicated receive queue on each slave which > is not visible

[dpdk-dev] [PATCH v5 0/4] Vhost: fix mq=on but VIRTIO_NET_F_MQ not negotiated

2017-12-13 Thread Maxime Coquelin
Hi, This fifth revision fixes bug reported by Tiwei, dev->virtqueue[$idx] wasn't reset to NULL at vq freeing time. Having QEMU started with mq=on but guest driver not negotiating VIRTIO_NET_F_MQ feature ends up in the vhost device to never start. Indeed, more queues are created in the vhost backe

[dpdk-dev] [PATCH v5 1/4] vhost: prevent features to be changed while device is running

2017-12-13 Thread Maxime Coquelin
As section 2.2 of the Virtio spec states about features negotiation: "During device initialization, the driver reads this and tells the device the subset that it accepts. The only way to renegotiate is to reset the device." This patch implements a check to prevent illegal features change while the

[dpdk-dev] [PATCH v5 2/4] vhost: propagate VHOST_USER_SET_FEATURES handling error

2017-12-13 Thread Maxime Coquelin
Not propagating VHOST_USER_SET_FEATURES request handling error may result in unpredictable behavior, as host and guests features may no more be synchronized. This patch fixes this by reporting the error to the upper layer, which would result in the device being destroyed and the connection with th

[dpdk-dev] [PATCH v5 4/4] vhost: destroy unused virtqueues when multiqueue not negotiated

2017-12-13 Thread Maxime Coquelin
QEMU sends VHOST_USER_SET_VRING_CALL requests for all queues declared in QEMU command line before the guest is started. It has the effect in DPDK vhost-user backend to allocate vrings for all queues declared by QEMU. If the first driver being used does not support multiqueue, the device never chan

[dpdk-dev] [PATCH v5 3/4] vhost: extract virtqueue cleaning and freeing functions

2017-12-13 Thread Maxime Coquelin
This patch extracts needed code for vhost_user.c to be able to clean and free virtqueues unitary. Signed-off-by: Maxime Coquelin --- lib/librte_vhost/vhost.c | 22 -- lib/librte_vhost/vhost.h | 3 +++ 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/lib/librt

Re: [dpdk-dev] [dpdk-techboard] [PATCH] doc: update contribution guideline for dependent work

2017-12-13 Thread Olivier MATZ
On Tue, Dec 12, 2017 at 10:57:48AM -0800, Ferruh Yigit wrote: > On 12/12/2017 7:54 AM, Olivier MATZ wrote: > > Hi, > > > > On Mon, Dec 11, 2017 at 02:26:34PM +, Mcnamara, John wrote: > >> From: Yigit, Ferruh > >>> Changing some part of the libraries but not updating all dependent code > >>> ca

[dpdk-dev] [PATCH] vhost: fix dequeue zero copy not work with virtio1

2017-12-13 Thread Junjie Chen
This fix dequeue zero copy can not work with Qemu version >= 2.7. Since from Qemu 2.7 virtio device use virtio-1 protocol, the zero copy code path forget to add offset to buffer address. Signed-off-by: Junjie Chen --- lib/librte_vhost/virtio_net.c | 3 ++- 1 file changed, 2 insertions(+), 1 dele

Re: [dpdk-dev] [PATCH v5 0/4] Vhost: fix mq=on but VIRTIO_NET_F_MQ not negotiated

2017-12-13 Thread Paolo Bonzini
On 13/12/2017 09:51, Maxime Coquelin wrote: > This series fixes this by destroying all but first queue pair in > the backend if VIRTIO_NET_F_MQ isn't negotiated. First patches > makes sure that VHOST_USER_SET_FEATURES request doesn't change > Virtio features while the device is running, which shoul

Re: [dpdk-dev] Minutes of technical board meeting 2017-12-06

2017-12-13 Thread Bruce Richardson
On Tue, Dec 12, 2017 at 12:30:11PM -0600, Jay Rolette wrote: > On Tue, Dec 12, 2017 at 11:26 AM, Richardson, Bruce < > bruce.richard...@intel.com> wrote: > > > > Topic: Management of old patches in patchwork * Unanimous agreement > > that old patches should be rejected in patchwork after a reason

Re: [dpdk-dev] [PATCH] net/ixgbe: removed ipsec keys from private data

2017-12-13 Thread Declan Doherty
On 22/11/17 11:19, Radu Nicolau wrote: Signed-off-by: Radu Nicolau --- ... Acked-by: Declan Doherty

Re: [dpdk-dev] [RFC 2/2] net/tap: add eBPF instructions

2017-12-13 Thread Ophir Munk
Any eBPF program must be GPL compatible to use GPL-ed functions. Please see kernel code snippet http://elixir.free-electrons.com/linux/latest/source/kernel/bpf/syscall.c /* eBPF programs must be GPL compatible to use GPL-ed functions */ is_gpl = license_is_gpl_compatible(license); wher

Re: [dpdk-dev] [PATCH v3 2/2] examples/ipsec-secgw: add target queues in flow actions

2017-12-13 Thread Nelio Laranjeiro
Hi Anoob, On Wed, Dec 13, 2017 at 12:11:18PM +0530, Anoob Joseph wrote: > Hi Nelio, > > > On 12/12/2017 08:08 PM, Nelio Laranjeiro wrote: > > Hi Anoob, > > > > On Tue, Dec 12, 2017 at 07:34:31PM +0530, Anoob Joseph wrote: > > > Hi Nelio, > > > > > > > > > On 12/12/2017 07:14 PM, Nelio Laranje

Re: [dpdk-dev] [PATCH v2 18/18] doc: remove devargs deprecation notices

2017-12-13 Thread Shreyansh Jain
Hello Gaetan, On Thursday 12 October 2017 01:51 PM, Gaetan Rivet wrote: These actions have been enacted. Signed-off-by: Gaetan Rivet --- doc/guides/rel_notes/deprecation.rst | 13 - 1 file changed, 13 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/

Re: [dpdk-dev] [PATCH v5 0/4] Vhost: fix mq=on but VIRTIO_NET_F_MQ not negotiated

2017-12-13 Thread Maxime Coquelin
Hi Paolo, On 12/13/2017 10:15 AM, Paolo Bonzini wrote: On 13/12/2017 09:51, Maxime Coquelin wrote: This series fixes this by destroying all but first queue pair in the backend if VIRTIO_NET_F_MQ isn't negotiated. First patches makes sure that VHOST_USER_SET_FEATURES request doesn't change Virti

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Van Haaren, Harry
> -Original Message- > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > Sent: Tuesday, December 12, 2017 7:27 PM > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > ; Van Haaren, Harry > ; Eads, Gage ; > hemant.agra...@nxp.com; nipun.gu...@nxp.com; Ma, Liang J > > Cc:

Re: [dpdk-dev] [PATCH 4/7] event/sw: move eventdev sw test to driver

2017-12-13 Thread Van Haaren, Harry
> From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > Sent: Tuesday, December 12, 2017 7:27 PM > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > ; Van Haaren, Harry > ; Eads, Gage ; > hemant.agra...@nxp.com; nipun.gu...@nxp.com; Ma, Liang J > > Cc: dev@dpdk.org; Pavan Nikhiles

Re: [dpdk-dev] [PATCH v5 0/4] Vhost: fix mq=on but VIRTIO_NET_F_MQ not negotiated

2017-12-13 Thread Paolo Bonzini
On 13/12/2017 11:11, Maxime Coquelin wrote: >> Hi Maxime, >> >> I think this series is wrong from the virtio spec's point of view.  If >> the driver requests VIRTIO_NET_F_MQ, that does not mean "the driver >> knows about multiqueue", it only means that "the driver wants to read >> max_virtqueue_pai

Re: [dpdk-dev] [PATCH] security: fix enum start value

2017-12-13 Thread Radu Nicolau
On 12/13/2017 7:15 AM, Akhil Goyal wrote: enum should be initialized with 1 so that unitialized(memset) memory may not be treated as a valid enum value. Fixes: c261d1431bd8 ("security: introduce security API and framework") Signed-off-by: Akhil Goyal --- Acked-by: Radu Nicolau

Re: [dpdk-dev] [PATCH v2 18/18] doc: remove devargs deprecation notices

2017-12-13 Thread Gaëtan Rivet
Hello Shreyansh, On Wed, Dec 13, 2017 at 03:47:04PM +0530, Shreyansh Jain wrote: > Hello Gaetan, > > On Thursday 12 October 2017 01:51 PM, Gaetan Rivet wrote: > > These actions have been enacted. > > > > Signed-off-by: Gaetan Rivet > > --- > > doc/guides/rel_notes/deprecation.rst | 13 ---

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 10:19:51AM +, Van Haaren, Harry wrote: > > -Original Message- > > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > > Sent: Tuesday, December 12, 2017 7:27 PM > > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > > ; Van Haaren, Harry > > ; E

Re: [dpdk-dev] [PATCH v3 1/4] Introducing SPDX License Identifiers

2017-12-13 Thread Thomas Monjalon
Hi Hemant, Some comments below 08/12/2017 08:41, Hemant Agrawal: > --- /dev/null > +++ b/Licenses/Exceptions.txt Please use lowercase for file and directory. By the way, the text is referring to exceptions.txt. > @@ -0,0 +1,12 @@ > +This file will record any exceptions in DPDK Project with resp

Re: [dpdk-dev] [PATCH v2 18/18] doc: remove devargs deprecation notices

2017-12-13 Thread Shreyansh Jain
Hello Gaetan, > -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, December 13, 2017 3:56 PM > To: Shreyansh Jain > Cc: dev@dpdk.org > Subject: Re: [PATCH v2 18/18] doc: remove devargs deprecation notices > > Hello Shreyansh, > > On Wed, Dec 13, 2

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-13 Thread Doherty, Declan
On 29/11/2017 11:41 AM, Jerin Jacob wrote: -Original Message- ... Adding Declan and Hemant. > IMO, RTE_EVENT_CRYPTO_ENQ_MULTI_EVENTQ may not be very useful from application perceptive as the scope is very limited. In real world use cases, we will be attaching destination event queue

Re: [dpdk-dev] [PATCH] vhost: fix dequeue zero copy not work with virtio1

2017-12-13 Thread Maxime Coquelin
Hi Junjie, On 12/13/2017 05:50 PM, Junjie Chen wrote: This fix dequeue zero copy can not work with Qemu version >= 2.7. Since from Qemu 2.7 virtio device use virtio-1 protocol, the zero copy code path forget to add offset to buffer address. Signed-off-by: Junjie Chen --- lib/librte_vhost/vir

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Pavan Nikhilesh Bhagavatula
On Wed, Dec 13, 2017 at 10:19:51AM +, Van Haaren, Harry wrote: > > -Original Message- > > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > > Sent: Tuesday, December 12, 2017 7:27 PM > > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > > ; Van Haaren, Harry > > ; E

Re: [dpdk-dev] [PATCH v5 0/4] Vhost: fix mq=on but VIRTIO_NET_F_MQ not negotiated

2017-12-13 Thread Laszlo Ersek
On 12/13/17 11:24, Paolo Bonzini wrote: > On 13/12/2017 11:11, Maxime Coquelin wrote: >>> Hi Maxime, >>> >>> I think this series is wrong from the virtio spec's point of view.  If >>> the driver requests VIRTIO_NET_F_MQ, that does not mean "the driver >>> knows about multiqueue", it only means that

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Pavan Nikhilesh Bhagavatula
On Wed, Dec 13, 2017 at 10:34:28AM +, Bruce Richardson wrote: > On Wed, Dec 13, 2017 at 10:19:51AM +, Van Haaren, Harry wrote: > > > -Original Message- > > > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > > > Sent: Tuesday, December 12, 2017 7:27 PM > > > To: jerin

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-13 Thread Jerin Jacob
-Original Message- > Date: Wed, 13 Dec 2017 11:03:06 + > From: "Doherty, Declan" > To: Jerin Jacob , Abhinandan Gujjar > > CC: dev@dpdk.org, narender.vang...@intel.com, Nikhil Rao > , Gage Eads , > hemant.agra...@nxp.com, nidadavolu.mur...@cavium.com, > nithin.dabilpu...@cavium.co

[dpdk-dev] [PATCH v6 1/2] eal: add uevent monitor for hot plug

2017-12-13 Thread Mordechay Haimovsky
Hello Jeff, I've failed to apply the patch on latest DPDK (git://dpdk.org/dpdk), Due to missing eal_common_vdev.c file What am I doing wrong ? Moti $ patch -p1 < dpdk-dev-v6-1-2-eal-add-uevent-monitor-for-hot-plug.patch patching file drivers/bus/pci/bsd/pci.c Hunk

Re: [dpdk-dev] [PATCH v3 2/2] examples/ipsec-secgw: add target queues in flow actions

2017-12-13 Thread Anoob Joseph
Hi Nelio, On 12/13/2017 03:32 PM, Nelio Laranjeiro wrote: Hi Anoob, On Wed, Dec 13, 2017 at 12:11:18PM +0530, Anoob Joseph wrote: Hi Nelio, On 12/12/2017 08:08 PM, Nelio Laranjeiro wrote: Hi Anoob, On Tue, Dec 12, 2017 at 07:34:31PM +0530, Anoob Joseph wrote: Hi Nelio, On 12/12/2017 07

Re: [dpdk-dev] [PATCH v3 1/4] Introducing SPDX License Identifiers

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 11:46:23AM +0100, Thomas Monjalon wrote: > Hi Hemant, > > Some comments below > > 08/12/2017 08:41, Hemant Agrawal: > > --- /dev/null > > +++ b/Licenses/Exceptions.txt > > Please use lowercase for file and directory. > By the way, the text is referring to exceptions.txt.

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 04:54:29PM +0530, Pavan Nikhilesh Bhagavatula wrote: > On Wed, Dec 13, 2017 at 10:34:28AM +, Bruce Richardson wrote: > > On Wed, Dec 13, 2017 at 10:19:51AM +, Van Haaren, Harry wrote: > > > > -Original Message- > > > > From: Pavan Nikhilesh [mailto:pbhagavat.

Re: [dpdk-dev] [PATCH 1/7] event/octeontx: move eventdev octeontx test to driver

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 04:49:47PM +0530, Pavan Nikhilesh Bhagavatula wrote: > On Wed, Dec 13, 2017 at 10:19:51AM +, Van Haaren, Harry wrote: > > > -Original Message- > > > From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com] > > > Sent: Tuesday, December 12, 2017 7:27 PM > >

Re: [dpdk-dev] [PATCH 1/5] pmdinfogen: fix cross compilation for ARM BE

2017-12-13 Thread Hemant Agrawal
Hi Neil/Bruce, On 12/12/2017 12:28 AM, Neil Horman wrote: On Mon, Dec 11, 2017 at 12:40:32PM +, Bruce Richardson wrote: On Thu, Nov 02, 2017 at 03:38:51PM +0530, Hemant Agrawal wrote: cross compiling DPDK for BE mode on ARM results into errors "PMDINFO portal/dpaa2_hw_dpio.o.pmd.c No driv

Re: [dpdk-dev] [ovs-dev] [PATCH] netdev-dpdk: defer MTU set after interface start

2017-12-13 Thread Jan Scheurich
> > The issue only arises with the qede PMD and 67fe6d635193 > > ("netdev-dpdk: use rte_eth_dev_set_mtu.") > > I had some more time to look at this today but this patch will break OVS DPDK > for existing supported DPDK ports during testing. > > I tested with an XL710 and the MTU will fail to apply

[dpdk-dev] [PATCH 01/18] net/dpaa: fix coverity reported issues

2017-12-13 Thread Hemant Agrawal
Fixes: 05ba55bc2b1a ("net/dpaa: add packet dump for debugging") Fixes: 37f9b54bd3cf ("net/dpaa: support Tx and Rx queue setup") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 6 +++--- drivers/net/dpaa/dpaa_rxtx.c | 2 +- 2 files changed, 4 insertions(+)

[dpdk-dev] [PATCH 00/18] DPAA PMD improvements

2017-12-13 Thread Hemant Agrawal
This patch series add various improvement and performance related optimizations for DPAA PMD Ashish Jain (2): net/dpaa: fix the mbuf packet type if zero net/dpaa: set the correct frame size in device MTU Hemant Agrawal (11): net/dpaa: fix coverity reported issues net/dpaa: fix FW version

[dpdk-dev] [PATCH 03/18] net/dpaa: fix FW version code

2017-12-13 Thread Hemant Agrawal
fix the soc id path and missing fclose Fixes: cf0fab1d2ca5 ("net/dpaa: support firmware version get API") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 14 +- drivers/net/dpaa/dpaa_ethdev.h | 2 +- 2 files changed, 6 insertions(+), 10 deleti

[dpdk-dev] [PATCH 04/18] bus/dpaa: update platform soc value register routines

2017-12-13 Thread Hemant Agrawal
This patch update the logic and expose the soc value register, so that it can be used by other modules as well. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/dpaa_bus.c | 12 drivers/bus/dpaa/rte_bus_dpaa_version.map | 8 drivers/bus/dpaa/rte_dpaa_bus.h

[dpdk-dev] [PATCH 05/18] net/dpaa: set the correct frame size in device MTU

2017-12-13 Thread Hemant Agrawal
From: Ashish Jain Setting correct frame size in dpaa_dev_mtu_set api call. Also setting correct max frame size in hardware in dev_configure for jumbo frames Signed-off-by: Ashish Jain Acked-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 20 +--- drivers/net/dpaa/dpaa_

[dpdk-dev] [PATCH 02/18] net/dpaa: fix the mbuf packet type if zero

2017-12-13 Thread Hemant Agrawal
From: Ashish Jain Populate the mbuf field packet_type which is required for calculating checksum while transmitting frames Fixes: 8cffdcbe85aa ("net/dpaa: support scattered Rx") Cc: sta...@dpdk.org Signed-off-by: Ashish Jain Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_rxtx.c | 19

[dpdk-dev] [PATCH 06/18] net/dpaa: add frame count based tail drop with CGR

2017-12-13 Thread Hemant Agrawal
Replace the byte based tail queue congestion support with frame count based congestion groups. It can easily map to number of RX descriptors for a queue. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/rte_bus_dpaa_version.map | 5 ++ drivers/net/dpaa/dpaa_ethdev.c| 98 ++

[dpdk-dev] [PATCH 09/18] bus/dpaa: add support to create dynamic HW portal

2017-12-13 Thread Hemant Agrawal
HW portal is a processing context in DPAA. This patch allow creation of a queue specific HW portal context. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c| 69 -- drivers/bus/dpaa/base/qbman/qman_driver.c | 153 +- drivers/bu

[dpdk-dev] [PATCH 08/18] bus/dpaa: optimize the endianness conversions

2017-12-13 Thread Hemant Agrawal
From: Nipun Gupta Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c | 7 --- drivers/bus/dpaa/include/fsl_qman.h | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/drivers/bus/dpaa/base/qbman/qman.c b/drivers/bus/dpaa/base/qbma

[dpdk-dev] [PATCH 07/18] bus/dpaa: optimize the qman HW stashing settings

2017-12-13 Thread Hemant Agrawal
From: Nipun Gupta The settings are tuned for performance. Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/drivers/bus/dpaa/base/qbman/qman.c b/drivers/bus/dpaa/base/qbman

[dpdk-dev] [PATCH 10/18] net/dpaa: change Tx HW budget to 7

2017-12-13 Thread Hemant Agrawal
From: Nipun Gupta change the TX budget to 7 to sync best with the hw. Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.h | 2 +- drivers/net/dpaa/dpaa_rxtx.c | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/drivers/net/dpaa/dpaa_e

[dpdk-dev] [PATCH 11/18] net/dpaa: optimize the Tx burst

2017-12-13 Thread Hemant Agrawal
From: Nipun Gupta Optimize it for best case. Create a function for TX offloads to be used in multiple legs. Signed-off-by: Nipun Gupta Acked-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_rxtx.c | 73 1 file changed, 46 insertions(+), 27 deletions(-)

[dpdk-dev] [PATCH 14/18] net/dpaa: add Rx queue count support

2017-12-13 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_ethdev.c | 17 + 1 file changed, 17 insertions(+) diff --git a/drivers/net/dpaa/dpaa_ethdev.c b/drivers/net/dpaa/dpaa_ethdev.c index 6482998..53b8c87 100644 --- a/drivers/net/dpaa/dpaa_ethdev.c +++ b/drivers/net/dpaa/dpaa_et

[dpdk-dev] [PATCH 12/18] net/dpaa: optimize Rx path

2017-12-13 Thread Hemant Agrawal
From: Nipun Gupta Signed-off-by: Nipun Gupta Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/dpaa_rxtx.c | 48 drivers/net/dpaa/dpaa_rxtx.h | 2 +- 2 files changed, 23 insertions(+), 27 deletions(-) diff --git a/drivers/net/dpaa/dpaa_rxtx.c b/d

[dpdk-dev] [PATCH 13/18] bus/dpaa: query queue frame count support

2017-12-13 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/qbman/qman.c| 22 ++ drivers/bus/dpaa/include/fsl_qman.h | 7 +++ drivers/bus/dpaa/rte_bus_dpaa_version.map | 1 + 3 files changed, 30 insertions(+) diff --git a/drivers/bus/dpaa/base/qbman/qman.c b/

[dpdk-dev] [PATCH 16/18] app/testpmd: add support for loopback config for dpaa

2017-12-13 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- app/test-pmd/Makefile | 4 app/test-pmd/cmdline.c | 7 +++ 2 files changed, 11 insertions(+) diff --git a/app/test-pmd/Makefile b/app/test-pmd/Makefile index d21308f..f60449b 100644 --- a/app/test-pmd/Makefile +++ b/app/test-pmd/Makefile @@ -71,6 +71,1

[dpdk-dev] [PATCH 15/18] net/dpaa: add support for loopback API

2017-12-13 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- drivers/net/dpaa/Makefile | 3 +++ drivers/net/dpaa/dpaa_ethdev.c| 42 +++ drivers/net/dpaa/rte_pmd_dpaa.h | 37 +++ drivers/net/dpaa/rte_pmd_dpaa_version.map | 8 ++

[dpdk-dev] [PATCH 17/18] bus/dpaa: add support for static queues

2017-12-13 Thread Hemant Agrawal
DPAA hardware support two kinds of queues: 1. Pull mode queue - where one needs to regularly pull the packets. 2. Push mode queue - where the hw pushes the packet to queue. These are high performance queues, but limitd in number. This patch add the driver support for push m de queues. Signed-o

[dpdk-dev] [PATCH 18/18] net/dpaa: integrate the support of push mode in PMD

2017-12-13 Thread Hemant Agrawal
Signed-off-by: Sunil Kumar Kori Signed-off-by: Hemant Agrawal Signed-off-by: Nipun Gupta --- doc/guides/nics/dpaa.rst | 11 drivers/net/dpaa/dpaa_ethdev.c | 62 ++ drivers/net/dpaa/dpaa_ethdev.h | 2 +- drivers/net/dpaa/dpaa_rxtx.c | 34

Re: [dpdk-dev] [PATCH v2 05/39] examples/l3fwd: move to ethdev offloads API

2017-12-13 Thread Ananyev, Konstantin
Hi Jerin, > -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Wednesday, December 13, 2017 7:55 AM > To: Shahaf Shuler > Cc: Ananyev, Konstantin ; dev@dpdk.org; > Nicolau, Radu ; > arybche...@solarflare.com > Subject: Re: [dpdk-dev] [PATCH v2 05/39] e

Re: [dpdk-dev] [ovs-dev] [PATCH] netdev-dpdk: defer MTU set after interface start

2017-12-13 Thread Stokes, Ian
> > The issue only arises with the qede PMD and 67fe6d635193 > > ("netdev-dpdk: use rte_eth_dev_set_mtu.") > > I had some more time to look at this today but this patch will break OVS DPDK > for existing supported DPDK ports during testing. > > I tested with an XL710 and the MTU will fail to appl

Re: [dpdk-dev] [PATCH 0/6] next-build: create both static and shared libs

2017-12-13 Thread Luca Boccassi
On Tue, 2017-12-12 at 17:14 +, Bruce Richardson wrote: > On Tue, Dec 12, 2017 at 04:59:34PM +, Bruce Richardson wrote: > > This patchset changes the meson+ninja build system to always create > > both > > static and shared libraries when doing a build. The applications > > compiled > > as pa

Re: [dpdk-dev] [PATCH 0/6] next-build: create both static and shared libs

2017-12-13 Thread Luca Boccassi
On Tue, 2017-12-12 at 16:59 +, Bruce Richardson wrote: > This patchset changes the meson+ninja build system to always create > both > static and shared libraries when doing a build. The applications > compiled > as part of a build use either the shared or static libraries > depending on > what

Re: [dpdk-dev] [PATCH 1/5] pmdinfogen: fix cross compilation for ARM BE

2017-12-13 Thread Neil Horman
On Wed, Dec 13, 2017 at 05:22:57PM +0530, Hemant Agrawal wrote: > Hi Neil/Bruce, > > On 12/12/2017 12:28 AM, Neil Horman wrote: > > On Mon, Dec 11, 2017 at 12:40:32PM +, Bruce Richardson wrote: > > > On Thu, Nov 02, 2017 at 03:38:51PM +0530, Hemant Agrawal wrote: > > > > cross compiling DPDK f

Re: [dpdk-dev] [PATCH 2/5] lpm: fix compilation on ARM BE

2017-12-13 Thread Hemant Agrawal
On 12/11/2017 6:11 PM, Bruce Richardson wrote: On Thu, Nov 02, 2017 at 03:38:52PM +0530, Hemant Agrawal wrote: Compiling on ARM BE using Linaro toolchain caused following error/warnings. rte_lpm.c: In function ‘add_depth_big_v20’: rte_lpm.c:911:4: error: braces around scalar initializer [-Werro

Re: [dpdk-dev] check_port_config error

2017-12-13 Thread Bruce Richardson
On Tue, Dec 12, 2017 at 01:22:16AM -0500, Pragash Vijayaragavan wrote: > Hi, > > I am trying to run dpdk app l3fwd but gives some errors. > > I bind my nics using dpdk-dev-bind script. > > I also set env variables correctly. > > The nb_ports is 0 when i tried printing that inside "check_port_co

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-13 Thread Nithin Dabilpuram
Hi Jerin, Declan, On Wednesday 13 December 2017 04:56 PM, Jerin Jacob wrote: -Original Message- Date: Wed, 13 Dec 2017 11:03:06 + From: "Doherty, Declan" To: Jerin Jacob , Abhinandan Gujjar CC: dev@dpdk.org, narender.vang...@intel.com, Nikhil Rao , Gage Eads , hemant.agra...

Re: [dpdk-dev] [PATCH v3 3/4] net/bond: dedicated hw queues for LACP control traffic

2017-12-13 Thread Kulasek, TomaszX
Hi, > -Original Message- > From: linhaifeng [mailto:haifeng@huawei.com] > Sent: Wednesday, December 13, 2017 09:16 > To: Doherty, Declan ; dev@dpdk.org > Cc: Kulasek, TomaszX > Subject: Re: [dpdk-dev] [PATCH v3 3/4] net/bond: dedicated hw queues for LACP > control traffic > > Hi, >

Re: [dpdk-dev] [PATCH 1/3] ethdev: add max burst size to device info

2017-12-13 Thread Ananyev, Konstantin
> -Original Message- > From: Shreyansh Jain [mailto:shreyansh.j...@nxp.com] > Sent: Tuesday, December 12, 2017 1:44 PM > To: Ananyev, Konstantin ; Matan Azrad > ; Nikhil Agarwal > > Cc: dev@dpdk.org; Hunt, David ; nikhil.agar...@nxp.com; > hemant.agra...@nxp.com; Yigit, Ferruh > > Sub

Re: [dpdk-dev] [PATCH v3 2/2] examples/ipsec-secgw: add target queues in flow actions

2017-12-13 Thread Nelio Laranjeiro
Hi Anoob, On Wed, Dec 13, 2017 at 05:08:19PM +0530, Anoob Joseph wrote: > Hi Nelio, > > > On 12/13/2017 03:32 PM, Nelio Laranjeiro wrote: > > Hi Anoob, > > > > On Wed, Dec 13, 2017 at 12:11:18PM +0530, Anoob Joseph wrote: > > > Hi Nelio, > > > > > > > > > On 12/12/2017 08:08 PM, Nelio Laranje

[dpdk-dev] [PATCH v2 1/5] pmdinfogen: fix cross compilation for ARM BE

2017-12-13 Thread Hemant Agrawal
Cross compiling DPDK for BE mode on ARM results into errors "PMDINFO portal/dpaa2_hw_dpio.o.pmd.c No drivers registered" The original code assumes the sh_size to be 32 bit, while it can be Elf32_Word or Elf64_Xword based on 32bit or 64 bit systems. This patches replaces the sh_size conversion rou

[dpdk-dev] [PATCH v2 4/5] net/i40e: fix compilation on ARM BE

2017-12-13 Thread Hemant Agrawal
This patch fixes the following error observed when compiling with ARM BE compiler. i40e_ethdev.c: In function ‘i40e_dev_tunnel_filter_set’: i40e_ethdev.c:6988:5: error: lvalue required as unary ‘&’ operand &rte_cpu_to_le_32(ipv4_addr), Fixes: edc845bd53ec ("app/testpmd: fix build on FreeBSD"

[dpdk-dev] [PATCH v2 5/5] net/ixgbe: fix compilation on ARM BE

2017-12-13 Thread Hemant Agrawal
fixes the following compilation error on compiling with ARM BE compiler ixgbe_common.c: In function ‘ixgbe_host_interface_command’: ixgbe_common.c:4610:22: error: passing argument 1 of ‘__builtin_bswap32’ makes integer from pointer without a cast [-Werror=int-conversion] IXGBE_LE32_TO_CPUS(&buf

[dpdk-dev] [PATCH v2 3/5] bus/dpaa: fix compilation on ARM BE

2017-12-13 Thread Hemant Agrawal
Fix the following compilation error when compiling with ARM BE compiler. drivers/bus/dpaa/include/fsl_qman.h:1997:25: error: statement with no effect [-Werror=unused-value] #define hw_sg_to_cpu(x) (x) Fixes: c47ff048b99a ("bus/dpaa: add QMAN driver core routines") Cc: sta...@dpdk.org Signed-off

[dpdk-dev] [PATCH v2 2/5] lpm: fix compilation on ARM BE

2017-12-13 Thread Hemant Agrawal
Compiling on ARM BE using Linaro toolchain caused following error/warnings. rte_lpm.c: In function ‘add_depth_big_v20’: rte_lpm.c:911:4: error: braces around scalar initializer [-Werror] { .group_idx = (uint8_t)tbl8_group_index, }, ^ rte_lpm.c:911:4: note: (near initialization for

Re: [dpdk-dev] [PATCH] net/failsafe: add Rx interrupts

2017-12-13 Thread Mordechay Haimovsky
Thank you Stephen, Will gather more review inputs and send a fix. Moti > -Original Message- > From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Tuesday, December 12, 2017 3:34 AM > To: Mordechay Haimovsky > Cc: gaetan.ri...@6wind.com; dev@dpdk.org > Subject: Re: [dpdk

[dpdk-dev] [PATCH] app/crypto-perf: support IMIX

2017-12-13 Thread Pablo de Lara
Add support for IMIX performance tests, where a distribution of various packet sizes can be submitted to a crypto device, testing a closer to a real world scenario. A sequence of packet sizes, selected randomly from a list of packet sizes (with "buffer-sz" parameter) with a list of the weights per

Re: [dpdk-dev] [PATCH v2 2/5] lpm: fix compilation on ARM BE

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 06:22:55PM +0530, Hemant Agrawal wrote: > Compiling on ARM BE using Linaro toolchain caused following > error/warnings. > > rte_lpm.c: In function ‘add_depth_big_v20’: > rte_lpm.c:911:4: error: braces around scalar initializer [-Werror] > { .group_idx = (uint8_t)tbl8_gr

Re: [dpdk-dev] [PATCH 0/6] next-build: create both static and shared libs

2017-12-13 Thread Bruce Richardson
On Wed, Dec 13, 2017 at 12:10:52PM +, Luca Boccassi wrote: > On Tue, 2017-12-12 at 17:14 +, Bruce Richardson wrote: > > On Tue, Dec 12, 2017 at 04:59:34PM +, Bruce Richardson wrote: > > > This patchset changes the meson+ninja build system to always create > > > both > > > static and sha

Re: [dpdk-dev] [PATCH 7/7] doc: update eventdev documentation

2017-12-13 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Pavan Nikhilesh > Sent: Tuesday, December 12, 2017 7:27 PM > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > ; Van Haaren, Harry > ; Eads, Gage ; > hemant.agra...@nxp.com; nipun.gu...@nxp.com; Ma, Liang J

Re: [dpdk-dev] [PATCH v3 2/2] examples/ipsec-secgw: add target queues in flow actions

2017-12-13 Thread Anoob Joseph
Hi Nelio, On 12/13/2017 06:23 PM, Nelio Laranjeiro wrote: Hi Anoob, On Wed, Dec 13, 2017 at 05:08:19PM +0530, Anoob Joseph wrote: Hi Nelio, On 12/13/2017 03:32 PM, Nelio Laranjeiro wrote: Hi Anoob, On Wed, Dec 13, 2017 at 12:11:18PM +0530, Anoob Joseph wrote: Hi Nelio, On 12/12/2017 08

[dpdk-dev] [PATCH 0/5] crypto/dpaa_sec: performance optimizations

2017-12-13 Thread Akhil Goyal
Following changes are added to improve performance. 1. optimize virtual to physical address conversion 2. support for multiple sessions in a single queue pair 3. support for ipsec protocol offload 4. enqueue/dequeue code is rewritten to optimize the data path. Akhil Goyal (3): crypto/dpaa_sec: s

[dpdk-dev] [PATCH 1/5] crypto/dpaa_sec: optimize virt to phy conversion

2017-12-13 Thread Akhil Goyal
From: Hemant Agrawal Context memory is allocated from mempool. Ideally it will get all memory from single segment, so simple offset calculation is used for address conversion for such addresses from context memory. Signed-off-by: Hemant Agrawal Acked-by: Akhil Goyal --- drivers/crypto/dpaa_se

[dpdk-dev] [PATCH 2/5] crypto/dpaa_sec: support multiple sessions per qp

2017-12-13 Thread Akhil Goyal
From: Hemant Agrawal Signed-off-by: Hemant Agrawal Acked-by: Akhil Goyal --- drivers/crypto/dpaa_sec/dpaa_sec.c | 154 + drivers/crypto/dpaa_sec/dpaa_sec.h | 74 +- 2 files changed, 145 insertions(+), 83 deletions(-) diff --git a/drivers/cr

[dpdk-dev] [PATCH 4/5] bus/dpaa: support for enqueue frames of multiple queues

2017-12-13 Thread Akhil Goyal
Signed-off-by: Akhil Goyal Signed-off-by: Nipun Gupta --- drivers/bus/dpaa/base/qbman/qman.c| 66 +++ drivers/bus/dpaa/include/fsl_qman.h | 14 +++ drivers/bus/dpaa/rte_bus_dpaa_version.map | 1 + 3 files changed, 81 insertions(+) diff --git a/driv

[dpdk-dev] [PATCH 3/5] crypto/dpaa_sec: support ipsec protocol offload

2017-12-13 Thread Akhil Goyal
Signed-off-by: Akhil Goyal --- doc/guides/cryptodevs/features/dpaa_sec.ini | 1 + drivers/crypto/dpaa_sec/dpaa_sec.c | 409 ++-- drivers/crypto/dpaa_sec/dpaa_sec.h | 62 - 3 files changed, 449 insertions(+), 23 deletions(-) diff --git a/doc/guides

[dpdk-dev] [PATCH 5/5] crypto/dpaa_sec: rewrite Rx/Tx path

2017-12-13 Thread Akhil Goyal
Rx and Tx patch are rewritten with improved internal APIs to improve performance. Signed-off-by: Akhil Goyal Signed-off-by: Nipun Gupta --- drivers/crypto/dpaa_sec/dpaa_sec.c | 260 ++--- drivers/crypto/dpaa_sec/dpaa_sec.h | 2 +- 2 files changed, 153 insertion

[dpdk-dev] [PATCH] net/mlx5: fix VLAN configuration after port stop

2017-12-13 Thread Shahaf Shuler
Ethdev layer has an API to configure vlan setting on the flight, i.e. when the port state is start. calling such API when the port is stopped may cause segmentation fault as the related Verbs contexts has not been created yet. Fixes: 09cb5b581762 ("net/mlx5: separate DPDK from verbs Rx queue obje

Re: [dpdk-dev] [PATCH v2 12/18] eal: add generic device declaration parameter

2017-12-13 Thread Shreyansh Jain
On Thursday 12 October 2017 01:51 PM, Gaetan Rivet wrote: Add a new generic device declaration parameter: --dev= [...] diff --git a/lib/librte_eal/common/eal_common_options.c b/lib/librte_eal/common/eal_common_options.c index 603df27..b7591fd 100644 --- a/lib/librte_eal/common/eal_com

Re: [dpdk-dev] [PATCH 1/4] examples/l3fwd-power: fix non Rx intr supported platform

2017-12-13 Thread Hunt, David
On 12/12/2017 10:08 AM, Nikhil Agarwal wrote: This existing code cause the platform to start receiving packet immediately irrespective of interrupts available or not. If the platform does not support Rx interrupt, it shall not start receiving packets immediately. It shall let the timer management

Re: [dpdk-dev] [PATCH 2/4] examples/l3fwd-power: fix the timer for any platform freq

2017-12-13 Thread Hunt, David
On 12/12/2017 10:08 AM, Nikhil Agarwal wrote: The code assumes that the platform frequency is 2GHz. This patch add support for dynamically detecting platform frequence. Fixes: d7937e2e3d12 ("power: initial import") Cc: sta...@dpdk.org Signed-off-by: Nikhil Agarwal --- ---snip--- Acked-by:

Re: [dpdk-dev] [PATCH 3/4] examples/l3fwd-power: replace desc done with Rx queue count

2017-12-13 Thread Hunt, David
On 12/12/2017 10:08 AM, Nikhil Agarwal wrote: HW queue based platforms may not support descriptor done API. This patch changes the usages to rx_queue_count API, which is more generic. Signed-off-by: Nikhil Agarwal --- ---snip--- Acked-by: David Hunt

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-13 Thread Akhil Goyal
Hi Jerin, On 12/13/2017 4:56 PM, Jerin Jacob wrote: -Original Message- Date: Wed, 13 Dec 2017 11:03:06 + From: "Doherty, Declan" To: Jerin Jacob , Abhinandan Gujjar CC: dev@dpdk.org, narender.vang...@intel.com, Nikhil Rao , Gage Eads , hemant.agra...@nxp.com, nidadavolu.mur..

Re: [dpdk-dev] [PATCH 4/4] examples/l3fwd-power: disable Lsc interrupts

2017-12-13 Thread Hunt, David
On 12/12/2017 10:08 AM, Nikhil Agarwal wrote: This application does not need Link Status Interrupt. It will cause failure for the platforms not supporting LSC. Signed-off-by: Nikhil Agarwal --- ---snip--- Acked-by: David Hunt

[dpdk-dev] [PATCH v2 1/4] ethdev: add devop to check removal status

2017-12-13 Thread Matan Azrad
There is time between the physical removal of the device until PMDs get a RMV interrupt. At this time DPDK PMDs and applications still don't know about the removal. Current removal detection is achieved only by registration to device RMV event and the notification comes asynchronously. So, there i

[dpdk-dev] [PATCH v2 0/4] Fail-safe fix removal handling lack

2017-12-13 Thread Matan Azrad
There is time between the physical removal of the device until sub-device PMDs get a RMV interrupt. At this time DPDK PMDs and applications still don't know about the removal and may call sub-device control operation which should return an error. This series adds new ethdev operation to check

[dpdk-dev] [PATCH v2 2/4] net/mlx4: support a device removal check operation

2017-12-13 Thread Matan Azrad
Add support to get removal status of mlx4 device. Signed-off-by: Matan Azrad --- drivers/net/mlx4/mlx4.c| 1 + drivers/net/mlx4/mlx4.h| 1 + drivers/net/mlx4/mlx4_ethdev.c | 20 3 files changed, 22 insertions(+) diff --git a/drivers/net/mlx4/mlx4.c b/drive

[dpdk-dev] [PATCH v2 3/4] net/mlx5: support a device removal check operation

2017-12-13 Thread Matan Azrad
Add support to get removal status of mlx5 device. It is not supported in secondary process. Signed-off-by: Matan Azrad --- drivers/net/mlx5/mlx5.c| 2 ++ drivers/net/mlx5/mlx5.h| 1 + drivers/net/mlx5/mlx5_ethdev.c | 20 3 files changed, 23 insertions(+) d

[dpdk-dev] [PATCH v2 4/4] net/failsafe: fix removed device handling

2017-12-13 Thread Matan Azrad
There is time between the physical removal of the device until sub-device PMDs get a RMV interrupt. At this time DPDK PMDs and applications still don't know about the removal and may call sub-device control operation which should return an error. In previous code this error is reported to the appl

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-13 Thread Akhil Goyal
Hi Nithin, On 12/13/2017 5:58 PM, Nithin Dabilpuram wrote: Hi Jerin, Declan, On Wednesday 13 December 2017 04:56 PM, Jerin Jacob wrote: -Original Message- Date: Wed, 13 Dec 2017 11:03:06 + From: "Doherty, Declan" To: Jerin Jacob , Abhinandan Gujjar   CC: dev@dpdk.org, narender.v

Re: [dpdk-dev] [PATCH v3 1/2] lib/security: add support for get metadata

2017-12-13 Thread Akhil Goyal
On 12/12/2017 7:20 PM, Anoob Joseph wrote: Hi Akhil, Radu On 12/12/2017 02:25 PM, Akhil Goyal wrote: Hi Anoob, On 12/11/2017 12:51 PM, Anoob wrote: Hi Akhil, Can you confirm if you are fine with the approach explained inline. Thanks, Anoob On 12/06/2017 03:13 PM, Radu Nicolau wrote: Hi,

Re: [dpdk-dev] [PATCH v3 2/2] examples/ipsec-secgw: add target queues in flow actions

2017-12-13 Thread Nelio Laranjeiro
Hi, On Wed, Dec 13, 2017 at 07:23:19PM +0530, Anoob Joseph wrote: > Hi Nelio, > > > On 12/13/2017 06:23 PM, Nelio Laranjeiro wrote: > > Hi Anoob, > > > > On Wed, Dec 13, 2017 at 05:08:19PM +0530, Anoob Joseph wrote: > > > Hi Nelio, > > > > > > > > > On 12/13/2017 03:32 PM, Nelio Laranjeiro wr

Re: [dpdk-dev] [PATCH v2 12/18] eal: add generic device declaration parameter

2017-12-13 Thread Gaëtan Rivet
On Wed, Dec 13, 2017 at 07:56:42PM +0530, Shreyansh Jain wrote: > On Thursday 12 October 2017 01:51 PM, Gaetan Rivet wrote: > > Add a new generic device declaration parameter: > > > > --dev= > > > > [...] > > > > > diff --git a/lib/librte_eal/common/eal_common_options.c > > b/lib/librte_e

  1   2   >