Re: [dpdk-dev] Welcome to the "dev" mailing list

2017-03-19 Thread Ankit Aggarwal
Hi Team, Is there any way we can get the performance numbers of intel x540 vs x550. We also checked that x540 is PCIe-2 and X550 is PCIe-3, so most of the pcie3 devices are backward compatible. We also want to know how it will depend on processor family. Thanks with regards On Mon, Mar 20, 2017

Re: [dpdk-dev] [PATCH 16/17] vhost: rename header file

2017-03-19 Thread Yuanhan Liu
On Tue, Mar 14, 2017 at 01:59:49PM +0100, Maxime Coquelin wrote: > > > On 03/03/2017 10:51 AM, Yuanhan Liu wrote: > >Rename "rte_virtio_net.h" to "rte_vhost.h", to not let it be virtio > >net specific. > > > >Signed-off-by: Yuanhan Liu > >--- > > doc/guides/rel_notes/deprecation.rst | 9 -- >

Re: [dpdk-dev] [PATCH v4 02/17] app/test: eventdev link all queues before start

2017-03-19 Thread Jerin Jacob
On Fri, Mar 10, 2017 at 07:43:17PM +, Harry van Haaren wrote: > The software eventdev can lock-up if not all queues are > linked to a port. For this reason, the software evendev > fails to start if queues are not linked to anything. > > This commit creates dummy links from all queues to port >

Re: [dpdk-dev] [PATCH] net/i40e: enable statistic reset for VF

2017-03-19 Thread Zhang, Helin
> -Original Message- > From: Thomas Monjalon [mailto:thomas.monja...@6wind.com] > Sent: Friday, March 17, 2017 6:15 PM > To: Zhang, Helin > Cc: Zhang, Qi Z; techbo...@dpdk.org; dev@dpdk.org; Wu, Jingjing; Yigit, > Ferruh; Liang, Cunming; Fastabend, John R > Subject: Re: [dpdk-dev] [PATCH]

Re: [dpdk-dev] [PATCH] maintainers: resign from eal maintenance

2017-03-19 Thread Thomas Monjalon
2017-03-16 11:47, David Marchand: > I have been a little too busy these past months and could not really > do any real maintainer stuff for dpdk for a while now. No worries. It happens to be busy with other stuff, and maintainer's role takes time. > I have no clear idea when I could dedicate more

[dpdk-dev] Fixed : ip_pipeline firewall port range filtering

2017-03-19 Thread Shyam Shrivastav
Found the issue,was debugging acl library while issue was with firewall acl definition/registration, simple fix makes udp/tcp src/dest based port filtering work with ip_pipeline firewall. Below is git diff, will submit patch if members suggest . I am very new here .. Also I was going through low l

[dpdk-dev] [PATCH v3 2/3] net/thunderx: fix build issues with FreeBSD target

2017-03-19 Thread Jerin Jacob
SIMPLEQ_* operations are not available in FreeBSD. Replacing with equivalent STAILQ_* operations. Fixes: f2546f8e51b8 ("net/thunderx/base: add functions to store qsets") Signed-off-by: Jerin Jacob --- drivers/net/thunderx/base/nicvf_bsvf.c | 12 ++-- drivers/net/thunderx/base/nicvf_bsvf

[dpdk-dev] [PATCH v3 3/3] config: enable the thunderx nicvf driver

2017-03-19 Thread Jerin Jacob
Enable Thunderx nicvf PMD driver in the common config as it does not have build dependency with any external library and/or architecture. Signed-off-by: Jerin Jacob --- config/common_base | 2 +- config/defconfig_arm64-thunderx-linuxapp-gcc | 10 -- doc/guides/

[dpdk-dev] [PATCH v3 1/3] net/thunderx: fix build issues with 32bit target

2017-03-19 Thread Jerin Jacob
Fixes: e438796617dc ("net/thunderx: add PMD skeleton") Signed-off-by: Jerin Jacob --- v3: - Fixed the build error when debug enabled(Ferruh) --- drivers/net/thunderx/nicvf_struct.h | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/net/thunderx/nicvf_struct.

[dpdk-dev] [PATCH 2/2] test: add a new unit test case status

2017-03-19 Thread Jerin Jacob
Add a new unit test case status called "unsupported". This is useful in marking a test case "unsupported" if testcase returns -ENOTSUP at runtime. Signed-off-by: Jerin Jacob --- test/test/test.c | 10 +- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/test/test.c b/test

[dpdk-dev] [PATCH 1/2] test: store only the test case name

2017-03-19 Thread Jerin Jacob
Store only the test case name in unit test case structure.The actor who renders the test status can add appropriate test status. This enables adding the new test case status without storing the additional information in the unit test case structure. Signed-off-by: Jerin Jacob --- test/test/test.

[dpdk-dev] [PATCH 0/2] add support for "unsupported testcases" in test framework

2017-03-19 Thread Jerin Jacob
This patchset adds support for marking "unsupported" test case if the test case returns -ENOTSUP. The change was driven by the need that captured in the following link http://dpdk.org/ml/archives/dev/2017-March/059950.html Jerin Jacob (2): test: store only the test case name test: add a new u

[dpdk-dev] [PATCH v4] devtools: add tags and cscope index file generation support

2017-03-19 Thread Jerin Jacob
This script generates cscope, gtags, and tags index files based on EAL environment(architecture and OS(linux/bsd)). If EAL environment(config) is not specified, the script generates tag files based on available source code. Usage: build-tags.sh [-h] [-v] tags|cscope|gtags|etags [config] example