[dpdk-dev] [PATCH] ixgbe: Fix an unnecessary check in vf rss

2015-01-28 Thread Ouyang, Changchun
Hi Thomas, > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Tuesday, January 27, 2015 8:13 PM > To: Ouyang, Changchun > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] ixgbe: Fix an unnecessary check in vf rss > > > To follow up the comments

[dpdk-dev] [PATCH v2] testpmd check return value of rte_eth_dev_vlan_filter()

2015-01-28 Thread Qiu, Michael
On 1/28/2015 1:20 AM, Michal Jastrzebski wrote: > This patch modifies testpmd behavior when setting: > rx_vlan add all vf_port (enabling all vlanids > to be passed thru rx filter on VF). > Rx_vlan_all_filter_set() function, > checks if the next vlanid can be enabled by the driver. > Number of vlani

[dpdk-dev] [PATCH 0/4] DPDK memcpy optimization

2015-01-28 Thread Wang, Zhihong
> -Original Message- > From: Ananyev, Konstantin > Sent: Tuesday, January 27, 2015 8:20 PM > To: Wang, Zhihong; Richardson, Bruce; 'Marc Sune' > Cc: 'dev at dpdk.org' > Subject: RE: [dpdk-dev] [PATCH 0/4] DPDK memcpy optimization > > > > > -Original Message- > > From: Ananyev,

[dpdk-dev] [PATCH v2 04/24] virtio: Add support for Link State interrupt

2015-01-28 Thread Ouyang, Changchun
Hi Stephen, > -Original Message- > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > Sent: Tuesday, January 27, 2015 6:00 PM > To: Xie, Huawei > Cc: Ouyang, Changchun; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v2 04/24] virtio: Add support for Link State > interrupt >

[dpdk-dev] [PATCH v2 02/24] virtio: Use weaker barriers

2015-01-28 Thread Ouyang, Changchun
> -Original Message- > From: Xie, Huawei > Sent: Wednesday, January 28, 2015 12:16 AM > To: Stephen Hemminger > Cc: Ouyang, Changchun; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v2 02/24] virtio: Use weaker barriers > > > > > -Original Message- > > From: Stephen Hemminger

[dpdk-dev] [PATCH v2 00/15] support multi-pthread per core

2015-01-28 Thread Cunming Liang
v2 changes: add '-' support for EAL option '--lcores' The patch series contain the enhancements of EAL and fixes for libraries to run multi-pthreads(either EAL or non-EAL thread) per physical core. Two major changes list as below: - Extend the core affinity of each EAL thread to 1:n. Each lc

[dpdk-dev] [PATCH v2 01/15] eal: add cpuset into per EAL thread lcore_config

2015-01-28 Thread Cunming Liang
The patch adds 'cpuset' into per-lcore configure 'lcore_config[]', as the lcore no longer always 1:1 pinning with physical cpu. The lcore now stands for a EAL thread rather than a logical cpu. It doesn't change the default behavior of 1:1 mapping, but allows to affinity the EAL thread to multiple

[dpdk-dev] [PATCH v2 02/15] eal: new eal option '--lcores' for cpu assignment

2015-01-28 Thread Cunming Liang
It supports one new eal long option '--lcores' for EAL thread cpuset assignment. The format pattern: --lcores='lcores[@cpus]<,lcores[@cpus]>' lcores, cpus could be a single digit/range or a group. '(' and ')' are necessary if it's a group. If not supply '@cpus', the value of cpus uses the

[dpdk-dev] [PATCH v2 03/15] eal: add support parsing socket_id from cpuset

2015-01-28 Thread Cunming Liang
It returns the socket_id if all cpus in the cpuset belongs to the same NUMA node, otherwise it will return SOCKET_ID_ANY. Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/eal_lcore.c | 7 + lib/librte_eal/common/eal_thread.h | 52 + lib/librt

[dpdk-dev] [PATCH v2 04/15] eal: new TLS definition and API declaration

2015-01-28 Thread Cunming Liang
1. add two TLS *_socket_id* and *_cpuset* 2. add two external API rte_thread_set/get_affinity 3. add one internal API eal_thread_dump_affinity Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/eal_thread.c| 2 ++ lib/librte_eal/common/eal_thread.h| 14 ++ lib/li

[dpdk-dev] [PATCH v2 05/15] eal: add eal_common_thread.c for common thread API

2015-01-28 Thread Cunming Liang
The API works for both EAL thread and none EAL thread. When calling rte_thread_set_affinity, the *_socket_id* and *_cpuset* of calling thread will be updated if the thread successful set the cpu affinity. Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/Makefile| 1 + lib/lib

[dpdk-dev] [PATCH v2 07/15] eal: apply affinity of EAL thread by assigned cpuset

2015-01-28 Thread Cunming Liang
EAL threads use assigned cpuset to set core affinity during startup. It keeps 1:1 mapping, if no '--lcores' option is used. Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/eal.c | 13 --- lib/librte_eal/bsdapp/eal/eal_thread.c | 63 +- lib/li

[dpdk-dev] [PATCH v2 08/15] enic: fix re-define freebsd compile complain

2015-01-28 Thread Cunming Liang
Some macro already been defined by freebsd 'sys/param.h'. Signed-off-by: Cunming Liang --- lib/librte_pmd_enic/enic.h| 1 + lib/librte_pmd_enic/enic_compat.h | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/librte_pmd_enic/enic.h b/lib/librte_pmd_enic/enic.h index c43417c..189c3

[dpdk-dev] [PATCH v2 11/15] eal: set _lcore_id and _socket_id to (-1) by default

2015-01-28 Thread Cunming Liang
For those none EAL thread, *_lcore_id* shall always be LCORE_ID_ANY. The libraries using *_lcore_id* as index need to take care. *_socket_id* always be SOCKET_ID_ANY unitl the thread changes the affinity by rte_thread_set_affinity() Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/eal_

[dpdk-dev] [PATCH v2 12/15] eal: fix recursive spinlock in non-EAL thraed

2015-01-28 Thread Cunming Liang
In non-EAL thread, lcore_id alrways be LCORE_ID_ANY. It cann't be used as unique id for recursive spinlock. Then use rte_gettid() to replace it. Signed-off-by: Cunming Liang --- lib/librte_eal/common/include/generic/rte_spinlock.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -

[dpdk-dev] [PATCH v2 13/15] mempool: add support to non-EAL thread

2015-01-28 Thread Cunming Liang
For non-EAL thread, bypass per lcore cache, directly use ring pool. It allows using rte_mempool in either EAL thread or any user pthread. As in non-EAL thread, it directly rely on rte_ring and it's none preemptive. It doesn't suggest to run multi-pthread/cpu which compete the rte_mempool. It will g

[dpdk-dev] [PATCH v2 06/15] eal: add rte_gettid() to acquire unique system tid

2015-01-28 Thread Cunming Liang
The rte_gettid() wraps the linux and freebsd syscall gettid(). It provides a persistent unique thread id for the calling thread. It will save the unique id in TLS on the first time. Signed-off-by: Cunming Liang --- lib/librte_eal/bsdapp/eal/eal_thread.c | 9 + lib/librte_eal/common/in

[dpdk-dev] [PATCH v2 14/15] ring: add support to non-EAL thread

2015-01-28 Thread Cunming Liang
ring debug stat won't take care non-EAL thread. Signed-off-by: Cunming Liang --- lib/librte_ring/rte_ring.h | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/lib/librte_ring/rte_ring.h b/lib/librte_ring/rte_ring.h index 7cd5f2d..39bacdd 100644 --- a/lib/librte_ring/r

[dpdk-dev] [PATCH v2 15/15] timer: add support to non-EAL thread

2015-01-28 Thread Cunming Liang
Allow to setup timers only for EAL (lcore) threads (__lcore_id < MAX_LCORE_ID). E.g. ? dynamically created thread will be able to reset/stop timer for lcore thread, but it will be not allowed to setup timer for itself or another non-lcore thread. rte_timer_manage() for non-lcore thread would simp

[dpdk-dev] [PATCH v2 10/15] log: fix the gap to support non-EAL thread

2015-01-28 Thread Cunming Liang
For those non-EAL thread, *_lcore_id* is invalid and probably larger than RTE_MAX_LCORE. The patch adds the check and allows only EAL thread using EAL per thread log level and log type. Others shares the global log level. Signed-off-by: Cunming Liang --- lib/librte_eal/common/eal_common_log.c

[dpdk-dev] [PATCH v2 09/15] malloc: fix the issue of SOCKET_ID_ANY

2015-01-28 Thread Cunming Liang
Add check for rte_socket_id(), avoid get unexpected return like (-1). Signed-off-by: Cunming Liang --- lib/librte_malloc/malloc_heap.h | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/librte_malloc/malloc_heap.h b/lib/librte_malloc/malloc_heap.h index b4aec45..a47136

[dpdk-dev] ACL trie insertion and search

2015-01-28 Thread Rapelly, Varun
Hi, We were converting the acl rule data, from host to network byte order, [by mistake] while inserting into trie. And while searching we are not converting the search data to n/w byte order. With the above also rules are matching, except few scenarios. After correcting the above mistake, all r

[dpdk-dev] [PATCH v1 0/5] Interrupt mode for PMD

2015-01-28 Thread Danny Zhou
The patch series introduce low-latency one-shot rx interrupt into DPDK with polling and interrupt mode switch control example. DPDK userspace interrupt notification and handling mechanism is based on UIO with below limitation: 1) It is designed to handle LSC interrupt only with inefficient suspen

[dpdk-dev] [PATCH v1 1/5] ethdev: add rx interrupt enable/disable functions

2015-01-28 Thread Danny Zhou
Signed-off-by: Danny Zhou --- lib/librte_ether/rte_ethdev.c | 45 ++ lib/librte_ether/rte_ethdev.h | 57 +++ 2 files changed, 102 insertions(+) diff --git a/lib/librte_ether/rte_ethdev.c b/lib/librte_ether/rte_ethdev.c index

[dpdk-dev] [PATCH v1 2/5] ixgbe: enable rx queue interrupts for both PF and VF

2015-01-28 Thread Danny Zhou
Signed-off-by: Danny Zhou --- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 371 lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 9 + 2 files changed, 380 insertions(+) diff --git a/lib/librte_pmd_ixgbe/ixgbe_ethdev.c b/lib/librte_pmd_ixgbe/ixgbe_ethdev.c index b341dd0..39f

[dpdk-dev] [PATCH v1 3/5] igb: enable rx queue interrupts for PF

2015-01-28 Thread Danny Zhou
Signed-off-by: Danny Zhou --- lib/librte_pmd_e1000/e1000/e1000_hw.h | 3 + lib/librte_pmd_e1000/e1000_ethdev.h | 6 + lib/librte_pmd_e1000/igb_ethdev.c | 265 ++ 3 files changed, 249 insertions(+), 25 deletions(-) diff --git a/lib/librte_pmd_e1000/e1000/

[dpdk-dev] [PATCH v1 4/5] eal: add per rx queue interrupt handling based on VFIO

2015-01-28 Thread Danny Zhou
Signed-off-by: Danny Zhou Signed-off-by: Yong Liu --- lib/librte_eal/common/include/rte_eal.h| 9 + lib/librte_eal/linuxapp/eal/eal_interrupts.c | 186 - lib/librte_eal/linuxapp/eal/eal_pci_vfio.c | 11 +- .../linuxapp/eal/include/exec-env/rte_int

[dpdk-dev] vhost: virtio-net rx-ring stop work after work many hours, bug?

2015-01-28 Thread Xie, Huawei
> -Original Message- > From: Linhaifeng [mailto:haifeng.lin at huawei.com] > Sent: Tuesday, January 27, 2015 3:57 PM > To: dpd >> dev at dpdk.org; ms >> Michael S. Tsirkin > Cc: lilijun; liuyongan at huawei.com; Xie, Huawei > Subject: vhost: virtio-net rx-ring stop work after work many ho

[dpdk-dev] [PATCH v1 5/5] L3fwd-power: enable one-shot rx interrupt and polling/interrupt mode switch

2015-01-28 Thread Danny Zhou
Signed-off-by: Danny Zhou --- examples/l3fwd-power/main.c | 170 +--- 1 file changed, 129 insertions(+), 41 deletions(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c index f6b55b9..e6e4f55 100644 --- a/examples/l3fwd-power/main.c

[dpdk-dev] [PATCH v2] maintainers: start a Linux-style file

2015-01-28 Thread Thomas Monjalon
This MAINTAINERS file is inspired from the Linux one. Almost all files are split into areas in order to identify maintainers of each DPDK area. Note that a maintainer is not a git tree manager. Candidates are welcome to send a patch to sign up for one or several areas. There is a script to check

[dpdk-dev] [PATCH] mk: allow application to override clean

2015-01-28 Thread Olivier MATZ
Hi Stephen, On 01/23/2015 07:19 AM, stephen at networkplumber.org wrote: > From: Stephen Hemminger > > In some cases application may want to have additional rules > for clean. This can be handled by allowing the double colon > form of rule. > > https://www.gnu.org/software/make/manual/html_node

[dpdk-dev] [PATCH 0/6] Support NVGRE on i40e

2015-01-28 Thread Olivier MATZ
Hi Min, On 01/27/2015 06:46 AM, Cao, Min wrote: > Test by: min.cao > Patch name: [dpdk-dev] [PATCH 0/6] Support NVGRE on i40e > Test Flag:Tested-by > Tester name: min.cao at intel.com > Result summary: total 2 cases, 2 passed, 0 failed > > Tes

[dpdk-dev] ACL trie insertion and search

2015-01-28 Thread Ananyev, Konstantin
Hi > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Rapelly, Varun > Sent: Wednesday, January 28, 2015 9:07 AM > To: dev at dpdk.org > Subject: [dpdk-dev] ACL trie insertion and search > > Hi, > > We were converting the acl rule data, from host to network by

[dpdk-dev] Regarding UDP checksum offload

2015-01-28 Thread Prashant Upadhyaya
Hi, I am aware that this topic has been discussed several times before, but I am somehow still stuck with this. I am using dpdk 1.6r1, intel 82599 NIC. I have an mbuf, I have hand-constructed a UDP packet (IPv4) in the data portion, filled the relevant fields of the headers and I do a tx burst. N

[dpdk-dev] [PATCH v2 0/3] PMD ring MAC management, fix initialization, link up/down

2015-01-28 Thread Doherty, Declan
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Tomasz Kulasek > Sent: Monday, January 19, 2015 11:57 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v2 0/3] PMD ring MAC management, fix > initialization, > link up/down > > Patch split into smaller par

[dpdk-dev] DPDK testpmd forwarding performace degradation

2015-01-28 Thread Alexander Belyakov
On Tue, Jan 27, 2015 at 7:21 PM, De Lara Guarch, Pablo < pablo.de.lara.guarch at intel.com> wrote: > > > > On Tue, Jan 27, 2015 at 10:51 AM, Alexander Belyakov > > > wrote: > > > > > > Hi Pablo, > > > > > > On Mon, Jan 26, 2015 at 5:22 PM, De Lara Guarch, Pablo > > > wrote: > > > Hi Alexander, >

[dpdk-dev] Regarding UDP checksum offload

2015-01-28 Thread Olivier MATZ
Hi Prashant, On 01/28/2015 12:25 PM, Prashant Upadhyaya wrote: > Hi, > > I am aware that this topic has been discussed several times before, but I > am somehow still stuck with this. > > I am using dpdk 1.6r1, intel 82599 NIC. > I have an mbuf, I have hand-constructed a UDP packet (IPv4) in the da

[dpdk-dev] [PATCH] eal/linux: allow to map BARs with MSI-X tables, around them

2015-01-28 Thread Dan Aloni
On Thu, Jan 22, 2015 at 10:36:11AM +0200, Dan Aloni wrote: > While VFIO doesn't allow us to map complete BARs with MSI-X tables, > it does allow us to map around them in PAGE_SIZE granularity. There > might be adapters that provide their registers in the same BAR > but on a different page. For exam

[dpdk-dev] Pktgen-DPDK rate and traffic inconsistency problem

2015-01-28 Thread Wodkowski, PawelX
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Alexandre Frigon > Sent: Tuesday, January 27, 2015 8:31 PM > To: dev at dpdk.org > Subject: [dpdk-dev] Pktgen-DPDK rate and traffic inconsistency problem > > Hi all, > > I'm using dpdk 1.8 and pktgen-dpdk 2.8

[dpdk-dev] [PATCH v2 0/6] new ntuple filter replaces 2tuple and 5tuple filters

2015-01-28 Thread De Lara Guarch, Pablo
> -Original Message- > From: Wu, Jingjing > Sent: Thursday, January 22, 2015 7:38 AM > To: dev at dpdk.org > Cc: Wu, Jingjing; De Lara Guarch, Pablo; Cao, Min; Xu, HuilongX > Subject: [PATCH v2 0/6] new ntuple filter replaces 2tuple and 5tuple filters > > v2 changes: > - remove the cod

[dpdk-dev] Regarding UDP checksum offload

2015-01-28 Thread Prashant Upadhyaya
On Wed, Jan 28, 2015 at 6:32 PM, Olivier MATZ wrote: > Hi Prashant, > > > On 01/28/2015 12:25 PM, Prashant Upadhyaya wrote: > >> Hi, >> >> I am aware that this topic has been discussed several times before, but I >> am somehow still stuck with this. >> >> I am using dpdk 1.6r1, intel 82599 NIC. >

[dpdk-dev] [PATCH] eal/linux: allow to map BARs with MSI-X tables, around them

2015-01-28 Thread Burakov, Anatoly
Hi Dan Apologies for not looking at it earlier. > While VFIO doesn't allow us to map complete BARs with MSI-X tables, > it does allow us to map around them in PAGE_SIZE granularity. There > might be adapters that provide their registers in the same BAR > but on a different page. For example, Inte

[dpdk-dev] Regarding UDP checksum offload

2015-01-28 Thread Olivier MATZ
Hi Prashant, On 01/28/2015 03:57 PM, Prashant Upadhyaya wrote: >>> I am using dpdk 1.6r1, intel 82599 NIC. >>> I have an mbuf, I have hand-constructed a UDP packet (IPv4) in >>> the data >>> portion, filled the relevant fields of the headers and I do a tx >>>

[dpdk-dev] Process question: reviewing older patches

2015-01-28 Thread Jay Rolette
There's a fairly old KNI patch (http://dpdk.org/dev/patchwork/patch/84/) that I reviewed, but I'm not seeing how to submit my "Reviewed-by" when I don't have any of the emails from the patch in my mail client. I can copy the text from the 'mbox' link in Patchwork into an email, but I'm guessing th

[dpdk-dev] DPDK 1.7.1 error (PANIC in ovdk_vport_phy_port_init(): Cannot init NIC port '0' (Success))

2015-01-28 Thread sothy shan
Hi! I have one question to inii NIC port in DPDK 1.7.1. I got the following error/ EAL: PCI device :03:00.0 on NUMA socket -1 EAL: probe driver: 8086:150e rte_igb_pmd EAL: PCI memory mapped at 0x7fa5a5261000 EAL: PCI memory mapped at 0x7fa5a7538000 EAL: PCI device :03:00.1 on NUMA

[dpdk-dev] [PATCH v3 00/18] ACL: New AVX2 classify method and several other enhancements.

2015-01-28 Thread Thomas Monjalon
> > v3 changes: > > Applied review comments from Thomas: > > - fix spelling errors reported by codespell. > > - split last patch into two: > > first to remove unused macros, > > second to add some comments about ACL internal layout. > > > > v2 changes: > > - When build with the compilers t

[dpdk-dev] [PATCH v2 04/24] virtio: Add support for Link State interrupt

2015-01-28 Thread Stephen Hemminger
On Wed, 28 Jan 2015 03:03:32 + "Ouyang, Changchun" wrote: > Hi Stephen, > > > -Original Message- > > From: Stephen Hemminger [mailto:stephen at networkplumber.org] > > Sent: Tuesday, January 27, 2015 6:00 PM > > To: Xie, Huawei > > Cc: Ouyang, Changchun; dev at dpdk.org > > Subject:

[dpdk-dev] Pktgen-DPDK rate and traffic inconsistency problem

2015-01-28 Thread Alexandre Frigon
Hi Pawel, Thanks for your reply. Sadly, assigning 1 core per port didn't change anything. As for the NUMA nodes, If I understand correctly there is a node for each socket and I'm only using 1 socket with 4 cores and lscpu is showing me only 1 node. I don't think I can do anything about that. Co

[dpdk-dev] Process question: reviewing older patches

2015-01-28 Thread Thomas Monjalon
2015-01-28 09:52, Jay Rolette: > There's a fairly old KNI patch (http://dpdk.org/dev/patchwork/patch/84/) > that I reviewed, but I'm not seeing how to submit my "Reviewed-by" when I > don't have any of the emails from the patch in my mail client. > > I can copy the text from the 'mbox' link in Pat

[dpdk-dev] Process question: reviewing older patches

2015-01-28 Thread Neil Horman
On Wed, Jan 28, 2015 at 09:52:48AM -0600, Jay Rolette wrote: > There's a fairly old KNI patch (http://dpdk.org/dev/patchwork/patch/84/) > that I reviewed, but I'm not seeing how to submit my "Reviewed-by" when I > don't have any of the emails from the patch in my mail client. > > I can copy the te

[dpdk-dev] [PATCH v1 4/5] eal: add per rx queue interrupt handling based on VFIO

2015-01-28 Thread Liang, Cunming
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Danny Zhou > Sent: Wednesday, January 28, 2015 2:51 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v1 4/5] eal: add per rx queue interrupt handling > based on VFIO > > Signed-off-by: Danny Zhou > Signe

[dpdk-dev] [PATCH v1 5/5] L3fwd-power: enable one-shot rx interrupt and polling/interrupt mode switch

2015-01-28 Thread Liang, Cunming
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Danny Zhou > Sent: Wednesday, January 28, 2015 2:51 AM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH v1 5/5] L3fwd-power: enable one-shot rx interrupt > and polling/interrupt mode switch > > Signed-off-by

[dpdk-dev] Process question: reviewing older patches

2015-01-28 Thread Jay Rolette
Thanks Thomas and Neil. Sadly, no joy. While I generally like gmail for my mail, there's not a reasonable way to import the mbox file or to control the message id. If someone else wants to resend the message to the list, I can reply to that. Otherwise, here are the relevant bits from the original

[dpdk-dev] Process question: reviewing older patches

2015-01-28 Thread Neil Horman
On Wed, Jan 28, 2015 at 02:57:58PM -0600, Jay Rolette wrote: > Thanks Thomas and Neil. Sadly, no joy. While I generally like gmail for my > mail, there's not a reasonable way to import the mbox file or to control > the message id. > Sure there is, you just need to select an appropriate MUA. You c

[dpdk-dev] deadline for 2.0 features proposal

2015-01-28 Thread Thomas Monjalon
Hello all, As previously announced when releasing DPDK 1.8.0 (http://dpdk.org/ml/archives/dev/2014-December/010470.html), we are going to apply deadlines to schedule the release cycles. The version 2.0 will integrate only features submitted before end of January (end of this week) and reviewed be

[dpdk-dev] [PATCH 0/4] DPDK memcpy optimization

2015-01-28 Thread EDMISON, Kelvin (Kelvin)
On 2015-01-27, 3:22 AM, "Wang, Zhihong" wrote: > > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of EDMISON, Kelvin >> (Kelvin) >> Sent: Friday, January 23, 2015 2:22 AM >> To: dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH 0/4] DPDK memcpy optimization