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
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
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
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
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
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
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
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/
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
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
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
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
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_
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/
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
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
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
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.
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
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
> -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
> -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
>
> -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/
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(-)
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
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
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
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/
> -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
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
> -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
>
>
>
> > -
> -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
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
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
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,
>>>
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
> -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
>
>
>
> >
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
> -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
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
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
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
> >> ;
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:
>
>
>> -
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.
> -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,
>
>
> -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
>
>
>
> > -
> -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
>
>
>
> > ---
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)
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
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
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
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
>
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
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
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-
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
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
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
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
-
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
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
>
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
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
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
> 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:
>>
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
> 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
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
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
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
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
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
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
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
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
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/
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
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
++
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.
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
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_
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
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
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
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
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
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
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:
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
> 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
>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.
-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: [
> -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
>
>
>
> > ---
> -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
>
>
>
> >
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
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
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
97 matches
Mail list logo