[dpdk-dev] [dpdk-announce] DPDK 16.11 released

2016-11-15 Thread Liu, Yong
Thomas, it's great to hear that DPDK16.11 released just in time. As prospect for 17.02, our intel validation team have some concern about the release date. The official day off for Chinese Sprint Festival holiday will be from 27th Jan to 3th Feb. Most of our members may ask for more days leave

[dpdk-dev] acl: delete/modify rule support

2016-11-15 Thread Nikhil Jagtap
Hi, I had a couple of questions about ACL support in DPDK. 1) Is it possible to build the ACL context over a period of time, one rule at a time by calling build post each add operation? Something like this : rte_acl_add_rules(ctx, rule1, 1); rte_acl_build(ctx, build_cfg);

[dpdk-dev] acl: delete/modify rule support

2016-11-15 Thread Anupam Kapoor
On Tue, Nov 15, 2016 at 10:40 AM, Nikhil Jagtap wrote: > Is it possible to build the ACL context over a period of time, one rule > at a time by calling build post each add operation? > Something like this : > rte_acl_add_rules(ctx, rule1, 1); > rte_acl_build(ctx, build_cfg); >

[dpdk-dev] [PATCH] lib/librte_mempool: a redundant word in comment

2016-11-15 Thread Zhao1, Wei
Hi, john > -Original Message- > From: Mcnamara, John > Sent: Monday, November 14, 2016 6:30 PM > To: Zhao1, Wei ; dev at dpdk.org > Cc: olivier.matz at 6wind.com; Zhao1, Wei > Subject: RE: [dpdk-dev] [PATCH] lib/librte_mempool: a redundant word in > comment > > > > > -Original

[dpdk-dev] [PATCH v4 0/3] Expanded statistics reporting

2016-11-15 Thread Remy Horton
This patchset extends statistics reporting to include peak and average data-rate metrics. It comes in two parts: a statistics reporting library, and a bitrate calculation library that uses it. This structure is intended to seperate statistic reporting from ethdev and allow more flexible metric

[dpdk-dev] [PATCH v4 1/3] lib: add information metrics library

2016-11-15 Thread Remy Horton
This patch adds a new information metric library that allows other modules to register named metrics and update their values. It is intended to be independent of ethdev, rather than mixing ethdev and non-ethdev information in xstats. Signed-off-by: Remy Horton --- MAINTAINERS

[dpdk-dev] [PATCH v4 2/3] lib: add bitrate statistics library

2016-11-15 Thread Remy Horton
This patch adds a library that calculates peak and average data-rate statistics. For ethernet devices. These statistics are reported using the metrics library. Signed-off-by: Remy Horton --- MAINTAINERS| 4 + config/common_base

[dpdk-dev] [PATCH v4 3/3] app/test-pmd: add support for bitrate statistics

2016-11-15 Thread Remy Horton
Signed-off-by: Remy Horton --- app/test-pmd/testpmd.c | 36 1 file changed, 36 insertions(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index a0332c2..60c635f 100644 --- a/app/test-pmd/testpmd.c +++ b/app/test-pmd/testpmd.c @@ -78,6 +78,10

[dpdk-dev] [dpdk-announce] DPDK 16.11 released

2016-11-15 Thread Thomas Monjalon
Hi and thanks for sharing your time constraints, 2016-11-15 01:46, Liu, Yong: > As prospect for 17.02, our intel validation team have some concern about the > release date. > The official day off for Chinese Sprint Festival holiday will be from 27th > Jan to 3th Feb. > Most of our members may

[dpdk-dev] pmdinfogen issues: cross compilation for ARM fails with older host compiler

2016-11-15 Thread Hemant Agrawal
> On Mon, Nov 14, 2016 at 02:29:24AM +0530, Jerin Jacob wrote: > > On Fri, Nov 11, 2016 at 10:34:39AM +, Hemant Agrawal wrote: > > > Hi Neil, > > >Pmdinfogen compiles with host compiler. It usages > > > rte_byteorder.h > of the target platform. > > > However, if the host

[dpdk-dev] [PATCH v1 0/2] XStats fixes

2016-11-15 Thread Ferruh Yigit
On 11/14/2016 6:14 AM, Remy Horton wrote: > The offsets used in rte_i40evf_stats_strings for transmission > statistics were wrong, returning the total byte count rather than > the respective (unicast, multicast, broadcast, drop, & error) > packet counts. > > This patchset also fixes some spelling

[dpdk-dev] [PATCH] net/i40e: add additional prefetch instructions for bulk rx

2016-11-15 Thread Ferruh Yigit
On 10/13/2016 11:30 AM, Ananyev, Konstantin wrote: <...> Actually I can see some valid use cases where it is beneficial to have this prefetch in driver. In our sw distributor case it is trivial to just prefetch next packet on each iteration because packets are

[dpdk-dev] [PATCH] net/i40e: add additional prefetch instructions for bulk rx

2016-11-15 Thread Vladyslav Buslov
> -Original Message- > From: Ferruh Yigit [mailto:ferruh.yigit at intel.com] > Sent: Tuesday, November 15, 2016 2:19 PM > To: Ananyev, Konstantin; Richardson, Bruce > Cc: Vladyslav Buslov; Wu, Jingjing; Zhang, Helin; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/i40e: add

[dpdk-dev] [PATCH v5] latencystats: added new library for latency stats

2016-11-15 Thread Reshma Pattan
Add a library designed to calculate latency statistics and report them to the application when queried. The library measures minimum, average and maximum latencies, and jitter in nano seconds. The current implementation supports global latency stats, i.e. per application stats. Added new field to

[dpdk-dev] pmdinfogen issues: cross compilation for ARM fails with older host compiler

2016-11-15 Thread Neil Horman
On Tue, Nov 15, 2016 at 09:34:16AM +, Hemant Agrawal wrote: > > On Mon, Nov 14, 2016 at 02:29:24AM +0530, Jerin Jacob wrote: > > > On Fri, Nov 11, 2016 at 10:34:39AM +, Hemant Agrawal wrote: > > > > Hi Neil, > > > >Pmdinfogen compiles with host compiler. It usages > > > >

[dpdk-dev] [PATCH] doc: add pdump library to API doxygen

2016-11-15 Thread Reshma Pattan
Add pdump library to API doxygen. Signed-off-by: Reshma Pattan --- doc/api/doxy-api-index.md | 3 ++- doc/api/doxy-api.conf | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index 6675f96..492a0af 100644 ---

[dpdk-dev] pmdinfogen issues: cross compilation for ARM fails with older host compiler

2016-11-15 Thread Neil Horman
On Tue, Nov 15, 2016 at 09:34:16AM +, Hemant Agrawal wrote: > > On Mon, Nov 14, 2016 at 02:29:24AM +0530, Jerin Jacob wrote: > > > On Fri, Nov 11, 2016 at 10:34:39AM +, Hemant Agrawal wrote: > > > > Hi Neil, > > > >Pmdinfogen compiles with host compiler. It usages > > > >

[dpdk-dev] [PATCH v4 2/3] lib: add bitrate statistics library

2016-11-15 Thread Pattan, Reshma
Hi, > Signed-off-by: Remy Horton > --- > a/doc/guides/rel_notes/release_17_02.rst > b/doc/guides/rel_notes/release_17_02.rst > index e1b8894..f949e88 100644 > --- a/doc/guides/rel_notes/release_17_02.rst > +++ b/doc/guides/rel_notes/release_17_02.rst > @@ -40,6 +40,11 @@ New Features >

[dpdk-dev] pmdinfogen issues: cross compilation for ARM fails with older host compiler

2016-11-15 Thread Thomas Monjalon
2016-11-15 09:27, Neil Horman: > On Tue, Nov 15, 2016 at 09:34:16AM +, Hemant Agrawal wrote: > > > > On Fri, Nov 11, 2016 at 10:34:39AM +, Hemant Agrawal wrote: > > > > > Hi Neil, > > > > >Pmdinfogen compiles with host compiler. It usages rte_byteorder.h > > > > >of the target

[dpdk-dev] [PATCH] doc: add pdump library to API doxygen

2016-11-15 Thread Thomas Monjalon
2016-11-15 14:41, Reshma Pattan: > --- a/doc/api/doxy-api-index.md > +++ b/doc/api/doxy-api-index.md > @@ -140,7 +140,8 @@ There are many libraries, so their headers may be grouped > by topics: >[debug] (@ref rte_debug.h), >[log](@ref rte_log.h), >

[dpdk-dev] [PATCH] net/bnxt: fix a segfault encountered during PMD exit

2016-11-15 Thread Ajit Khaparde
This patch fixes segfault encountered during dev_uninit/close routine. KNI sample app can be used to reproduce the issue. backported from upstream commit 316e412 Cc: Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 1 + drivers/net/bnxt/bnxt_ethdev.c | 28