[dpdk-dev] [RFC 0/5] Introduce Intel FPGA BUS

2018-03-15 Thread Rosen Xu
Intel FPGA BUS in DPDK - RFC [1]: http://www.dpdk.org/ml/archives/dev/2018-March/092297.html http://www.dpdk.org/ml/archives/dev/2018-March/092298.html http://www.dpdk.org/ml/archives/dev/2018-March/092299.html http://www.dpdk.org/ml/archives/dev/2018-March/092300.html htt

Re: [dpdk-dev] [PATCH v2 6/8] net/mrvl: add extended statistics

2018-03-15 Thread Tomasz Duszynski
On Wed, Mar 14, 2018 at 05:21:07PM +, Ferruh Yigit wrote: > On 3/12/2018 8:42 AM, Tomasz Duszynski wrote: > > Add extended statistics implementation. > > > > Signed-off-by: Natalie Samsonov > > Signed-off-by: Tomasz Duszynski > > <...> > > > @@ -1674,6 +1784,94 @@ mrvl_eth_filter_ctrl(struct

[dpdk-dev] [PATCH v3 0/8] net/mrvl: add new features to PMD

2018-03-15 Thread Tomasz Duszynski
This patch series comes along with a set of features, documentation updates and fixes. Below one can find a short summary of introduced changes: o Added support for selective Tx queue start and stop. o Added support for Rx flow control. o Added support for extended statistics counters. o Added su

[dpdk-dev] [PATCH v3 1/8] net/mrvl: fix crash when port is closed without starting

2018-03-15 Thread Tomasz Duszynski
From: Natalie Samsonov Fixes: 0ddc9b815b11 ("net/mrvl: add net PMD skeleton") Cc: sta...@dpdk.org Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- drivers/net/mrvl/mrvl_ethdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/mrvl/mrvl_ethd

[dpdk-dev] [PATCH v3 4/8] net/mrvl: document policer/scheduler/rate limiter usage

2018-03-15 Thread Tomasz Duszynski
Add documentation and example for ingress policer, egress scheduler and egress rate limiter. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- doc/guides/nics/mrvl.rst | 86 1 file changed, 80 insertions(+), 6 deletions(-) diff

[dpdk-dev] [PATCH v3 2/8] net/mrvl: add ingress policer support

2018-03-15 Thread Tomasz Duszynski
Add ingress policer support. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- drivers/net/mrvl/mrvl_ethdev.c | 6 ++ drivers/net/mrvl/mrvl_ethdev.h | 1 + drivers/net/mrvl/mrvl_qos.c| 160 +++-- drivers/net/mrvl/mrvl_qos.h| 3

[dpdk-dev] [PATCH v3 3/8] net/mrvl: add egress scheduler/rate limiter support

2018-03-15 Thread Tomasz Duszynski
Add egress scheduler and egress rate limiter support. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- drivers/net/mrvl/mrvl_ethdev.c | 6 +- drivers/net/mrvl/mrvl_qos.c| 141 +++-- drivers/net/mrvl/mrvl_qos.h| 19 ++ 3 files

[dpdk-dev] [PATCH v3 8/8] net/mrvl: add Tx queue start/stop

2018-03-15 Thread Tomasz Duszynski
Add Tx queue start/stop feature. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- doc/guides/nics/mrvl.rst | 1 + drivers/net/mrvl/mrvl_ethdev.c | 92 +- 2 files changed, 91 insertions(+), 2 deletions(-) diff --git a/doc/guides/

[dpdk-dev] [PATCH v3 5/8] net/mrvl: add classifier support

2018-03-15 Thread Tomasz Duszynski
Add classifier configuration support via rte_flow api. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- doc/guides/nics/mrvl.rst | 168 +++ drivers/net/mrvl/Makefile |1 + drivers/net/mrvl/mrvl_ethdev.c | 59 + drivers/net/mrvl/mrvl_ethdev.h | 10 + driver

[dpdk-dev] [PATCH v3 6/8] net/mrvl: add extended statistics

2018-03-15 Thread Tomasz Duszynski
Add extended statistics implementation. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- doc/guides/nics/features/mrvl.ini | 1 + doc/guides/nics/mrvl.rst | 1 + drivers/net/mrvl/mrvl_ethdev.c| 115 +- 3 files changed, 116

[dpdk-dev] [PATCH v3 7/8] net/mrvl: add Rx flow control

2018-03-15 Thread Tomasz Duszynski
Add Rx side flow control support. Signed-off-by: Natalie Samsonov Signed-off-by: Tomasz Duszynski --- doc/guides/nics/features/mrvl.ini | 1 + doc/guides/nics/mrvl.rst | 1 + drivers/net/mrvl/mrvl_ethdev.c| 78 +++ 3 files changed, 80 insertion

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Remy Horton
On 14/03/2018 15:10, Shreyansh Jain wrote: [..] What do you think renaming structure and variable name, "preferred_dev_config" perhaps? I missed this naming while reading this patch. In the deprecation notice, 'preferred_size' was the name we came up with precisely on this issue of structure h

[dpdk-dev] [PATCH v2] drivers/net/i40e/i40e_ethdev_vf.c: fix missing promiscuous disable at device stop

2018-03-15 Thread Rosen Xu
In scenario of Kernel Driver runs on PF and PMD runs on VF, PMD exit doesn't disable promiscuous mode, this will cause vlan filter set by Kernel Driver will not take effect. This patch will fix it, add promiscuous disable at device stop. Signed-off-by: Rosen Xu --- drivers/net/i40e/i40e_ethdev_

[dpdk-dev] [PATCH v2 2/5] net/virtio: add checking for cvq

2018-03-15 Thread zhiyong . yang
Add checking for cvq to judge if virtio_ack_link_announce is called. The original code doesn't cause issue, and add the checking just to look more reasonable. Signed-off-by: Zhiyong Yang --- drivers/net/virtio/virtio_ethdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/

[dpdk-dev] [PATCH v2 0/5] add support for virtio-user server mode

2018-03-15 Thread zhiyong . yang
In a container environment if the vhost-user backend restarts, there's no way for it to reconnect to virtio-user currently. To address this, support for server mode is added. In this mode the socket file is created by virtio-user, which the backend then connects to. This means that if the backend r

[dpdk-dev] [PATCH v2 1/5] net/virtio: fix add pointer checking

2018-03-15 Thread zhiyong . yang
It is necessary to add pointer checking because in some case the code will cause crash. For example, The code goes here before memory allocation of rxvq is done. Fixes: 7365504f77e3("net/virtio: support guest announce") Cc: sta...@dpdk.org Signed-off-by: Zhiyong Yang --- drivers/net/virtio/virti

[dpdk-dev] [PATCH v2 3/5] eal: expose fdset related APIs

2018-03-15 Thread zhiyong . yang
The patch moves fdset related functions from lib vhost to lib eal and expose them as new APIs in order that they can be reused. Just move the code to the new place "eal_interrupts.c" and add prefix "rte_ " to functions name, and don't change any functionality. Librte_vhost changes new function nam

[dpdk-dev] [PATCH v2 4/5] net/virtio-user: add support for server mode

2018-03-15 Thread zhiyong . yang
virtio-user adds support for server mode in this patch. Virtio-user with server mode creates socket file and then starts to wait for the first connection from vhost user with client mode in blocking mode. Server mode virtio-user supports many times' vhost reconnections with same configurations.

[dpdk-dev] [PATCH v2 5/5] net/vhost: add memory checking

2018-03-15 Thread zhiyong . yang
When vhost user PMD works in client mode to connect/reconnect virtio-user with server mode, new thread sometimes may run to new_device before queue_setup has been done, So have to wait until memory allocation is done. Release note is updated in the patch. Signed-off-by: Zhiyong Yang --- doc/gui

Re: [dpdk-dev] [PATCH v1 3/9] mempool: remove callback to get capabilities

2018-03-15 Thread Burakov, Anatoly
On 14-Mar-18 5:24 PM, Andrew Rybchenko wrote: On 03/14/2018 07:53 PM, Burakov, Anatoly wrote: On 14-Mar-18 4:12 PM, Andrew Rybchenko wrote: On 03/14/2018 05:40 PM, Burakov, Anatoly wrote: On 10-Mar-18 3:39 PM, Andrew Rybchenko wrote: The callback was introduced to let generic code to know oct

Re: [dpdk-dev] [PATCH] compressdev: implement API - mbuf alternative

2018-03-15 Thread Trahe, Fiona
> -Original Message- > From: Verma, Shally [mailto:shally.ve...@cavium.com] > Sent: Thursday, March 15, 2018 4:12 AM > To: Ahmed Mansour ; Trahe, Fiona > ; dev@dpdk.org > Cc: De Lara Guarch, Pablo ; Athreya, Narayana > Prasad > ; Gupta, Ashish ; > Sahu, Sunila > ; Challa, Mahipal ; Jai

Re: [dpdk-dev] [PATCH v2 6/6] vhost: export new apis

2018-03-15 Thread Wang, Zhihong
> -Original Message- > From: Tan, Jianfeng > Sent: Tuesday, March 6, 2018 5:52 PM > To: Wang, Zhihong ; dev@dpdk.org > Cc: Bie, Tiwei ; maxime.coque...@redhat.com; > y...@fridaylinux.org; Liang, Cunming ; Wang, Xiao > W ; Daly, Dan > Subject: RE: [PATCH v2 6/6] vhost: export new apis >

Re: [dpdk-dev] [PATCH v2 1/6] vhost: export vhost feature definitions

2018-03-15 Thread Wang, Zhihong
> -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Tuesday, March 6, 2018 10:03 PM > To: Tan, Jianfeng ; Wang, Zhihong > ; dev@dpdk.org > Cc: Bie, Tiwei ; y...@fridaylinux.org; Liang, Cunming > ; Wang, Xiao W ; Daly, > Dan > Subject: Re: [PATCH v2 1/

[dpdk-dev] [PATCH] net/mlx5: fix TSO enablement

2018-03-15 Thread Shahaf Shuler
TSO should be set if either of the TSO offload flags is requested. Fixes: dbccb4cddcd2 ("net/mlx5: convert to new Tx offloads API") Cc: sta...@dpdk.org Signed-off-by: Shahaf Shuler Acked-by: Yongseok Koh --- drivers/net/mlx5/mlx5_txq.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)

Re: [dpdk-dev] [PATCH v1 3/9] mempool: remove callback to get capabilities

2018-03-15 Thread Andrew Rybchenko
On 03/15/2018 12:48 PM, Burakov, Anatoly wrote: On 14-Mar-18 5:24 PM, Andrew Rybchenko wrote: On 03/14/2018 07:53 PM, Burakov, Anatoly wrote: On 14-Mar-18 4:12 PM, Andrew Rybchenko wrote: On 03/14/2018 05:40 PM, Burakov, Anatoly wrote: On 10-Mar-18 3:39 PM, Andrew Rybchenko wrote: The callba

Re: [dpdk-dev] [PATCH v1 3/9] mempool: remove callback to get capabilities

2018-03-15 Thread Burakov, Anatoly
On 15-Mar-18 11:49 AM, Andrew Rybchenko wrote: On 03/15/2018 12:48 PM, Burakov, Anatoly wrote: On 14-Mar-18 5:24 PM, Andrew Rybchenko wrote: On 03/14/2018 07:53 PM, Burakov, Anatoly wrote: On 14-Mar-18 4:12 PM, Andrew Rybchenko wrote: On 03/14/2018 05:40 PM, Burakov, Anatoly wrote: On 10-Mar

[dpdk-dev] [PATCH] net/mrvl: use proper constant for Rx descriptors number

2018-03-15 Thread Tomasz Duszynski
Since filling hardware buffer pool (bpool) is Rx related constant describing maximum number of rx descriptors instead of maximum number of Tx descriptors should be used. Fixes: 0ddc9b815b11 ("net/mrvl: add net PMD skeleton") Cc: sta...@dpdk.org Signed-off-by: Marcin Wojtas Signed-off-by: Tomasz

Re: [dpdk-dev] [PATCH v1 3/9] mempool: remove callback to get capabilities

2018-03-15 Thread Andrew Rybchenko
On 03/15/2018 03:00 PM, Burakov, Anatoly wrote: On 15-Mar-18 11:49 AM, Andrew Rybchenko wrote: On 03/15/2018 12:48 PM, Burakov, Anatoly wrote: On 14-Mar-18 5:24 PM, Andrew Rybchenko wrote: On 03/14/2018 07:53 PM, Burakov, Anatoly wrote: On 14-Mar-18 4:12 PM, Andrew Rybchenko wrote: On 03/14/

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Ananyev, Konstantin
> -Original Message- > From: Yigit, Ferruh > Sent: Wednesday, March 14, 2018 9:03 PM > To: Ananyev, Konstantin ; Shreyansh Jain > ; Horton, Remy > ; dev@dpdk.org > Cc: Lu, Wenzhuo ; Wu, Jingjing ; > Zhang, Qi Z ; Xing, Beilei > ; Thomas Monjalon > Subject: Re: [dpdk-dev] [RFC PATCH v1

Re: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup

2018-03-15 Thread Ananyev, Konstantin
Hi Qi, > -Original Message- > From: Zhang, Qi Z > Sent: Thursday, March 15, 2018 3:14 AM > To: Ananyev, Konstantin ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup > > Hi Ko

Re: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup

2018-03-15 Thread Ananyev, Konstantin
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, March 15, 2018 3:22 AM > To: Ananyev, Konstantin ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup > > > > > -

Re: [dpdk-dev] [PATCH v2 2/4] app/testpmd: add parameters for deferred queue setup

2018-03-15 Thread Ananyev, Konstantin
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, March 15, 2018 3:58 AM > To: Ananyev, Konstantin ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 2/4] app/testpmd: add parameters for > deferred queue se

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Ferruh Yigit
On 3/14/2018 9:36 PM, Bruce Richardson wrote: > On Wed, Mar 14, 2018 at 09:02:47PM +, Ferruh Yigit wrote: >> On 3/14/2018 6:53 PM, Ananyev, Konstantin wrote: >>> >>> -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ferruh Yigit Sent: Wednesday, Marc

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Ferruh Yigit
On 3/15/2018 12:51 PM, Ananyev, Konstantin wrote: > > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Wednesday, March 14, 2018 9:03 PM >> To: Ananyev, Konstantin ; Shreyansh Jain >> ; Horton, Remy >> ; dev@dpdk.org >> Cc: Lu, Wenzhuo ; Wu, Jingjing >> ; Zhang, Qi Z ; Xing, Beilei

Re: [dpdk-dev] [PATCH v2 00/41] Memory Hotplug for DPDK

2018-03-15 Thread Shreyansh Jain
Hello Anatoly, On Tue, Mar 13, 2018 at 10:47 AM, Shreyansh Jain wrote: > Hello Anatoly, > > On Fri, Mar 9, 2018 at 4:12 PM, Burakov, Anatoly > wrote: >> On 09-Mar-18 9:15 AM, Pavan Nikhilesh wrote: > > [...] > >>> >>> >>> I have taken a look at the github tree the issues with VFIO are gone, >>>

Re: [dpdk-dev] [PATCH v3 1/2] Add RIB library

2018-03-15 Thread Bruce Richardson
On Thu, Feb 22, 2018 at 10:50:55PM +, Medvedkin Vladimir wrote: > RIB is an alternative to current LPM library. > It solves the following problems > - Increases the speed of control plane operations against lpm such as >adding/deleting routes > - Adds abstraction from dataplane algorithms

Re: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup

2018-03-15 Thread Zhang, Qi Z
> -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 9:23 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue > setup > > > > >

[dpdk-dev] [PATCH] net/nfp: support new HW offloads API

2018-03-15 Thread Alejandro Lucero
In next 18.05 the old hw offload API will be removed. This patch adds support for just the new hw offload API. Signed-off-by: Alejandro Lucero --- drivers/net/nfp/nfp_net.c | 294 ++ drivers/net/nfp/nfp_net_pmd.h | 6 +- 2 files changed, 217 insertio

Re: [dpdk-dev] [PATCH v2 2/4] app/testpmd: add parameters for deferred queue setup

2018-03-15 Thread Zhang, Qi Z
> -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 9:42 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 2/4] app/testpmd: add parameters for > deferred queue setu

Re: [dpdk-dev] [PATCH V5 2/2] net/tap: use new Rx offloads API

2018-03-15 Thread Ferruh Yigit
On 3/15/2018 6:16 AM, Shahaf Shuler wrote: > Thursday, March 15, 2018 12:41 AM, Ferruh Yigit: >> On 3/14/2018 5:49 AM, Shahaf Shuler wrote: >>> Tuesday, March 13, 2018 1:57 PM, Ferruh Yigit: > > Again - the application should follow the API which currently > dictates how to set por

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Bruce Richardson
On Thu, Mar 15, 2018 at 01:57:13PM +, Ferruh Yigit wrote: > On 3/14/2018 9:36 PM, Bruce Richardson wrote: > > On Wed, Mar 14, 2018 at 09:02:47PM +, Ferruh Yigit wrote: > >> On 3/14/2018 6:53 PM, Ananyev, Konstantin wrote: > >>> > >>> > -Original Message- > From: dev [mailt

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Bruce Richardson
On Thu, Mar 15, 2018 at 01:57:31PM +, Ferruh Yigit wrote: > On 3/15/2018 12:51 PM, Ananyev, Konstantin wrote: > > > > > >> -Original Message- > >> From: Yigit, Ferruh > >> Sent: Wednesday, March 14, 2018 9:03 PM > >> To: Ananyev, Konstantin ; Shreyansh Jain > >> ; Horton, Remy > >> ;

Re: [dpdk-dev] [RFC PATCH v1 1/4] ethdev: add support for PMD-tuned Tx/Rx parameters

2018-03-15 Thread Ferruh Yigit
On 3/15/2018 2:39 PM, Bruce Richardson wrote: > On Thu, Mar 15, 2018 at 01:57:13PM +, Ferruh Yigit wrote: >> On 3/14/2018 9:36 PM, Bruce Richardson wrote: >>> On Wed, Mar 14, 2018 at 09:02:47PM +, Ferruh Yigit wrote: On 3/14/2018 6:53 PM, Ananyev, Konstantin wrote: > > >> -

Re: [dpdk-dev] [PATCH v3 0/8] net/mrvl: add new features to PMD

2018-03-15 Thread Ferruh Yigit
On 3/15/2018 7:51 AM, Tomasz Duszynski wrote: > This patch series comes along with a set of features, > documentation updates and fixes. > > Below one can find a short summary of introduced changes: > > o Added support for selective Tx queue start and stop. > o Added support for Rx flow control.

Re: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup

2018-03-15 Thread Zhang, Qi Z
> -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 9:17 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup > > Hi Qi, > >

Re: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup

2018-03-15 Thread Ananyev, Konstantin
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, March 15, 2018 2:30 PM > To: Ananyev, Konstantin ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup > > > > > -

Re: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup

2018-03-15 Thread Ananyev, Konstantin
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, March 15, 2018 3:09 PM > To: Ananyev, Konstantin ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup > > > > > ---

Re: [dpdk-dev] [PATCH 3/6] net/sfc: add support for per-port dynamic logging

2018-03-15 Thread Ferruh Yigit
On 1/25/2018 5:00 PM, Andrew Rybchenko wrote: > From: Ivan Malov > > Signed-off-by: Ivan Malov > Signed-off-by: Andrew Rybchenko > Reviewed-by: Andy Moreton <...> > +uint32_t > +sfc_register_logtype(struct sfc_adapter *sa, const char *lt_prefix_str, > + uint32_t ll_default)

Re: [dpdk-dev] [PATCH 1/4] vhost: move fdset functions from fd_man.c to fd_man.h

2018-03-15 Thread Thomas Monjalon
13/03/2018 10:50, Yang, Zhiyong: > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > 13/03/2018 09:46, Yang, Zhiyong: > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > 05/03/2018 08:43, Yang, Zhiyong: > > > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > > > > I don

Re: [dpdk-dev] [PATCH 0/2] lib: move Netlink wrapper to lib

2018-03-15 Thread Thomas Monjalon
14/03/2018 16:17, Stephen Hemminger: > On Wed, 14 Mar 2018 13:08:55 +0100 > Nélio Laranjeiro wrote: > > On Tue, Mar 13, 2018 at 02:20:31PM -0700, Stephen Hemminger wrote: > > > On Tue, 13 Mar 2018 13:28:25 +0100 > > > Nelio Laranjeiro wrote: > > > > drivers/net/tap/Makefile

Re: [dpdk-dev] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Melik-Adamyan, Areg
Hello. Within Intel, we developed and open-sourced a DPDK based high-level library and runtime named Network Function Framework for Go (NFF-Go: https://github.com/intel-go/nff-go) which is intended to simplify packet processing applications, especially for cloud-native deployment. Based on DPDK

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Stephen Hemminger
On Thu, 15 Mar 2018 16:15:21 + "Melik-Adamyan, Areg" wrote: > Hello. > > Within Intel, we developed and open-sourced a DPDK based high-level library > and runtime named Network Function Framework for Go (NFF-Go: > https://github.com/intel-go/nff-go) which is intended to simplify packet >

Re: [dpdk-dev] [PATCH 0/2] lib: move Netlink wrapper to lib

2018-03-15 Thread Nélio Laranjeiro
On Thu, Mar 15, 2018 at 04:39:46PM +0100, Thomas Monjalon wrote: > 14/03/2018 16:17, Stephen Hemminger: > > On Wed, 14 Mar 2018 13:08:55 +0100 > > Nélio Laranjeiro wrote: > > > On Tue, Mar 13, 2018 at 02:20:31PM -0700, Stephen Hemminger wrote: > > > > On Tue, 13 Mar 2018 13:28:25 +0100 > > > > Nel

Re: [dpdk-dev] [PATCH 0/2] lib: move Netlink wrapper to lib

2018-03-15 Thread Stephen Hemminger
On Thu, 15 Mar 2018 17:19:05 +0100 Nélio Laranjeiro wrote: > On Thu, Mar 15, 2018 at 04:39:46PM +0100, Thomas Monjalon wrote: > > 14/03/2018 16:17, Stephen Hemminger: > > > On Wed, 14 Mar 2018 13:08:55 +0100 > > > Nélio Laranjeiro wrote: > > > > On Tue, Mar 13, 2018 at 02:20:31PM -0700, Step

Re: [dpdk-dev] [PATCH 1/3] eal/vfio: add support for multiple container

2018-03-15 Thread Wang, Xiao W
Hi Anatoly, > -Original Message- > From: Burakov, Anatoly > Sent: Wednesday, March 14, 2018 8:08 PM > To: Wang, Xiao W ; dev@dpdk.org > Cc: Wang, Zhihong ; > maxime.coque...@redhat.com; y...@fridaylinux.org; Liang, Cunming > ; Xu, Rosen ; Chen, Junjie J > ; Daly, Dan > Subject: Re: [dpdk-

Re: [dpdk-dev] [PATCH 0/3] add ifcvf driver

2018-03-15 Thread Wang, Xiao W
Hi Maxime, > -Original Message- > From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] > Sent: Sunday, March 11, 2018 2:24 AM > To: Wang, Xiao W ; dev@dpdk.org > Cc: Wang, Zhihong ; y...@fridaylinux.org; Liang, > Cunming ; Xu, Rosen ; Chen, > Junjie J ; Daly, Dan > Subject: Re: [PATC

[dpdk-dev] [PATCH] Adding SUSE logo

2018-03-15 Thread mvarlese
From: Marco Varlese SUSE is among the companies packaging and distributing DPDK in its open and enterprise distributions. Signed-off-by: Marco Varlese --- about/ecosystem.html | 1 + logos/suse.png | Bin 0 -> 10824 bytes 2 files changed, 1 insertion(+) create mode 100644 logos/suse.p

[dpdk-dev] [PATCH v2] Adding SUSE logo

2018-03-15 Thread mvarlese
From: Marco Varlese SUSE is among the companies packaging and distributing DPDK in its open and enterprise distributions. Signed-off-by: Marco Varlese --- about/ecosystem.html | 1 + logos/suse.png | Bin 0 -> 10824 bytes 2 files changed, 1 insertion(+) create mode 100644 logos/suse.p

[dpdk-dev] [PATCH] pci: remove duplicated symbol from map file

2018-03-15 Thread Ferruh Yigit
Remove duplicated symbol rte_pci_device_name from .map file. Also sort the map file to be able to detect any possible duplication easier in the future. Fixes: 0e3ef055bee5 ("pci: fix namespace prefix of new functions") Cc: sta...@dpdk.org Cc: gaetan.ri...@6wind.com Signed-off-by: Ferruh Yigit -

Re: [dpdk-dev] [PATCH 2/3] bus/pci: expose sysfs parsing API

2018-03-15 Thread Wang, Xiao W
Hi Rivet, > -Original Message- > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > Sent: Wednesday, March 14, 2018 9:31 PM > To: Burakov, Anatoly > Cc: Wang, Xiao W ; dev@dpdk.org; Wang, Zhihong > ; maxime.coque...@redhat.com; > y...@fridaylinux.org; Liang, Cunming ; Xu, Rosen > ; Chen

Re: [dpdk-dev] [PATCH v3 00/10] meson build support for dpaaX

2018-03-15 Thread Bruce Richardson
On Wed, Mar 14, 2018 at 01:25:56PM +0530, Hemant Agrawal wrote: > Earlier dpaaX was only compiled for armv8 target. This patch series first > prepares the dpaaX drivers to be compiled for non-ARM platform as well. > > > Note: This patch changes all of the dpaa drivers/modules - So it shall be >

Re: [dpdk-dev] [PATCH 2/3] bus/pci: expose sysfs parsing API

2018-03-15 Thread Gaëtan Rivet
On Thu, Mar 15, 2018 at 04:49:41PM +, Wang, Xiao W wrote: > Hi Rivet, > > > -Original Message- > > From: Gaëtan Rivet [mailto:gaetan.ri...@6wind.com] > > Sent: Wednesday, March 14, 2018 9:31 PM > > To: Burakov, Anatoly > > Cc: Wang, Xiao W ; dev@dpdk.org; Wang, Zhihong > > ; maxime.co

[dpdk-dev] Pull request for dpdk-next-build

2018-03-15 Thread Bruce Richardson
The following changes since commit c06ddf9698e0c2a9653cfa971f9ddc205065662c: meter: add configuration profile (2018-02-19 22:28:05 +0100) are available in the Git repository at: http://dpdk.org/git/draft/dpdk-next-build for you to fetch changes up to a4ffb69205a55ed6acae00b324165aecbbc67dfb

Re: [dpdk-dev] [PATCH] pci: remove duplicated symbol from map file

2018-03-15 Thread Gaëtan Rivet
Hi Ferruh, On Thu, Mar 15, 2018 at 04:48:54PM +, Ferruh Yigit wrote: > Remove duplicated symbol rte_pci_device_name from .map file. > > Also sort the map file to be able to detect any possible duplication > easier in the future. > > Fixes: 0e3ef055bee5 ("pci: fix namespace prefix of new func

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Wiles, Keith
> On Mar 15, 2018, at 11:19 AM, Stephen Hemminger > wrote: > > On Thu, 15 Mar 2018 16:15:21 + > "Melik-Adamyan, Areg" wrote: > >> Hello. >> >> Within Intel, we developed and open-sourced a DPDK based high-level library >> and runtime named Network Function Framework for Go (NFF-Go: >>

Re: [dpdk-dev] [PATCH v8 00/15] common linkstatus functions

2018-03-15 Thread Ferruh Yigit
On 1/26/2018 2:01 AM, Stephen Hemminger wrote: > While writing hyper-v driver, noticed a lot of unnecessary > duplication of code in drivers for handling the eth_dev link status > information. While consolidating this, it also became obvious that > some drivers behave differently for no good reason

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Wiles, Keith
> On Mar 15, 2018, at 12:29 PM, Wiles, Keith wrote: > > > >> On Mar 15, 2018, at 11:19 AM, Stephen Hemminger >> wrote: >> >> On Thu, 15 Mar 2018 16:15:21 + >> "Melik-Adamyan, Areg" wrote: >> >>> Hello. >>> >>> Within Intel, we developed and open-sourced a DPDK based high-level libra

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Stephen Hemminger
On Thu, 15 Mar 2018 17:29:44 + "Wiles, Keith" wrote: > > On Mar 15, 2018, at 11:19 AM, Stephen Hemminger > > wrote: > > > > On Thu, 15 Mar 2018 16:15:21 + > > "Melik-Adamyan, Areg" wrote: > > > >> Hello. > >> > >> Within Intel, we developed and open-sourced a DPDK based high-level

[dpdk-dev] [PATCH v1 00/18] Device querying

2018-03-15 Thread Gaetan Rivet
This patchset introduces a new EAL API for querying devices, filtered by arbitrary properties. The following elements are introduced to this end: * A new object, "rte_class", is used to describe the device class abstraction layer (eth, crypto, ...). * Both rte_bus and rte_class now offer a

[dpdk-dev] [PATCH v1 01/18] eal: introduce dtor macros

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/include/rte_common.h | 23 +++ 1 file changed, 23 insertions(+) diff --git a/lib/librte_eal/common/include/rte_common.h b/lib/librte_eal/common/include/rte_common.h index c7803e41c..500fc3adb 100644 --- a/lib/librte_eal/c

[dpdk-dev] [PATCH v1 02/18] eal: introduce device class abstraction

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/librte_eal/bsdapp/eal/Makefile| 1 + lib/librte_eal/common/Makefile| 2 +- lib/librte_eal/common/eal_common_class.c | 62 +++ lib/librte_eal/common/include/rte_class.h | 121 ++ lib/librte_eal/li

[dpdk-dev] [PATCH v1 03/18] eal/class: register destructor

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/include/rte_class.h | 5 + 1 file changed, 5 insertions(+) diff --git a/lib/librte_eal/common/include/rte_class.h b/lib/librte_eal/common/include/rte_class.h index beb0ba86c..a2e5f5551 100644 --- a/lib/librte_eal/common/include/rte_class

[dpdk-dev] [PATCH v1 05/18] eal/dev: add device iterator interface

2018-03-15 Thread Gaetan Rivet
A device iterator allows iterating over a set of devices. This set is defined by the two descriptions offered, * rte_bus * rte_class Only one description can be provided, or both. It is not allowed to provide no description at all. Each layer of abstraction them performs a filter based on th

[dpdk-dev] [PATCH v1 06/18] eal/dev: implement device iteration initialization

2018-03-15 Thread Gaetan Rivet
Parse a device description. Split this description in their relevant part for both abstraction layer. No dynamic allocation is performed. Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/eal_common_dev.c | 58 + lib/librte_eal/common/include/rte_dev.h | 23

[dpdk-dev] [PATCH v1 04/18] eal: add lightweight kvarg parsing utility

2018-03-15 Thread Gaetan Rivet
This library offers a quick way to parse parameters passed with a key=value syntax. A single function is needed and finds the relevant element within the text. No dynamic allocation is performed. It is possible to chain the parsing of each pairs for quickly scanning a list. This utility is privat

[dpdk-dev] [PATCH v1 08/18] eal/bus: add device iteration

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/include/rte_bus.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_bus.h b/lib/librte_eal/common/include/rte_bus.h index 6fb08341a..46911afa7 100644 --- a/lib/librte_eal/common/include/rte_bus.h +++ b/lib/

[dpdk-dev] [PATCH v1 09/18] eal/dev: implement device iteration

2018-03-15 Thread Gaetan Rivet
Use the iteration hooks in the abstraction layers to perform the requested filtering on the internal device lists. Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/eal_common_dev.c | 81 + lib/librte_eal/common/include/rte_dev.h | 25 ++ lib/librte_e

[dpdk-dev] [PATCH v1 07/18] eal/class: add device iteration

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/librte_eal/common/include/rte_class.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/include/rte_class.h b/lib/librte_eal/common/include/rte_class.h index a2e5f5551..47ebaba31 100644 --- a/lib/librte_eal/common/include/rte_class.h ++

[dpdk-dev] [PATCH v1 10/18] ethdev: register ether layer as a class

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- lib/Makefile | 2 +- lib/librte_ether/Makefile| 3 +- lib/librte_ether/rte_class_eth.c | 86 3 files changed, 89 insertions(+), 2 deletions(-) create mode 100644 lib/librte_ether/rte_class_eth.

[dpdk-dev] [PATCH v1 13/18] bus/pci: implement device iteration and comparison

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- drivers/bus/pci/Makefile | 2 +- drivers/bus/pci/pci_common.c | 54 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/drivers/bus/pci/Makefile b/drivers/bus/pci/Makefile index f3df1c4ce..73498dc77 10064

[dpdk-dev] [PATCH v1 11/18] ethdev: add device matching field name

2018-03-15 Thread Gaetan Rivet
The eth device class can now parse a field name, matching the eth_dev name with one passed as "class=eth,name=xx" Signed-off-by: Gaetan Rivet --- lib/librte_ether/rte_class_eth.c | 18 -- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/lib/librte_ether/rte_

[dpdk-dev] [PATCH v1 12/18] bus/pci: fix find device implementation

2018-03-15 Thread Gaetan Rivet
If start is set, and a device before it matches the data passed for comparison, then this first device is returned. This produces potentially infinite loops. Fixes: c7fe1eea8a74 ("bus: simplify finding starting point") Cc: sta...@dpdk.org Signed-off-by: Gaetan Rivet --- drivers/bus/pci/pci_com

[dpdk-dev] [PATCH v1 16/18] bus/vdev: implement device iteration

2018-03-15 Thread Gaetan Rivet
Signed-off-by: Gaetan Rivet --- drivers/bus/vdev/Makefile | 2 +- drivers/bus/vdev/vdev.c | 54 +++ 2 files changed, 55 insertions(+), 1 deletion(-) diff --git a/drivers/bus/vdev/Makefile b/drivers/bus/vdev/Makefile index 24d424a38..52728833c 100644

[dpdk-dev] [PATCH v1 14/18] bus/pci: add device matching field id

2018-03-15 Thread Gaetan Rivet
The PCI bus can now parse a matching field "id" as follows: "bus=pci,id=:00:00.0" or "bus=pci,id=00:00.0" Signed-off-by: Gaetan Rivet --- drivers/bus/pci/pci_common.c | 26 -- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/drivers/b

[dpdk-dev] [PATCH v1 17/18] bus/vdev: add device matching field driver

2018-03-15 Thread Gaetan Rivet
The vdev bus parses a field "driver", matching a vdev driver name with one passed as follows: "bus=vdev,driver=" Signed-off-by: Gaetan Rivet --- drivers/bus/vdev/vdev.c | 22 -- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/drivers/bus/vdev/vdev.c b/d

[dpdk-dev] [PATCH v1 18/18] app/testpmd: add show device command

2018-03-15 Thread Gaetan Rivet
A new interactive command is offered: show device This commands lists all rte_device element matching the device description. e.g.: show device bus=pci show device bus=vdev show device bus=vdev,class=eth show device bus=vdev,class=eth,name=net_ring0 These devices may not be othe

[dpdk-dev] [PATCH v1 15/18] bus/vdev: fix find device implementation

2018-03-15 Thread Gaetan Rivet
If start is set and a device before it matches the data, this device is returned. This produces induces potentially infinite loops. Fixes: c7fe1eea8a74 ("bus: simplify finding starting point") Cc: sta...@dpdk.org Signed-off-by: Gaetan Rivet --- drivers/bus/vdev/rte_bus_vdev.h | 3 +++ drivers

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Wiles, Keith
Sorry, did not mean to highjack this thread, I will start a new one. > On Mar 15, 2018, at 12:48 PM, Stephen Hemminger > wrote: > > On Thu, 15 Mar 2018 17:29:44 + > "Wiles, Keith" wrote: > >>> On Mar 15, 2018, at 11:19 AM, Stephen Hemminger >>> wrote: >>> >>> On Thu, 15 Mar 2018 16:15:

[dpdk-dev] GitHub repos for DPDK projects in one place.

2018-03-15 Thread Wiles, Keith
On Mar 15, 2018, at 12:43 PM, Wiles, Keith wrote: > > > >> On Mar 15, 2018, at 12:29 PM, Wiles, Keith wrote: >> >> I know that DPDK TAC and others are not wanting to have a lot of repos in >> DPDK.org for maintains reason and I agree. >> >> I would like to see us use a single GitHub account

Re: [dpdk-dev] [PATCH v2 2/3] net/mlx5: fix link status behavior

2018-03-15 Thread Yongseok Koh
> On Mar 12, 2018, at 6:43 AM, Nelio Laranjeiro > wrote: > > This behavior is mixed between what should be handled by the application > and what is under PMD responsibility. > > According to DPDK API: > - link_update() should only query the link status [1] > - link_set_{up,down}() should only

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Melik-Adamyan, Areg
>It may cost some money at some point, but I have not looked into it more than >a year. Our org can pay for the team account if needed, but free org account on Github has the same capabilities except for team permissions.

Re: [dpdk-dev] [dpdk-techboard] Request to create a repo under DPDK for Network Function Framework for Go

2018-03-15 Thread Melik-Adamyan, Areg
-Original Message- From: Stephen Hemminger [mailto:step...@networkplumber.org] Sent: Thursday, March 15, 2018 12:49 PM To: Wiles, Keith Cc: Melik-Adamyan, Areg ; dev@dpdk.org; techbo...@dpdk.org; Yigit, Ferruh ; Richardson, Bruce ; Ananyev, Konstantin ; O'Driscoll, Tim Subject: Re: [

Re: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup

2018-03-15 Thread Zhang, Qi Z
> -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 11:39 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 1/4] ether: support deferred queue setup > > > > > ---

Re: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue setup

2018-03-15 Thread Zhang, Qi Z
> -Original Message- > From: Ananyev, Konstantin > Sent: Thursday, March 15, 2018 11:22 PM > To: Zhang, Qi Z ; tho...@monjalon.net > Cc: dev@dpdk.org; Xing, Beilei ; Wu, Jingjing > ; Lu, Wenzhuo > Subject: RE: [dpdk-dev] [PATCH v2 4/4] net/i40e: enable deferred queue > setup > > > > >

Re: [dpdk-dev] [PATCH 2/2] test: update common auto test

2018-03-15 Thread Thomas Monjalon
14/03/2018 10:41, Pavan Nikhilesh: > Update common auto test to include test for aligning values to multiples > of given integer. > > Signed-off-by: Pavan Nikhilesh > --- > test/test/test_common.c | 12 > 1 file changed, 12 insertions(+) The unit test can be in the same patch as th

Re: [dpdk-dev] [RFC v4 1/1] lib/compressdev: Adding hash support

2018-03-15 Thread Verma, Shally
Hi Fiona Thanks for feedback. Comments inline. >-Original Message- >From: Trahe, Fiona [mailto:fiona.tr...@intel.com] >Sent: 14 March 2018 18:12 >To: Verma, Shally >Cc: Athreya, Narayana Prasad ; Challa, >Mahipal ; Gupta, >Ashish ; dev@dpdk.org; ahmed.mans...@nxp.com; Trahe, >Fiona

Re: [dpdk-dev] [PATCH v2] drivers/net/i40e/i40e_ethdev_vf.c: fix missing promiscuous disable at device stop

2018-03-15 Thread Zhang, Qi Z
Hi Rosen: > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Rosen Xu > Sent: Thursday, March 15, 2018 5:46 PM > To: Xing, Beilei > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2] drivers/net/i40e/i40e_ethdev_vf.c: fix > missing promiscuous disable at device sto