> -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
> -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
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
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
>
> 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
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
> 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
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
> 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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
> -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(
> -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
> -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
> -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
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
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
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
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
> -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
> -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
> -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-
>
> -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-
> -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
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
> -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
>
&
> -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
>
&
> -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
> -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
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:
> -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
> -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
> -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
> -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
>
> > +
> -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,
> -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
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
> -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
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
> -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
> -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
> -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
>
> -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
> -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
>
> -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
> -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
> -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
>
>
> -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
> -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
> -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
> -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
> -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
> -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
> -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
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
> -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
> -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
> -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
> -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
> -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
> -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
> -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
>
>
> -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
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:
> -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
> -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
> -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
>
>
> -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
> -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-
> &
> -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
> -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,
> -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
>
>
> -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
>
> -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
> -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
> -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,
> -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
> -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
> -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
> -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
>
>
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
> -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,
> -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:
> -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
> -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
> -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
> -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]
> -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:
> -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
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
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
> -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
> -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
>
>
>
> >
101 - 200 of 353 matches
Mail list logo