[dpdk-dev] [PATCHv3] librte_acl make it build/work for 'default' target

2014-08-28 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Ananyev, Konstantin > Sent: Wednesday, August 27, 2014 8:19 PM > To: Neil Horman > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCHv3] librte_acl make it build/work for 'default' > target > > > > > -Or

[dpdk-dev] next releases

2014-08-28 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, August 28, 2014 10:06 AM > To: Richardson, Bruce > Cc: Cyril Chemparathy; dev at dpdk.org > Subject: Re: [dpdk-dev] next releases > > 2014-08-28 08:41, Richa

[dpdk-dev] [PATCH] replaced O(n^2) sort in sort_by_physaddr() with qsort() from standard library

2014-12-15 Thread Richardson, Bruce
Interestingly, in 64-bit mode the default size of operands on IA is still 32-bit. Instructions often need to have the REX prefix on them to actually use 64-bit data. The REX prefix is explained in section 2.2.1 of the "Intel? 64 and IA-32 Architectures Software Developer?s Manual", Volume 2 Reg

[dpdk-dev] checking packet drop at NIC

2014-02-07 Thread Richardson, Bruce
The Intel DPDK does not at present support interrupts for dropped packets. Only support for link status change interrupts are supported at this time, but since the basics are there, it is possible with a bit of work to add handling for other interrupts if so needed. Regards, /Bruce > -Orig

[dpdk-dev] NUMA CPU Sockets and DPDK

2014-02-12 Thread Richardson, Bruce
> > What has been your experience of using DPDK based app's in NUMA mode > with multiple sockets where some cores are present on one socket and > other cores on some other socket. > > I am migrating my application from one intel machine with 8 cores, all in > one socket to a 32 core machine where

[dpdk-dev] Is Flow Director supported on the x540 chipset?

2014-02-13 Thread Richardson, Bruce
Hi, can you please give a few more details about your setup? What version of the Intel DPDK are you using? I tried using the command you give below on my system with 82599-based NICs and testpmd starts up without any issues. Here's the (clipped for brevity) output that I get: $ sudo ./testpmd

[dpdk-dev] Question on DPDK multi-process support

2014-02-17 Thread Richardson, Bruce
> Hi, > I have some doubts on the DPDK multi-process support: > > 1) According to the Programmers Guide (pag. 109 - 20.3 Multi-process > Limitations), one of the multi-process limitations is: > > "All Intel(r) DPDK processes running as a single application and using shared > memory must have dist

[dpdk-dev] Question on DPDK multi-process support

2014-02-18 Thread Richardson, Bruce
If you disable mempool caches, you may be able to run more processes than you have cores, but other issues with duplicate core id's might arise, and your application performance will suffer as the memory pools will be very significantly slower. However, there is no requirement that the lcore_id

[dpdk-dev] l2fwd/l3fwd performance drop of about 25% ?

2014-02-27 Thread Richardson, Bruce
> Hi all, > > I have a quick question regarding the performance of DPDK l2fwd (Same > problem with l3fwd). I am seeing that when we start multiple ports (e.g., > 12 ports), for 64 byte packets, the RX rate is only at around 11 Mpps per > port, instead of 14.88 Mpps which is the line rate (with pre

[dpdk-dev] [PATCH 01/11] kvargs: add a new library to parse key/value arguments

2014-01-29 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 01/11] kvargs: add a new library to parse > key/value arguments > > Copy the code from rte_eth_pcap_arg

[dpdk-dev] [PATCH 02/11] kvargs: use the new library in pmd_pcap

2014-01-29 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 02/11] kvargs: use the new library in pmd_pcap > > The rte_kvargs library is a reworked copy of rte_eth_p

[dpdk-dev] [PATCH 03/11] kvargs: remove driver name in arguments

2014-01-29 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 03/11] kvargs: remove driver name in > arguments > > Now that rte_kvargs is a generic library, there is n

[dpdk-dev] [PATCH 04/11] kvargs: remove useless size field

2014-01-29 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 04/11] kvargs: remove useless size field > > This value was not very useful as the size of the table is f

[dpdk-dev] [PATCH 06/11] kvargs: simpler parsing and allow duplicated keys

2014-01-29 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 06/11] kvargs: simpler parsing and allow > duplicated keys > > Remove the rte_kvargs_add_pair() function

[dpdk-dev] [PATCH 05/11] kvargs: rework API to fix memory leak

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 05/11] kvargs: rework API to fix memory leak > > Before the patch, a call to rte_kvargs_tokenize() result

[dpdk-dev] [PATCH 06/11] kvargs: simpler parsing and allow duplicated keys

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 06/11] kvargs: simpler parsing and allow > duplicated keys > > Remove the rte_kvargs_add_pair() functio

[dpdk-dev] [PATCH 07/11] kvargs: be strict when matching a key

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 07/11] kvargs: be strict when matching a key > > When we match a key in is_valid_key() and rte_kvargs_pro

[dpdk-dev] [PATCH 08/11] kvargs: add const attribute in handler parameters

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 08/11] kvargs: add const attribute in handler > parameters > > The "value" argument is read-only and shou

[dpdk-dev] [PATCH 09/11] kvargs: add the key in handler pameters

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 09/11] kvargs: add the key in handler pameters > > This argument can be useful when rte_kvargs_process(

[dpdk-dev] [PATCH 10/11] kvargs: make the NULL key to match all entries

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 10/11] kvargs: make the NULL key to match all > entries > > In rte_kvargs_process() and rte_kvargs_coun

[dpdk-dev] [PATCH 11/11] kvargs: add test case in app/test

2014-01-30 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Tuesday, January 28, 2014 4:07 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 11/11] kvargs: add test case in app/test > > Add a file app/test/test_kvargs.c that checks the rte_kvargs

[dpdk-dev] [PATCH 0/7] build fixes

2014-07-02 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Wednesday, July 02, 2014 8:03 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 0/7] build fixes > > When enabling pcap PMD or debug options, there are many compiler errors. > There i

[dpdk-dev] Question on huge pages and running DPDK apps inside containers

2014-07-03 Thread Richardson, Bruce
Can you try deleting the hugepage files on the host before trying to run the app in a container? > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Anjali Kulkarni > Sent: Thursday, July 03, 2014 7:41 AM > To: dev at dpdk.org > Subject: [dpdk-dev] Question on h

[dpdk-dev] Making space in mbuf data-structure

2014-07-03 Thread Richardson, Bruce
Hi all, At this stage it's been well recognised that we need to make more space in the mbuf data structure for new fields. We in Intel have had some discussion on this and this email is to outline what our current thinking and approach on this issue is, and look for additional suggestions and f

[dpdk-dev] DPDK Performance issue with l2fwd

2014-07-10 Thread Richardson, Bruce
Hi, Have you tried running a test with 16 ports using any other applications, for example testpmd? Regards, /Bruce > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zachary.Jen at cas- > well.com > Sent: Thursday, July 10, 2014 2:29 AM > To: dev at dpdk.org

[dpdk-dev] [PATCH] nic_uio: add device ids for i40e devices

2014-07-11 Thread Richardson, Bruce
The FreeBSD nic_uio driver was missing the #defines to include the device ids for devices using the i40e driver. This change adds in the missing defines. Signed-off-by: Bruce Richardson --- lib/librte_eal/bsdapp/nic_uio/nic_uio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_e

[dpdk-dev] DPDK Performance issue with l2fwd

2014-07-11 Thread Richardson, Bruce
> -Original Message- > From: Zachary.Jen at cas-well.com [mailto:Zachary.Jen at cas-well.com] > Sent: Friday, July 11, 2014 4:05 AM > To: dev at dpdk.org > Cc: Richardson, Bruce; Alan.Yu at cas-well.com > Subject: Re: [dpdk-dev] DPDK Performance issue with l

[dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET-based virtual devices

2014-07-11 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of John W. Linville > Sent: Friday, July 11, 2014 7:49 AM > To: Stephen Hemminger > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET- > based virtual devices > > On Fri

[dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET-based virtual devices

2014-07-11 Thread Richardson, Bruce
> -Original Message- > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Friday, July 11, 2014 8:16 AM > To: Richardson, Bruce > Cc: John W. Linville; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET- >

[dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET-based virtual devices

2014-07-11 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Friday, July 11, 2014 9:48 AM > To: John W. Linville > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] librte_pmd_packet: add PMD for AF_PACKET- > based virtual devices > > 2014-07-

[dpdk-dev] Making space in mbuf data-structure

2014-07-15 Thread Richardson, Bruce
> -Original Message- > From: Ananyev, Konstantin > Sent: Tuesday, July 15, 2014 2:31 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: RE: Making space in mbuf data-structure > > Hi Bruce, > > > -Original Message- > > From: dev [mailto:d

[dpdk-dev] Intro to DPDK talk at OSCON

2014-07-16 Thread Richardson, Bruce
Hi all, Just to inform anyone who may be interested: but there will be an "Introduction to DPDK" talk given by yours truly at OSCON in Portland next week: http://www.oscon.com/oscon2014/public/schedule/detail/37678 All attendees welcome, and if any other DPDK developer folks are at the confere

[dpdk-dev] [PATCH 3/6] mk: Ensure correct detection of SSE4.2 on FreeBSD

2014-07-17 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, July 17, 2014 3:26 AM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 3/6] mk: Ensure correct detection of SSE4.2 on > FreeBSD > &

[dpdk-dev] [PATCH 5/6] mk: add toolchain for clang and linuxapp target

2014-07-17 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Thursday, July 17, 2014 3:23 AM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 5/6] mk: add toolchain for clang and linuxapp > target > &

[dpdk-dev] Running independent processes on the same machine

2014-07-20 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Kai Zhang > Sent: Sunday, July 20, 2014 11:04 AM > To: dev at dpdk.org > Subject: [dpdk-dev] Running independent processes on the same machine > > Hello, > > I have been trying to measure the round trip latency

[dpdk-dev] [PATCH 1/4] l3fwd: some functions are unused in l3fwd-acl

2014-07-21 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Matthew Hall > Sent: Sunday, July 20, 2014 8:48 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 1/4] l3fwd: some functions are unused in l3fwd-acl > > Signed-off-by: Matthew Hall > --- > examples/l3fwd/M

[dpdk-dev] free a memzone

2014-07-23 Thread Richardson, Bruce
Rather than freeing the previously allocated memzone, could you not just re-initialize the mempool using something like rte_mempool_xmem_create? > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Mahdi Dashtbozorgi > Sent: Wednesday, July 23, 2014 2:05 AM > To:

[dpdk-dev] [PATCH 0/2] introduce dev_ops to get extended statistics of a device

2014-07-23 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Wednesday, July 23, 2014 5:29 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH 0/2] introduce dev_ops to get extended statistics > of > a device > > The generic statistics structure is

[dpdk-dev] How to set RTE_MACHINE on DPDK 1.7.0 correctly?

2014-07-23 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Suryanathan P > Sent: Wednesday, July 23, 2014 10:28 AM > To: dev at dpdk.org > Subject: [dpdk-dev] How to set RTE_MACHINE on DPDK 1.7.0 correctly? > > Hi, > > I am trying to compile the test-pmd app on an Inte

[dpdk-dev] l3fwd fails : Cause: Unable to create the l3fwd LPM table on socket 0

2014-06-02 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Niraj Sharma > (nirajsha) > Sent: Friday, May 30, 2014 7:59 PM > To: dev at dpdk.org > Subject: [dpdk-dev] l3fwd fails : Cause: Unable to create the l3fwd LPM table > on > socket 0 > > > EAL: Setting up

[dpdk-dev] [PATCH v2 2/5] distributor: new packet distributor library

2014-06-02 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Thursday, May 29, 2014 6:48 AM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/5] distributor: new packet distributor > library > > > +

[dpdk-dev] [PATCH v2 2/5] distributor: new packet distributor library

2014-06-03 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Tuesday, June 03, 2014 4:01 AM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 2/5] distributor: new packet distributor > library > > On Mon,

[dpdk-dev] [RFC] librte_pmd_packet: add PMD for AF_PACKET-based virtual devices

2014-06-06 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of John W. Linville > Sent: Friday, June 06, 2014 12:57 PM > To: Chris Wright > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [RFC] librte_pmd_packet: add PMD for AF_PACKET- > based virtual devices > > On Fri, Ju

[dpdk-dev] [PATCH v3] mk: allow updates to build config on make install

2014-06-10 Thread Richardson, Bruce
Yes, good point. I'll try and redraft a v3 of the patch (thanks Thomas for doing a V2), with that in it. I also think if we keep everything in the build dir we should not the rm afterwards. [In my previous tests when doing V1 patch, I found that deleting the directory each time seemed to slow th

[dpdk-dev] [PATCH v4] mk: allow updates to build config on make install

2014-06-10 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Tuesday, June 10, 2014 9:38 AM > To: dev at dpdk.org > Cc: Richardson, Bruce > Subject: [PATCH v4] mk: allow updates to build config on make install > > From: Bruce Richa

[dpdk-dev] using hash table in a MP environment

2014-06-11 Thread Richardson, Bruce
The trouble is: a) how do we guarantee that the function in question is present in the secondary process at all? It could be only referenced by name in the primary process and omitted by the linker in the secondary as unused, for instance. b) how do we find out the address of the function in the

[dpdk-dev] [PATCH] fix trailing whitespace.

2014-06-11 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, June 11, 2014 3:04 AM > To: Richardson, Bruce > Cc: dev at dpdk.org; Neil Horman > Subject: Re: [dpdk-dev] [PATCH] fix trailing whitespace. > > > > This comm

[dpdk-dev] [PATCH] Add an API to query enabled core index

2014-06-11 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Wednesday, June 11, 2014 2:51 PM > To: Lu, Patrick > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Add an API to query enabled core index > > Hi, > > 2014-06-11 13:45, Patrick

[dpdk-dev] [PATCH v2 0/2] 10G PMD: vectorized RX and TX functions

2014-06-11 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, June 11, 2014 3:19 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 0/2] 10G PMD: vectorized RX and TX > functions >

[dpdk-dev] [PATCH] Add an API to query enabled core index

2014-06-11 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, June 11, 2014 3:50 PM > To: Richardson, Bruce > Cc: Lu, Patrick; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Add an API to query enabled core index > > 2014

[dpdk-dev] [PATCH] Add an API to query enabled core index

2014-06-12 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Thursday, June 12, 2014 1:20 AM > To: Richardson, Bruce; Thomas Monjalon; Lu, Patrick > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Add an API to query enabled core index >

[dpdk-dev] l2fwd application - packets not getting forwarded

2014-06-13 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Raj Ravi > Sent: Thursday, June 12, 2014 6:35 PM > To: dev at dpdk.org > Subject: Re: [dpdk-dev] l2fwd application - packets not getting forwarded > > Is there any requirement to modify l2fwd appliucation with u

[dpdk-dev] [PATCH] Add an API to query enabled core index

2014-06-13 Thread Richardson, Bruce
> -Original Message- > From: Lu, Patrick > Sent: Friday, June 13, 2014 9:58 AM > To: Richardson, Bruce > Cc: Olivier MATZ; Thomas Monjalon; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Add an API to query enabled core index > > On Thu, Jun 12, 2014 at 08:5

[dpdk-dev] [PATCH] igb_uio: cap max VFs at 7 to reserve one for PF

2014-06-13 Thread Richardson, Bruce
> -Original Message- > From: Chris Wright [mailto:chrisw at redhat.com] > Sent: Friday, June 13, 2014 10:52 AM > To: Richardson, Bruce; Stephen Hemminger > Cc: Thomas Monjalon; dev at dpdk.org > Subject: [PATCH] igb_uio: cap max VFs at 7 to reserve one for PF > >

[dpdk-dev] [PATCH] igb_uio: cap max VFs at 7 to reserve one for PF

2014-06-13 Thread Richardson, Bruce
> -Original Message- > From: Chris Wright [mailto:chrisw at redhat.com] > Sent: Friday, June 13, 2014 11:14 AM > To: Richardson, Bruce > Cc: Chris Wright; Stephen Hemminger; Thomas Monjalon; dev at dpdk.org > Subject: Re: [PATCH] igb_uio: cap max VFs at 7 to

[dpdk-dev] mmap() hint address

2014-06-13 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Gooch, Stephen > Sent: Friday, June 13, 2014 2:03 PM > To: dev at dpdk.org > Subject: [dpdk-dev] mmap() hint address > > Hello, > > I have seen a case where a secondary DPDK process tries to map uio resource in

[dpdk-dev] [PATCHv3 0/5] ACL library

2014-06-14 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Thomas Monjalon > Sent: Friday, June 13, 2014 4:38 PM > To: Ananyev, Konstantin > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCHv3 0/5] ACL library > > 2014-06-13 12:02, Ananyev, Konstantin: > > 2014-06-13

[dpdk-dev] [PATCH v2 02/19] drivers: create drivers and drivers/net directory

2015-05-20 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, May 20, 2015 4:05 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 02/19] drivers: create drivers and > drivers/net directory

[dpdk-dev] [PATCH v2 06/19] enic: move enic PMD to drivers/net directory

2015-05-20 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, May 20, 2015 4:56 PM > To: Richardson, Bruce > Cc: dev at dpdk.org; Sujith Sankar > Subject: Re: [dpdk-dev] [PATCH v2 06/19] enic: move enic PMD to > drivers/net d

[dpdk-dev] [RFC PATCHv2 0/2] pktdev as wrapper type

2015-05-21 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Neil Horman > Sent: Wednesday, May 20, 2015 7:47 PM > To: Marc Sune > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [RFC PATCHv2 0/2] pktdev as wrapper type > > On Wed, May 20, 2015 at 07:01:02PM +0200, Marc S

Re: [dpdk-dev] [PATCH] examples: fix linking against specific drivers

2020-11-02 Thread Richardson, Bruce
> -Original Message- > From: David Marchand > Sent: Friday, October 30, 2020 1:36 PM > To: Richardson, Bruce > Cc: dev ; Thomas Monjalon > Subject: Re: [dpdk-dev] [PATCH] examples: fix linking against specific > drivers > > On Tue, Oct 27, 2020 at 6:20 P

[dpdk-dev] Are there considerations about resource recycling by the process, not by the OS?

2014-09-05 Thread Richardson, Bruce
Can you perhaps send on the log and the traceback from the panic call. From the error message we may be able to tell you why your process is failing. /Bruce > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Zhangkun (K) > Sent: Friday, September 05, 2014 4:40

[dpdk-dev] [PATCH v2 6/6] mbuf: flatten struct vlan_macip into mbuf struct

2014-09-07 Thread Richardson, Bruce
> -Original Message- > From: De Lara Guarch, Pablo > Sent: Friday, September 05, 2014 5:21 PM > To: Richardson, Bruce; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 6/6] mbuf: flatten struct vlan_macip into > mbuf struct > > > > > -Or

[dpdk-dev] Question about ASLR

2014-09-07 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Matt Laswell > Sent: Friday, September 05, 2014 7:57 PM > To: dev at dpdk.org > Subject: [dpdk-dev] Question about ASLR > > Hey Folks, > > A colleague noticed warnings in section 23.3 of the programmer's guide

[dpdk-dev] [PATCH v2 3/6] mbuf: remove rte_ctrlmbuf

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Monday, September 08, 2014 9:22 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: Re: [PATCH v2 3/6] mbuf: remove rte_ctrlmbuf > > Hi Bruce, > > On 08/28/2014 05:42

[dpdk-dev] [PATCH 04/13] mbuf: expand ol_flags field to 64-bits

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Monday, September 08, 2014 11:26 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 04/13] mbuf: expand ol_flags field to 64-bits > > Hi Bruce, > > On

[dpdk-dev] [PATCH 07/13] mbuf: use macros only to access the mbuf metadata

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Monday, September 08, 2014 1:06 PM > To: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 07/13] mbuf: use macros only to access the > mbuf metadata > > Hi Bruc

[dpdk-dev] [PATCH 0/6] Mbuf structure Rework, part 1

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Monday, September 08, 2014 1:33 PM > To: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/6] Mbuf structure Rework, part 1 > > Hi Bruce, > > On

[dpdk-dev] [PATCH 03/13] mbuf: add packet_type field

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: Olivier MATZ [mailto:olivier.matz at 6wind.com] > Sent: Tuesday, September 09, 2014 9:03 AM > To: Zhang, Helin; Yerden Zhumabekov; Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 03/13] mbuf: add packet_type field > >

[dpdk-dev] Defaults for rte_hash

2014-09-09 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Matthew Hall > Sent: Tuesday, September 09, 2014 11:32 AM > To: dev at dpdk.org > Subject: [dpdk-dev] Defaults for rte_hash > > Hello, > > I was looking at the code which inits rte_hash objects in examples/l3fw

[dpdk-dev] Testing vmdq sample application

2014-09-11 Thread Richardson, Bruce
Also check that the mac addresses are configured correctly on the packets being sent. In vmdq_dcb mode, the nic doesn't act in promiscuous mode picking up all packet irrespective of MAC address, so the destination mac must match that of the NIC port. /Bruce > -Original Message- > From:

[dpdk-dev] l2fwd does not send packets

2014-09-11 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Xin Li > Sent: Wednesday, September 10, 2014 10:19 PM > To: dev > Subject: [dpdk-dev] l2fwd does not send packets > > Hi, > > The l2fwd sample application in my environment does not send packets > through the T

[dpdk-dev] dpdk starting issue with descending virtual address allocation in new kernel

2014-09-11 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Michael Hu (NSBU) > Sent: Wednesday, September 10, 2014 11:41 PM > To: dev at dpdk.org > Subject: [dpdk-dev] dpdk starting issue with descending virtual address > allocation in new kernel > > Hi All, > > We hav

[dpdk-dev] [PATCH 0/3] eal affinitize low priority threads to lcore 0

2014-09-12 Thread Richardson, Bruce
> -Original Message- > From: Hiroshi Shimamoto [mailto:h-shimamoto at ct.jp.nec.com] > Sent: Friday, September 12, 2014 12:48 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH 0/3] eal affinitize low priority threads to > lcore 0 > >

[dpdk-dev] [PATCH] librte_log: add function to retrieve log_level

2014-09-15 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Matthew Hall > Sent: Sunday, September 14, 2014 9:35 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] librte_log: add function to retrieve log_level > > Signed-off-by: Matthew Hall Acked-by: Bruce Richard

[dpdk-dev] [PATCH v2 02/13] mbuf: reorder fields by time of use

2014-09-15 Thread Richardson, Bruce
> -Original Message- > From: Liu, Jijiang > Sent: Monday, September 15, 2014 8:12 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 02/13] mbuf: reorder fields by time of use > > Hi Bruce, > > > -Original Message- > &

[dpdk-dev] [PATCH] librte_log: add function to retrieve log_level

2014-09-15 Thread Richardson, Bruce
> -Original Message- > From: Matthew Hall [mailto:mhall at mhcomputing.net] > Sent: Monday, September 15, 2014 9:17 AM > To: Richardson, Bruce; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH] librte_log: add function to retrieve log_level > > Thanks for the ack Br

[dpdk-dev] Patch merges for 1.8 release

2014-09-16 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Tuesday, September 16, 2014 3:20 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: Patch merges for 1.8 release > > Hi Bruce, > > 2014-09-16 11:18,

[dpdk-dev] [PATCH 07/13] mbuf: use macros only to access the mbuf metadata

2014-09-17 Thread Richardson, Bruce
> -Original Message- > From: Ramia, Kannan Babu > Sent: Tuesday, September 16, 2014 11:06 PM > To: Dumitrescu, Cristian; Olivier MATZ; Richardson, Bruce; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH 07/13] mbuf: use macros only to access the > mbuf metadata > >

[dpdk-dev] [PATCH 2/5] ixgbe: add prefetch to improve slow-path tx perf

2014-09-17 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Wednesday, September 17, 2014 4:21 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 2/5] ixgbe: add prefetch to improve slow-path > tx > perf >

[dpdk-dev] [PATCH 4/5] mbuf: add userdata pointer field

2014-09-17 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Wednesday, September 17, 2014 4:35 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 4/5] mbuf: add userdata pointer field > > On Wed, Sep 17, 2014 at

[dpdk-dev] [PATCH] ixgbe: fix compile error with gcc4.4 (used RHEL 6)

2014-09-18 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Thursday, September 18, 2014 1:25 PM > To: Thomas Monjalon > Cc: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] ixgbe: fix compile error with gcc4.4 (used > RHEL

[dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32

2014-09-18 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Wednesday, September 17, 2014 4:30 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32 > > On Wed, Sep 17,

[dpdk-dev] [PATCH] ixgbe: fix compile error with gcc4.4 (used RHEL 6)

2014-09-18 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Thursday, September 18, 2014 4:51 PM > To: Thomas Monjalon > Cc: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] ixgbe: fix compile error with gcc4.4 (used > RHEL

[dpdk-dev] [PATCH 0/4] Add DSO symbol versioning to support backwards compatibility

2014-09-19 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Thursday, September 18, 2014 8:14 PM > To: Thomas Monjalon > Cc: dev at dpdk.org; Richardson, Bruce > Subject: Re: [PATCH 0/4] Add DSO symbol versioning to support backwards > compatibi

[dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32

2014-09-19 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Thursday, September 18, 2014 7:09 PM > To: Thomas Monjalon > Cc: Richardson, Bruce; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32 > > On

[dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32

2014-09-19 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Friday, September 19, 2014 11:25 AM > To: Richardson, Bruce > Cc: Thomas Monjalon; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 3/5] testpmd: Change rxfreet default to 32 > >

[dpdk-dev] compile error with linuxapp-clang target on Fedora 20 with 3.15.10 kernel

2014-09-22 Thread Richardson, Bruce
Hi all, just looking to see if anyone has any suggestions to help me debug an issue I'm seeing here. Basically, the clang target is no longer working for me on Fedora 20 -due to errors when compiling up the kernel modules. The interesting thing is that the gcc target works fine, while the clang

[dpdk-dev] [PATCH v2 3/5] testpmd: Change rxfreet default to 32

2014-09-24 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhorman at tuxdriver.com] > Sent: Tuesday, September 23, 2014 6:03 PM > To: Richardson, Bruce > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 3/5] testpmd: Change rxfreet default to 32 > > On Tue, Sep 23,

Re: [dpdk-dev] [RFC 0/9] get Rx and Tx used descriptors

2017-01-13 Thread Richardson, Bruce
> -Original Message- > From: Olivier Matz [mailto:olivier.m...@6wind.com] > Sent: Friday, January 13, 2017 4:44 PM > To: dev@dpdk.org > Cc: thomas.monja...@6wind.com; Ananyev, Konstantin > ; Lu, Wenzhuo ; Zhang, > Helin ; Richardson, Bruce > > Subject: Re:

Re: [dpdk-dev] [PATCH] mk: optimize directory dependencies

2017-01-24 Thread Richardson, Bruce
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Tuesday, January 24, 2017 12:57 PM > To: Richardson, Bruce > Cc: Olivier Matz ; dev@dpdk.org; Yigit, Ferruh > ; thomas.monja...@6wind.com > Subject: Re: [dpdk-dev] [PATCH] m

Re: [dpdk-dev] [PATCH v4 1/6] eventdev: introduce event driven programming model

2017-01-25 Thread Richardson, Bruce
> -Original Message- > From: Eads, Gage > Sent: Wednesday, January 25, 2017 4:32 PM > To: Jerin Jacob ; dev@dpdk.org > Cc: thomas.monja...@6wind.com; Richardson, Bruce > ; hemant.agra...@nxp.com; Van Haaren, Harry > ; McDaniel, Timothy > > Subject: RE: [dpdk-d

Re: [dpdk-dev] [PATCH v4 4/4] doc: describe new performance test application

2017-01-26 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Ferruh Yigit > Sent: Thursday, January 26, 2017 3:21 PM > To: Mrozowicz, SlawomirX ; dev@dpdk.org > Cc: Azarewicz, PiotrX T ; Thomas Monjalon > > Subject: Re: [dpdk-dev] [PATCH v4 4/4] doc: describe new performan

Re: [dpdk-dev] [PATCH] net: introduce big and little endian types

2016-12-06 Thread Richardson, Bruce
> -Original Message- > From: Wiles, Keith > Sent: Tuesday, December 6, 2016 4:32 PM > To: Nélio Laranjeiro > Cc: Morten Brørup ; Ananyev, Konstantin > ; Richardson, Bruce > ; DPDK ; Olivier Matz > ; Lu, Wenzhuo ; Adrien > Mazarguil > Subject: Re: [dpdk-dev]

Re: [dpdk-dev] [PATCH] Scheduler: add driver for scheduler crypto pmd

2016-12-07 Thread Richardson, Bruce
> -Original Message- > From: Neil Horman [mailto:nhor...@tuxdriver.com] > Sent: Wednesday, December 7, 2016 2:17 PM > To: Doherty, Declan > Cc: Richardson, Bruce ; Thomas Monjalon > ; Zhang, Roy Fan ; > dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] Scheduler:

Re: [dpdk-dev] [RFC 17.05] test: move tests to separate folder

2017-02-14 Thread Richardson, Bruce
> -Original Message- > From: Yigit, Ferruh > Sent: Tuesday, February 14, 2017 5:07 PM > To: Richardson, Bruce > Cc: Thomas Monjalon ; dev@dpdk.org > Subject: Re: [dpdk-dev] [RFC 17.05] test: move tests to separate folder > > On 2/14/2017 3:41 PM, Bruce Richardso

[dpdk-dev] DPDK Technical Board Meeting, 2017-02-15

2017-02-17 Thread Richardson, Bruce
A meeting of the DPDK technical board was held last Wednesday, 2017-02-15. Below are the meeting minutes. Please note that future meetings will be open to all to attend, as described below. The next meeting is planned for March 1st, and any topics to be referred to the tech board for discussi

Re: [dpdk-dev] [PATCH] lpm: rte_lpm_iterate() - iterate through the routes

2017-02-22 Thread Richardson, Bruce
CC: dev@dpdk.org. Missed that address when pulling from email archive. > -Original Message- > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Wednesday, February 22, 2017 1:39 PM > To: chunguang yang > Subject: Re: [dpdk-dev] [PATCH] lpm: rte_lpm_iterate() - iterate thr

Re: [dpdk-dev] [PATCH v6 00/26] linux/eal: Remove most causes of panic on init

2017-03-09 Thread Richardson, Bruce
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] > Sent: Thursday, March 9, 2017 9:26 AM > To: Richardson, Bruce > Cc: Aaron Conole ; dev@dpdk.org; Stephen Hemminger > > Subject: Re: [dpdk-dev] [PATCH v6 00/26] linux/eal: Remove most

[dpdk-dev] [PATCH v11 1/6] ethdev: add Tx preparation

2016-10-28 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Ananyev, Konstantin > Sent: Friday, October 28, 2016 11:29 AM > To: Thomas Monjalon ; Kulasek, TomaszX > > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v11 1/6] ethdev: add Tx preparation > > > > >

<    1   2   3   4   >