[dpdk-dev] [PATCH 0/3] lpm6: speed improvement on delete rule

2016-06-09 Thread Nikita Kozlov
This serie of pathes focus on improving the speed of deleting rules in lpm6. It also contains some other improvement like having a dynamic number of rules in lpm6 and increasing the lpm6 nexthop size to 16bit for matching the nexthop size in lpm4. The performances improvement can be seen by runni

[dpdk-dev] [PATCH 3/3] test_lpm6: make test_lpm6* compatible with the new rte_lpm6.c lib

2016-06-09 Thread Nikita Kozlov
Modify of test_lpm6.c to reflect that we no longer have a maximum number of rules. Check in some places that we are using the same number of tbl8 as the previous implementation after a rte_lpm6_delete. Signed-off-by: Nikita Kozlov --- app/test/test_lpm6.c | 131

[dpdk-dev] [PATCH 1/3] lpm6 speed inmprovement on delete rule

2016-06-09 Thread Nikita Kozlov
Rewrite rte_lpm6_delete* logic for deleting only the selected rule instead of deleting all rules and re-inserting them. the delete_step() function is called recursively and delete the rule until the rule depth is covered. Then it calls delete_expand_step() which will ensure to delete the expanded

[dpdk-dev] [PATCH 2/3] librte_eal: Import FreeBSD sys/tree.h into librte_eal/common

2016-06-09 Thread Nikita Kozlov
This structure is used inside the rte_lpm6 lib for storing added rules. It's imported from FreeBSD-10.3 from /usr/include/sys/tree.h, another solution could have been to use on Linux the version from libbsd but it would create an external dependency. Signed-off-by: Nikita Kozlov --- lib/librte_e

[dpdk-dev] [PATCH v3 08/20] vhost: introduce new API to export numa node

2016-06-09 Thread Yuanhan Liu
On Wed, Jun 08, 2016 at 02:51:33PM -0700, Rich Lane wrote: > On Mon, Jun 6, 2016 at 8:51 PM, Yuanhan Liu > wrote: > > @@ -248,14 +248,9 @@ new_device(struct virtio_net *dev) > ? ? ? ? internal = eth_dev->data->dev_private; > > ?#ifdef RTE_LIBRTE_VHOST_NUMA > -? ? ? ?ret? = get_me

[dpdk-dev] [PATCH 2/3] librte_eal: Import FreeBSD sys/tree.h into librte_eal/common

2016-06-09 Thread Thomas Monjalon
2016-06-08 17:58, Stephen Hemminger: > On Thu, 9 Jun 2016 02:53:53 +0200 > Nikita Kozlov wrote: > > > This structure is used inside the rte_lpm6 lib for storing added rules. > > It's imported from FreeBSD-10.3 from /usr/include/sys/tree.h, another > > solution could have been to use on Linux the

[dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements

2016-06-09 Thread Olivier Matz
Hi Konstantin, >> Yes, it refcnt supposed to be set to 0 by __rte_pktmbuf_prefree_seg(). >> Wright now, it is a user responsibility to make sure refcnt==0 before >> pushing >> mbuf back to the pool. >> Not sure why do you consider that wrong? > > I do not consider this

[dpdk-dev] [PATCH 2/8] lib/librte_ether: defind RX/TX lock mode

2016-06-09 Thread Olivier Matz
Hi, On 06/08/2016 09:34 AM, Lu, Wenzhuo wrote: > Hi Stephen, > > >> -Original Message- >> From: Stephen Hemminger [mailto:stephen at networkplumber.org] >> Sent: Wednesday, June 8, 2016 10:16 AM >> To: Lu, Wenzhuo >> Cc: dev at dpdk.org; Tao, Zhe >> Subject: Re: [dpdk-dev] [PATCH 2/8] li

[dpdk-dev] [PATCH] mempool: fix local cache initialization

2016-06-09 Thread Sergio Gonzalez Monroy
Hi Olivier, On 08/06/2016 20:14, Olivier Matz wrote: > Hi Sergio, > > Good catch, thanks. The patch looks ok, just few comments > on the commit log: > > On 06/08/2016 05:10 PM, Sergio Gonzalez Monroy wrote: >> The mempool local cache is not being initialize properly leading to > 'initialize' -> 'i

[dpdk-dev] supported packet types

2016-06-09 Thread Olivier Matz
Hi Konstantin, On 04/29/2016 06:03 PM, Ananyev, Konstantin wrote: >> The following commit introduces a function to list the supported >> packet types of a device: >> >> http://dpdk.org/browse/dpdk/commit/?id=78a38edf66 >> >> I would like to know what does "supported" precisely mean. >> Is it: >>

[dpdk-dev] [PATCH] mempool: fix local cache initialization

2016-06-09 Thread Olivier Matz
Hi Sergio, On 06/09/2016 09:57 AM, Sergio Gonzalez Monroy wrote: > Hi Olivier, > > On 08/06/2016 20:14, Olivier Matz wrote: >> Hi Sergio, >> >> Good catch, thanks. The patch looks ok, just few comments >> on the commit log: >> >> On 06/08/2016 05:10 PM, Sergio Gonzalez Monroy wrote: >>> The mempo

[dpdk-dev] [PATCH] mempool: fix local cache initialization

2016-06-09 Thread Sergio Gonzalez Monroy
On 09/06/2016 09:03, Olivier Matz wrote: > Hi Sergio, > > On 06/09/2016 09:57 AM, Sergio Gonzalez Monroy wrote: >> Hi Olivier, >> >> On 08/06/2016 20:14, Olivier Matz wrote: >>> Hi Sergio, >>> >>> Good catch, thanks. The patch looks ok, just few comments >>> on the commit log: >>> >>> On 06/08/2016

[dpdk-dev] [PATCH v2] mempool: fix local cache initialization

2016-06-09 Thread Sergio Gonzalez Monroy
The mempool local cache was not initialized properly leading to undefined behavior in cases where the allocated memory was used previously and left with data. Fixes: 213af31e0960 ("mempool: reduce structure size if no cache needed") Signed-off-by: Sergio Gonzalez Monroy --- lib/librte_mempool/r

[dpdk-dev] [PATCH v2] mempool: fix local cache initialization

2016-06-09 Thread Olivier Matz
On 06/09/2016 10:19 AM, Sergio Gonzalez Monroy wrote: > The mempool local cache was not initialized properly leading to > undefined behavior in cases where the allocated memory was used > previously and left with data. > > Fixes: 213af31e0960 ("mempool: reduce structure size if no cache needed")

[dpdk-dev] [PATCH v3 0/9] IPSec Enhancements

2016-06-09 Thread Sergio Gonzalez Monroy
Update IPSec sample app with IPv6 and Transport mode support. The series contains some bug fixes to facilitate patch merge. v3: - change ipip_inbound function to reurn void - update some commit message and comments v2: - rebase code - doc improvements - add missing image file Sergio Gonzal

[dpdk-dev] [PATCH v3 1/9] examples/ipsec-secgw: fix esp padding check

2016-06-09 Thread Sergio Gonzalez Monroy
Current code fails to correctly check padding sequence for inbound packets. Padding sequence starts on 1 but it checks for 0. Fixes: d299106e8e31 ("examples/ipsec-secgw: add IPsec sample application") Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/esp.c | 2 +- 1 file changed, 1

[dpdk-dev] [PATCH v3 2/9] examples/ipsec-secgw: fix stack smashing error

2016-06-09 Thread Sergio Gonzalez Monroy
Building the application with -O3 and -fstack-protection (default in Ubuntu) results in the following error: *** stack smashing detected ***: ./build/ipsec-secgw terminated The error is caused by storing an 8B value in a 4B variable. Fixes: d299106e8e31 ("examples/ipsec-secgw: add IPsec sample a

[dpdk-dev] [PATCH v3 3/9] examples/ipsec-secgw: add build option and cleanup

2016-06-09 Thread Sergio Gonzalez Monroy
Add support for building the application with DEBUG=1. This option adds the compiler stack protection flag and enables extra output in the application. Also remove unnecessary VPATH setup. Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/Makefile | 5 +++-- 1 file changed, 3 inser

[dpdk-dev] [PATCH v3 4/9] examples/ipsec-secgw: rework ipsec execution loop

2016-06-09 Thread Sergio Gonzalez Monroy
Rework implementation moving from function pointers approach, where each function implements very specific functionality, to a generic function approach. Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/esp.c | 9 +- examples/ipsec-secgw/esp.h | 9 +- examples/ipsec-secgw/i

[dpdk-dev] [PATCH v3 5/9] examples/ipsec-secgw: fix no sa found case

2016-06-09 Thread Sergio Gonzalez Monroy
The application only ASSERTS that an SA is not NULL (only when debugging is enabled) without properly dealing with the case of not having an SA for the processed packet. Behavior should be such as if no SA is found, drop the packet. Fixes: d299106e8e31 ("examples/ipsec-secgw: add IPsec sample app

[dpdk-dev] [PATCH v3 6/9] examples/ipsec-secgw: consistent config variable names

2016-06-09 Thread Sergio Gonzalez Monroy
Modify the default SP config variables names to be consistent with SA. The resulting naming convention is that variables with suffixes _out/_in are the default for ep0 and the reverse for ep1. Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/sp.c | 14 +++--- 1 file change

[dpdk-dev] [PATCH v3 7/9] examples/ipsec-secgw: ipv6 support

2016-06-09 Thread Sergio Gonzalez Monroy
Support IPSec IPv6 allowing IPv4/IPv6 traffic in IPv4 or IPv6 tunnel. We need separate Routing (LPM) and SP (ACL) tables for IPv4 and IPv6, but a common SA table. Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/Makefile | 5 +- examples/ipsec-secgw/esp.c | 127

[dpdk-dev] [PATCH v3 8/9] examples/ipsec-secgw: transport mode support

2016-06-09 Thread Sergio Gonzalez Monroy
IPSec transport mode support. Signed-off-by: Sergio Gonzalez Monroy --- examples/ipsec-secgw/esp.c | 124 ++- examples/ipsec-secgw/ipsec.h | 1 + examples/ipsec-secgw/rt.c| 32 +++ examples/ipsec-secgw/sa.c| 39 ++ example

[dpdk-dev] [PATCH v3 9/9] doc: update ipsec sample guide

2016-06-09 Thread Sergio Gonzalez Monroy
Signed-off-by: Sergio Gonzalez Monroy --- doc/guides/sample_app_ug/img/ipsec_endpoints.svg | 850 + doc/guides/sample_app_ug/ipsec_secgw.rst | 910 ++- 2 files changed, 1400 insertions(+), 360 deletions(-) create mode 100644 doc/guides/sample_app_u

[dpdk-dev] [PATCH v3 10/10] doc: update xstats documentation

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Remy Horton > Sent: Monday, May 30, 2016 11:48 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v3 10/10] doc: update xstats documentation > > Signed-off-by: Remy Horton Good clear update. Acked-by: John

[dpdk-dev] [PATCH v6 1/8] librte_ether: protect add/remove of rxtx callbacks with spinlocks

2016-06-09 Thread Reshma Pattan
Added spinlocks around add/remove logic of rxtx callbacks to avoid corruption of callback lists in multithreaded context. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 82 +-- 1 file changed, 40 insertions(+), 42 deletions(-) diff --git

[dpdk-dev] [PATCH v6 2/8] librte_ether: add new api rte_eth_add_first_rx_callback

2016-06-09 Thread Reshma Pattan
Added new public api rte_eth_add_first_rx_callback to add given callback as head of list. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 35 ++ lib/librte_ether/rte_ethdev.h | 27 ++ lib/librte_ether/rte_

[dpdk-dev] [PATCH v6 7/8] app/test-pmd: add pdump initialization uninitialization

2016-06-09 Thread Reshma Pattan
Call rte_pdump_init and rte_pdump_uninit for packet capturing initialization and uninitialization. Signed-off-by: Reshma Pattan --- app/test-pmd/testpmd.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index dd6b046..f6089fa 100644 --- a

[dpdk-dev] [PATCH v6 5/8] lib/librte_pdump: add new library for packet capturing support

2016-06-09 Thread Reshma Pattan
Added new library for packet capturing support. Added public api rte_pdump_init, applications should call this as part of their application setup to have packet capturing framework ready. Added public api rte_pdump_uninit to uninitialize the packet capturing framework. Added public apis rte_pdum

[dpdk-dev] [PATCH v6 6/8] app/pdump: add pdump tool for packet capturing

2016-06-09 Thread Reshma Pattan
New tool added for packet capturing on dpdk. This tool supports command line options. This tool runs as secondary process by default. Command line supports various parameters to capture the packets. User should pass on a)port and queue (or) b)pci address and queue (or) c)device name and queue to

[dpdk-dev] [PATCH v6 8/8] doc: update doc for packet capture framework

2016-06-09 Thread Reshma Pattan
Added programmers guide for librte_pdump. Added sample application guide for app/pdump application. Updated release note for packet capture framework changes. Signed-off-by: Reshma Pattan Acked-by: John McNamara --- MAINTAINERS | 3 + doc/guides/prog_guide/index.rs

[dpdk-dev] [PATCH v6 0/8] add packet capture framework

2016-06-09 Thread Reshma Pattan
This patch set include below changes 1)Changes to librte_ether. 2)A new library librte_pdump added for packet capture framework. 3)A new app/pdump tool added for packet capturing. 4)Test pmd changes done to initialize packet capture framework. 5)Documentation update. 1)librte_pdump ==

[dpdk-dev] [PATCH v6 4/8] librte_ether: make rte_eth_dev_get_port_by_name rte_eth_dev_get_name_by_port public

2016-06-09 Thread Reshma Pattan
Converted rte_eth_dev_get_port_by_name to a public API. Converted rte_eth_dev_get_name_by_port to a public API. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 4 ++-- lib/librte_ether/rte_ethdev.h | 29 + lib/librte_ether/rte_ether

[dpdk-dev] [PATCH v6 3/8] librte_ether: add new fields to rte_eth_dev_info struct

2016-06-09 Thread Reshma Pattan
New fields nb_rx_queues and nb_tx_queues are added to rte_eth_dev_info structure. Changes to API rte_eth_dev_info_get() are done to update these new fields to rte_eth_dev_info object. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 2 ++ lib/librte_ether/rte_ethdev.h

[dpdk-dev] [PATCH v2] doc: add known issue with EAL argv

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Jingjing Wu > Sent: Monday, May 23, 2016 3:25 PM > To: david.marchand at 6wind.com > Cc: dev at dpdk.org; Wu, Jingjing ; Yang, Ziye > ; Richardson, Bruce > Subject: [dpdk-dev] [PATCH v2] doc: add known issue wit

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Hunt, David
Hi Shreyansh, On 8/6/2016 2:48 PM, Shreyansh Jain wrote: > Hi David, > > Thanks for explanation. I have some comments inline... > >> -Original Message- >> From: Hunt, David [mailto:david.hunt at intel.com] >> Sent: Tuesday, June 07, 2016 2:56 PM >> To: Shreyansh Jain ; dev at dpdk.org >> C

[dpdk-dev] [PATCH] mk: generate internal library dependencies from DEPDIRS-y automatically

2016-06-09 Thread Thomas Monjalon
> > Up to now dependencies between DPDK internal libraries have been > > untracked at shared library level, requiring applications to know > > about library internal dependencies and often consequently overlinking. > > > > Since the dependencies are already recorded for build ordering in the > > ma

[dpdk-dev] [PATCH] i40e: fix flexible payload selection

2016-06-09 Thread Bruce Richardson
On Thu, Jun 02, 2016 at 03:30:57AM +0800, Zhe Tao wrote: > On Thu, May 12, 2016 at 04:11:40PM +0800, Jingjing Wu wrote: > > When setting up flexible payload selection rules, it is allowed > > that setting value to 63 to disable the rule (NONUSE_FLX_PIT_DEST_OFF). > > However, MK_FLX_PIT macro is al

[dpdk-dev] [PATCH 1/2] mk: prevent overlinking in applications

2016-06-09 Thread Thomas Monjalon
Hi Ferruh, 2016-05-27 17:48, Ferruh Yigit: > Replace --no-as-needed linker flag with --as-needed flag, which will > only link libraries directly called by application. This requires inter > library dependencies resolved correctly. > > Not linking all libraries cause a compile error for lpcap and

[dpdk-dev] [PATCH v2] app/test: reduced duration of red_autotest

2016-06-09 Thread Tomasz Kantecki
These changes don't break the tests on my systems and reduce execution time to ~2[s]. I tried "faking" CPU clock frequency but in some cases it leads to intermittent test fails. Tomasz 'red_autotest' changed to run only functional tests without test #4 which was taking ~53 seconds. 'red_autotest'

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Jerin Jacob
On Thu, Jun 09, 2016 at 10:39:46AM +0100, Hunt, David wrote: > Hi Shreyansh, > > On 8/6/2016 2:48 PM, Shreyansh Jain wrote: > > Hi David, > > > > Thanks for explanation. I have some comments inline... > > > > > -Original Message- > > > From: Hunt, David [mailto:david.hunt at intel.com] >

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Hunt, David
Hi Olivier, On 8/6/2016 1:13 PM, Olivier Matz wrote: > Hi David, > > Please find some comments below. > > On 06/03/2016 04:58 PM, David Hunt wrote: > >> --- a/lib/librte_mempool/rte_mempool.h >> +++ b/lib/librte_mempool/rte_mempool.h >> +/** >> + * Prototype for implementation specific data provis

[dpdk-dev] [PATCH] examples/ip_pipeline: fix build error for gcc 4.8

2016-06-09 Thread Daniel Mrzyglod
This patch fixes a maybe-uninitialized warning when compiling DPDK with GCC 4.8 examples/ip_pipeline/pipeline/pipeline_common_fe.c: In function 'app_pipeline_track_pktq_out_to_link': examples/ip_pipeline/pipeline/pipeline_common_fe.c:66:31: error: 'reader' may be used uninitialized in this functi

[dpdk-dev] supported packet types

2016-06-09 Thread Adrien Mazarguil
On Thu, Jun 09, 2016 at 09:57:28AM +0200, Olivier Matz wrote: > Hi Konstantin, > > On 04/29/2016 06:03 PM, Ananyev, Konstantin wrote: > >> The following commit introduces a function to list the supported > >> packet types of a device: > >> > >> http://dpdk.org/browse/dpdk/commit/?id=78a38edf66 >

[dpdk-dev] [PATCH v3 00/20] DPDK PMD for ThunderX NIC device

2016-06-09 Thread Jerin Jacob
On Wed, Jun 08, 2016 at 04:08:37PM +0100, Bruce Richardson wrote: > On Wed, Jun 08, 2016 at 03:42:14PM +0200, Thomas Monjalon wrote: > > 2016-06-08 18:13, Jerin Jacob: > > > On Wed, Jun 08, 2016 at 01:30:28PM +0100, Ferruh Yigit wrote: > > > > Hi Jerin, > > > > > > > > In patch subject, as tag, ot

[dpdk-dev] [PATCH] examples/ip_pipeline: fix build error for gcc 4.8

2016-06-09 Thread Dumitrescu, Cristian
> -Original Message- > From: Mrzyglod, DanielX T > Sent: Thursday, June 9, 2016 12:39 PM > To: Singh, Jasvinder ; Dumitrescu, Cristian > > Cc: dev at dpdk.org; Mrzyglod, DanielX T > Subject: [PATCH] examples/ip_pipeline: fix build error for gcc 4.8 > > This patch fixes a maybe-uninitia

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Hunt, David
On 9/6/2016 11:31 AM, Jerin Jacob wrote: > On Thu, Jun 09, 2016 at 10:39:46AM +0100, Hunt, David wrote: >> Hi Shreyansh, >> >> On 8/6/2016 2:48 PM, Shreyansh Jain wrote: >>> Hi David, >>> >>> Thanks for explanation. I have some comments inline... >>> -Original Message- From: Hun

[dpdk-dev] [PATCH v3 9/9] doc: update ipsec sample guide

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: Gonzalez Monroy, Sergio > Sent: Thursday, June 9, 2016 9:43 AM > To: dev at dpdk.org > Cc: De Lara Guarch, Pablo ; Mcnamara, John > > Subject: [PATCH v3 9/9] doc: update ipsec sample guide > > Signed-off-by: Sergio Gonzalez Monroy > > ... > > Configurations

[dpdk-dev] [PATCH] app/test: fix array overflow warning with gcc 4.5

2016-06-09 Thread Tomasz Kulasek
DPDK/app/test/test_cryptodev.c: In function ?create_snow3g_cipher_operation _oop.clone.15?: DPDK/x86_64-native-linuxapp-gcc/include/rte_memcpy.h:796:14 error: array subscript is above array bounds. In test_cryptodev.c: 2429rte_memcpy(sym_op->cipher.iv.data, iv, iv_len); When iv_len is declare

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Shreyansh Jain
Hi David, > -Original Message- > From: Hunt, David [mailto:david.hunt at intel.com] > Sent: Thursday, June 09, 2016 3:10 PM > To: Shreyansh Jain ; dev at dpdk.org > Cc: olivier.matz at 6wind.com; viktorin at rehivetech.com; > jerin.jacob at caviumnetworks.com > Subject: Re: [dpdk-dev] [PAT

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Shreyansh Jain
Hi Jerin, > -Original Message- > From: Jerin Jacob [mailto:jerin.jacob at caviumnetworks.com] > Sent: Thursday, June 09, 2016 4:02 PM > To: Hunt, David > Cc: Shreyansh Jain ; dev at dpdk.org; > olivier.matz at 6wind.com; viktorin at rehivetech.com > Subject: Re: [dpdk-dev] [PATCH v8 1/3]

[dpdk-dev] [PATCH v3 0/9] IPSec Enhancements

2016-06-09 Thread De Lara Guarch, Pablo
> -Original Message- > From: Gonzalez Monroy, Sergio > Sent: Thursday, June 09, 2016 9:43 AM > To: dev at dpdk.org > Cc: De Lara Guarch, Pablo; Mcnamara, John > Subject: [PATCH v3 0/9] IPSec Enhancements > > Update IPSec sample app with IPv6 and Transport mode support. > > The series co

[dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool capacity

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alex Wang > Sent: Saturday, May 21, 2016 8:59 AM > To: dev at dpdk.org > Cc: Yigit, Ferruh ; Alex Wang > > Subject: [dpdk-dev] [PATCH 2/2 v3] kni: add documentation for the mempool > capacity > > From: Alex Wan

[dpdk-dev] [PATCH 2/8] doc: update build instructions for libsso_snow3g

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pablo de Lara > Sent: Friday, May 6, 2016 3:04 PM > To: dev at dpdk.org > Cc: Doherty, Declan ; De Lara Guarch, Pablo > > Subject: [dpdk-dev] [PATCH 2/8] doc: update build instructions for > libsso_snow3g > >

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Jerin Jacob
On Thu, Jun 09, 2016 at 11:49:44AM +, Shreyansh Jain wrote: > Hi Jerin, Hi Shreyansh, > > > > Yes, this would simplify somewhat the creation of a pktmbuf pool, in that > > it > > > replaces > > > the rte_mempool_set_ops_byname with a flag bit. However, I'm not sure we > > > want > > > to int

[dpdk-dev] [PATCH] doc: virtio pmd versions

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zhihong Wang > Sent: Thursday, April 21, 2016 4:55 AM > To: dev at dpdk.org > Cc: Wang, Zhihong > Subject: [dpdk-dev] [PATCH] doc: virtio pmd versions > > This patch explains all the versions of current virtio

[dpdk-dev] [PATCH] doc: virtio pmd versions

2016-06-09 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Mcnamara, John > > > -Original Message- > > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zhihong Wang > > + > > +Virtio PMD Versions > > +--- > > + > > +Virtio driver has 3

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Hunt, David
On 9/6/2016 12:41 PM, Shreyansh Jain wrote: > Hi David, > >> -Original Message- >> From: Hunt, David [mailto:david.hunt at intel.com] >> Sent: Thursday, June 09, 2016 3:10 PM >> To: Shreyansh Jain ; dev at dpdk.org >> Cc: olivier.matz at 6wind.com; viktorin at rehivetech.com; >> jerin.jac

[dpdk-dev] [PATCH] doc: virtio pmd versions

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: Richardson, Bruce > Sent: Thursday, June 9, 2016 1:53 PM > To: Mcnamara, John ; Wang, Zhihong > ; dev at dpdk.org > Cc: Wang, Zhihong > Subject: RE: [dpdk-dev] [PATCH] doc: virtio pmd versions > > > -Original Message- > > From: dev [mailto:dev-bounces

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Shreyansh Jain
Hi Jerin, > -Original Message- > From: Jerin Jacob [mailto:jerin.jacob at caviumnetworks.com] > Sent: Thursday, June 09, 2016 6:01 PM > To: Shreyansh Jain > Cc: Hunt, David ; dev at dpdk.org; olivier.matz at > 6wind.com; > viktorin at rehivetech.com > Subject: Re: [dpdk-dev] [PATCH v8 1/

[dpdk-dev] [PATCH 1/2] mk: prevent overlinking in applications

2016-06-09 Thread Ferruh Yigit
On 6/9/2016 11:10 AM, Thomas Monjalon wrote: > Hi Ferruh, > > 2016-05-27 17:48, Ferruh Yigit: >> Replace --no-as-needed linker flag with --as-needed flag, which will >> only link libraries directly called by application. This requires inter >> library dependencies resolved correctly. >> >> Not lin

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Jan Viktorin
On Thu, 9 Jun 2016 10:39:46 +0100 "Hunt, David" wrote: > Hi Shreyansh, > > On 8/6/2016 2:48 PM, Shreyansh Jain wrote: > > Hi David, > > > > Thanks for explanation. I have some comments inline... > > > >> -Original Message- > >> From: Hunt, David [mailto:david.hunt at intel.com] > >> Se

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Hunt, David
On 9/6/2016 1:30 PM, Jerin Jacob wrote: > On Thu, Jun 09, 2016 at 11:49:44AM +, Shreyansh Jain wrote: >> Hi Jerin, > Hi Shreyansh, > Yes, this would simplify somewhat the creation of a pktmbuf pool, in that >>> it replaces the rte_mempool_set_ops_byname with a flag bit. However

[dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements

2016-06-09 Thread Ananyev, Konstantin
Hi Olivier, > -Original Message- > From: Olivier Matz [mailto:olivier.matz at 6wind.com] > Sent: Thursday, June 09, 2016 8:47 AM > To: Ananyev, Konstantin; dev at dpdk.org; Adrien Mazarguil > Subject: Re: [dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements > > Hi Konstantin, >

[dpdk-dev] [PATCH v8 1/3] mempool: support external mempool operations

2016-06-09 Thread Jerin Jacob
On Thu, Jun 09, 2016 at 02:18:57PM +0100, Hunt, David wrote: > > > > > > As I mentioned earlier, My take is not to create the separate API's for > > > > external mempool handlers.In my view, It's same, just that sepreate > > > > mempool handler through function pointers. > > > > > > > > To keep

[dpdk-dev] [PATCH v3 00/20] DPDK PMD for ThunderX NIC device

2016-06-09 Thread Thomas Monjalon
2016-06-09 16:19, Jerin Jacob: > On Wed, Jun 08, 2016 at 04:08:37PM +0100, Bruce Richardson wrote: > > On Wed, Jun 08, 2016 at 03:42:14PM +0200, Thomas Monjalon wrote: > > > 2016-06-08 18:13, Jerin Jacob: > > > > On Wed, Jun 08, 2016 at 01:30:28PM +0100, Ferruh Yigit wrote: > > > > > Hi Jerin, > >

[dpdk-dev] [PATCH] log: deprecate history dump

2016-06-09 Thread Thomas Monjalon
The log history uses rte_mempool. In order to remove the mempool dependency in EAL (and improve the build), this feature is deprecated. The ABI is kept but the behaviour is now voided because it seems this function was not used. The history can be read from syslog. Signed-off-by: Thomas Monjalon

[dpdk-dev] [PATCH v3 00/20] DPDK PMD for ThunderX NIC device

2016-06-09 Thread Bruce Richardson
On Thu, Jun 09, 2016 at 04:02:17PM +0200, Thomas Monjalon wrote: > 2016-06-09 16:19, Jerin Jacob: > > On Wed, Jun 08, 2016 at 04:08:37PM +0100, Bruce Richardson wrote: > > > On Wed, Jun 08, 2016 at 03:42:14PM +0200, Thomas Monjalon wrote: > > > > 2016-06-08 18:13, Jerin Jacob: > > > > > On Wed, Jun

[dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements

2016-06-09 Thread Bruce Richardson
On Thu, Jun 09, 2016 at 01:21:18PM +, Ananyev, Konstantin wrote: > Hi Olivier, > > > -Original Message- > > From: Olivier Matz [mailto:olivier.matz at 6wind.com] > > Sent: Thursday, June 09, 2016 8:47 AM > > To: Ananyev, Konstantin; dev at dpdk.org; Adrien Mazarguil > > Subject: Re: [d

[dpdk-dev] [PATCH v4] i40e: configure MTU

2016-06-09 Thread Bruce Richardson
On Mon, May 23, 2016 at 01:33:42AM +, Wu, Jingjing wrote: > > > > -Original Message- > > From: Xing, Beilei > > Sent: Friday, May 20, 2016 11:17 PM > > To: Wu, Jingjing > > Cc: dev at dpdk.org; Xing, Beilei > > Subject: [PATCH v4] i40e: configure MTU > > > > This patch enables config

[dpdk-dev] [PATCH] log: deprecate history dump

2016-06-09 Thread David Marchand
Thomas, On Thu, Jun 9, 2016 at 4:09 PM, Thomas Monjalon wrote: > The log history uses rte_mempool. In order to remove the mempool > dependency in EAL (and improve the build), this feature is deprecated. > The ABI is kept but the behaviour is now voided because it seems this > function was not use

[dpdk-dev] [PATCH 2/3] librte_eal: Import FreeBSD sys/tree.h into librte_eal/common

2016-06-09 Thread Nikita Kozlov
On 06/ 9/16 02:58 AM, Stephen Hemminger wrote: > On Thu, 9 Jun 2016 02:53:53 +0200 > Nikita Kozlov wrote: > >> This structure is used inside the rte_lpm6 lib for storing added rules. >> It's imported from FreeBSD-10.3 from /usr/include/sys/tree.h, another >> solution could have been to use on Lin

[dpdk-dev] [PATCH] eal: remove useless includes of mempool and ring

2016-06-09 Thread Thomas Monjalon
The libraries rte_mempool and rte_ring are not used in EAL, except rte_ring for the ivshmem part (CONFIG_RTE_LIBRTE_IVSHMEM). Signed-off-by: Thomas Monjalon --- lib/librte_eal/linuxapp/eal/eal_interrupts.c | 2 -- lib/librte_eal/linuxapp/eal/eal_ivshmem.c| 1 - 2 files changed, 3 deletions(-

[dpdk-dev] [PATCH] log: deprecate history dump

2016-06-09 Thread Thomas Monjalon
2016-06-09 16:45, David Marchand: > On Thu, Jun 9, 2016 at 4:09 PM, Thomas Monjalon > wrote: > > The log history uses rte_mempool. In order to remove the mempool > > dependency in EAL (and improve the build), this feature is deprecated. > > The ABI is kept but the behaviour is now voided because i

[dpdk-dev] [PATCH] log: deprecate history dump

2016-06-09 Thread Christian Ehrhardt
Hi, in I totally like it - thanks Thomas for picking that up. I just wanted to mention that the Makefile still refers to mempool, but David beat me in time and Detail a lot. I'll certainly try to follow and help the bit I can. Christian Ehrhardt Software Engineer, Ubuntu Server Canonical Ltd

[dpdk-dev] [PATCH v2] log: deprecate history dump

2016-06-09 Thread Thomas Monjalon
The log history uses rte_mempool. In order to remove the mempool dependency in EAL (and improve the build), this feature is deprecated. The ABI is kept but the behaviour is now voided because it seems this function was not used. The history can be read from syslog. When enabling the log history, a

[dpdk-dev] [PATCH 2/3] librte_eal: Import FreeBSD sys/tree.h into librte_eal/common

2016-06-09 Thread Thomas Monjalon
2016-06-09 16:54, Nikita Kozlov: > On 06/ 9/16 02:58 AM, Stephen Hemminger wrote: > > Please don't copy a header file which is available already on both BSD and > > Linux. > > > I was quite hesitant on how to handle it. I had the feeling that dpdk > wanted to avoid external dependency so I copied

[dpdk-dev] [PATCH] i40e: unintended sign extension

2016-06-09 Thread Bruce Richardson
On Fri, May 20, 2016 at 03:03:36PM +0200, Slawomir Mrozowicz wrote: > Suspicious implicit sign extension: pf->fdir.match_counter_index > with type unsigned short (16 bits, unsigned) is promoted in > pf->fdir.match_counter_index << 20 to type int (32 bits, signed), > then sign-extended to type unsig

[dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements

2016-06-09 Thread Thomas Monjalon
2016-06-09 13:21, Ananyev, Konstantin: > From: Olivier Matz [mailto:olivier.matz at 6wind.com] > > Today: > > > > /* allowed */ > > m = rte_pktmbuf_alloc(); > > rte_pktmbuf_free(m); > > > > /* not allowed */ > > m = rte_mbuf_raw_alloc(); > > __rte_mbuf_raw_free(m); > > > > /* we sh

[dpdk-dev] [PATCH] doc: fix wrong supported feature table

2016-06-09 Thread Pablo de Lara
Some crypto PMDs that support symmetric crypto were not marked as supported in the supported feature flags table. Fixes: 2373c0661b2f0 ("doc: add cryptodevs guide overview") Signed-off-by: Pablo de Lara --- doc/guides/cryptodevs/overview.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[dpdk-dev] [PATCH v1] i40e: fix olflags for vector RX

2016-06-09 Thread Bruce Richardson
On Fri, Jun 03, 2016 at 07:19:09AM +, Azarewicz, PiotrX T wrote: > Hi, > > > --- a/drivers/net/i40e/i40e_rxtx_vec.c > > +++ b/drivers/net/i40e/i40e_rxtx_vec.c > > @@ -149,7 +149,7 @@ desc_to_olflags_v(__m128i descs[4], struct rte_mbuf > > **rx_pkts) > > > > /* mask everything except rss an

[dpdk-dev] [PATCH] mbuf: remove inconsistent assert statements

2016-06-09 Thread Ananyev, Konstantin
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, June 09, 2016 4:28 PM > To: Ananyev, Konstantin > Cc: dev at dpdk.org; Olivier Matz; Adrien Mazarguil; Zhang, Helin > Subject: Re: [dpdk-dev] [PATCH] mbuf: remove inconsistent assert statem

[dpdk-dev] [PATCH v8 1/3] i40e: support floating VEB config

2016-06-09 Thread Bruce Richardson
On Wed, May 25, 2016 at 01:28:04AM +0800, Zhe Tao wrote: > Add the new floating related argument option in the devarg. > Using this parameter, all the samples can decide whether to use legacy > VEB/VEPA > or floating VEB. > To enable this feature, the user should pass a devargs parameter to the EA

[dpdk-dev] [PATCH v8 2/3] i40e: Add floating VEB support in i40e

2016-06-09 Thread Bruce Richardson
On Wed, May 25, 2016 at 01:28:05AM +0800, Zhe Tao wrote: > This patch add the support for floating VEB in i40e. > All the VFs VSIs can decide whether to connect to the legacy VEB/VEPA or > the floating VEB. When connect to the floating VEB a new floating VEB is > created. Now all the VFs need to co

[dpdk-dev] [PATCH v8 3/3] i40e: add floating VEB extension support

2016-06-09 Thread Bruce Richardson
On Wed, May 25, 2016 at 01:28:06AM +0800, Zhe Tao wrote: > To enable this feature, the user should pass a devargs parameter to the EAL > like "-w 84:00.0,enable_floating=1", and the application will make sure the > PMD > will use the floating VEB feature for all the VFs created by this PF device.

[dpdk-dev] [PATCH v6 5/8] lib/librte_pdump: add new library for packet capturing support

2016-06-09 Thread Aaron Conole
Reshma Pattan writes: > Added new library for packet capturing support. > > Added public api rte_pdump_init, applications should call > this as part of their application setup to have packet > capturing framework ready. > > Added public api rte_pdump_uninit to uninitialize the packet > capturing

[dpdk-dev] [PATCH] af_packet: add byte counters

2016-06-09 Thread Bruce Richardson
On Thu, May 26, 2016 at 11:01:57AM -0400, John W. Linville wrote: > On Thu, May 26, 2016 at 03:47:59PM +0100, Ferruh Yigit wrote: > > On 5/25/2016 10:03 PM, Rich Lane wrote: > > > Signed-off-by: Rich Lane > > > > Reviewed-by: Ferruh Yigit > > Acked-by: John W. Linville > Applied to dpdk-next-

[dpdk-dev] [PATCH v6 5/8] lib/librte_pdump: add new library for packet capturing support

2016-06-09 Thread Ananyev, Konstantin
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Aaron Conole > Sent: Thursday, June 09, 2016 4:59 PM > To: Pattan, Reshma > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v6 5/8] lib/librte_pdump: add new library for > packet capturing support > > Re

[dpdk-dev] [PATCH v2] enic: fix seg fault when releasing queues

2016-06-09 Thread Bruce Richardson
On Wed, May 25, 2016 at 07:45:00PM -0700, John Daley wrote: > If device configuration failed due to a lack of resources, like if > there were more queues requested than available, the queue release > function is called with NULL pointers which were being dereferenced. > > Skip releasing queues if

[dpdk-dev] [PATCH v7 4/8] librte_ether: make rte_eth_dev_get_port_by_name rte_eth_dev_get_name_by_port public

2016-06-09 Thread Reshma Pattan
Converted rte_eth_dev_get_port_by_name to a public API. Converted rte_eth_dev_get_name_by_port to a public API. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 4 ++-- lib/librte_ether/rte_ethdev.h | 29 + lib/librte_ether/rte_ether

[dpdk-dev] [PATCH v7 1/8] librte_ether: protect add/remove of rxtx callbacks with spinlocks

2016-06-09 Thread Reshma Pattan
Added spinlocks around add/remove logic of rxtx callbacks to avoid corruption of callback lists in multithreaded context. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 82 +-- 1 file changed, 40 insertions(+), 42 deletions(-) diff --git

[dpdk-dev] [PATCH v7 2/8] librte_ether: add new api rte_eth_add_first_rx_callback

2016-06-09 Thread Reshma Pattan
Added new public api rte_eth_add_first_rx_callback to add given callback as head of list. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 35 ++ lib/librte_ether/rte_ethdev.h | 28 +++ lib/librte_ether/rte

[dpdk-dev] [PATCH v7 0/8] add packet capture framework

2016-06-09 Thread Reshma Pattan
This patch set include below changes 1)Changes to librte_ether. 2)A new library librte_pdump added for packet capture framework. 3)A new app/pdump tool added for packet capturing. 4)Test pmd changes done to initialize packet capture framework. 5)Documentation update. 1)librte_pdump ==

[dpdk-dev] [PATCH v7 3/8] librte_ether: add new fields to rte_eth_dev_info struct

2016-06-09 Thread Reshma Pattan
New fields nb_rx_queues and nb_tx_queues are added to rte_eth_dev_info structure. Changes to API rte_eth_dev_info_get() are done to update these new fields to rte_eth_dev_info object. Signed-off-by: Reshma Pattan --- lib/librte_ether/rte_ethdev.c | 2 ++ lib/librte_ether/rte_ethdev.h

[dpdk-dev] [PATCH v7 7/8] app/test-pmd: add pdump initialization uninitialization

2016-06-09 Thread Reshma Pattan
Call rte_pdump_init and rte_pdump_uninit for packet capturing initialization and uninitialization. Signed-off-by: Reshma Pattan --- app/test-pmd/testpmd.c | 6 ++ 1 file changed, 6 insertions(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index dd6b046..f6089fa 100644 --- a

[dpdk-dev] [PATCH v7 6/8] app/pdump: add pdump tool for packet capturing

2016-06-09 Thread Reshma Pattan
New tool added for packet capturing on dpdk. This tool supports command line options. This tool runs as secondary process by default. Command line supports various parameters to capture the packets. User should pass on a)port and queue (or) b)pci address and queue (or) c)device name and queue to

[dpdk-dev] [PATCH v7 8/8] doc: update doc for packet capture framework

2016-06-09 Thread Reshma Pattan
Added programmers guide for librte_pdump. Added sample application guide for app/pdump application. Updated release note for packet capture framework changes. Signed-off-by: Reshma Pattan Acked-by: John McNamara --- MAINTAINERS | 3 + doc/guides/prog_guide/index.rs

[dpdk-dev] [PATCH v7 5/8] lib/librte_pdump: add new library for packet capturing support

2016-06-09 Thread Reshma Pattan
Added new library for packet capturing support. Added public api rte_pdump_init, applications should call this as part of their application setup to have packet capturing framework ready. Added public api rte_pdump_uninit to uninitialize the packet capturing framework. Added public apis rte_pdum

[dpdk-dev] [PATCH] doc: fix wrong supported feature table

2016-06-09 Thread Jain, Deepak K
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Pablo de Lara > Sent: Thursday, June 9, 2016 4:45 PM > To: dev at dpdk.org > Cc: Mcnamara, John ; Doherty, Declan > ; De Lara Guarch, Pablo > > Subject: [dpdk-dev] [PATCH] doc: fix wrong supported feature tabl

[dpdk-dev] [PATCH] doc: fix wrong supported feature table

2016-06-09 Thread Mcnamara, John
> -Original Message- > From: De Lara Guarch, Pablo > Sent: Thursday, June 9, 2016 4:45 PM > To: dev at dpdk.org > Cc: Mcnamara, John ; Doherty, Declan > ; De Lara Guarch, Pablo > > Subject: [PATCH] doc: fix wrong supported feature table > > Some crypto PMDs that support symmetric crypto w

  1   2   >