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

2015-01-29 Thread Dan Aloni
On Wed, Jan 28, 2015 at 03:01:38PM +, Burakov, Anatoly wrote: > Hi Dan > > Apologies for not looking at it earlier. No problem, we are all quite busy :) > > + if (map_addr != MAP_FAILED > > + && memreg[1].offset && memreg[1].size) { > > +

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

2015-01-29 Thread Dan Aloni
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, Intel's NVME adapter, though not a network adapter, provides o

[dpdk-dev] [PATCH v3 00/16] support multi-pthread per core

2015-01-29 Thread Cunming Liang
v3 changes: add sched_yield() in rte_ring to avoid long spin [15/16] 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

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

2015-01-29 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 v3 02/16] eal: new eal option '--lcores' for cpu assignment

2015-01-29 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 v3 03/16] eal: add support parsing socket_id from cpuset

2015-01-29 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 v3 04/16] eal: new TLS definition and API declaration

2015-01-29 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 v3 05/16] eal: add eal_common_thread.c for common thread API

2015-01-29 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 v3 06/16] eal: add rte_gettid() to acquire unique system tid

2015-01-29 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 v3 08/16] enic: fix re-define freebsd compile complain

2015-01-29 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 v3 07/16] eal: apply affinity of EAL thread by assigned cpuset

2015-01-29 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 v3 09/16] malloc: fix the issue of SOCKET_ID_ANY

2015-01-29 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] [PATCH v3 10/16] log: fix the gap to support non-EAL thread

2015-01-29 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 v3 13/16] mempool: add support to non-EAL thread

2015-01-29 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 v3 14/16] ring: add support to non-EAL thread

2015-01-29 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 v3 15/16] ring: add sched_yield to avoid spin forever

2015-01-29 Thread Cunming Liang
It does a gentle yield after spin for a while. It reduces the wasting by spin when the preemption happens. Signed-off-by: Cunming Liang --- lib/librte_ring/rte_ring.h | 25 +++-- 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/lib/librte_ring/rte_ring.h b/lib/l

[dpdk-dev] [PATCH v3 16/16] timer: add support to non-EAL thread

2015-01-29 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 v3 11/16] eal: set _lcore_id and _socket_id to (-1) by default

2015-01-29 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 v3 12/16] eal: fix recursive spinlock in non-EAL thraed

2015-01-29 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 0/2] enable SRIOV switch in i40e driver

2015-01-29 Thread Jingjing Wu
Enable SRIOV switch in i40e driver. With this patch set, SRIOV switch can be done on Fortville NICs. Jingjing Wu (2): i40e: fix the bug when configuring vsi i40e: enable internal switch of pf lib/librte_pmd_i40e/i40e_ethdev.c | 38 +- 1 file changed, 37 in

[dpdk-dev] [PATCH 1/2] i40e: fix the bug when configuring vsi

2015-01-29 Thread Jingjing Wu
In i40e_vsi_config_tc_queue_mapping, should add a flag to indicate another valid setting by OR operation, but not set this flag to valid_sections, otherwise it will overwrite the flags set before. Signed-off-by: Jingjing Wu --- lib/librte_pmd_i40e/i40e_ethdev.c | 2 +- 1 file changed, 1 insertio

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Jingjing Wu
This patch enables PF's internal switch by setting ALLOWLOOPBACK flag when VEB is created. With this patch, traffic from PF can be switched on the VEB. Signed-off-by: Jingjing Wu --- lib/librte_pmd_i40e/i40e_ethdev.c | 36 1 file changed, 36 insertions(+) di

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

2015-01-29 Thread Wang, Zhihong
> -Original Message- > From: EDMISON, Kelvin (Kelvin) [mailto:kelvin.edmison at alcatel-lucent.com] > Sent: Thursday, January 29, 2015 5:48 AM > To: Wang, Zhihong; Stephen Hemminger; Neil Horman > Cc: dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 0/4] DPDK memcpy optimization > > > O

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Qiu, Michael
On 1/29/2015 9:42 AM, Jingjing Wu wrote: > This patch enables PF's internal switch by setting ALLOWLOOPBACK > flag when VEB is created. With this patch, traffic from PF can be > switched on the VEB. > > Signed-off-by: Jingjing Wu > --- > lib/librte_pmd_i40e/i40e_ethdev.c | 36

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

2015-01-29 Thread Qiu, Michael
On 1/28/2015 5:51 PM, Danny Zhou wrote: Commit log is better for others to review the patch I think, it's helpful for others to understand your patch. > Signed-off-by: Danny Zhou > --- > lib/librte_ether/rte_ethdev.c | 45 ++ > lib/librte_ether/rte_ethdev.h | 57

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

2015-01-29 Thread Zhihong Wang
This patch set optimizes memcpy for DPDK for both SSE and AVX platforms. It also extends memcpy test coverage with unaligned cases and more test points. Optimization techniques are summarized below: 1. Utilize full cache bandwidth 2. Enforce aligned stores 3. Apply load address alignment based

[dpdk-dev] [PATCH v2 3/4] app/test: Extended test coverage in app/test/test_memcpy_perf.c

2015-01-29 Thread Zhihong Wang
Main code changes: 1. Added more typical data points for a thorough performance test 2. Added unaligned test cases since it's common in DPDK usage Signed-off-by: Zhihong Wang --- app/test/test_memcpy_perf.c | 220 +++- 1 file changed, 138 insertions(+),

[dpdk-dev] [PATCH v2 1/4] app/test: Disabled VTA for memcpy test in app/test/Makefile

2015-01-29 Thread Zhihong Wang
VTA is for debugging only, it increases compile time and binary size, especially when there're a lot of inlines. So disable it since memcpy test contains a lot of inline calls. Signed-off-by: Zhihong Wang --- app/test/Makefile | 6 ++ 1 file changed, 6 insertions(+) diff --git a/app/test/M

[dpdk-dev] [PATCH v2 2/4] app/test: Removed unnecessary test cases in app/test/test_memcpy.c

2015-01-29 Thread Zhihong Wang
Removed unnecessary test cases for base move functions since the function "func_test" covers them all. Signed-off-by: Zhihong Wang --- app/test/test_memcpy.c | 52 +- 1 file changed, 1 insertion(+), 51 deletions(-) diff --git a/app/test/test_memc

[dpdk-dev] [PATCH v2 4/4] lib/librte_eal: Optimized memcpy in arch/x86/rte_memcpy.h for both SSE and AVX platforms

2015-01-29 Thread Zhihong Wang
Main code changes: 1. Differentiate architectural features based on CPU flags a. Implement separated move functions for SSE/AVX/AVX2 to make full utilization of cache bandwidth b. Implement separated copy flow specifically optimized for target architecture 2. Rewrite the memcpy functi

[dpdk-dev] [PATCH 00/17] unified packet type

2015-01-29 Thread Helin Zhang
Currently only 6 bits which are stored in ol_flags are used to indicate the packet types. This is not enough, as some NIC hardware can recognize quite a lot of packet types, e.g i40e hardware can recognize more than 150 packet types. Hiding those packet types hides hardware offload capabilities whi

[dpdk-dev] [PATCH 01/17] mbuf: add definitions of unified packet types

2015-01-29 Thread Helin Zhang
As there are only 6 bit flags in ol_flags for indicating packet types, which is not enough to describe all the possible packet types hardware can recognize. For example, i40e hardware can recognize more than 150 packet types. Unified packet type is composed of tunnel type, L3 type, L4 type and inne

[dpdk-dev] [PATCH 02/17] e1000: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_e1000/igb_rxtx.c | 95 ++--- 1 file changed, 80 insertions(+), 15 deletions(-) diff --git a/lib/libr

[dpdk-dev] [PATCH 03/17] ixgbe: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_ixgbe/ixgbe_rxtx.c | 141 +- 1 file changed, 107 insertions(+), 34 deletions(-) diff --git a/lib/lib

[dpdk-dev] [PATCH 04/17] ixgbe: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type for Vector PMD. Signed-off-by: Cunming Liang Signed-off-by: Helin Zhang --- lib/librte_pmd_ixgbe/ixgbe_rxtx_vec.c | 39 +++ 1 file changed, 21 insertio

[dpdk-dev] [PATCH 05/17] i40e: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang Signed-off-by: Jijiang Liu --- lib/librte_pmd_i40e/i40e_rxtx.c | 778 ++-- 1 file changed, 504 insertions(+), 274 delet

[dpdk-dev] [PATCH 06/17] bond: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_bond/rte_eth_bond_pmd.c | 9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/librte_pmd_bond/rte_eth_bond_pmd

[dpdk-dev] [PATCH 07/17] enic: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_enic/enic_main.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/lib/librte_pmd_enic/enic_main.c b/lib

[dpdk-dev] [PATCH 08/17] vmxnet3: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks of packet type for ol_flags are replaced by unified packet type. Signed-off-by: Helin Zhang --- lib/librte_pmd_vmxnet3/vmxnet3_rxtx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_pmd_vmxnet3/vmxnet3_rxtx.c b/l

[dpdk-dev] [PATCH 09/17] app/test-pipeline: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- app/test-pipeline/pipeline_hash.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/te

[dpdk-dev] [PATCH 10/17] app/test-pmd: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- app/test-pmd/csumonly.c | 6 +++--- app/test-pmd/rxonly.c | 9 +++-- 2 files changed, 6 insertions(+), 9 d

[dpdk-dev] [PATCH 11/17] app/test: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- app/test/packet_burst_generator.c | 10 -- 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a

[dpdk-dev] [PATCH 12/17] examples/ip_fragmentation: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- examples/ip_fragmentation/main.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/exam

[dpdk-dev] [PATCH 14/17] examples/l3fwd-acl: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- examples/l3fwd-acl/main.c | 19 ++- 1 file changed, 6 insertions(+), 13 deletions(-) diff --git

[dpdk-dev] [PATCH 13/17] examples/ip_reassembly: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- examples/ip_reassembly/main.c | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/example

[dpdk-dev] [PATCH 15/17] examples/l3fwd-power: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- examples/l3fwd-power/main.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/l3

[dpdk-dev] [PATCH 17/17] mbuf: remove old packet type bit masks for ol_flags

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- lib/librte_mbuf/rte_mbuf.c | 6 -- lib/librte_mbuf/rte_mbuf.h | 10 ++ 2 files changed, 2 insertion

[dpdk-dev] [PATCH 16/17] examples/l3fwd: support of unified packet type

2015-01-29 Thread Helin Zhang
To unify packet types among all PMDs, bit masks and relevant macros of packet type for ol_flags are replaced by unified packet type and relevant macros. Signed-off-by: Helin Zhang --- examples/l3fwd/main.c | 64 +-- 1 file changed, 37 insertions(+)

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

2015-01-29 Thread Qiu, Michael
On 1/28/2015 5:52 PM, Danny Zhou wrote: > 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

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

2015-01-29 Thread Fu, JingguoX
Basic Information Patch nameDPDK memcpy optimization Brief description about test purposeVerify memory copy and memory copy performance cases on variety OS Test Flag Tested-by Tester name jingguox.fu at intel.com Test Tool Chain i

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

2015-01-29 Thread Zhou, Danny
Thanks for review Steve. Comments inline. > -Original Message- > From: Liang, Cunming > Sent: Thursday, January 29, 2015 2:10 AM > To: Zhou, Danny; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v1 4/5] eal: add per rx queue interrupt > handling based on VFIO > > > > > -Original

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

2015-01-29 Thread Zhou, Danny
> -Original Message- > From: Liang, Cunming > Sent: Thursday, January 29, 2015 2:34 AM > To: Zhou, Danny; dev at dpdk.org > Subject: RE: [dpdk-dev] [PATCH v1 5/5] L3fwd-power: enable one-shot rx > interrupt and polling/interrupt mode switch > > > > > -Original Message- > > Fro

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Wu, Jingjing
Hi, Michael > -Original Message- > From: Qiu, Michael > Sent: Thursday, January 29, 2015 9:56 AM > To: Wu, Jingjing; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf > > On 1/29/2015 9:42 AM, Jingjing Wu wrote: > > This patch enables PF's internal s

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

2015-01-29 Thread Qiu, Michael
On 1/28/2015 5:52 PM, Danny Zhou wrote: > Signed-off-by: Danny Zhou > Signed-off-by: Yong Liu > --- [...] > +static void > +eal_intr_process_rx_interrupts(uint8_t port_id, struct epoll_event *events, > int nfds) > +{ > + int n, bytes_read; > + union rte_intr_read_buffer buf; > + st

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

2015-01-29 Thread Zhou, Danny
> -Original Message- > From: Qiu, Michael > Sent: Thursday, January 29, 2015 1:07 PM > To: Zhou, Danny; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v1 4/5] eal: add per rx queue interrupt > handling based on VFIO > > On 1/28/2015 5:52 PM, Danny Zhou wrote: > > Signed-off-by: Danny

[dpdk-dev] [PATCH 00/15] migrate flow director in ixgbe driver to new API

2015-01-29 Thread Jingjing Wu
The patch set uses new filter_ctrl API to replace old flow director filter APIs. It uses new functions and structure to replace old ones in ixgbe driver, updates commands to replace old ones in testpmd, and removes the old APIs Jingjing Wu (15): ixgbe: migrate flow director filter operations (ad

[dpdk-dev] [PATCH 01/15] ixgbe: migrate flow director filter operations (add/delete/update) to new API

2015-01-29 Thread Jingjing Wu
This patch changes the add/delete/update operations to be implemented through filter_ctrl API and RTE_ETH_FILTER_ADD/RTE_ETH_FILTER_DELETE/RTE_ETH_FILTER_UPDATE ops. It also removes the callback functions: - ixgbe_eth_dev_ops.fdir_add_signature_filter - ixgbe_eth_dev_ops.fdir_update_signature_fi

[dpdk-dev] [PATCH 02/15] ethdev: extend flow type and flexible payload type definition for flow director

2015-01-29 Thread Jingjing Wu
This patch adds RTE_ETH_FLOW_TYPE_RAW and RTE_ETH_RAW_PAYLOAD to support the flexible payload is started from the beginning of the packet. Signed-off-by: Jingjing Wu --- lib/librte_ether/rte_eth_ctrl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/li

[dpdk-dev] [PATCH 03/15] ixgbe: implement the flexpayload configuration of flow director filter

2015-01-29 Thread Jingjing Wu
This patch implement the flexpayload configuration of flow director filter. Signed-off-by: Jingjing Wu --- lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 1 + lib/librte_pmd_ixgbe/ixgbe_fdir.c | 114 +--- 2 files changed, 108 insertions(+), 7 deletions(-) diff --git a

[dpdk-dev] [PATCH 04/15] app/test: remove the flexbytes_offset setting in test_link_bonding

2015-01-29 Thread Jingjing Wu
This patch removes the flexbytes_offset setting, because the flexible payload setting is done by flex_conf instead of flexbytes_offset. Signed-off-by: Jingjing Wu --- app/test/test_link_bonding.c | 1 - 1 file changed, 1 deletion(-) diff --git a/app/test/test_link_bonding.c b/app/test/test_link

[dpdk-dev] [PATCH 05/15] testpmd: remove the flexbytes_offset setting

2015-01-29 Thread Jingjing Wu
This patch removes the flexbytes_offset setting, because the flexible payload setting is done by flex_conf instead of flexbytes_offset. Signed-off-by: Jingjing Wu --- app/test-pmd/parameters.c | 16 app/test-pmd/testpmd.c| 1 - 2 files changed, 17 deletions(-) diff --git a

[dpdk-dev] [PATCH 07/15] ethdev: structures definition for flow director masks

2015-01-29 Thread Jingjing Wu
This patch defines structure rte_eth_fdir_masks. It extends rte_fdir_conf and rte_eth_fdir_info to contain mask's configuration. Signed-off-by: Jingjing Wu --- lib/librte_ether/rte_eth_ctrl.h | 13 + lib/librte_ether/rte_ethdev.h | 1 + 2 files changed, 14 insertions(+) diff --gi

[dpdk-dev] [PATCH 08/15] ixgbe: implement the mask configuration of flow director filter

2015-01-29 Thread Jingjing Wu
This patch implement the mask configuration of flow director filter, by using the mask defined in rte_fdir_conf instead of callback function fdir_set_masks. Signed-off-by: Jingjing Wu --- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 1 - lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 16 +- lib/librte_pmd_ix

[dpdk-dev] [PATCH 06/15] ethdev: remove flexbytes_offset from rte_fdir_conf

2015-01-29 Thread Jingjing Wu
This patch removes the flexbytes_offset from rte_fdir_conf, because the flexible payload setting is done by flex_conf instead of flexbytes_offset. Signed-off-by: Jingjing Wu --- lib/librte_ether/rte_ethdev.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/librte_ether/rte_ethdev.h b/lib

[dpdk-dev] [PATCH 09/15] ixgbe: implement the get info and statistic operations of flow director

2015-01-29 Thread Jingjing Wu
This patch changes the get info operation to be implemented through filter_ctrl API and RTE_ETH_FILTER_INFO/RTE_ETH_FILTER_STATS ops. Signed-off-by: Jingjing Wu --- lib/librte_pmd_ixgbe/ixgbe_ethdev.c | 1 - lib/librte_pmd_ixgbe/ixgbe_ethdev.h | 3 -- lib/librte_pmd_ixgbe/ixgbe_fdir.c | 94 +

[dpdk-dev] [PATCH 10/15] ixgbe: implement the flush operation of flow director

2015-01-29 Thread Jingjing Wu
This patch implement RTE_ETH_FILTER_FLUSH operation to delete all flow director filters in ixgbe driver. Signed-off-by: Jingjing Wu --- lib/librte_pmd_ixgbe/ixgbe_fdir.c | 26 ++ 1 file changed, 26 insertions(+) diff --git a/lib/librte_pmd_ixgbe/ixgbe_fdir.c b/lib/librt

[dpdk-dev] [PATCH 12/15] testpmd: update function to show flow director information

2015-01-29 Thread Jingjing Wu
update the function to print information includes: - capability - mask - flex configuration Signed-off-by: Jingjing Wu --- app/test-pmd/config.c | 77 ++- 1 file changed, 45 insertions(+), 32 deletions(-) diff --git a/app/test-pmd/config.c b/ap

[dpdk-dev] [PATCH 13/15] testpmd: set the default value of flow director's mask

2015-01-29 Thread Jingjing Wu
this patch sets the default value of flow director's mask. Signed-off-by: Jingjing Wu --- app/test-pmd/testpmd.c | 13 + 1 file changed, 13 insertions(+) diff --git a/app/test-pmd/testpmd.c b/app/test-pmd/testpmd.c index 2773c10..8b41fe5 100644 --- a/app/test-pmd/testpmd.c +++ b/app

[dpdk-dev] [PATCH 14/15] testpmd: remove old commands for flow director

2015-01-29 Thread Jingjing Wu
Following commands of flow director filter are removed: - add_signature_filter - upd_signature_filter - rm_signature_filter - add_perfect_filter - upd_perfect_filter - rm_perfect_filter - set_masks_filter - set_ipv6_masks_filter Signed-off-by: Jingjing Wu --- app/test-pmd/cmdline

[dpdk-dev] [PATCH 11/15] testpmd: add and update commands for flow director

2015-01-29 Thread Jingjing Wu
Add new command to set flow director's mask: - flow_director_mask Update arguments of commands: - flow_director_filter - flow_director_flex_mask - flow_director_flex_payload Signed-off-by: Jingjing Wu --- app/test-pmd/cmdline.c | 182 - 1 f

[dpdk-dev] [PATCH 15/15] doc: commands changed in testpmd_funcs.rst for flow director

2015-01-29 Thread Jingjing Wu
Following commands of flow director filter are removed: - add_signature_filter - upd_signature_filter - rm_signature_filter - add_perfect_filter - upd_perfect_filter - rm_perfect_filter - set_masks_filter - set_ipv6_masks_filter New command is added to set flow director's mask: -

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

2015-01-29 Thread Zhou, Danny
> -Original Message- > From: Qiu, Michael > Sent: Thursday, January 29, 2015 11:40 AM > To: Zhou, Danny; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH v1 2/5] ixgbe: enable rx queue interrupts for > both PF and VF > > On 1/28/2015 5:52 PM, Danny Zhou wrote: > > Signed-off-by: Danny Z

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Qiu, Michael
On 1/29/2015 12:57 PM, Wu, Jingjing wrote: > Hi, Michael > >> -Original Message- >> From: Qiu, Michael >> Sent: Thursday, January 29, 2015 9:56 AM >> To: Wu, Jingjing; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf >> >> On 1/29/2015 9:42 AM, Jingj

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

2015-01-29 Thread Fu, JingguoX
Basic Information Patch nameDPDK memcpy optimization v2 Brief description about test purposeVerify memory copy and memory copy performance cases on variety OS Test Flag Tested-by Tester name jingguox.fu at intel.com Test Tool Chai

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Wu, Jingjing
Hi, Michael > -Original Message- > From: Qiu, Michael > Sent: Thursday, January 29, 2015 2:06 PM > To: Wu, Jingjing; dev at dpdk.org > Subject: Re: [dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf > > On 1/29/2015 12:57 PM, Wu, Jingjing wrote: > > Hi, Michael > > > >> -Origin

[dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf

2015-01-29 Thread Qiu, Michael
On 1/29/2015 2:27 PM, Wu, Jingjing wrote: > Hi, Michael > >> -Original Message- >> From: Qiu, Michael >> Sent: Thursday, January 29, 2015 2:06 PM >> To: Wu, Jingjing; dev at dpdk.org >> Subject: Re: [dpdk-dev] [PATCH 2/2] i40e: enable internal switch of pf >> >> On 1/29/2015 12:57 PM, Wu, J

[dpdk-dev] [PATCH v3 01/25] virtio: Rearrange resource initialization

2015-01-29 Thread Ouyang Changchun
For clarity make the setup of PCI resources for Linux into a function rather than block of code #ifdef'd in middle of dev_init. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 76 --- 1 file changed, 43

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

2015-01-29 Thread Ouyang Changchun
Virtio has link state interrupt which can be used. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 78 +++ lib/librte_pmd_virtio/virtio_pci.c| 22 ++ lib/librte_pmd_virtio/virtio_pci.h|

[dpdk-dev] [PATCH v3 03/25] virtio: Allow starting with link down

2015-01-29 Thread Ouyang Changchun
Starting driver with link down should be ok, it is with every other driver. So just allow it. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/librte_pmd_virti

[dpdk-dev] [PATCH v3 05/25] ether: Add soft vlan encap/decap functions

2015-01-29 Thread Ouyang Changchun
It is helpful to allow device drivers that don't support hardware VLAN stripping to emulate this in software. This allows application to be device independent. Avoid discarding shared mbufs. Make a copy in rte_vlan_insert() of any packet to be tagged that has a reference count > 1. Signed-off-by:

[dpdk-dev] [PATCH v3 02/25] virtio: Use weaker barriers

2015-01-29 Thread Ouyang Changchun
The DPDK driver only has to deal with the case of running on PCI and with SMP. In this case, the code can use the weaker barriers instead of using hard (fence) barriers. This will help performance. The rationale is explained in Linux kernel virtio_ring.h. To make it clearer that this is a virtio t

[dpdk-dev] [PATCH v3 06/25] virtio: Use software vlan stripping

2015-01-29 Thread Ouyang Changchun
Implement VLAN stripping in software. This allows application to be device independent. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_ether/rte_ethdev.h | 3 +++ lib/librte_pmd_virtio/virtio_ethdev.c | 2 ++ lib/librte_pmd_virtio/virtio_pci.h| 1

[dpdk-dev] [PATCH v3 07/25] virtio: Remove unnecessary adapter structure

2015-01-29 Thread Ouyang Changchun
Cleanup virtio code by eliminating unnecessary nesting of virtio hardware structure inside adapter structure. Also allows removing unneeded macro, making code clearer. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 43 ---

[dpdk-dev] [PATCH v3 09/25] virtio: Fix how states are handled during initialization

2015-01-29 Thread Ouyang Changchun
Change order of initialiazation to match Linux kernel. Don't blow away control queue by doing reset when stopped. Calling dev_stop then dev_start would not work. Dev_stop was calling virtio reset and that would clear all queues and clear all feature negotiation. Resolved by only doing reset on dev

[dpdk-dev] [PATCH v3 00/25] Single virtio implementation

2015-01-29 Thread Ouyang Changchun
This is the patch set for single virtio implementation. Why we need single virtio? As we know currently there are at least 3 virtio PMD driver implementations: A) lib/librte_pmd_virtio(refer as virtio A); B) virtio_net_pmd by 6wind(refer as virtio B); C) virtio by Broc

[dpdk-dev] [PATCH v3 11/25] virtio: Check for packet headroom at compile time

2015-01-29 Thread Ouyang Changchun
Better to check at compile time than fail at runtime. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c b/lib/librte_pmd_virti

[dpdk-dev] [PATCH v3 08/25] virtio: Remove redundant vq_alignment

2015-01-29 Thread Ouyang Changchun
Since vq_alignment is constant (always 4K), it does not need to be part of the vring struct. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 1 - lib/librte_pmd_virtio/virtio_rxtx.c | 2 +- lib/librte_pmd_virtio/virtqueue.h | 3

[dpdk-dev] [PATCH v3 12/25] virtio: Move allocation before initialization

2015-01-29 Thread Ouyang Changchun
If allocation fails, don't want to leave virtio device stuck in middle of initialization sequence. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/li

[dpdk-dev] [PATCH v3 13/25] virtio: Add support for vlan filtering

2015-01-29 Thread Ouyang Changchun
Virtio supports vlan filtering. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 31 +-- 1 file changed, 29 insertions(+), 2 deletions(-) diff --git a/lib/librte_pmd_virtio/virtio_ethdev.c b/lib/librte_pmd

[dpdk-dev] [PATCH v3 15/25] virtio: Add ability to set MAC address

2015-01-29 Thread Ouyang Changchun
Need to have do special things to set default mac address. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_ether/rte_ethdev.h | 5 + lib/librte_pmd_virtio/virtio_ethdev.c | 24 2 files changed, 29 insertions(+) diff --git a/

[dpdk-dev] [PATCH v3 10/25] virtio: Make vtpci_get_status local

2015-01-29 Thread Ouyang Changchun
Make vtpci_get_status a local function as it is used in one file. igned-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_pci.c | 4 +++- lib/librte_pmd_virtio/virtio_pci.h | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte

[dpdk-dev] [PATCH v3 16/25] virtio: Free mbuf's with threshold

2015-01-29 Thread Ouyang Changchun
This makes virtio driver work like ixgbe. Transmit buffers are held until a transmit threshold is reached. The previous behavior was to hold mbuf's until the ring entry was reused which caused more memory usage than needed. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- li

[dpdk-dev] [PATCH v3 14/25] virtio: Add suport for multiple mac addresses

2015-01-29 Thread Ouyang Changchun
Virtio support multiple MAC addresses. Signed-off-by: Stephen Hemminger Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_ethdev.c | 94 ++- lib/librte_pmd_virtio/virtio_ethdev.h | 3 +- lib/librte_pmd_virtio/virtqueue.h | 34 - 3

[dpdk-dev] [PATCH v3 18/25] virtio: Fix descriptor index issue

2015-01-29 Thread Ouyang Changchun
It should use vring descriptor index instead of used_ring index to index vq_descx. Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_rxtx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_pmd_virtio/virtio_rxtx.c b/lib/librte_pmd_virtio/virtio_rxtx

[dpdk-dev] [PATCH v3 19/25] ether: Fix vlan strip/insert issue

2015-01-29 Thread Ouyang Changchun
Need swap the data from cpu to BE(big endian) for vlan-type. Signed-off-by: Changchun Ouyang --- lib/librte_ether/rte_ether.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_ether/rte_ether.h b/lib/librte_ether/rte_ether.h index 74f71c2..0797908 100644 --- a/li

[dpdk-dev] [PATCH v3 17/25] virtio: Use port IO to get PCI resource.

2015-01-29 Thread Ouyang Changchun
Make virtio not require UIO for some security reasons, this is to match 6Wind's virtio-net-pmd. Signed-off-by: Changchun Ouyang --- config/common_linuxapp | 2 + lib/librte_eal/common/include/rte_pci.h | 4 ++ lib/librte_eal/linuxapp/eal/eal_pci.c | 5 +- lib/librte_pmd_vi

[dpdk-dev] [PATCH v3 20/25] example/vhost: Avoid inserting vlan twice

2015-01-29 Thread Ouyang Changchun
Check if it has already been vlan-tagged packet, if true, avoid inserting a duplicated vlan tag into it. This is a possible case when guest has the capability of inserting vlan tag. Signed-off-by: Changchun Ouyang --- examples/vhost/main.c | 45 - 1 f

[dpdk-dev] [PATCH v3 21/25] example/vhost: Add vlan-strip cmd line option

2015-01-29 Thread Ouyang Changchun
Support turn on/off RX VLAN strip on host, this let guest get the chance of using its software VALN strip functionality. Signed-off-by: Changchun Ouyang --- examples/vhost/main.c | 25 - 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/examples/vhost/main.c b

[dpdk-dev] [PATCH v3 22/25] virtio: Use soft vlan strip in mergeable Rx path

2015-01-29 Thread Ouyang Changchun
To keep the consistent logic with normal Rx path, the mergeable Rx path also needs software vlan strip/decap if it is enabled. Signed-off-by: Changchun Ouyang --- lib/librte_pmd_virtio/virtio_rxtx.c | 4 1 file changed, 4 insertions(+) diff --git a/lib/librte_pmd_virtio/virtio_rxtx.c b/li

[dpdk-dev] [PATCH v3 23/25] virtio: Fix zero copy break issue

2015-01-29 Thread Ouyang Changchun
vHOST zero copy need get vring descriptor and its buffer address to set the DMA address of HW ring, it is done in new_device when ioctl set_backend is called. This requies virtio_dev_rxtx_start is called before vtpci_reinit_complete, which makes sure the vring descriptro and its buffer is ready be

  1   2   >