[dpdk-dev] [PATCH v3 16/26] cryptodev: remove AAD length from crypto op

2017-06-29 Thread Pablo de Lara
Additional authenticated data (AAD) information was duplicated in the authentication transform and in the crypto operation structures. Since AAD length is not meant to be changed in a same session, it is removed from the crypto operation structure. Signed-off-by: Pablo de Lara Acked-by: Akhil Go

[dpdk-dev] [PATCH v3 15/26] cryptodev: do not use AAD in wireless algorithms

2017-06-29 Thread Pablo de Lara
For wireless algorithms (SNOW3G, KASUMI, ZUC), the IV for the authentication algorithms (F9, UIA2 and EIA3) was taken from the AAD parameter, as there was no IV parameter in the authentication structure. Now that IV is available for all algorithms, there is need to keep doing this, so AAD is not u

[dpdk-dev] [PATCH v3 17/26] cryptodev: remove digest length from crypto op

2017-06-29 Thread Pablo de Lara
Digest length was duplicated in the authentication transform and the crypto operation structures. Since digest length is not expected to change in a same session, it is removed from the crypto operation. Also, the length has been shrunk to 16 bits, which should be sufficient for any digest. Sign

[dpdk-dev] [PATCH v3 18/26] cryptodev: set AES-GMAC as auth-only algo

2017-06-29 Thread Pablo de Lara
AES-GMAC is an authentication algorithm, based on AES-GCM without encryption. To simplify its usage, now it can be used setting the authentication parameters, without requiring to concatenate a ciphering transform. Therefore, it is not required to set AAD, but authentication data length and offset

[dpdk-dev] [PATCH v3 21/26] examples/l2fwd-crypto: avoid too many tabs

2017-06-29 Thread Pablo de Lara
Some extra functions have been created to avoid too many nested conditionals. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- examples/l2fwd-crypto/main.c | 125 ++- 1 file changed, 77 insertions(+), 48 deletions(-) diff --git a/examples/l2fwd-cry

[dpdk-dev] [PATCH v3 19/26] cryptodev: add AEAD specific data

2017-06-29 Thread Pablo de Lara
AEAD algorithms such as AES-GCM needed to be used as a concatenation of a cipher transform and an authentication transform. Instead, a new transform and functions to handle it are created to support these kind of algorithms, making their use easier. Signed-off-by: Pablo de Lara Acked-by: Akhil G

[dpdk-dev] [PATCH v3 23/26] examples/ipsec-secgw: add AEAD parameters

2017-06-29 Thread Pablo de Lara
Since there is a new operation type (AEAD), add parameters for this in the application. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- doc/guides/sample_app_ug/ipsec_secgw.rst | 32 +++-- examples/ipsec-secgw/ipsec.h | 1 + examples/ipsec-secgw/sa.c| 1

[dpdk-dev] [PATCH v3 20/26] cryptodev: add AEAD parameters in crypto operation

2017-06-29 Thread Pablo de Lara
AEAD operation parameters can be set in the new aead structure, in the crypto operation. This structure is within a union with the cipher and authentication parameters, since operations can be: - AEAD: using the aead structure - Cipher only: using only the cipher structure - Auth only: using only

[dpdk-dev] [PATCH v3 24/26] examples/l2fwd-crypto: add AEAD parameters

2017-06-29 Thread Pablo de Lara
Since there is a new operation type (AEAD), add parameters for this in the application. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- doc/guides/sample_app_ug/l2_forward_crypto.rst | 24 +- examples/l2fwd-crypto/main.c | 388 + 2 files changed

[dpdk-dev] [PATCH v3 22/26] app/test-crypto-perf: add AEAD parameters

2017-06-29 Thread Pablo de Lara
Since there is a new operation type (AEAD), add parameters for this in the application. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- app/test-crypto-perf/cperf_ops.c | 138 ++- app/test-crypto-perf/cperf_options.h | 22 +++- app/test-cr

[dpdk-dev] [PATCH v3 26/26] cryptodev: remove AAD from authentication structure

2017-06-29 Thread Pablo de Lara
Now that AAD is only used in AEAD algorithms, there is no need to keep AAD in the authentication structure. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- app/test-crypto-perf/cperf_ops.c | 2 -- doc/guides/prog_guide/cryptodev_lib.rst | 6 -- doc/guides/rel_notes/release

[dpdk-dev] [PATCH v3 25/26] cryptodev: use AES-GCM/CCM as AEAD algorithms

2017-06-29 Thread Pablo de Lara
Now that all the structures/functions for AEAD algorithms are in place, migrate the two supported algorithms AES-GCM and AES-CCM to these, instead of using cipher and authentication parameters. Signed-off-by: Pablo de Lara Acked-by: Akhil Goyal --- doc/guides/sample_app_ug/ipsec_secgw.rst

[dpdk-dev] [PATCH] net/vmxnet3: avoid code duplication

2017-06-29 Thread Charles (Chas) Williams
Refactor vmxnet3_post_rx_bufs() to call vmxnet3_renew_desc() to update the newly allocated mbufs. While here, relocate the relevant comments to vmxnet3_renew_desc(). Signed-off-by: Chas Williams --- drivers/net/vmxnet3/vmxnet3_rxtx.c | 61 +- 1 file changed,

Re: [dpdk-dev] [PATCH] crypto/qat: fix typo

2017-06-29 Thread Jain, Deepak K
> -Original Message- > From: De Lara Guarch, Pablo > Sent: Thursday, June 29, 2017 12:16 PM > To: Trahe, Fiona ; Griffin, John > ; Jain, Deepak K > Cc: dev@dpdk.org; De Lara Guarch, Pablo ; > sta...@dpdk.org > Subject: [PATCH] crypto/qat: fix typo > > Fixed a comment in QAT, referring t

Re: [dpdk-dev] Service lcores and Application lcores

2017-06-29 Thread Thomas Monjalon
29/06/2017 18:35, Van Haaren, Harry: > 3) The problem; >If a service core runs the SW PMD schedule() function (option 2) *AND* >the application lcore runs schedule() func (option 1), the result is that >two threads are concurrently running a multi-thread unsafe function. Which function

[dpdk-dev] [PATCH 0/5] crypto/dpaa2_sec optimization and feature update

2017-06-29 Thread akhil.goyal
From: Akhil Goyal This patchset updates dpaa2_sec crypto driver with following: - optimization in data path for memory allocation - add support for additional AES algorithms like AES-GCM and AES-CTR - Update test cases in test_cryptodev for all the supported test cases. - Update documentation for

[dpdk-dev] [PATCH 1/5] crypto/dpaa2_sec: add per device mempool to store frame list entries

2017-06-29 Thread akhil.goyal
From: Akhil Goyal rte_malloc uses common memory area for all cores. Now rte_malloc are replaced by per device mempool to allocate space for FLE. This removes contention and improves performance. Signed-off-by: Akhil Goyal --- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 7 +++ drivers/crypt

[dpdk-dev] [PATCH 3/5] crypto/dpaa2_sec: add support for AES-GCM and CTR

2017-06-29 Thread akhil.goyal
From: Akhil Goyal AES-GCM support is added as per the AEAD type of crypto operations. Support for AES-CTR is also added. Signed-off-by: Akhil Goyal --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 315 ++-- drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 98 ++--- 2

[dpdk-dev] [PATCH 4/5] test/test: add test cases for gcm and ctr in dpaa2_sec test suite

2017-06-29 Thread akhil.goyal
From: Akhil Goyal dpaa2_sec test cases updated for various supported crypto alogorithms. Signed-off-by: Akhil Goyal --- test/test/test_cryptodev.c | 94 test/test/test_cryptodev_aes_test_vectors.h | 78 +++ test/test/test_cryp

[dpdk-dev] [PATCH 5/5] doc: update documentation for dpaa2_sec supported algos

2017-06-29 Thread akhil.goyal
From: Akhil Goyal Signed-off-by: Akhil Goyal --- doc/guides/cryptodevs/dpaa2_sec.rst | 9 - doc/guides/cryptodevs/features/dpaa2_sec.ini | 6 ++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/doc/guides/cryptodevs/dpaa2_sec.rst b/doc/guides/cryptodevs/dpaa2

Re: [dpdk-dev] [PATCH v3] efd: support lookup using neon intrinsics

2017-06-29 Thread De Lara Guarch, Pablo
Hi, > -Original Message- > From: Sekhar, Ashwin [mailto:ashwin.sek...@cavium.com] > Sent: Tuesday, May 2, 2017 9:05 AM > To: Jacob, Jerin ; > jianbo@linaro.org > Cc: Marohn, Byron ; De Lara Guarch, Pablo > ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] efd: support lookup using ne

Re: [dpdk-dev] [PATCH v7 15/15] ethdev: Use embedded rte_device to detach driver

2017-06-29 Thread Thomas Monjalon
29/06/2017 20:22, Jan Blunck: > --- a/lib/librte_eal/common/eal_common_dev.c > +++ b/lib/librte_eal/common/eal_common_dev.c > +int rte_eal_device_detach(struct rte_device *dev) [...] > int rte_eal_dev_detach(const char *name) I would be in favor of breaking the API without notice, and keep the na

Re: [dpdk-dev] [PATCH v7 14/15] dev: use new hotplug API in attach / detach

2017-06-29 Thread Thomas Monjalon
29/06/2017 20:22, Jan Blunck: > Using the new generic API allows attach and detach to be backwards > compatible while decoupling from the concrete bus implementations. > > Signed-off-by: Jan Blunck > --- > int rte_eal_dev_attach(const char *name, const char *devargs) > { > - struct rte_pci_

Re: [dpdk-dev] [PATCH 5/5] doc: update documentation for dpaa2_sec supported algos

2017-06-29 Thread De Lara Guarch, Pablo
Hi Akhil > -Original Message- > From: akhil.go...@nxp.com [mailto:akhil.go...@nxp.com] > Sent: Thursday, June 29, 2017 9:49 PM > To: dev@dpdk.org > Cc: hemant.agra...@nxp.com; De Lara Guarch, Pablo > ; Doherty, Declan > ; Akhil Goyal > Subject: [PATCH 5/5] doc: update documentation for dp

Re: [dpdk-dev] [PATCH v2 08/12] cryptodev: add PCI driver helpers

2017-06-29 Thread Thomas Monjalon
21/06/2017 08:28, Pablo de Lara: > +#ifndef _RTE_CRYPTODEV_PCI_H_ > +#define _RTE_CRYPTODEV_PCI_H_ > + > +#include > +#include The build fails because of the brackets instead of quotes. In a fresh build the cryptodev header is not available while compiling cryptodev. I am fixing it directly in m

Re: [dpdk-dev] [pull-request] next-crypto 17.08 pre-rc1

2017-06-29 Thread Thomas Monjalon
24/06/2017 12:37, Pablo de Lara: > http://dpdk.org/git/next/dpdk-next-crypto Pulled after your last changes plus a build fix. Thanks

Re: [dpdk-dev] [PATCH 5/5] doc: update documentation for dpaa2_sec supported algos

2017-06-29 Thread Akhil Goyal
Hi Pablo, On 6/30/2017 2:37 AM, De Lara Guarch, Pablo wrote: Hi Akhil -Original Message- From: akhil.go...@nxp.com [mailto:akhil.go...@nxp.com] Sent: Thursday, June 29, 2017 9:49 PM To: dev@dpdk.org Cc: hemant.agra...@nxp.com; De Lara Guarch, Pablo ; Doherty, Declan ; Akhil Goyal Subj

[dpdk-dev] [PATCH] app/testpmd:add bond type description

2017-06-29 Thread RongQiang Xie
In function cmd_show_bonding_config_parsed() use number represent the bond type,in order more detailed,add bond type description otherwise we may confused about the number type. And also,The primary port just use in mode active backup and tlb,so,when the mode is the active backup or tlb we show th

Re: [dpdk-dev] [PATCH v8 2/3] lib/gro: add TCP/IPv4 GRO support

2017-06-29 Thread Jiayu Hu
Hi Stephen, On Thu, Jun 29, 2017 at 10:51:50AM -0700, Stephen Hemminger wrote: > On Thu, 29 Jun 2017 18:58:59 +0800 > Jiayu Hu wrote: > > > + /* allocate a reassembly table for TCP/IPv4 GRO */ > > + uint32_t tcp_item_num = RTE_MIN(item_num, > > + RTE_GRO_MAX_BURST_ITEM_NUM)

Re: [dpdk-dev] [PATCH 5/5] event/octeontx: add enqueue fwd op variant

2017-06-29 Thread Eads, Gage
Hi Jerin, This patch set looks good. For the series: Acked-by: Gage Eads > -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Thursday, June 29, 2017 9:20 AM > To: dev@dpdk.org > Cc: Richardson, Bruce ; Van Haaren, Harry > ; hemant.agra...@nxp.com; Ead

Re: [dpdk-dev] [PATCH v8 3/3] app/testpmd: enable TCP/IPv4 GRO

2017-06-29 Thread Wu, Jingjing
> -Original Message- > From: Hu, Jiayu > Sent: Thursday, June 29, 2017 6:59 PM > To: dev@dpdk.org > Cc: Ananyev, Konstantin ; Tan, Jianfeng > ; y...@fridaylinux.org; step...@networkplumber.org; > Wu, Jingjing ; Bie, Tiwei ; Yao, > Lei A ; Hu, Jiayu > Subject: [PATCH v8 3/3] app/testpmd:

Re: [dpdk-dev] [PATCH 2/7] net/bnxt: fix mtu configuration for the function

2017-06-29 Thread Ajit Khaparde
On Thu, Jun 29, 2017 at 5:55 AM, Ferruh Yigit wrote: > Just question, would this cause larger frames than expected in application? No. It just initializes the hardware early. T​he bp->eth_dev->data->mtu still controls what goes to the application.

Re: [dpdk-dev] [PATCH 6/7] net/bnxt: fix some link related issues

2017-06-29 Thread Ajit Khaparde
On Thu, Jun 29, 2017 at 5:55 AM, Ferruh Yigit wrote: > On 6/29/2017 3:51 AM, Ajit Khaparde wrote: > > This patch fixes some link related issues that can occur because: > > > > bnxt_hwrm_port_phy_cfg() was setting enables inappropriately. > > bnxt_hwrm_port_phy_qcfg() was overly complex. > > bnxt_

[dpdk-dev] [PATCH] app/testpmd:add bond type description

2017-06-29 Thread RongQiang Xie
In function cmd_show_bonding_config_parsed() used number represent the bond type,in order more detailed,add bond type description otherwise we may confused about the number type. And also,the primary port just use in mode active backup and tlb, so,when the mode is active backup or tlb show the prim

Re: [dpdk-dev] [PATCH] ether: add support for vtune task tracing

2017-06-29 Thread Jerin Jacob
-Original Message- > Date: Tue, 27 Jun 2017 16:16:01 +0300 > From: ilia.kura...@intel.com > To: dev@dpdk.org > CC: konstantin.anan...@intel.com, keith.wi...@intel.com, > dmitry.gala...@intel.com, Ilia Kurakin > Subject: [dpdk-dev] [PATCH] ether: add support for vtune task tracing > X-Mail

Re: [dpdk-dev] [RFC] Add hot plug event in rte eal interrupt and inplement it in i40e driver.

2017-06-29 Thread Wu, Jingjing
> -Original Message- > From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Friday, June 30, 2017 1:28 AM > To: Wu, Jingjing > Cc: Gaëtan Rivet ; Guo, Jia ; > Zhang, Helin ; Richardson, Bruce > ; Ananyev, Konstantin > ; Liu, Yuanhan ; > dev@dpdk.org > Subject: Re: [dpdk-de

Re: [dpdk-dev] [PATCH v3 1/2] eal: add uevent api for hot plug

2017-06-29 Thread Wu, Jingjing
> -Original Message- > From: Guo, Jia > Sent: Thursday, June 29, 2017 12:38 PM > To: Zhang, Helin ; Wu, Jingjing > > Cc: dev@dpdk.org; Guo, Jia > Subject: [PATCH v3 1/2] eal: add uevent api for hot plug > > From: "Guo, Jia" > > This patch aim to add a variable "uevent_fd" in structur

Re: [dpdk-dev] [PATCH v3 2/2] net/i40e: add hot plug monitor in i40e

2017-06-29 Thread Wu, Jingjing
> -Original Message- > From: Guo, Jia > Sent: Thursday, June 29, 2017 12:38 PM > To: Zhang, Helin ; Wu, Jingjing > > Cc: dev@dpdk.org; Guo, Jia > Subject: [PATCH v3 2/2] net/i40e: add hot plug monitor in i40e > > From: "Guo, Jia" > > This patch enable the hot plug feature in i40e, by

Re: [dpdk-dev] Service lcores and Application lcores

2017-06-29 Thread Jerin Jacob
-Original Message- > Date: Thu, 29 Jun 2017 16:57:08 +0100 > From: Bruce Richardson > To: "Van Haaren, Harry" > CC: "dev@dpdk.org" , 'Jerin Jacob' > , "tho...@monjalon.net" > , "Wiles, Keith" > Subject: Re: Service lcores and Application lcores > User-Agent: Mutt/1.8.1 (2017-04-11) >

Re: [dpdk-dev] [PATCH v4 0/5] Support NIC reset and keep same port id

2017-06-29 Thread Peng, Yuan
Tested-by: Peng, Yuan - Tested commit bbe569daa7e99b36d44b12bb3d23ddfbc26d383c+the 5 patches. - OS: 4.8.6-300.fc25.x86_64 - GCC: gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC) - CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz - NIC: Ethernet controller [0200]: Intel Corporation Ethernet Contro

Re: [dpdk-dev] [PATCH v4 5/5] app/testpmd: enhance command to test NIC reset

2017-06-29 Thread Peng, Yuan
Tested-by: Peng, Yuan - Tested commit bbe569daa7e99b36d44b12bb3d23ddfbc26d383c+the 5 patches. - OS: 4.8.6-300.fc25.x86_64 - GCC: gcc version 6.2.1 20160916 (Red Hat 6.2.1-2) (GCC) - CPU: Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz - NIC: Ethernet controller [0200]: Intel Corporation Ethernet Contro

Re: [dpdk-dev] [PATCH] crypto/qat: fix typo

2017-06-29 Thread De Lara Guarch, Pablo
> -Original Message- > From: Jain, Deepak K > Sent: Thursday, June 29, 2017 8:46 PM > To: De Lara Guarch, Pablo ; Trahe, Fiona > ; Griffin, John > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: RE: [PATCH] crypto/qat: fix typo > > > > > -Original Message- > > From: De Lara Guarc

[dpdk-dev] [PATCH v9 3/3] app/testpmd: enable TCP/IPv4 GRO

2017-06-29 Thread Jiayu Hu
This patch enables TCP/IPv4 GRO library in csum forwarding engine. By default, GRO is turned off. Users can use command "gro (on|off) (port_id)" to enable or disable GRO for a given port. If a port is enabled GRO, all TCP/IPv4 packets received from the port are performed GRO. Besides, users can set

[dpdk-dev] [PATCH v9 0/3] Support TCP/IPv4 GRO in DPDK

2017-06-29 Thread Jiayu Hu
Generic Receive Offload (GRO) is a widely used SW-based offloading technique to reduce per-packet processing overhead. It gains performance by reassembling small packets into large ones. Therefore, we propose to support GRO in DPDK. To enable more flexibility to applications, DPDK GRO is implement

[dpdk-dev] [PATCH v9 1/3] lib: add Generic Receive Offload API framework

2017-06-29 Thread Jiayu Hu
Generic Receive Offload (GRO) is a widely used SW-based offloading technique to reduce per-packet processing overhead. It gains performance by reassembling small packets into large ones. This patchset is to support GRO in DPDK. To support GRO, this patch implements a GRO API framework. To enable m

[dpdk-dev] [PATCH v9 2/3] lib/gro: add TCP/IPv4 GRO support

2017-06-29 Thread Jiayu Hu
In this patch, we introduce five APIs to support TCP/IPv4 GRO. - gro_tcp_tbl_create: create a TCP reassembly table, which is used to merge packets. - gro_tcp_tbl_destroy: free memory space of a TCP reassembly table. - gro_tcp_tbl_timeout_flush: flush timeout packets from a TCP reassembly ta

Re: [dpdk-dev] [PATCH v2 4/5] app/testpmd: add command to test NIC reset

2017-06-29 Thread Dai, Wei
> -Original Message- > From: Wu, Jingjing > Sent: Wednesday, June 28, 2017 5:11 PM > To: Dai, Wei ; tho...@monjalon.net; Lu, Wenzhuo > ; Ananyev, Konstantin > ; Zhang, Helin > Cc: dev@dpdk.org > Subject: RE: [PATCH v2 4/5] app/testpmd: add command to test NIC reset > > > > > -Origin

Re: [dpdk-dev] [PATCH v10 1/2] mem: balanced allocation of hugepages

2017-06-29 Thread Hemant Agrawal
On 6/29/2017 11:29 AM, Ilya Maximets wrote: Currently EAL allocates hugepages one by one not paying attention from which NUMA node allocation was done. Such behaviour leads to allocation failure if number of available hugepages for application limited by cgroups or hugetlbfs and memory requested

Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added sample app

2017-06-29 Thread Jerin Jacob
-Original Message- > Date: Tue, 27 Jun 2017 14:12:20 +0100 > From: "Hunt, David" > To: Jerin Jacob > CC: Harry van Haaren , dev@dpdk.org, Gage Eads > , Bruce Richardson > Subject: Re: [dpdk-dev] [PATCH 1/3] examples/eventdev_pipeline: added > sample app > User-Agent: Mozilla/5.0 (Windo

Re: [dpdk-dev] [PATCH] vhost: fix checking of device features

2017-06-29 Thread Maxime Coquelin
On 06/29/2017 08:07 AM, Ivan Dyukov wrote: On 06/28/2017 03:54 PM, Maxime Coquelin wrote: On 06/28/2017 02:40 PM, Ivan Dyukov wrote: To compare enabled features in current device we must use bit mask instead of bit position. CC: sta...@dpdk.org Fixes: c843af3aa13e ("vhost: access header on

Re: [dpdk-dev] [PATCH] vhost: fix checking of device features

2017-06-29 Thread Maxime Coquelin
On 06/29/2017 08:13 AM, Tan, Jianfeng wrote: -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ivan Dyukov Sent: Wednesday, June 28, 2017 8:41 PM To: y...@fridaylinux.org; maxime.coque...@redhat.com; dev@dpdk.org Cc: i.maxim...@samsung.com; heetae82@samsung.

[dpdk-dev] release manager backup

2017-06-29 Thread Thomas Monjalon
Hi, I would like to propose to have more people able to commit in master branch, and make releases. The goal is to have some backups to make sure there is always someone to take this role in case of accident or long vacations. It will require to well document the procedures and make sure rights a

Re: [dpdk-dev] [PATCH] vhost: fix checking of device features

2017-06-29 Thread Maxime Coquelin
On 06/29/2017 09:21 AM, Maxime Coquelin wrote: On 06/29/2017 08:07 AM, Ivan Dyukov wrote: On 06/28/2017 03:54 PM, Maxime Coquelin wrote: On 06/28/2017 02:40 PM, Ivan Dyukov wrote: To compare enabled features in current device we must use bit mask instead of bit position. CC: sta...@dpdk

Re: [dpdk-dev] [PATCH v2 2/2] net/i40e: add hot plug monitor in i40e

2017-06-29 Thread Guo, Jia
Agree with jingjing. That patch is definitely not for generic fashion of hot plug, the uevent just give the adding approach to monitor the remove event even if the driver not add it as interrupt , we know mlx driver have already implement the event of remove interrupt into their infinite fram

Re: [dpdk-dev] [PATCH v5 5/7] bus: add helper to find a bus from a device name

2017-06-29 Thread Jan Blunck
On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote: > 27/06/2017 20:55, Jan Blunck: >> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet wrote: >> > /** >> > + * Find a bus capable of identifying a device. >> > + * >> > + * @param str >> > + * A device identifier (PCI address, virtual PMD name

[dpdk-dev] [PATCH] vhost: fix MTU device feature check

2017-06-29 Thread Maxime Coquelin
The MTU feature support check has to be done against MTU feature bit mask, and not bit position. Cc: sta...@dpdk.org Fixes: 72e8543093df ("vhost: add API to get MTU value") Signed-off-by: Maxime Coquelin --- This is a follow-up of Ivan's patch, which made me check I didn't introduced same bug e

Re: [dpdk-dev] [PATCH] vhost: fix MTU device feature check

2017-06-29 Thread Tan, Jianfeng
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Thursday, June 29, 2017 3:58 PM > To: dev@dpdk.org; y...@fridaylinux.org > Cc: i.dyu...@samsung.com; Tan, Jianfeng; sta...@dpdk.org; Maxime > Coquelin > Subject: [PATCH] vhost: fix MTU device feature

Re: [dpdk-dev] [PATCH] vhost: fix checking of device features

2017-06-29 Thread Tan, Jianfeng
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Thursday, June 29, 2017 3:27 PM > To: Tan, Jianfeng; Ivan Dyukov; y...@fridaylinux.org; dev@dpdk.org > Cc: i.maxim...@samsung.com; heetae82@samsung.com; > sta...@dpdk.org > Subject: Re: [dpdk-dev]

Re: [dpdk-dev] [PATCH v5 5/7] bus: add helper to find a bus from a device name

2017-06-29 Thread Thomas Monjalon
29/06/2017 09:56, Jan Blunck: > On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote: > > 27/06/2017 20:55, Jan Blunck: > >> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet > >> wrote: > >> > /** > >> > + * Find a bus capable of identifying a device. > >> > + * > >> > + * @param str > >> > + *

[dpdk-dev] [PATCH v3 2/4] net/ixgbe: add support of reset

2017-06-29 Thread Wei Dai
Reset a NIC by calling dev_uninit and then dev_init. Go through same way in NIC PCI remove without release of ethdev resource and then NIC PCI probe function without ethdev resource allocation. Signed-off-by: Wei Dai --- drivers/net/ixgbe/ixgbe_ethdev.c | 38 +

[dpdk-dev] [PATCH v3 1/4] ethdev: add support of NIC reset

2017-06-29 Thread Wei Dai
A DPDK application can reset a NIC and keep its port id afterwards. It means that all SW resources allocated in ethdev layer should be kept and SW and HW resources of the NIC in PMD need to be reset in similar way that it runs PCI dev_uninit() and then dev_init(). The sequence of dev_uninit() and

[dpdk-dev] [PATCH v3 0/4] Support NIC reset and keep same port id

2017-06-29 Thread Wei Dai
Sometimes a port have to be reset. After reset, if the port goes through PCI remove() and then PCI probe() for restoration, its port id may be changed and this is not expected by some customer DPDK application. Normally, PCI probe() includes two parts: one is in rte_ethdev layer and the other is ca

[dpdk-dev] [PATCH v3 3/4] net/i40e: add support of reset

2017-06-29 Thread Wei Dai
Reset a NIC by calling dev_uninit() and then dev_init(). Go through the same way in NIC PCI remove without release of ethdev resource and then NIC PCI probe function without ethdev resource allocation. Signed-off-by: Wei Dai --- drivers/net/i40e/i40e_ethdev.c| 16 drivers/ne

[dpdk-dev] [PATCH v3 4/4] app/testpmd: enhance command to test NIC reset

2017-06-29 Thread Wei Dai
When PF is reset, a message will show it. User can run the command "port reset port_id" to reset the VF port and to keep same port id without any without any configuration. And then user can run "start port_id" to reconfigure its forwarding mode and parmaters as previous. To avoid crash, current fo

[dpdk-dev] [PATCH v2] doc: add generic compilation doc for all sample apps

2017-06-29 Thread Herakliusz Lipiec
Moved duplicated, and occasionally outdated, doc sections from each of the sample app guides chapters to a common chapter at the start. This reduces the duplication in the docs and provides a single point of reference for compiling the sample apps. Fixes: d0dff9ba445e ("doc: sample application us

Re: [dpdk-dev] [PATCH 1/2] LACP control packet filtering offload

2017-06-29 Thread Declan Doherty
On 27/05/17 12:27, Tomasz Kulasek wrote: New API funtions implemented: rte_eth_bond_8023ad_slow_queue_enable(uint8_t port_id); rte_eth_bond_8023ad_slow_queue_disable(uint8_t port_id); rte_eth_bond_8023ad_slow_queue_enable should be called before bonding port start to enable new path. W

Re: [dpdk-dev] [PATCH 21/21 v3] doc: add NXP DPAA2 EVENTDEV details

2017-06-29 Thread Jerin Jacob
-Original Message- > Date: Wed, 28 Jun 2017 20:46:04 +0530 > From: Nipun Gupta > To: dev@dpdk.org > CC: hemant.agra...@nxp.com, jerin.ja...@caviumnetworks.com, > harry.van.haa...@intel.com, bruce.richard...@intel.com, > gage.e...@intel.com, shreyansh.j...@nxp.com, Nipun Gupta > > Subje

[dpdk-dev] [PATCH] app/testpmd:add bond type description In function cmd_show_bonding_config_parsed() use number represent the bond type, in order more detailed, add bond type description otherwise we

2017-06-29 Thread RongQiang Xie
Signed-off-by: RongQiang Xie --- app/test-pmd/cmdline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c index fcbc6b1..4eac498 100755 --- a/app/test-pmd/cmdline.c +++ b/app/test-pmd/cmdline.c @@ -4456,7 +4456,7 @@ static void cmd

[dpdk-dev] [PATCH 0/9] net/qede: update PMD to 2.5.1.1

2017-06-29 Thread Rasesh Mody
Hi, This patch set contains minor enhancements and bug fixes for QEDE PMD. It updates the driver version to 2.5.1.1. The patch set is tested against dpdk-next-net. Thanks! Rasesh Harish Patil (3): net/qede: fix DMA memory leak net/qede: add notifying HW errors net/qede: limit ring size to

[dpdk-dev] [PATCH 2/9] net/qede: add notifying HW errors

2017-06-29 Thread Rasesh Mody
From: Harish Patil Log HW errmsg on the stdout and do minimal handling to prevent HW attentions from being reasserted. Signed-off-by: Harish Patil Signed-off-by: Rasesh Mody --- drivers/net/qede/base/bcm_osal.c | 32 drivers/net/qede/base/bcm_osal.h |6

[dpdk-dev] [PATCH 1/9] net/qede: fix DMA memory leak

2017-06-29 Thread Rasesh Mody
From: Harish Patil Implement the macro OSAL_DMA_FREE_COHERENT to release DMA memories. Track all DMA memory allocations using an array of memzone pointers and use that to free memory resoureces along with other resource deallocation. With this change there is no need to alter the base code to add

[dpdk-dev] [PATCH 3/9] net/qede: limit ring size to 32k

2017-06-29 Thread Rasesh Mody
From: Harish Patil Since nb_max is a u16 it can store value upto 65535 only (not 64K), but this value is not a power-of-2. So limit the ring sizes to 32K. Signed-off-by: Harish Patil --- drivers/net/qede/qede_ethdev.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/d

[dpdk-dev] [PATCH 5/9] net/qede: change debug verbosity of PMD messages

2017-06-29 Thread Rasesh Mody
Convert DP_NOTICE() to DP_ERR() as appropriate in PMD files. Change DP_NOTICE() macro to make use of boolean flag to log it as error message or informational message. Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_ethdev.c | 20 +--- drivers/net/qede/qede_logs.h | 23

[dpdk-dev] [PATCH 6/9] net/qede: set mdump flag

2017-06-29 Thread Rasesh Mody
Set allow management FW dump flag during HW prepare. Signed-off-by: Rasesh Mody --- drivers/net/qede/base/ecore.h |2 +- drivers/net/qede/base/ecore_dev.c |1 + drivers/net/qede/base/ecore_dev_api.h |3 +++ drivers/net/qede/base/ecore_mcp.c |3 +-- drivers/net/qed

[dpdk-dev] [PATCH 4/9] net/qede: comments traces and format changes

2017-06-29 Thread Rasesh Mody
Changes include - comment modifications - adds tracing during initialization - adds/removes new lines Signed-off-by: Rasesh Mody --- drivers/net/qede/base/bcm_osal.c | 14 -- drivers/net/qede/qede_ethdev.c | 11 +++ drivers/net/qede/qede_rxtx.c |6 +++--- 3 f

[dpdk-dev] [PATCH 7/9] net/qede: add missing check for VNI

2017-06-29 Thread Rasesh Mody
Add missing check for VNI field while adding unicast filter. Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_ethdev.c |1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/qede/qede_ethdev.c b/drivers/net/qede/qede_ethdev.c index ad264ba..a0616a4 100644 --- a/drivers/net/qede/q

[dpdk-dev] [PATCH 8/9] net/qede: use newer packet mbuf allocate API

2017-06-29 Thread Rasesh Mody
Use rte_pktmbuf_alloc() API instead of rte_mbuf_raw_alloc(). Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_rxtx.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/qede/qede_rxtx.c b/drivers/net/qede/qede_rxtx.c index 8063233..6b047a3 100644 --- a/drivers/

[dpdk-dev] [PATCH 9/9] net/qede: update PMD version to 2.5.1.1

2017-06-29 Thread Rasesh Mody
Signed-off-by: Rasesh Mody --- drivers/net/qede/qede_ethdev.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/qede/qede_ethdev.h b/drivers/net/qede/qede_ethdev.h index 9a93286..510b6e2 100644 --- a/drivers/net/qede/qede_ethdev.h +++ b/drivers/net/qede/qede_ethde

Re: [dpdk-dev] [PATCH v5 5/7] bus: add helper to find a bus from a device name

2017-06-29 Thread Gaëtan Rivet
On Thu, Jun 29, 2017 at 09:56:30AM +0200, Jan Blunck wrote: > On Wed, Jun 28, 2017 at 7:03 PM, Thomas Monjalon wrote: > > 27/06/2017 20:55, Jan Blunck: > >> On Wed, Jun 21, 2017 at 1:30 AM, Gaetan Rivet > >> wrote: > >> > /** > >> > + * Find a bus capable of identifying a device. > >> > + * > >

Re: [dpdk-dev] [PATCH 21/21 v3] doc: add NXP DPAA2 EVENTDEV details

2017-06-29 Thread Nipun Gupta
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Thursday, June 29, 2017 14:56 > To: Nipun Gupta > Cc: dev@dpdk.org; Hemant Agrawal ; > harry.van.haa...@intel.com; bruce.richard...@intel.com; > gage.e...@intel.com; Shreyansh Jain > Subject: Re: [P

[dpdk-dev] [PATCH 00/21 v4] next-eventdev: NXP DPAA2 eventdev PMD

2017-06-29 Thread Nipun Gupta
The following patch set adds NXP DPAA2 HW based eventdev implementation to the next-eventdev tree. The patchset consists of the following: - DPCON support required by DPAA2 eventdev - DPCI support in fslmc bus - Interrupt support in QBMAN - Implemetation of eventdev API's for DPAA2 - Documentation

[dpdk-dev] [PATCH 04/21 v4] bus/fslmc: integrating dpio and dpbp to object framework

2017-06-29 Thread Nipun Gupta
This patch removes the existing static call for dpio and dpbp create and add them to object registration framework. This patch also changes the vfio mc object processing to use the framework. Signed-off-by: Hemant Agrawal Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/fslmc_vfio.c

[dpdk-dev] [PATCH 01/21 v4] drivers: add bus dependency for event

2017-06-29 Thread Nipun Gupta
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/Makefile b/drivers/Makefile index a04a01f..7fef66d 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -39,5 +39,6 @@ DEPDIRS-net := bus mempool DIRS-$(CONFIG

[dpdk-dev] [PATCH 03/21 v4] bus/fslmc: generic framework for mc object creation

2017-06-29 Thread Nipun Gupta
From: Hemant Agrawal There are muliple help mc object, which are not an independent device, but they are required for dpaa2 based devices. This framework allows registration and handling of all such mc devices. Signed-off-by: Hemant Agrawal Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/fsl

[dpdk-dev] [PATCH 02/21 v4] event/dpaa2: add basic build infrastructure

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta Acked-by: Jerin Jacob --- MAINTAINERS| 4 ++ config/defconfig_arm64-dpaa2-linuxapp-gcc | 6 ++ drivers/event/Makefile | 2 + drivers/event/dpaa2/Makefile | 52

[dpdk-dev] [PATCH 05/21 v4] bus/fslmc: adding basic dpcon support

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/Makefile | 3 +- drivers/bus/fslmc/fslmc_vfio.h | 1 + drivers/bus/fslmc/mc/dpcon.c| 230 +++ drivers/bus/fslmc/mc/fsl_dpcon.h| 238

[dpdk-dev] [PATCH 07/21 v4] event/dpaa2: register dpcon as dpaa2 device for bus scan

2017-06-29 Thread Nipun Gupta
Registering dpcon as dpaa2 type device handling initialization, allocation and freeing of the device Signed-off-by: Nipun Gupta --- drivers/event/dpaa2/Makefile | 8 ++ drivers/event/dpaa2/dpaa2_eventdev.h | 18 + drivers/event/dpaa2/dpaa2_hw_dpcon.c | 139

[dpdk-dev] [PATCH 08/21 v4] bus/fslmc: adding basic dpci support

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/Makefile | 1 + drivers/bus/fslmc/mc/dpci.c | 307 + drivers/bus/fslmc/mc/fsl_dpci.h | 404 drivers/bus/fslmc/mc/fsl_dpci_cmd.h | 147 ++

[dpdk-dev] [PATCH 06/21 v4] bus/fslmc: export qbman dqrr funcs for eventdev usages

2017-06-29 Thread Nipun Gupta
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/rte_bus_fslmc_version.map | 8 1 file changed, 8 insertions(+) diff --git a/drivers/bus/fslmc/rte_bus_fslmc_version.map b/drivers/bus/fslmc/rte_bus_fslmc_version.map index 783c3e5..01a7939 100644 --- a/drivers/b

[dpdk-dev] [PATCH 10/21 v4] bus/fslmc: adding cpu support in stashing config

2017-06-29 Thread Nipun Gupta
Stashing can also be configured by other drivers (for instance event driver) passing cpu_id as an argument. This change facilitates the same. Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/portal/dpaa2_hw_dpio.c| 14 ++ drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 4 dri

[dpdk-dev] [PATCH 11/21 v4] event/dpaa2: add initialization of event device

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/event/dpaa2/dpaa2_eventdev.c | 157 ++- drivers/event/dpaa2/dpaa2_eventdev.h | 23 + 2 files changed, 176 insertions(+), 4 deletions(-) diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c b/drivers/event/dpaa2/dpaa2_event

[dpdk-dev] [PATCH 09/21 v4] bus/fslmc: register dpci as dpaa2 device for bus scan

2017-06-29 Thread Nipun Gupta
Registering dpci as dpaa2 type device handling initialization, allocation and freeing of the device Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/Makefile | 1 + drivers/bus/fslmc/fslmc_vfio.h | 1 + drivers/bus/fslmc/portal/dpaa2_hw_dpci.c | 179 ++

[dpdk-dev] [PATCH 12/21 v4] bus/fslmc: add support for static dequeue from portal

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/mc/dpio.c | 44 + drivers/bus/fslmc/mc/fsl_dpio.h | 30 drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 1 + drivers/bus/fslmc/rte_bus_fslmc_version.map | 2 ++ 4 files ch

[dpdk-dev] [PATCH 13/21 v4] event/dpaa2: add configuration functions

2017-06-29 Thread Nipun Gupta
This patch adds all the configuration API's for DPAA2 eventdev including device config, start, stop & port and queue related API's Signed-off-by: Nipun Gupta --- drivers/event/dpaa2/dpaa2_eventdev.c | 283 ++- drivers/event/dpaa2/dpaa2_eventdev.h | 22 +++ 2 file

[dpdk-dev] [PATCH 14/21 v4] bus/fslmc: support enqueue with multiple enqueue descriptors

2017-06-29 Thread Nipun Gupta
This patch adds the QBMAN API which support multiple enqueue descriptors. Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h | 14 + drivers/bus/fslmc/qbman/qbman_portal.c | 70 ++ drivers/bus/fslmc/rte_bus_fslmc_version.map

[dpdk-dev] [PATCH 16/21 v4] bus/fslmc: change func argument to const to avoid warning

2017-06-29 Thread Nipun Gupta
qbman_get_dqrr_idx() API is required with constant dqrr entry in the eventdev driver. Also, this routine is not updating the dqrr. So, this patch updates its input argument to a const type. Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/qbman/include/fsl_qbman_portal.h | 2 +- drivers/bus/fslm

[dpdk-dev] [PATCH 17/21 v4] event/dpaa2: add enqueue and dequeue functionality

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/event/dpaa2/dpaa2_eventdev.c | 170 +-- 1 file changed, 163 insertions(+), 7 deletions(-) diff --git a/drivers/event/dpaa2/dpaa2_eventdev.c b/drivers/event/dpaa2/dpaa2_eventdev.c index c00db7a..a7f8516 100644 --- a/drivers/e

[dpdk-dev] [PATCH 15/21 v4] bus/fslmc: add callback per queue to enable

2017-06-29 Thread Nipun Gupta
Dequeue from event device needs to process the event on the basis of the hardware queue from which it is dequeued. A callback is added into dpaa2_queue structure, to enable event dequeue functionality to call that processing routine. Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/portal/dpaa2_

[dpdk-dev] [PATCH 18/21 v4] fslmc/bus: add interrupt enabling routine

2017-06-29 Thread Nipun Gupta
Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/fslmc_vfio.c | 34 ++ drivers/bus/fslmc/fslmc_vfio.h | 3 +++ 2 files changed, 37 insertions(+) diff --git a/drivers/bus/fslmc/fslmc_vfio.c b/drivers/bus/fslmc/fslmc_vfio.c index 6ebf779..d8e3add 100644 --- a/drive

[dpdk-dev] [PATCH 19/21 v4] bus/fslmc: enable portal interrupt handling

2017-06-29 Thread Nipun Gupta
Eventdev requires portal interrupts to handle timeout in the event dequeue. This patch provides mechanism to enable the portal interrupts. Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/portal/dpaa2_hw_dpio.c | 108 - drivers/bus/fslmc/portal/dpaa2_hw_pvt.h

  1   2   3   >