Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Maxime Coquelin
On 09/28/2018 01:23 PM, Xiaolong Ye wrote: The vdpa sample application creates vhost-user sockets by using the vDPA backend. vDPA stands for vhost Data Path Acceleration which utilizes virtio ring compatible devices to serve virtio driver directly to enable datapath acceleration. As vDPA drive

[dpdk-dev] [PATCH] net/i40e: select fdir config automatically

2018-09-28 Thread Xiaoyun Li
I40e driver needed users to config exact fdir mode to create rte_flow rules but it shouldn't. This patch allows users to create rte_flow rules without configuring fdir mode and let the driver select the config automatically. Signed-off-by: Xiaoyun Li --- drivers/net/i40e/i40e_flow.c | 33 +++

Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Ye Xiaolong
On 09/28, Maxime Coquelin wrote: >> +ret = rte_eal_init(argc, argv); >> +if (ret < 0) >> +rte_exit(EXIT_FAILURE, "eal init failed\n"); >> +argc -= ret; >> +argv += ret; >> + >> +data_init(); > >You need to check return from data_init(). >If this is fine for you, I ca

[dpdk-dev] [PATCH v4 1/4] net/enetc: add ENETC PMD with basic operations

2018-09-28 Thread Gagandeep Singh
This patch introduces the enetc PMD with basic initialisation functions includes probe, teardown, hardware initialisation Signed-off-by: Gagandeep Singh --- config/common_base | 5 + config/common_linuxapp | 5 + drivers/net/Makefile

[dpdk-dev] [PATCH v4 2/4] net/enetc: enable Rx and Tx

2018-09-28 Thread Gagandeep Singh
Add RX and TX queue setup, datapath functions Signed-off-by: Gagandeep Singh --- drivers/net/enetc/Makefile| 3 +- drivers/net/enetc/base/enetc_hw.h | 19 +- drivers/net/enetc/enetc.h | 25 ++- drivers/net/enetc/enetc_ethdev.c | 326 +- drivers/ne

[dpdk-dev] [PATCH v4 0/4] introduces the enetc PMD driver

2018-09-28 Thread Gagandeep Singh
*ENETC* PMD driver which integrates with the existing PCI bus. Document is also part of the set v3->v4 Change-log: * fixed patch set v2->v3 Change-log: * Added a release note * commom part of documentation is removed * cflag Werror added in Makefile * private list of RX/TX queues removed * added

[dpdk-dev] [PATCH v4 3/4] net/enetc: support packet parse type

2018-09-28 Thread Gagandeep Singh
Signed-off-by: Gagandeep Singh --- drivers/net/enetc/enetc_ethdev.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/net/enetc/enetc_ethdev.c b/drivers/net/enetc/enetc_ethdev.c index 2d90d8fd5..8f4da8533 100644 --- a/drivers/net/enetc/enetc_ethdev.c +++ b/drivers/n

[dpdk-dev] [PATCH v4 4/4] doc: add usage doc for ENETC PMD

2018-09-28 Thread Gagandeep Singh
Add enetc usage document to compile and run the DPDK application on enetc supported platform. This document introduces the enetc driver, supported platforms and supported features. Signed-off-by: Gagandeep Singh --- MAINTAINERS| 7 ++ doc/guides/nics/enetc.rst

Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Maxime Coquelin
On 09/28/2018 04:33 PM, Ye Xiaolong wrote: On 09/28, Maxime Coquelin wrote: + ret = rte_eal_init(argc, argv); + if (ret < 0) + rte_exit(EXIT_FAILURE, "eal init failed\n"); + argc -= ret; + argv += ret; + + data_init(); You need to check return fro

Re: [dpdk-dev] [PATCH v2 1/5] kni: add API to set link status on kernel interface

2018-09-28 Thread Igor Ryzhov
Hi Dan, Ferruh, Why do we need "struct rte_eth_link" as a parameter at all? Only link status is used in the function – let's use it only: rte_kni_update_link(struct rte_kni *kni, int link_status) /* 0 – down, 1 – up */ It will also solve your differences as we won't have any "redundant" informat

Re: [dpdk-dev] [PATCH v2 1/5] kni: add API to set link status on kernel interface

2018-09-28 Thread Ferruh Yigit
On 9/28/2018 12:51 AM, Dan Gora wrote: > On Thu, Sep 27, 2018 at 8:44 PM, Ferruh Yigit wrote: >>> Well, yes the link_status (link up, link down) _is_ applied to the KNI >>> interface. When that occurs, most people want to know what the link >>> speed is that the link came up at. >> >> +1 to this,

Re: [dpdk-dev] [PATCH 3/4] hash: fix rw concurrency while moving keys

2018-09-28 Thread Bruce Richardson
On Fri, Sep 28, 2018 at 02:00:00AM +0100, Wang, Yipeng1 wrote: > Reply inlined: > > >-Original Message- > >From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Honnappa Nagarahalli > >Sent: Thursday, September 6, 2018 10:12 AM > >To: Richardson, Bruce ; De Lara Guarch, Pablo > > > >Cc: de

Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Ye Xiaolong
On 09/28, Maxime Coquelin wrote: > > >On 09/28/2018 04:33 PM, Ye Xiaolong wrote: >> On 09/28, Maxime Coquelin wrote: >> > > +ret = rte_eal_init(argc, argv); >> > > +if (ret < 0) >> > > +rte_exit(EXIT_FAILURE, "eal init failed\n"); >> > > +argc -= ret; >> > >

Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Maxime Coquelin
On 09/28/2018 05:17 PM, Ye Xiaolong wrote: On 09/28, Maxime Coquelin wrote: On 09/28/2018 04:33 PM, Ye Xiaolong wrote: On 09/28, Maxime Coquelin wrote: + ret = rte_eal_init(argc, argv); + if (ret < 0) + rte_exit(EXIT_FAILURE, "eal init failed\n"); + argc -=

Re: [dpdk-dev] [PATCH] ethdev: get rxq interrupt fd

2018-09-28 Thread Ferruh Yigit
On 9/28/2018 4:43 AM, Xiaoyun Li wrote: > Some users want to use their own epoll instances to control both > DPDK rxq interrupt fds and their own other fds. So added a function > to get rxq interrupt fd based on port id and queue id. > > Signed-off-by: Xiaoyun Li <...> > @@ -2719,6 +2719,9 @@ i

Re: [dpdk-dev] [PATCH] net/i40e: select fdir config automatically

2018-09-28 Thread Xing, Beilei
> -Original Message- > From: Li, Xiaoyun > Sent: Friday, September 28, 2018 3:25 PM > To: Yigit, Ferruh ; Zhang, Qi Z > ; Xing, Beilei ; dev@dpdk.org > Cc: Li, Xiaoyun > Subject: [PATCH] net/i40e: select fdir config automatically > > I40e driver needed users to config exact fdir mode t

Re: [dpdk-dev] [PATCH 3/4] hash: fix rw concurrency while moving keys

2018-09-28 Thread Van Haaren, Harry
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Bruce Richardson > Sent: Friday, September 28, 2018 9:26 AM > To: Wang, Yipeng1 > Cc: Honnappa Nagarahalli ; De Lara Guarch, > Pablo ; dev@dpdk.org; gavin...@arm.com; > steve.cap...@arm.com; ola.liljed...@arm.com;

Re: [dpdk-dev] [PATCH] ethdev: get rxq interrupt fd

2018-09-28 Thread Li, Xiaoyun
OK. Thanks. > -Original Message- > From: Yigit, Ferruh > Sent: Friday, September 28, 2018 16:33 > To: Li, Xiaoyun ; tho...@monjalon.net; Zhang, Helin > ; damar...@cisco.com; Kinsella, Ray > ; dev@dpdk.org > Subject: Re: [PATCH] ethdev: get rxq interrupt fd > > On 9/28/2018 4:43 AM, Xiaoyu

[dpdk-dev] [Bug 93] crypto vdev create will reset the dev_started flag when one dpdk process has been up the crypto vdev

2018-09-28 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=93 Bug ID: 93 Summary: crypto vdev create will reset the dev_started flag when one dpdk process has been up the crypto vdev Product: DPDK Version: 17.05 Hardware: All OS

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: stop and deactivate slaves when bonding port is stopped

2018-09-28 Thread Ferruh Yigit
On 8/24/2018 3:05 PM, Chas Williams wrote: > > > On Fri, Aug 24, 2018 at 6:39 AM Ferruh Yigit > wrote: > > On 8/23/2018 4:21 PM, Chas Williams wrote: > > > > > > On Thu, Aug 23, 2018 at 9:15 AM Ferruh Yigit >

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: stop and deactivate slaves when bonding port is stopped

2018-09-28 Thread Ferruh Yigit
On 9/28/2018 11:00 AM, Ferruh Yigit wrote: > On 8/24/2018 3:05 PM, Chas Williams wrote: >> >> >> On Fri, Aug 24, 2018 at 6:39 AM Ferruh Yigit > > wrote: >> >> On 8/23/2018 4:21 PM, Chas Williams wrote: >> > >> > >> > On Thu, Aug 23, 2018 at 9:15 AM Fer

Re: [dpdk-dev] [PATCH v4 1/5] eventdev: add eth Tx adapter APIs

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Thu, 20 Sep 2018 23:11:12 +0530 > From: Nikhil Rao > To: jerin.ja...@caviumnetworks.com, olivier.m...@6wind.com, > marko.kovace...@intel.com, john.mcnam...@intel.com > CC: dev@dpdk.org, Nikhil Rao > Subject: [PATCH v4 1/5] eventdev: add eth Tx adapter APIs > X-

[dpdk-dev] [PATCH v2] ethdev: get rxq interrupt fd

2018-09-28 Thread Xiaoyun Li
Some users want to use their own epoll instances to control both DPDK rxq interrupt fds and their own other fds. So added a function to get rxq interrupt fd based on port id and queue id. Signed-off-by: Xiaoyun Li --- v2: * Added missing API doxygen comments. * Set the new API to be experimenta

Re: [dpdk-dev] [PATCH v4 3/4] net/enetc: support packet parse type

2018-09-28 Thread Shreyansh Jain
On Friday 28 September 2018 01:16 PM, Gagandeep Singh wrote: Signed-off-by: Gagandeep Singh --- drivers/net/enetc/enetc_ethdev.c | 19 +++ 1 file changed, 19 insertions(+) Commit message is missing in this patch.

Re: [dpdk-dev] [PATCH v2] crypto/openssl: support truncated HMAC operations

2018-09-28 Thread Akhil Goyal
On 9/28/2018 3:02 AM, Dmitry Eremin-Solenikov wrote: On 25/09/18 17:46, Akhil Goyal wrote: On 9/16/2018 8:48 AM, Dmitry Eremin-Solenikov wrote: IPsec requires truncated HMAC operations support. Extend OpenSSL crypto PMD to support truncated HMAC operations necessary for IPsec. Signed-off-b

Re: [dpdk-dev] [PATCH 2/2] examples/ip_pipeline: add vxlan encap

2018-09-28 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Cristian Dumitrescu > Sent: Friday, September 7, 2018 4:59 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 2/2] examples/ip_pipeline: add vxlan encap > > Add CLI support for VXLAN encap. > > Signed-off-by: C

Re: [dpdk-dev] [PATCH v4 1/3] lib/librte_table: add hash func header files

2018-09-28 Thread Dumitrescu, Cristian
> -Original Message- > From: Laatz, Kevin > Sent: Tuesday, September 25, 2018 4:32 PM > To: dev@dpdk.org > Cc: jianbo@arm.com; gavin...@arm.com; > jerin.ja...@caviumnetworks.com; Dumitrescu, Cristian > ; Laatz, Kevin > Subject: [PATCH v4 1/3] lib/librte_table: add hash func header f

Re: [dpdk-dev] [PATCH v2 00/15] add flow API support to softnic

2018-09-28 Thread Dumitrescu, Cristian
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Reshma Pattan > Sent: Tuesday, September 11, 2018 3:21 PM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 00/15] add flow API support to softnic > > This patch series adds the flow API support > for the softn

Re: [dpdk-dev] [PATCH v2 2/2] test/event: add adapter tests to meson build

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Thu, 27 Sep 2018 12:09:24 +0100 > From: Bruce Richardson > To: Nikhil Rao > CC: tho...@monjalon.net, jerin.ja...@caviumnetworks.com, dev@dpdk.org, > Abhinandan Gujjar , "Erik G. Carrillo" > > Subject: Re: [PATCH v2 2/2] test/event: add adapter tests to meson

Re: [dpdk-dev] [PATCH v4 0/4] introduces the enetc PMD driver

2018-09-28 Thread Shreyansh Jain
On Friday 28 September 2018 01:15 PM, Gagandeep Singh wrote: *ENETC* PMD driver which integrates with the existing PCI bus. Document is also part of the set v3->v4 Change-log: * fixed patch set v2->v3 Change-log: * Added a release note * commom part of documentation is removed * cflag Werror ad

Re: [dpdk-dev] [PATCH v2 1/2] test: fix event timer compiler warning

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Thu, 27 Sep 2018 12:08:56 +0100 > From: Bruce Richardson > To: Nikhil Rao > CC: tho...@monjalon.net, jerin.ja...@caviumnetworks.com, dev@dpdk.org, > erik.g.carri...@intel.com, sta...@dpdk.org > Subject: Re: [PATCH v2 1/2] test: fix event timer compiler warning

Re: [dpdk-dev] [04/12] vhost: introduce postcopy's advise message

2018-09-28 Thread Ilya Maximets
On 27.09.2018 11:28, Ilya Maximets wrote: > On 26.09.2018 10:26, Maxime Coquelin wrote: >> This patch opens a userfaultfd and sends it back to Qemu's >> VHOST_USER_POSTCOPY_ADVISE request. >> >> Signed-off-by: Dr. David Alan Gilbert >> Signed-off-by: Maxime Coquelin >> --- >> lib/librte_vhost/vh

Re: [dpdk-dev] [PATCH] net/i40e: select fdir config automatically

2018-09-28 Thread Li, Xiaoyun
Will correct it in v2. Thanks. > -Original Message- > From: Xing, Beilei > Sent: Friday, September 28, 2018 16:40 > To: Li, Xiaoyun ; Yigit, Ferruh > ; Zhang, Qi Z ; > dev@dpdk.org > Subject: RE: [PATCH] net/i40e: select fdir config automatically > > > > > -Original Message- > >

Re: [dpdk-dev] [PATCH v5 00/10] net/softnic: implement metering and policing API

2018-09-28 Thread Dumitrescu, Cristian
> -Original Message- > From: Singh, Jasvinder > Sent: Wednesday, September 26, 2018 2:09 PM > To: dev@dpdk.org > Cc: Dumitrescu, Cristian > Subject: [PATCH v5 00/10] net/softnic: implement metering and policing API > > This series is prepared on top of following patchset; > https://mai

Re: [dpdk-dev] [PATCH v8 1/4] lib/librte_power: traffic pattern aware power control

2018-09-28 Thread Hunt, David
Hi Liang, On 17/9/2018 2:30 PM, Liang Ma wrote: 1. Abstract For packet processing workloads such as DPDK polling is continuous. This means CPU cores always show 100% busy independent of how much work those cores are doing. It is critical to accurately determine how busy a core is hugely import

Re: [dpdk-dev] [PATCH v7 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Ye Xiaolong
On 09/28, Maxime Coquelin wrote: > > >On 09/28/2018 05:17 PM, Ye Xiaolong wrote: >> On 09/28, Maxime Coquelin wrote: >> > >> > >> > On 09/28/2018 04:33 PM, Ye Xiaolong wrote: >> > > On 09/28, Maxime Coquelin wrote: >> > > > > +ret = rte_eal_init(argc, argv); >> > > > > +if (ret < 0) >> >

Re: [dpdk-dev] [PATCH] event/octeontx: add Tx adapter support

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Fri, 31 Aug 2018 16:04:05 +0530 > From: Pavan Nikhilesh > To: jerin.ja...@caviumnetworks.com, santosh.shu...@caviumnetworks.com, > anoob.jos...@caviumnetworks.com, nikhil@intel.com > Cc: dev@dpdk.org, Pavan Nikhilesh > Subject: [dpdk-dev] [PATCH] event/octe

[dpdk-dev] [PATCH v3] port: add sym crypto port

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch adds the symmetric crypto support to port library. The crypto port acts as a shim layer to DPDK cryptodev library and supports in-place crypto workload processing. Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- v3: - fixed a compile issue v2

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: stop and deactivate slaves when bonding port is stopped

2018-09-28 Thread Ferruh Yigit
On 8/6/2018 4:50 PM, Chas Williams wrote: > On Sun, Aug 5, 2018 at 5:55 PM Thomas Monjalon wrote: > >> 02/08/2018 15:38, Doherty, Declan: >>> On 01/08/2018 2:18 PM, Radu Nicolau wrote: When a bonding port is stopped also stop and deactivate all slaves. Otherwise slaves will be still lis

[dpdk-dev] [PATCH v2] net/i40e: select fdir config automatically

2018-09-28 Thread Xiaoyun Li
I40e driver needed users to config exact fdir mode to create rte_flow rules but it shouldn't. This patch allows users to create rte_flow rules without configuring fdir mode and let the driver select the config automatically. And remove the workaround in flow_filtering example. Signed-off-by: Xiaoy

Re: [dpdk-dev] [PATCH v2 09/33] crypto/octeontx: adds symmetric capabilities

2018-09-28 Thread Joseph, Anoob
Hi Fiona, Did you get a chance to look at this? Thanks, Anoob On 24-09-2018 17:06, Joseph, Anoob wrote: Hi Fiona, Can you please comment on this? We are adding all capabilities of octeontx-crypto PMD as a macro in otx_cryptodev_capabilites.h file and then we are using it from otx_cryptodev_

Re: [dpdk-dev] [PATCH v2] examples/eventdev_pipeline: add Tx adapter support

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Wed, 26 Sep 2018 18:26:37 +0530 > From: "Rao, Nikhil" > To: Pavan Nikhilesh , > jerin.ja...@caviumnetworks.com, harry.van.haa...@intel.com, > anoob.jos...@caviumnetworks.com > CC: dev@dpdk.org, "Rao, Nikhil" > Subject: Re: [PATCH v2] examples/eventdev_pipeline

Re: [dpdk-dev] [PATCH v8 2/4] examples/l3fwd-power: simple app update for new API

2018-09-28 Thread Hunt, David
Hi Liang, A few tweaks below: On 17/9/2018 2:30 PM, Liang Ma wrote: Add the support for new traffic pattern aware power control power management API. Example: ./l3fwd-power -l xxx -n 4 -w :xx:00.0 -w :xx:00.1 -- -p 0x3 -P --config="(0,0,xx),(1,0,xx)" --empty-poll="0,0,0" -l 14 -m

Re: [dpdk-dev] [PATCH v3] port: add sym crypto port

2018-09-28 Thread Dumitrescu, Cristian
> -Original Message- > From: Zhang, Roy Fan > Sent: Friday, September 28, 2018 11:42 AM > To: dev@dpdk.org > Cc: Dumitrescu, Cristian ; Zhang, Roy Fan > ; Zhang > Subject: [PATCH v3] port: add sym crypto port > > From: "Zhang, Roy Fan" > > This patch adds the symmetric crypto support

Re: [dpdk-dev] [PATCH v2 0/2] CPU non-blocking delay

2018-09-28 Thread Ilya Maximets
Any thoughts on this? Best regards, Ilya Maximets. On 14.09.2018 14:01, Ilya Maximets wrote: > For meson build without deprecation warnings following > patch should be applied first: > http://patches.dpdk.org/patch/44129/ This patch already accepted. I could rebase on latest dpdk-next-net or

[dpdk-dev] [PATCH v2] event/octeontx: add Tx adapter support

2018-09-28 Thread pavan . bhagavatula
From: Pavan Nikhilesh Add Tx adapter support and move few routines around to avoid code duplication. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - Fix shared build break added -lrte_ethdev to LDLIBS list. drivers/event/octeontx/Makefile | 2 +- drivers/event/octeontx/ssovf_evdev.c

Re: [dpdk-dev] [PATCH v2 2/2] event/dpaa: add select based event support

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Tue, 25 Sep 2018 12:32:35 +0530 > From: Hemant Agrawal > To: dev@dpdk.org > CC: jerin.ja...@caviumnetworks.com > Subject: [PATCH v2 2/2] event/dpaa: add select based event support > X-Mailer: git-send-email 2.7.4 > > > This patch add support to use select call

Re: [dpdk-dev] [04/12] vhost: introduce postcopy's advise message

2018-09-28 Thread Bruce Richardson
On Fri, Sep 28, 2018 at 01:40:25PM +0300, Ilya Maximets wrote: > On 27.09.2018 11:28, Ilya Maximets wrote: > > On 26.09.2018 10:26, Maxime Coquelin wrote: > >> This patch opens a userfaultfd and sends it back to Qemu's > >> VHOST_USER_POSTCOPY_ADVISE request. > >> > >> Signed-off-by: Dr. David Alan

[dpdk-dev] [PATCH 1/2] drivers/net: remove double assignment of driver

2018-09-28 Thread Shreyansh Jain
Removing double copy of driver information. 04664e5c8346 has shifted that from driver's probe to bus's probe. Fixes: 04664e5c8346 ("drivers/bus: fill driver reference after NXP probing") Cc: tho...@monjalon.net Signed-off-by: Shreyansh Jain --- drivers/net/dpaa/dpaa_ethdev.c | 3 +-- drivers/

[dpdk-dev] [PATCH 2/2] drivers/crypto: remove double assignment of driver

2018-09-28 Thread Shreyansh Jain
Removing double copy of driver information. 04664e5c8346 has shifted that from driver's probe to bus's probe. Fixes: 04664e5c8346 ("drivers/bus: fill driver reference after NXP probing") Cc: tho...@monjalon.net Signed-off-by: Shreyansh Jain --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 3 +-

Re: [dpdk-dev] [PATCH] drivers/bus: fill driver reference after NXP probing

2018-09-28 Thread Shreyansh Jain
On Thursday 27 September 2018 06:10 PM, Thomas Monjalon wrote: 26/09/2018 10:12, Shreyansh Jain: On Wednesday 26 September 2018 12:52 AM, Thomas Monjalon wrote: The probing functions of NXP buses were missing to set the driver used for successfully probing a device. The NXP driver and the gene

Re: [dpdk-dev] [PATCH v8 3/4] doc/guides/proguide/power-man: update the power API

2018-09-28 Thread Hunt, David
Hi Liang, On 17/9/2018 2:30 PM, Liang Ma wrote: Update the document for empty poll API. Signed-off-by: Liang Ma --- doc/guides/prog_guide/power_man.rst | 90 + 1 file changed, 90 insertions(+) diff --git a/doc/guides/prog_guide/power_man.rst b/doc/guid

[dpdk-dev] [PATCH v2 1/7] pipeline: add symmetric crypto to action

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch adds the symmetric crypto action support to pipeline library. The symmetric crypto action works as the shim layer between pipeline and DPDK cryptodev and is able to interact with cryptodev with the control path requests such as session creation/deletion and data

[dpdk-dev] [PATCH v2 2/7] examples/ip_pipeline: add cryptodev

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch adds symmetric crypto device abstraction to ip_pipeline sameple application. Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- examples/ip_pipeline/Makefile| 1 + examples/ip_pipeline/cryptodev.c | 117

[dpdk-dev] [PATCH v2 0/7] pipeline: add symmetric crypto to action

2018-09-28 Thread Fan Zhang
This patchset creates an abstraction layer of DPDK Cryptodev to the pipeline library to enable its symmetric cryptographic capability. The ip_pipeline sample application is updated accordingly. v2: - Fixed bugs. - Updated data structure. - Updated IP-pipeline sample application. Zhang, Roy Fan (7

[dpdk-dev] [PATCH v2 3/7] examples/ip_pipeline: configure crypto port

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch adds symmetric crypto port configuration to ip_pipeline sample application. Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- examples/ip_pipeline/pipeline.c | 60 + examples/ip_pipeline/pipeline.h | 13 +

[dpdk-dev] [PATCH v2 4/7] examples/ip_pipeline: add symmetric crypto action

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch adds symmetric crypto action support to ip_pipeline application. Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- examples/ip_pipeline/action.c | 11 +++ examples/ip_pipeline/action.h | 1 + examples/ip_pipeline/pipeline.h | 1 +

[dpdk-dev] [PATCH v2 7/7] doc: update action documentation

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- doc/guides/prog_guide/packet_framework.rst | 11 ++- doc/guides/sample_app_ug/ip_pipeline.rst | 23 +++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/doc/guide

[dpdk-dev] [PATCH v2 5/7] examples/ip_pipeline: update cli parsing

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" This patch updates the cli parsing of ip_pipeline application with extra symmetric crypto, port, session, and action support. Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- examples/ip_pipeline/cli.c | 577 -

[dpdk-dev] [PATCH v2 6/7] examples/ip_pipeline: add script

2018-09-28 Thread Fan Zhang
From: "Zhang, Roy Fan" Signed-off-by: Zhang, Roy Fan Acked-by: Dumitrescu, Cristian --- examples/ip_pipeline/examples/flow_crypto.cli | 58 +++ 1 file changed, 58 insertions(+) create mode 100644 examples/ip_pipeline/examples/flow_crypto.cli diff --git a/examples/ip_p

Re: [dpdk-dev] [PATCH v8 4/4] doc/guides/sample_app_ug/l3_forward_power_man.rst: empty poll update

2018-09-28 Thread Hunt, David
Hi Liang, I think section 21.4 "Running the Application" needs mention the empty poll feature. Maybe just add a mention *   --empty-poll: Traffic Aware power management. See below for details. On 25/9/2018 2:20 PM, Kovacevic, Marko wrote: Add empty poll mode command line example Signed-o

Re: [dpdk-dev] [PATCH] ethdev: get rxq interrupt fd

2018-09-28 Thread Stephen Hemminger
In general, an API is less error prone if it only does return by value. What about just returning fd or -1? On Fri, Sep 28, 2018, 5:55 AM Xiaoyun Li wrote: > Some users want to use their own epoll instances to control both > DPDK rxq interrupt fds and their own other fds. So added a function >

Re: [dpdk-dev] [RFC] ethdev: complete closing to free all resources

2018-09-28 Thread Ferruh Yigit
On 9/8/2018 12:39 AM, Thomas Monjalon wrote: > After closing a port, it cannot be restarted. > So there is no reason to not free all associated resources. > > The last step was done with rte_eth_dev_detach() which is deprecated. > Instead of removing the associated rte_device, the driver should ch

Re: [dpdk-dev] [PATCH v8 4/4] doc/guides/sample_app_ug/l3_forward_power_man.rst: empty poll update

2018-09-28 Thread Liang, Ma
Hi Dave, thanks for your feedback. I will update document in v9. O 28 Sep 13:43, Hunt, David wrote: > Hi Liang, > > > I think section 21.4 "Running the Application" needs mention the empty > poll feature. Maybe just add a mention > > *   --empty-poll: Traffic Aware power management. See be

[dpdk-dev] [PATCH] compressdev: fix compression api description

2018-09-28 Thread Tomasz Jozwiak
This patch fixes descripton of API functions: - rte_comp_op_raw_bulk_alloc - rte_comp_op_bulk_alloc Fixes: 96086db5a369 ("compressdev: add operation management") Signed-off-by: Tomasz Jozwiak --- lib/librte_compressdev/rte_comp.c | 4 ++-- lib/librte_compressdev/rte_comp.h | 4 ++-- 2 file

Re: [dpdk-dev] [PATCH v3] test/event: fix RSS config in eth Rx adapter test

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Tue, 25 Sep 2018 08:45:49 +0530 > From: Jerin Jacob > To: Nikhil Rao > CC: dev@dpdk.org, sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH v3] test/event: fix RSS config in eth Rx > adapter test > User-Agent: Mutt/1.10.1 (2018-07-13) > > > -Original Messag

[dpdk-dev] [PATCH] compressdev: fix compression api description

2018-09-28 Thread Tomasz Jozwiak
This patch fixes description of API functions: - rte_comp_op_raw_bulk_alloc - rte_comp_op_bulk_alloc Fixes: 96086db5a369 ("compressdev: add operation management") Signed-off-by: Tomasz Jozwiak --- lib/librte_compressdev/rte_comp.c | 4 ++-- lib/librte_compressdev/rte_comp.h | 4 ++-- 2 fil

Re: [dpdk-dev] [04/12] vhost: introduce postcopy's advise message

2018-09-28 Thread Ilya Maximets
On 28.09.2018 15:13, Bruce Richardson wrote: > On Fri, Sep 28, 2018 at 01:40:25PM +0300, Ilya Maximets wrote: >> On 27.09.2018 11:28, Ilya Maximets wrote: >>> On 26.09.2018 10:26, Maxime Coquelin wrote: This patch opens a userfaultfd and sends it back to Qemu's VHOST_USER_POSTCOPY_ADVISE

Re: [dpdk-dev] [04/12] vhost: introduce postcopy's advise message

2018-09-28 Thread Bruce Richardson
On Fri, Sep 28, 2018 at 04:17:34PM +0300, Ilya Maximets wrote: > On 28.09.2018 15:13, Bruce Richardson wrote: > > On Fri, Sep 28, 2018 at 01:40:25PM +0300, Ilya Maximets wrote: > >> On 27.09.2018 11:28, Ilya Maximets wrote: > >>> On 26.09.2018 10:26, Maxime Coquelin wrote: > This patch opens a

Re: [dpdk-dev] [PATCH v2] event/octeontx: add Tx adapter support

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Fri, 28 Sep 2018 17:11:33 +0530 > From: pavan.bhagavat...@cavium.com > To: jerin.ja...@caviumnetworks.com > Cc: dev@dpdk.org, Pavan Nikhilesh > Subject: [dpdk-dev] [PATCH v2] event/octeontx: add Tx adapter support > X-Mailer: git-send-email 2.19.0 > > From: Pava

Re: [dpdk-dev] [04/12] vhost: introduce postcopy's advise message

2018-09-28 Thread Maxime Coquelin
On 09/28/2018 03:24 PM, Bruce Richardson wrote: On Fri, Sep 28, 2018 at 04:17:34PM +0300, Ilya Maximets wrote: On 28.09.2018 15:13, Bruce Richardson wrote: On Fri, Sep 28, 2018 at 01:40:25PM +0300, Ilya Maximets wrote: On 27.09.2018 11:28, Ilya Maximets wrote: On 26.09.2018 10:26, Maxime C

Re: [dpdk-dev] [PATCH v3] eventdev: fix port id argument in Rx adapter caps API

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Tue, 25 Sep 2018 15:19:05 +0530 > From: Nikhil Rao > To: jerin.ja...@caviumnetworks.com > CC: dev@dpdk.org, Nikhil Rao , sta...@dpdk.org > Subject: [PATCH v3] eventdev: fix port id argument in Rx adapter caps API > X-Mailer: git-send-email 1.8.3.1 > > Make the e

[dpdk-dev] [PATCH v9 2/4] examples/l3fwd-power: simple app update for new API

2018-09-28 Thread Liang Ma
Add the support for new traffic pattern aware power control power management API. Example: ./l3fwd-power -l xxx -n 4 -w :xx:00.0 -w :xx:00.1 -- -p 0x3 -P --config="(0,0,xx),(1,0,xx)" --empty-poll="0,0,0" -l 14 -m 9 -h 1 Please Reference l3fwd-power document for full parameter usage T

[dpdk-dev] [PATCH v9 3/4] doc/guides/pro_guide/power-man: update the power API

2018-09-28 Thread Liang Ma
Update the document for empty poll API. Change Logs: v9: minor changes for syntax. Update document. Signed-off-by: Liang Ma --- doc/guides/prog_guide/power_man.rst | 86 + 1 file changed, 86 insertions(+) diff --git a/doc/guides/prog_guide/power_man.rst b/d

[dpdk-dev] [PATCH v9 1/4] lib/librte_power: traffic pattern aware power control

2018-09-28 Thread Liang Ma
1. Abstract For packet processing workloads such as DPDK polling is continuous. This means CPU cores always show 100% busy independent of how much work those cores are doing. It is critical to accurately determine how busy a core is hugely important for the following reasons: * No indication o

[dpdk-dev] [PATCH v8 0/2] introduce vdpa sample

2018-09-28 Thread Xiaolong Ye
Hi, This patchset introduces vdpa sample to demonstrate the vDPA use case. v8 changes: * move body of data_init to the main function * adjust Reviewed-by/Acked-by tag postion v7 changes: * make vports static * avoid unnecessary static variable initialization v6 changes: * improve the document a

[dpdk-dev] [PATCH v8 1/2] vhost: introduce API to get vDPA device number

2018-09-28 Thread Xiaolong Ye
It's used to get number of available registered vDPA devices. Signed-off-by: Xiaolong Ye Acked-by: Xiao Wang Reviewed-by: Maxime Coquelin --- lib/librte_vhost/rte_vdpa.h| 3 +++ lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/vdpa.c| 6 ++ 3 files

[dpdk-dev] [PATCH v8 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-28 Thread Xiaolong Ye
The vdpa sample application creates vhost-user sockets by using the vDPA backend. vDPA stands for vhost Data Path Acceleration which utilizes virtio ring compatible devices to serve virtio driver directly to enable datapath acceleration. As vDPA driver can help to set up vhost datapath, this applic

Re: [dpdk-dev] [PATCH 0/7] Improve core EAL musl compatibility

2018-09-28 Thread Bruce Richardson
On Wed, Aug 29, 2018 at 12:56:14PM +0100, Anatoly Burakov wrote: > This patchset fixes numerous issues with musl compatibility > in the core EAL libraries. It does not fix anything beyond > core EAL (so, PCI driver is still broken, so are a few other > drivers), but it's a good start. > > Tested o

Re: [dpdk-dev] [PATCH 1/2] drivers/net: remove double assignment of driver

2018-09-28 Thread Thomas Monjalon
28/09/2018 14:26, Shreyansh Jain: > Removing double copy of driver information. 04664e5c8346 has shifted > that from driver's probe to bus's probe. > > Fixes: 04664e5c8346 ("drivers/bus: fill driver reference after NXP probing") > Cc: tho...@monjalon.net > > Signed-off-by: Shreyansh Jain For th

Re: [dpdk-dev] [PATCH v4 3/4] app/test-eventdev: add Tx adapter support

2018-09-28 Thread Jerin Jacob
-Original Message- > Date: Mon, 24 Sep 2018 13:32:19 +0530 > From: Pavan Nikhilesh > To: jerin.ja...@caviumnetworks.com, nikhil@intel.com, > anoob.jos...@caviumnetworks.com > Cc: dev@dpdk.org, Pavan Nikhilesh > Subject: [dpdk-dev] [PATCH v4 3/4] app/test-eventdev: add Tx adapter supp

[dpdk-dev] [PATCH] examples/ip_pipeline: fix ipv6 address endianness

2018-09-28 Thread Reshma Pattan
Fix ipv6 endianness from big endian to cpu order. Fixes: a3a95b7d58 ("examples/ip_pipeline: add table entry commands") Signed-off-by: Reshma Pattan --- examples/ip_pipeline/thread.c | 40 +-- 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/example

[dpdk-dev] [PATCH] net/softnic: fix ipv6 address from big endian to cpu order

2018-09-28 Thread Reshma Pattan
Fix ipv6 endianness from big endian to cpu order. Fixes: ee19326a4b ("net/softnic: add command for pipeline table entries") Signed-off-by: Reshma Pattan --- drivers/net/softnic/rte_eth_softnic_thread.c | 40 1 file changed, 24 insertions(+), 16 deletions(-) diff --git a/dr

[dpdk-dev] [PATCH v3 0/4] eal: simplify devargs and hotplug functions

2018-09-28 Thread Thomas Monjalon
This is a follow-up of an idea presented at Dublin during the "hotplug talk". Instead of changing the existing hotplug functions, as in the RFC, some new experimental functions are added. The old functions lose their experimental status in order to provide a non-experimental replacement for deprec

[dpdk-dev] [PATCH v3 1/4] devargs: remove deprecated functions

2018-09-28 Thread Thomas Monjalon
rte_eal_parse_devargs_str() does not support parsing the bus name at the start of devargs. So it has been renamed and deprecated. rte_eal_devargs_add(), rte_eal_devargs_type_count() and rte_eal_devargs_dump() were declared deprecated and had their implementation body renamed. All these functions

[dpdk-dev] [PATCH v3 2/4] devargs: simplify parameters of removal function

2018-09-28 Thread Thomas Monjalon
The function rte_devargs_remove(), which is intended to be internal, can take a devargs structure as argument. The matching is still using string comparison of bus name and device name. It is simpler and may allow a different devargs matching in future. Signed-off-by: Thomas Monjalon --- drivers

[dpdk-dev] [PATCH v3 4/4] eal: simplify parameters of hotplug functions

2018-09-28 Thread Thomas Monjalon
All information about a device to probe can be grouped in a common string, which is what we usually call devargs. An application should not have to parse this string before calling the EAL probe function. And the syntax could evolve to be more complex and support matching multiple devices in one st

[dpdk-dev] [PATCH v3 3/4] eal: remove experimental flag of hotplug functions

2018-09-28 Thread Thomas Monjalon
These functions are quite old and are the only available replacement for the deprecated attach/detach functions. Note: some new functions may (again) replace these hotplug functions, in future, with better parameters. Signed-off-by: Thomas Monjalon --- lib/librte_eal/common/eal_common_dev.c |

[dpdk-dev] [PATCH v2 1/3] drivers/bus: move driver assignment to end of probing

2018-09-28 Thread Thomas Monjalon
The PCI mapping requires to know the PCI driver to use, even before the probing is done. That's why the PCI driver is referenced early inside the PCI device structure. See 1d20a073fa5e ("bus/pci: reference driver structure before mapping") However the rte_driver does not need to be referenced in r

[dpdk-dev] [PATCH v2 0/3] eal: allow hotplug to skip an already probed device

2018-09-28 Thread Thomas Monjalon
This is a follow-up of an idea presented at Dublin during the "hotplug talk". The idea is to ease probing of range of ports attached to the same rte_device. I becomes possible to allow probing again the same device but with a bigger range of ports in the devargs. Instead of adding a parameter to

[dpdk-dev] [PATCH v2 3/3] eal: allow probing a device again

2018-09-28 Thread Thomas Monjalon
In the devargs syntax for device representors, it is possible to add several devices at once: -w dbdf,representor=[0-3] It will become a more frequent case when introducing wildcards and ranges in the new devargs syntax. If a devargs string is provided for probing, and updated with a bigger range

[dpdk-dev] [PATCH v2 2/3] eal: add function to query device status

2018-09-28 Thread Thomas Monjalon
The function rte_dev_is_probed() is added in order to improve semantic and enforce proper check of the probing status of a device. It will answer this rte_device query: Is it already successfully probed or not? Signed-off-by: Thomas Monjalon --- drivers/bus/ifpga/ifpga_bus.c | 4 ++--

Re: [dpdk-dev] [PATCH v2 5/7] hash: add extendable bucket feature

2018-09-28 Thread Wang, Yipeng1
> -Original Message- > From: Honnappa Nagarahalli [mailto:honnappa.nagaraha...@arm.com] > Sent: Thursday, September 27, 2018 12:22 PM > To: Richardson, Bruce > Cc: Wang, Yipeng1 ; dev@dpdk.org; > mic...@digirati.com.br > Subject: RE: [PATCH v2 5/7] hash: add extendable bucket feature > >

[dpdk-dev] [PATCH] build: add drivers_install_subdir meson option

2018-09-28 Thread Luca Boccassi
Allow users and packagers to override the default dpdk/drivers subdirectory where the PMDs get installed under $lib. Signed-off-by: Luca Boccassi --- meson.build | 3 ++- meson_options.txt | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index

[dpdk-dev] [PATCH 0/3] add AES-CMAC support

2018-09-28 Thread Tomasz Cel
This patch add support, update QAT documentation and enable tests for AES-CMAC. Tomasz Cel (3): crypto/qat: add support AES-CMAC test/qat: test for AES-CMAC doc/qat: add AES-CMAC to the QAT feature list doc/guides/cryptodevs/features/qat.ini | 25 ++-- drivers/crypto/qat/qat_sym_ses

[dpdk-dev] [PATCH 2/3] test/qat: test for AES-CMAC

2018-09-28 Thread Tomasz Cel
Enable tests for AES-CMAC authentication algorithm. Signed-off-by: Tomasz Cel --- test/test/test_cryptodev_hash_test_vectors.h | 12 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/test/test/test_cryptodev_hash_test_vectors.h b/test/test/test_cryptodev_hash_test_vecto

[dpdk-dev] [PATCH 3/3] doc/qat: add AES-CMAC to the QAT feature list

2018-09-28 Thread Tomasz Cel
Update the QAT documentation to show that it supports AES-CMAC. Signed-off-by: Tomasz Cel --- doc/guides/cryptodevs/features/qat.ini | 25 + 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/doc/guides/cryptodevs/features/qat.ini b/doc/guides/cryptodevs/fea

[dpdk-dev] [PATCH 1/3] crypto/qat: add support AES-CMAC

2018-09-28 Thread Tomasz Cel
This patch add AES-CMAC support. CMAC is a keyed hash function that is based on a symmetric key block cipher. It is One-Key CBC MAC improvement over XCBC-MAC. RFC 4493. NIST SP 800-38B. Signed-off-by: Tomasz Cel Signed-off-by: Arek Kusztal --- drivers/crypto/qat/qat_sym_session.c | 190

[dpdk-dev] [PATCH v2 1/2] net/enic: move common Rx functions to a new header file

2018-09-28 Thread John Daley
From: Hyong Youb Kim Move a number of Rx functions to the header file so that the avx2 based Rx handler can use them. Signed-off-by: Hyong Youb Kim --- drivers/net/enic/enic_rxtx.c| 263 +- drivers/net/enic/enic_rxtx_common.h | 271 ++

[dpdk-dev] [PATCH v2 2/2] net/enic: add AVX2 based vectorized Rx handler

2018-09-28 Thread John Daley
From: Hyong Youb Kim Add the vectorized version of the no-scatter Rx handler. It aims to process 8 descriptors per loop using AVX2 SIMD instructions. This handler is in its own file enic_rxtx_vec_avx2.c, and makefile and meson.build are modified to compile it when the compiler supports AVX2. Unde

  1   2   >