[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Wiles, Keith
> On Jul 20, 2016, at 3:16 PM, Neil Horman wrote: > > On Wed, Jul 20, 2016 at 07:47:32PM +, Wiles, Keith wrote: >> >>> On Jul 20, 2016, at 12:48 PM, Neil Horman wrote: >>> >>> On Wed, Jul 20, 2016 at 07:40:49PM +0200, Thomas Monjalon wrote: 2016-07-20 13:09, Neil Horman: > From:

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Thomas Monjalon
2016-07-20 19:47, Wiles, Keith: > On Jul 20, 2016, at 12:48 PM, Neil Horman wrote: > > On Wed, Jul 20, 2016 at 07:40:49PM +0200, Thomas Monjalon wrote: > >> 2016-07-20 13:09, Neil Horman: > >>> From: Neil Horman > >>> +if [ -z "$MAKE_JOBS" ] > >>> +then > >>> + # This counts the number of cpus

[dpdk-dev] [PATCH] vhost: fix driver unregister for client mode

2016-07-20 Thread Yuanhan Liu
On Wed, Jul 20, 2016 at 11:32:43AM +0300, Ilya Maximets wrote: > Currently while calling of 'rte_vhost_driver_unregister()' connection > to QEMU will not be closed. This leads to inability to register driver > again and reconnect to same virtual machine. > > This scenario is reproducible with

[dpdk-dev] [PATCH] timer: fix break list when timer_cb reset running timer

2016-07-20 Thread Sanford, Robert
Hi Hiroyuki, I am reviewing your 3 timer patches. Can you please explain in more detail your use-case that results in a problem? For example, is it when timer A's callback tries to reset (rte_timer_reset) timer B? If yes, is timer B in PENDING state and likely to expire soon? -- Thanks, Robert

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Wiles, Keith
> On Jul 20, 2016, at 12:48 PM, Neil Horman wrote: > > On Wed, Jul 20, 2016 at 07:40:49PM +0200, Thomas Monjalon wrote: >> 2016-07-20 13:09, Neil Horman: >>> From: Neil Horman >>> >>> John Mcnamara and I were discussing enhacing the validate_abi script to >>> build >>> the dpdk tree faster

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Thomas Monjalon
2016-07-20 13:09, Neil Horman: > From: Neil Horman > > John Mcnamara and I were discussing enhacing the validate_abi script to build > the dpdk tree faster with multiple jobs. Theres no reason not to do it, so > this > implements that requirement. It uses a MAKE_JOBS variable that can be set

[dpdk-dev] [RFC] Generic flow director/filtering/classification API

2016-07-20 Thread Adrien Mazarguil
Hi Sugesh, Please see below. On Wed, Jul 20, 2016 at 04:32:50PM +, Chandran, Sugesh wrote: [...] > > > How about a hardware flow flag in packet descriptor that set when the > > > packets hits any hardware rule. This way software doesn?t worry > > > /blocked by a hardware rule . Even though

[dpdk-dev] DPDK on Xen maintenance

2016-07-20 Thread Thomas Monjalon
2016-07-13 10:30, Jan Blunck: > On Di, 2016-07-12 at 11:34 +0200, Thomas Monjalon wrote: > > Hi all, > > > > We are facing some issues with Xen dom0. > > Some were fixed in RC2: > > http://dpdk.org/ml/archives/dev/2016-July/043760.html > > and there still have some other issues. > > > > It

[dpdk-dev] [PATCH] doc: announce ivshmem support removal

2016-07-20 Thread Thomas Monjalon
There was a prior call with an explanation of what needs to be done: http://dpdk.org/ml/archives/dev/2016-June/040844.html - Qemu patch upstreamed - IVSHMEM PCI device managed by a PCI driver - No DPDK objects (ring/mempool) allocated by EAL As nobody seems interested, it is time to

[dpdk-dev] [PATCH] mempool: adjust name string size in related data types

2016-07-20 Thread Zoltan Kiss
On 20/07/16 14:37, Olivier Matz wrote: > Hi, > > On 07/20/2016 02:41 PM, Zoltan Kiss wrote: >> >> >> On 19/07/16 17:17, Olivier Matz wrote: >>> Hi Zoltan, >>> >>> On 07/19/2016 05:59 PM, Zoltan Kiss wrote: On 19/07/16 16:37, Olivier Matz wrote: > Hi Zoltan, > > On

[dpdk-dev] [PATCH] memzone: allow full length name

2016-07-20 Thread Zoltan Kiss
(strlen(name) == sizeof(mz->name) - 1) is a valid case, change the condition to reflect that. Move it earlier to avoid lookup with invalid name. Change errno to ENAMETOOLONG. Fixes: 85cf0079 ("mem: avoid memzone/mempool/ring name truncation") Signed-off-by: Zoltan Kiss ---

[dpdk-dev] [PATCH v2] mempool: adjust name string size in related data types

2016-07-20 Thread Zoltan Kiss
A recent patch brought up an issue about the size of the 'name' fields: 85cf0079 mem: avoid memzone/mempool/ring name truncation These relations should be observed: 1. Each ring creates a memzone with a prefixed name: RTE_RING_NAMESIZE <= RTE_MEMZONE_NAMESIZE - strlen(RTE_RING_MZ_PREFIX) 2.

[dpdk-dev] [PATCH v2] mempool: fix lack of free registration

2016-07-20 Thread Zoltan Kiss
The new mempool handler interface forgets to register the free() function of the ops. Introduced in this patch: Fixes: 449c49b93a6b ("mempool: support handler operations") Signed-off-by: Zoltan Kiss Acked-by: Olivier Matz --- Notes: v2: fix commit message

[dpdk-dev] [PATCH v2] net/i40e: remove weak symbols

2016-07-20 Thread Zoltan Kiss
Using weak symbols have a few issues with static linking: - normally the linker searches the .o files already linked, if your weak one is there, it won't check if there is a strong version - unless the symbol is directly referred, but it's not the right thing to rely on - or --whole-archive

[dpdk-dev] [PATCH] doc: announce KNI ethtool removal

2016-07-20 Thread Thomas Monjalon
The out-of-tree kernel code must be avoided. Moreover there is no good reason to keep this legacy feature which is only partially supported. As described earlier in this plan: http://dpdk.org/ml/archives/dev/2016-July/043606.html it will help to keep PCI ids in PMD code. Signed-off-by:

[dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment

2016-07-20 Thread Tootoonchian, Amin
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, July 20, 2016 8:12 AM > To: Tootoonchian, Amin > Cc: dev at dpdk.org; Kerlin, MarcinX > Subject: Re: [dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment > > Hi, > >

[dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev structure

2016-07-20 Thread Thomas Monjalon
2016-07-20 15:13, Ananyev, Konstantin: > Hi Thomas, > > > Hi, > > > > This patch announces an interesting change in the DPDK design. > > > > 2016-07-20 16:24, Tomasz Kulasek: > > > This is an ABI deprecation notice for DPDK 16.11 in librte_ether about > > > changes in rte_eth_dev and

[dpdk-dev] NIC speed capabilities

2016-07-20 Thread Thomas Monjalon
Hi drivers maintainers, The first line of the table in doc/guides/nics/overview.rst is outstandingly empty! Since the commit http://dpdk.org/commit/e274f57, it is possible to announce the speed capabilities of each port. The first implementation was only trying to fill some realistic values at

[dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment

2016-07-20 Thread Thomas Monjalon
Hi, 2016-07-20 15:07, Tootoonchian, Amin: > Thomas, your thoughts? I have 2 thoughts: - it is too big for 16.07 - it is related to multi-process mechanism, maintained by Sergio ;) Sorry I won't look at it shortly.

[dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev structure

2016-07-20 Thread Thomas Monjalon
Hi, This patch announces an interesting change in the DPDK design. 2016-07-20 16:24, Tomasz Kulasek: > This is an ABI deprecation notice for DPDK 16.11 in librte_ether about > changes in rte_eth_dev and rte_eth_desc_lim structures. > > In 16.11, we plan to introduce rte_eth_tx_prep() function

[dpdk-dev] [RFC] Generic flow director/filtering/classification API

2016-07-20 Thread Chandran, Sugesh
Hi Adrien, Sorry for the late reply. Snipped out the parts we agreed. Regards _Sugesh > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarguil at 6wind.com] > Sent: Monday, July 18, 2016 4:00 PM > To: Chandran, Sugesh > Cc: dev at dpdk.org; Thomas Monjalon ; > Zhang,

[dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev structure

2016-07-20 Thread Tomasz Kulasek
This is an ABI deprecation notice for DPDK 16.11 in librte_ether about changes in rte_eth_dev and rte_eth_desc_lim structures. In 16.11, we plan to introduce rte_eth_tx_prep() function to do necessary preparations of packet burst to be safely transmitted on device for desired HW offloads

[dpdk-dev] [PATCH] eal: fix check number of bytes from read function

2016-07-20 Thread Michal Jastrzebski
In rte_mem_virt2phy: Value returned from a function and indicating the number of bytes was ignored. This could cause a wrong pfn (page frame number) mask read from pagemap file. When read returns less than the number of sizeof(uint64_t) bytes, function rte_mem_virt2phy returns error. Coverity

[dpdk-dev] [PATCH] unify tools naming

2016-07-20 Thread Thomas Monjalon
The following tools may be installed system-wise. It may be cleaner and more convenient to find them with the same dpdk- prefix (especially for autocompletion). Moreover, the script dpdk_nic_bind.py deserves a new name because it is not restricted to NICs and can be used for e.g. crypto. These

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Neil Horman
On Wed, Jul 20, 2016 at 07:47:32PM +, Wiles, Keith wrote: > > > On Jul 20, 2016, at 12:48 PM, Neil Horman wrote: > > > > On Wed, Jul 20, 2016 at 07:40:49PM +0200, Thomas Monjalon wrote: > >> 2016-07-20 13:09, Neil Horman: > >>> From: Neil Horman > >>> > >>> John Mcnamara and I were

[dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev structure

2016-07-20 Thread Kulasek, TomaszX
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, July 20, 2016 17:22 > To: Ananyev, Konstantin > Cc: Kulasek, TomaszX ; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev > structure > >

[dpdk-dev] [PATCH] mempool: adjust name string size in related data types

2016-07-20 Thread Olivier Matz
Hi, On 07/20/2016 02:41 PM, Zoltan Kiss wrote: > > > On 19/07/16 17:17, Olivier Matz wrote: >> Hi Zoltan, >> >> On 07/19/2016 05:59 PM, Zoltan Kiss wrote: >>> >>> >>> On 19/07/16 16:37, Olivier Matz wrote: Hi Zoltan, On 07/19/2016 04:37 PM, Zoltan Kiss wrote: > A recent fix

[dpdk-dev] [PATCH] doc: announce ABI change for rte_eth_dev structure

2016-07-20 Thread Ananyev, Konstantin
Hi Thomas, > Hi, > > This patch announces an interesting change in the DPDK design. > > 2016-07-20 16:24, Tomasz Kulasek: > > This is an ABI deprecation notice for DPDK 16.11 in librte_ether about > > changes in rte_eth_dev and rte_eth_desc_lim structures. > > > > In 16.11, we plan to introduce

[dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment

2016-07-20 Thread Tootoonchian, Amin
Hi Marcin, Comments inline: > -Original Message- > From: Kerlin, MarcinX > Sent: Wednesday, July 20, 2016 1:51 AM > To: Tootoonchian, Amin > Cc: dev at dpdk.org; thomas.monjalon at 6wind.com > Subject: RE: [PATCH] ethdev: ensure consistent port id assignment > > Hi Amin, > > >

[dpdk-dev] [PATCH v2] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Neil Horman
John Mcnamara and I were discussing enhacing the validate_abi script to build the dpdk tree faster with multiple jobs. Theres no reason not to do it, so this implements that requirement. It uses a MAKE_JOBS variable that can be set by the user to limit the job count. By default the job count is

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Tan, Jianfeng
On 7/20/2016 2:13 PM, Yuanhan Liu wrote: > On Wed, Jul 20, 2016 at 01:50:34PM +0800, Tan, Jianfeng wrote: >> >> On 7/20/2016 12:38 PM, Yuanhan Liu wrote: >>> On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: We find significant perfermance drop introduced by below commit,

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Yuanhan Liu
On Wed, Jul 20, 2016 at 01:50:34PM +0800, Tan, Jianfeng wrote: > > > On 7/20/2016 12:38 PM, Yuanhan Liu wrote: > >On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: > >>We find significant perfermance drop introduced by below commit, > >>when vhost example is started with --mergeable

[dpdk-dev] [PATCH] rte_delay_us can be replaced with user function

2016-07-20 Thread jozma...@cisco.com
From: Jozef Martiniak When running single-core, some drivers tend to call rte_delay_us for a long time, and that is causing packet drops. To avoid this, rte_delay_us can be replaced with user-defined delay function with: void

[dpdk-dev] [PATCH] mempool: adjust name string size in related data types

2016-07-20 Thread Richardson, Bruce
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Olivier Matz > Sent: Wednesday, July 20, 2016 2:37 PM > To: Zoltan Kiss ; Zoltan Kiss > ; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH] mempool: adjust name string size in > related data types > > Hi, >

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Tan, Jianfeng
On 7/20/2016 12:38 PM, Yuanhan Liu wrote: > On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: >> We find significant perfermance drop introduced by below commit, >> when vhost example is started with --mergeable 0 and inside vm, >> kernel virtio-net driver is used to do ip based

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Neil Horman
On Wed, Jul 20, 2016 at 07:40:49PM +0200, Thomas Monjalon wrote: > 2016-07-20 13:09, Neil Horman: > > From: Neil Horman > > > > John Mcnamara and I were discussing enhacing the validate_abi script to > > build > > the dpdk tree faster with multiple jobs. Theres no reason not to do it, so > >

[dpdk-dev] [PATCH] mempool: adjust name string size in related data types

2016-07-20 Thread Zoltan Kiss
On 19/07/16 17:17, Olivier Matz wrote: > Hi Zoltan, > > On 07/19/2016 05:59 PM, Zoltan Kiss wrote: >> >> >> On 19/07/16 16:37, Olivier Matz wrote: >>> Hi Zoltan, >>> >>> On 07/19/2016 04:37 PM, Zoltan Kiss wrote: A recent fix brought up an issue about the size of the 'name' fields:

[dpdk-dev] [PATCH] doc: add cryptodev shared library version to release notes

2016-07-20 Thread Pablo de Lara
Signed-off-by: Pablo de Lara --- doc/guides/rel_notes/release_16_07.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/rel_notes/release_16_07.rst b/doc/guides/rel_notes/release_16_07.rst index d3a144f..82ac5bb 100644 --- a/doc/guides/rel_notes/release_16_07.rst +++

[dpdk-dev] [PATCH] validate_abi: build faster by augmenting make with job count

2016-07-20 Thread Neil Horman
From: Neil Horman John Mcnamara and I were discussing enhacing the validate_abi script to build the dpdk tree faster with multiple jobs. Theres no reason not to do it, so this implements that requirement. It uses a MAKE_JOBS variable that can be set by the user to limit the

[dpdk-dev] [PATCH 01/10] ethdev: add a generic flow and new behavior switch to fdir

2016-07-20 Thread Thomas Monjalon
2016-02-26 01:17, Wu, Jingjing: > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > > 2016-02-25 15:03, Rahul Lakkireddy: > > > On Wednesday, February 02/24/16, 2016 at 14:17:58 -0800, Thomas Monjalon > > > wrote: > > > > > In our case, it is possible to match several flows > > > > >

[dpdk-dev] [RFC] Generic flow director/filtering/classification API

2016-07-20 Thread Adrien Mazarguil
Hi Wenzhuo, On Wed, Jul 20, 2016 at 02:16:51AM +, Lu, Wenzhuo wrote: [...] > > So, today an application cannot combine N-tuple and FDIR flow rules and get > > a > > reliable outcome, unless it is designed for specific devices with a known > > behavior. > > > > > What's the right behavior of

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Yuanhan Liu
On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: > We find significant perfermance drop introduced by below commit, > when vhost example is started with --mergeable 0 and inside vm, > kernel virtio-net driver is used to do ip based forwarding. > > The root cause is that below commit

[dpdk-dev] [PATCH] maintainers: split networking and crypto drivers

2016-07-20 Thread Thomas Monjalon
There are now 2 different sections for drivers/net/ and drivers/crypto/. It makes possible to declare some dedicated git trees. Signed-off-by: Thomas Monjalon --- MAINTAINERS | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index

[dpdk-dev] [dpdk-announce] IMPORTANT discussion about Rx filtering API

2016-07-20 Thread Thomas Monjalon
Hi, There is a proposal in progress to totally rework the configuration of Rx filtering (including flow director, RSS, etc): http://dpdk.org/ml/archives/dev/2016-July/043365.html The target is to integrate this API in 16.11 and migrate the drivers as fast as possible. There were some

[dpdk-dev] [PATCH v2 2/2] bnx2x: fix fw mempool name length

2016-07-20 Thread Rasesh Mody
This patch fixes following error: EAL: Detected 36 lcore(s) EAL: Probing VFIO support... PMD: bnxt_rte_pmd_init() called for (null) EAL: PCI device :08:00.0 on NUMA socket 0 EAL: probe driver: 14e4:16a1 rte_bnx2x_pmd EAL: PCI device :08:00.1 on NUMA socket 0 EAL:

[dpdk-dev] [PATCH v2 1/2] bnx2x: disable fast path interrupts

2016-07-20 Thread Rasesh Mody
Disable fastpath interrupts and remove unneeded delay in bnx2x_interrupt_action(). This patch fixes and prevents performance degradation (upto 50% drop) for BNX2X PMD. Fixes: 540a2110 ("bnx2x: driver core") Signed-off-by: Rasesh Mody --- drivers/net/bnx2x/bnx2x.c|2 +-

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Yuanhan Liu
On Wed, Jul 20, 2016 at 10:44:13AM +0800, Tan, Jianfeng wrote: > Hi Yuanhan, > > On 7/20/2016 9:44 AM, Yuanhan Liu wrote: > >On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: > >>We find significant perfermance drop introduced by below commit, > >>when vhost example is started with

[dpdk-dev] [PATCH v4 00/10] Fix build errors related to exported headers

2016-07-20 Thread Thomas Monjalon
2016-07-15 22:03, Bruce Richardson: > On Wed, Jul 13, 2016 at 03:02:37PM +0200, Adrien Mazarguil wrote: > > DPDK uses GNU C language extensions in most of its code base. This is fine > > for internal source files whose compilation flags are controlled by DPDK, > > however user applications that

[dpdk-dev] [PATCH] vhost: fix driver unregister for client mode

2016-07-20 Thread Ilya Maximets
Currently while calling of 'rte_vhost_driver_unregister()' connection to QEMU will not be closed. This leads to inability to register driver again and reconnect to same virtual machine. This scenario is reproducible with OVS. While executing of the following command vhost port will be re-created

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Tan, Jianfeng
Hi Yuanhan, On 7/20/2016 9:44 AM, Yuanhan Liu wrote: > On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: >> We find significant perfermance drop introduced by below commit, >> when vhost example is started with --mergeable 0 and inside vm, >> kernel virtio-net driver is used to do ip

[dpdk-dev] [PATCH] eal: fix rte_intr_dp_is_en() check

2016-07-20 Thread Thomas Monjalon
2016-07-20 07:03, Liang, Cunming: >Probably a clean way is not to handle device external interrupt event in > EAL >interrupt thread (intr mb may have some problem). The EAL interrupt thread > is >only used to postpone the delay execution or other background interrupt >(e.g.

[dpdk-dev] [PATCH v2] doc: announce ABI change for mbuf structure

2016-07-20 Thread Ferruh Yigit
On 7/20/2016 8:16 AM, Olivier Matz wrote: > For 16.11, the mbuf structure will be modified implying ABI breakage. > Some discussions already took place here: > http://www.dpdk.org/dev/patchwork/patch/12878/ > > Signed-off-by: Olivier Matz > --- > > v1->v2: > - reword the sentences to keep

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Yuanhan Liu
On Tue, Jul 19, 2016 at 01:53:11PM +, Jianfeng Tan wrote: > We find significant perfermance drop introduced by below commit, > when vhost example is started with --mergeable 0 and inside vm, > kernel virtio-net driver is used to do ip based forwarding. > > The root cause is that below commit

[dpdk-dev] [PATCH v2] doc: announce ABI change for mbuf structure

2016-07-20 Thread Olivier Matz
For 16.11, the mbuf structure will be modified implying ABI breakage. Some discussions already took place here: http://www.dpdk.org/dev/patchwork/patch/12878/ Signed-off-by: Olivier Matz --- v1->v2: - reword the sentences to keep things more open, as suggested by Bruce

[dpdk-dev] [PATCH] doc: note a pitfall on reconnect feature

2016-07-20 Thread Yuanhan Liu
On Tue, Jul 19, 2016 at 01:57:11PM +, Mcnamara, John wrote: > > - Note: the "reconnect" feature requires **QEMU v2.7** (or above). > > + .. Note:: > > + * The "reconnect" feature requires **QEMU v2.7** (or above). > > + > > + * The vhost supported features must be exactly the same

[dpdk-dev] SRIOV hot unplug

2016-07-20 Thread Eli Britstein
Integrating Tetsuya's last comments on top of the latest message and reply. > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Eli Britstein > Sent: Tuesday, 19 July, 2016 5:34 PM > To: Declan Doherty; Tetsuya Mukawa; dev at dpdk.org > Cc: Iremonger, Bernard >

[dpdk-dev] [PATCH] eal: fix rte_intr_dp_is_en() check

2016-07-20 Thread Liang, Cunming
Hi Thomas, > -Original Message- > From: Thomas Monjalon [mailto:thomas.monjalon at 6wind.com] > Sent: Wednesday, July 20, 2016 4:42 PM > To: Liang, Cunming > Cc: Yong Wang ; dev at dpdk.org; > david.marchand at 6wind.com > Subject: Re: [dpdk-dev] [PATCH] eal: fix rte_intr_dp_is_en()

[dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment

2016-07-20 Thread Kerlin, MarcinX
Hi Amin, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Tootoonchian, Amin > Sent: Tuesday, July 12, 2016 4:01 AM > To: thomas.monjalon at 6wind.com > Cc: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] ethdev: ensure consistent port id assignment > > The

[dpdk-dev] [PATCH] doc: fix vhost setup in tep-termination app guide

2016-07-20 Thread Kavanagh, Mark B
> >Hi Mark, Hi Jianfeng, Thanks for your comments - I've responded inline. Cheers, Mark > >> -Original Message- >> From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Mark Kavanagh >> Sent: Tuesday, July 19, 2016 11:32 PM >> To: dev at dpdk.org >> Subject: [dpdk-dev] [PATCH] doc:

[dpdk-dev] [PATCH] eal: fix rte_intr_dp_is_en() check

2016-07-20 Thread Liang, Cunming
Hi Yong, > -Original Message- > From: Yong Wang [mailto:yongwang at vmware.com] > Sent: Wednesday, July 20, 2016 5:59 AM > To: Thomas Monjalon > Cc: dev at dpdk.org; Liang, Cunming ; > david.marchand at 6wind.com > Subject: Re: [dpdk-dev] [PATCH] eal: fix rte_intr_dp_is_en() check > >

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Xu, Qian Q
Tested-by: Qian Xu - Test Commit: 8f6f24342281f59de0df7bd976a32f714d39b9a9 - OS/Kernel: Fedora 21/4.1.13 - GCC: gcc (GCC) 4.9.2 20141101 (Red Hat 4.9.2-1) - CPU: Intel(R) Xeon(R) CPU E5-2695 v4 @ 2.10 - NIC: Intel(R) Ethernet Controller X710 for 10GbE SFP+ - Total 2 cases, 2 passed, 0 failed.

[dpdk-dev] [PATCH] examples/vhost: fix perf regression

2016-07-20 Thread Xu, Qian Q
My comments below. -Original Message- From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Tan, Jianfeng Sent: Wednesday, July 20, 2016 10:44 AM To: Yuanhan Liu Cc: dev at dpdk.org; Wang, Zhihong Subject: Re: [dpdk-dev] [PATCH] examples/vhost: fix perf regression Hi Yuanhan, On

[dpdk-dev] [RFC] Generic flow director/filtering/classification API

2016-07-20 Thread Lu, Wenzhuo
Hi Adrien, > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarguil at 6wind.com] > Sent: Tuesday, July 19, 2016 9:12 PM > To: Lu, Wenzhuo > Cc: dev at dpdk.org; Thomas Monjalon; Zhang, Helin; Wu, Jingjing; Rasesh Mody; > Ajit Khaparde; Rahul Lakkireddy; Jan Medala; John

[dpdk-dev] [PATCH] net/enic: heed VLAN strip flag in device configure function

2016-07-20 Thread David Harton (dharton)
> -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of John Daley (johndale) > Sent: Tuesday, July 19, 2016 6:44 PM > To: dev at dpdk.org > Cc: bruce.richardson at intel.com; John Daley (johndale) cisco.com> > Subject: [dpdk-dev] [PATCH] net/enic: heed VLAN strip

[dpdk-dev] [dpdk-users] RSS Hash not working for XL710/X710 NICs for some RX mbuf sizes

2016-07-20 Thread Xing, Beilei
Hi Ceara, > -Original Message- > From: Take Ceara [mailto:dumitru.ceara at gmail.com] > Sent: Tuesday, July 19, 2016 10:59 PM > To: Xing, Beilei > Cc: Zhang, Helin ; Wu, Jingjing > ; dev at dpdk.org > Subject: Re: [dpdk-dev] [dpdk-users] RSS Hash not working for XL710/X710 > NICs for

[dpdk-dev] [PATCH] doc: fix vhost setup in tep-termination app guide

2016-07-20 Thread Tan, Jianfeng
Hi Mark, > -Original Message- > From: dev [mailto:dev-bounces at dpdk.org] On Behalf Of Mark Kavanagh > Sent: Tuesday, July 19, 2016 11:32 PM > To: dev at dpdk.org > Subject: [dpdk-dev] [PATCH] doc: fix vhost setup in tep-termination app > guide > > - Fix vhost setup flags > - Add minor

[dpdk-dev] [PATCH] mk: fix static link with glibc < 2.17

2016-07-20 Thread Gu, YongjieX
Tested-by: Yongjie Gu - Check patch: success - Apply patch: success - compilation: success OS: fedora20 GCC: gcc_x86-64, 4.8.3 ICC: 16.0.2 Commit: 608487f3fc96704271c624d0f3fe9d7fb2187aea

[dpdk-dev] [PATCH v2] i40e:Fix for wrong publish of card speed (was mixed between 10G and 40G)

2016-07-20 Thread Wu, Jingjing
> -Original Message- > From: Ido Barnea (ibarnea) [mailto:ibarnea at cisco.com] > Sent: Monday, July 18, 2016 5:57 PM > To: dev at dpdk.org > Cc: Wu, Jingjing > Subject: [PATCH v2] i40e:Fix for wrong publish of card speed (was mixed > between 10G and 40G) > > Signed-off-by: Ido Barnea

[dpdk-dev] [PATCH v4] doc: flow bifurcation guide on Linux

2016-07-20 Thread Wu, Jingjing
> -Original Message- > From: Mcnamara, John > Sent: Wednesday, July 20, 2016 12:35 AM > To: Wu, Jingjing > Cc: dev at dpdk.org; Liu, Yong; Zhang, Helin; Iremonger, Bernard > Subject: RE: [PATCH v4] doc: flow bifurcation guide on Linux > > > > > -Original Message- > > From: Wu,