[dpdk-dev] [PATCH RFC 0/2] i40e: enlarge the number of supported queues

2015-09-02 Thread Helin Zhang
There was a software limitation of 64 queues, it should be enlarged to the hardware allowed maximum. As all the queues are shared among PF, VFs and VMDq, the number of queues supported in PF, VFs and VMDq may vary. Helin Zhang (2): i40e: adjust the number of queues for RSS i40e: Enlarge the nu

[dpdk-dev] [PATCH RFC 2/2] i40e: Enlarge the number of supported queues

2015-09-02 Thread Helin Zhang
It enlarges the number of supported queues to hardware allowed maximum. There was a software limitation of 64 per physical port which is not reasonable. Signed-off-by: Helin Zhang --- config/common_bsdapp | 3 +- config/common_linuxapp | 3 +- drivers/net/i40e/i40e_ethdev.c

[dpdk-dev] [PATCH RFC 1/2] i40e: adjust the number of queues for RSS

2015-09-02 Thread Helin Zhang
It adjusts the number of queues for RSS from power of 2 to any as long as it does not exceeds the hardware allowed. Signed-off-by: Helin Zhang --- drivers/net/i40e/i40e_ethdev.c| 8 drivers/net/i40e/i40e_ethdev_vf.c | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --gi

[dpdk-dev] Fast Failover Test Results

2015-09-02 Thread Stefan Binna
Am 01.09.2015 um 18:03 schrieb Declan Doherty: > > > On 01/09/15 14:31, Stefan Binna wrote: >> Hi @all, >> >> I've conducted some fast failover tests on a SDN infrastructure, whereby >> following three configurations were used for the device under test >> (DUT): >> >> - Intel 82574L with default d

[dpdk-dev] [PATCH] acl: Improve acl_bld.c sort_rules()

2015-09-02 Thread Ananyev, Konstantin
> -Original Message- > From: Mark Smith [mailto:marks439 at gmail.com] > Sent: Wednesday, August 26, 2015 8:25 PM > To: Ananyev, Konstantin; dev at dpdk.org > Cc: rsanford at akamai.com; marsmith at akamai.com > Subject: [PATCH] acl: Improve acl_bld.c sort_rules() > > Replace O(n^2) list

[dpdk-dev] [PATCH v2] e1000: implement igb xstats

2015-09-02 Thread Harry van Haaren
This patch implements the extended statistics API for the e1000 igb, adding xstats_get() and xstats_reset() functions. The implementation is similar to that of the ixgbe driver as merged in dpdk 2.1. Signed-off-by: Harry van Haaren --- Version 2: Removed stats counting fixes, will submit in sepe

[dpdk-dev] [PATCH 0/9] clean deprecated code

2015-09-02 Thread Neil Horman
On Tue, Sep 01, 2015 at 10:18:08PM +0200, Thomas Monjalon wrote: > Before starting a new integration cycle (2.2.0-rc0), > the deprecated code is removed. > > The hash library is not cleaned in this patchset and would be > better done by its maintainers. Bruce, Pablo, please check the > file doc/gu

[dpdk-dev] [PATCH] app/test-pmd: Detect NUMA socket count

2015-09-02 Thread De Lara Guarch, Pablo
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Stephen Hurd > Sent: Friday, August 21, 2015 3:25 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] app/test-pmd: Detect NUMA socket count > > Currently, there is a MAX_SOCKET macro which artificially lim

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Montorsi, Francesco
Hi all, Currently it seems that the only way to initialize EAL is using rte_eal_init() function, correct? I have the problem that rte_eal_init() will call rte_panic() whenever something fails to initialize or in other cases it will call exit(). In my application, I would rather like to attempt

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Bruce Richardson
On Wed, Sep 02, 2015 at 12:49:40PM +, Montorsi, Francesco wrote: > Hi all, > > Currently it seems that the only way to initialize EAL is using > rte_eal_init() function, correct? > > I have the problem that rte_eal_init() will call rte_panic() whenever > something fails to initialize or in

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Thomas Monjalon
2015-09-02 13:56, Bruce Richardson: > On Wed, Sep 02, 2015 at 12:49:40PM +, Montorsi, Francesco wrote: > > Hi all, > > > > Currently it seems that the only way to initialize EAL is using > > rte_eal_init() function, correct? > > > > I have the problem that rte_eal_init() will call rte_panic(

[dpdk-dev] [PATCH v2 00/10] clean deprecated code

2015-09-02 Thread Thomas Monjalon
Before starting a new integration cycle (2.2.0-rc0), the deprecated code is removed. The hash library is not cleaned in this patchset and would be better done by its maintainers. Bruce, Pablo, please check the file doc/guides/rel_notes/deprecation.rst. Changes in v2: - increment KNI and ring PMD

[dpdk-dev] [PATCH v2 01/10] doc: init next release notes

2015-09-02 Thread Thomas Monjalon
Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/index.rst | 1 + doc/guides/rel_notes/release_2_2.rst | 58 2 files changed, 59 insertions(+) create mode 100644 doc/guides/rel_notes/release_2_2.rst diff --git a/doc/guides/rel_notes/index.rst b

[dpdk-dev] [PATCH v2 02/10] ethdev: remove Rx interrupt switch

2015-09-02 Thread Thomas Monjalon
The Rx interrupt feature is now part of the standard ABI. Because of changes in rte_intr_handle and struct rte_eth_conf, the eal and ethdev library versions are incremented. Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- doc/guides/rel_notes/deprecation.rs

[dpdk-dev] [PATCH v2 03/10] mbuf: remove packet type from offload flags

2015-09-02 Thread Thomas Monjalon
The extended unified packet type is now part of the standard ABI. As mbuf struct is changed, the mbuf library version is incremented. Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- app/test-pipeline/pipeline_hash.c | 12 - app/test-pmd/cs

[dpdk-dev] [PATCH v2 04/10] ethdev: remove SCTP flow entries switch

2015-09-02 Thread Thomas Monjalon
The extended SCTP flow entries are now part of the standard API. Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- app/test-pmd/cmdline.c | 4 doc/guides/rel_notes/deprecation.rst | 3 --- doc/guides/rel_notes/release_2_2.rst | 3 +++ drive

[dpdk-dev] [PATCH v2 05/10] eal: remove deprecated function

2015-09-02 Thread Thomas Monjalon
The function rte_eal_pci_close_one() was renamed rte_eal_pci_detach(). Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- doc/guides/rel_notes/deprecation.rst| 3 --- doc/guides/rel_notes/release_2_2.rst| 3 +++ lib/librte_eal/bsdapp/ea

[dpdk-dev] [PATCH v2 06/10] mem: remove dummy malloc library

2015-09-02 Thread Thomas Monjalon
The malloc library is now part of the EAL. Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- MAINTAINERS| 1 - doc/guides/prog_guide/dev_kit_build_system.rst | 2 +- doc/guides/prog_guide/env_abstraction_layer.rst

[dpdk-dev] [PATCH v2 07/10] lpm: remove deprecated field

2015-09-02 Thread Thomas Monjalon
The library version is incremented. Signed-off-by: Thomas Monjalon Acked-by: Stephen Hemminger Acked-by: Neil Horman --- app/test/test_func_reentrancy.c | 4 ++-- app/test/test_lpm.c | 4 ++-- doc/guides/rel_notes/deprecation.rst | 3 --- doc/guides/rel_notes/release_2

[dpdk-dev] [PATCH v2 08/10] acl: remove old API

2015-09-02 Thread Thomas Monjalon
The functions and structures are moved to app/test in order to keep existing unit tests. Some minor changes were done in these functions because of library scope restrictions. An enum is also copied in two other applications to keep existing code. The library version is incremented. Signed-off-by:

[dpdk-dev] [PATCH v2 09/10] kni: remove deprecated functions

2015-09-02 Thread Thomas Monjalon
From: Stephen Hemminger These functions were tagged as deprecated in 2.0 so they can be removed in 2.2. The library version is incremented. Signed-off-by: Stephen Hemminger Acked-by: Helin Zhang [Thomas: update doc and version] Signed-off-by: Thomas Monjalon Acked-by: Neil Horman --- app/te

[dpdk-dev] [PATCH v2 10/10] ring: remove deprecated functions

2015-09-02 Thread Thomas Monjalon
From: Stephen Hemminger These were deprecated in 2.0 so remove them from 2.2. The library version is incremented. Signed-off-by: Stephen Hemminger Signed-off-by: Thomas Monjalon Acked-by: Neil Horman --- doc/guides/rel_notes/deprecation.rst | 3 -- doc/guides/rel_notes/release_2_2.rst

[dpdk-dev] libdpdk upstream changes for ecosystem best practices

2015-09-02 Thread Robie Basak
Hi, We?re looking at packaging DPDK in Ubuntu. We?d like to discuss upstream changes to better integrate DPDK into Linux distributions. Here?s a summary of what we need: 1) Define one library ABI (soname and sover) that we can use instead of the split build. 2) Fix #includes so we don't ha

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Jay Rolette
On Wed, Sep 2, 2015 at 7:56 AM, Bruce Richardson wrote: > On Wed, Sep 02, 2015 at 12:49:40PM +, Montorsi, Francesco wrote: > > Hi all, > > > > Currently it seems that the only way to initialize EAL is using > rte_eal_init() function, correct? > > > > I have the problem that rte_eal_init() wil

[dpdk-dev] [PATCH 1/1] ip_frag: fix creating ipv6 fragment extension header

2015-09-02 Thread Piotr
From: Piotr Azarewicz Previous implementation won't work on every environment. The order of allocation of bit-fields within a unit (high-order to low-order or low-order to high-order) is implementation-defined. Solution: used bytes instead of bit fields. Signed-off-by: Piotr Azarewicz --- lib/

[dpdk-dev] libdpdk upstream changes for ecosystem best practices

2015-09-02 Thread Thomas Monjalon
Hi, 2015-09-02 14:49, Robie Basak: > Hi, > > We?re looking at packaging DPDK in Ubuntu. We?d like to discuss upstream Nice > changes to better integrate DPDK into Linux distributions. Here?s a > summary of what we need: > > 1) Define one library ABI (soname and sover) that we can use instead

[dpdk-dev] "cannot use T= with gcov target" when doing "makefile clean" with DPDK-2.1.0

2015-09-02 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Montorsi, Francesco > Sent: Friday, August 28, 2015 10:07 AM > To: dev at dpdk.org > Subject: [dpdk-dev] "cannot use T= with gcov target" when doing "makefile > clean" with DPDK-2.1.0 > > Hi all, > > I found th

[dpdk-dev] [PATCH] librte_cfgfile (rte_cfgfile.h): modify the macros values

2015-09-02 Thread Jasvinder Singh
This patch refers to the ABI change proposed for librte_cfgfile (rte_cfgfile.h). In order to allow for longer names and values, the new values of macros CFG_NAME_LEN and CFG_NAME_VAL are set. Signed-off-by: Jasvinder Singh --- lib/librte_cfgfile/rte_cfgfile.h | 9 +++-- 1 file changed, 7 in

[dpdk-dev] [ RFC ] performance thread example

2015-09-02 Thread Betts, Ian
Hi Folks, Would welcome feedback on this proposal for an example app to explore performance with different threading models. Thanks, Ian Performance thread example application This example will comprise a simple layer 3 forwarding application distributed across multiple threads. It will be po

[dpdk-dev] [PATCH v2 08/10] acl: remove old API

2015-09-02 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Wednesday, September 02, 2015 2:17 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2 08/10] acl: remove old API > > The functions and structures are moved to app/test in order to

[dpdk-dev] libdpdk upstream changes for ecosystem best practices

2015-09-02 Thread Stephen Hemminger
On Wed, 02 Sep 2015 16:18:33 +0200 Thomas Monjalon wrote: > Hi, > > 2015-09-02 14:49, Robie Basak: > > Hi, > > > > We?re looking at packaging DPDK in Ubuntu. We?d like to discuss upstream > > Nice This matches what we do internally. I was heading towards making this a real Debian package. Sin

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Don Provan
Thomas Monjalon: >Yes but please, do not create an alternative init function. >We just need to replace panic/exit with error codes and be sure that apps and >examples handle them correctly. I understand your concerns, but the panics are really just the tip of the iceberg of the EAL library not r

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Stephen Hemminger
On Wed, 2 Sep 2015 18:17:40 + Don Provan wrote: > Thomas Monjalon: > >Yes but please, do not create an alternative init function. > >We just need to replace panic/exit with error codes and be sure that apps > >and examples handle them correctly. > > I understand your concerns, but the panic

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Zoltan Kiss
On 02/09/15 15:08, Jay Rolette wrote: > On Wed, Sep 2, 2015 at 7:56 AM, Bruce Richardson intel.com >> wrote: > >> On Wed, Sep 02, 2015 at 12:49:40PM +, Montorsi, Francesco wrote: >>> Hi all, >>> >>> Currently it seems that the only way to initialize EAL is using >> rte_eal_init() function, c

[dpdk-dev] [PATCH] librte_cfgfile (rte_cfgfile.h): modify the macros values

2015-09-02 Thread Thomas Monjalon
2015-09-02 16:53, Jasvinder Singh: > This patch refers to the ABI change proposed for librte_cfgfile > (rte_cfgfile.h). > In order to allow for longer names and values, the new values of macros > CFG_NAME_LEN and CFG_NAME_VAL are set. > > Signed-off-by: Jasvinder Singh > --- > lib/librte_cfgfi

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Marc Sune
Stephen, Don, On Wed, Sep 2, 2015 at 9:00 PM, Stephen Hemminger < stephen at networkplumber.org> wrote: > On Wed, 2 Sep 2015 18:17:40 + > Don Provan wrote: > > > Thomas Monjalon: > > >Yes but please, do not create an alternative init function. > > >We just need to replace panic/exit with err

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Thomas Monjalon
2015-09-02 12:00, Stephen Hemminger: > On Wed, 2 Sep 2015 18:17:40 + > Don Provan wrote: > > > Thomas Monjalon: > > >Yes but please, do not create an alternative init function. > > >We just need to replace panic/exit with error codes and be sure that apps > > >and examples handle them correc

[dpdk-dev] rte_eal_init() alternative?

2015-09-02 Thread Wiles, Keith
On 9/2/15, 4:08 PM, "dev on behalf of Thomas Monjalon" wrote: >2015-09-02 12:00, Stephen Hemminger: >> On Wed, 2 Sep 2015 18:17:40 + >> Don Provan wrote: >> >> > Thomas Monjalon: >> > >Yes but please, do not create an alternative init function. >> > >We just need to replace panic/exit with

[dpdk-dev] Poor SRIOV performance with ESXi Linux guest

2015-09-02 Thread Ale Mansoor
Getting less than 100 packets per second throughput between VF's under my Fedora FC20 VM running under ESXi 6.0 with DPDK l2fwd (Used as ./l2fwd -c 0xf -n 4 -- -p 0x3 -T 1) Questions: --- Q1) Is DPDK + SRIOV under ESXi supposed to use the igb_uio driver or the vfio-pci driver insi

[dpdk-dev] Poor SRIOV performance with ESXi Linux guest

2015-09-02 Thread Stephen Hemminger
On Wed, 2 Sep 2015 22:18:27 + Ale Mansoor wrote: > Getting less than 100 packets per second throughput between VF's under my > Fedora FC20 VM running under ESXi 6.0 with DPDK l2fwd (Used as ./l2fwd -c 0xf > -n 4 -- -p 0x3 -T 1) That is many orders of magnitude less than expected. > Ques

[dpdk-dev] Support of LSI for vmxnet3

2015-09-02 Thread Stephen Hemminger
The problem is there is no selective disable mask. It is possible using MSIX by redirecting. I have a version with that with new rcv stuff. Still needs work On Sep 2, 2015 9:07 PM, "Dey, Souvik" wrote: > Hi, > Is there any particular reason of nor supporting the > RTE_PCI_DRV_INT