Re: [dpdk-dev] [PATCH 14/14] test: skip tests when missing requirements

2019-06-08 Thread David Marchand
(pruning a little bit of the CC: list...) On Fri, Jun 7, 2019 at 10:55 PM Honnappa Nagarahalli < honnappa.nagaraha...@arm.com> wrote: > > > > Let's mark as skipped the tests when they are missing some requirements > like a > > number of used cores or specific hardware availability, like compress,

Re: [dpdk-dev] DPDK compilation on arm is failing in Travis

2019-06-08 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: dev On Behalf Of Honnappa Nagarahalli > Sent: Friday, June 7, 2019 7:24 PM > To: Aaron Conole > Cc: msant...@redhat.com; tho...@monjalon.net; Ruifeng Wang (Arm > Technology China) ; Gavin Hu (Arm Technology > China) ; Dharmik Thakkar ; > jerin.ja...@caviumnetw

Re: [dpdk-dev] DPDK compilation on arm is failing in Travis

2019-06-08 Thread Jerin Jacob Kollanukkaran
> -Original Message- > From: Jerin Jacob Kollanukkaran > Sent: Saturday, June 8, 2019 2:08 PM > To: Honnappa Nagarahalli ; Aaron Conole > > Cc: msant...@redhat.com; tho...@monjalon.net; Ruifeng Wang (Arm > Technology China) ; Gavin Hu (Arm Technology > China) ; Dharmik Thakkar ; > jerin.j

Re: [dpdk-dev] [PATCH v4 5/8] net/ether: mark ethernet addresses as being 2-byte aligned

2019-06-08 Thread Ananyev, Konstantin
> > > > > > When including the rte_ether.h header in applications with warnings > > > enabled, a warning was given because of the assumption of 2-byte alignment > > > of ethernet addresses when processing them. > > > > > > .../include/rte_ether.h:149:2: warning: converting a packed ‘const > > >

Re: [dpdk-dev] [PATCH v4 5/8] net/ether: mark ethernet addresses as being 2-byte aligned

2019-06-08 Thread Ananyev, Konstantin
> > > -Original Message- > > > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Stephen Hemminger > > > Sent: Wednesday, June 5, 2019 7:10 PM > > > To: dev@dpdk.org > > > Cc: Richardson, Bruce ; Stephen Hemminger > > > ; Andrew Rybchenko > > > > > > Subject: [dpdk-dev] [PATCH v4 5/8]

[dpdk-dev] [PATCH 0/6] bnxt patch series

2019-06-08 Thread Ajit Khaparde
This is a patchset against dpdk-next-net tree on top of commit d800226ab9ede99ab9bc56a69168e6e587f1. Please apply. Kalesh AP (1): net/bnxt: fix output of port xstats Naresh Kumar PBS (2): net/bnxt: fix interrupt vector array initialization net/bnxt: address build errors reported by int

[dpdk-dev] [PATCH 3/6] net/bnxt: driver to use configured MTU value during load

2019-06-08 Thread Ajit Khaparde
From: Somnath Kotur The MTU value of a port can be (re)configured out-of-band. FW will be returning this configured MTU as part of func_qcfg cmd. Driver to use this value during load time. Signed-off-by: Somnath Kotur Signed-off-by: Kalesh AP Reviewed-by: Lance Richardson Signed-off-by: Ajit

[dpdk-dev] [PATCH 1/6] net/bnxt: add code to redirect tunnel packets

2019-06-08 Thread Ajit Khaparde
From: Somnath Kotur Add code to redirect GRE, NVGRE and VXLAN tunnel packets to the specified VF. Signed-off-by: Somnath Kotur Signed-off-by: Kalesh AP Reviewed-by: Lance Richardson Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt.h| 1 + drivers/net/bnxt/bnxt_filter.h | 5

[dpdk-dev] [PATCH 5/6] net/bnxt: fix interrupt vector array initialization

2019-06-08 Thread Ajit Khaparde
From: Naresh Kumar PBS Initialize the vector array when it is valid, thereby preventing a case were it may be accessed when the array is unallocated Fixes: 1fe427fd08ee ("net/bnxt: support enable/disable interrupt") Signed-off-by: Naresh Kumar PBS Signed-off-by: Ajit Khaparde Reviewed-by: Lan

[dpdk-dev] [PATCH 4/6] net/bnxt: fix output of port xstats

2019-06-08 Thread Ajit Khaparde
From: Kalesh AP If the HWRM_PORT_QSTATS_EXT fails to initialize fw_rx_port_stats_ext_size or fw_tx_port_stats_ext_size, the driver can end up passing junk statistics to the application. Instead of relying on the application to initialize the xstats buffer before calling the xstats_get dev_op, me

[dpdk-dev] [PATCH 2/6] net/bnxt: fix to check for NULL completion ring doorbell in int_handler

2019-06-08 Thread Ajit Khaparde
From: Somnath Kotur It is observed that sometimes during init, the bnxt_int_handler() gets invoked while the cpr->cp_db.doorbell is not yet initialized. Check for the same and return. Signed-off-by: Somnath Kotur Signed-off-by: Kalesh AP Signed-off-by: Ajit Khaparde --- drivers/net/bnxt/bnxt

[dpdk-dev] [PATCH 6/6] net/bnxt: address build errors reported by intel compiler

2019-06-08 Thread Ajit Khaparde
From: Naresh Kumar PBS Address build errors reported by intel compiler while compiling on Windows. Instead of typeof() using the actual type in ALLOW_FUNC Signed-off-by: Naresh Kumar PBS Signed-off-by: Ajit Khaparde Reviewed-by: Lance Richardson --- drivers/net/bnxt/bnxt_ethdev.c | 2 +- 1 f

[dpdk-dev] [PATCH v2 0/7] add multiple cores feature to test-compress-perf

2019-06-08 Thread Tomasz Jozwiak
This patchset adds multiple cores feature to compression perf tool. All structures have been aligned and are consistent with crypto perf tool. All test cases have constructor, runner and destructor and can use more cores and compression devices at the same time. v2 changes: - fixed checkpatch

[dpdk-dev] [PATCH v2 2/7] app/test-compress-perf: add ptest command line option

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch adds --ptest option to make possible a choose of test case from command line. Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/comp_perf_options_parse.c | 36 1 file changed, 36 insertions(+) diff --git a/app/test-compress-perf/

[dpdk-dev] [PATCH v2 3/7] app/test-compress-perf: add verification test case

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch adds a verification part to compression-perf-tool as a separate test case, which can be executed multi-threaded. Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/Makefile| 1 + app/test-compress-perf/comp_perf_test_verify.c | 122 ++

[dpdk-dev] [PATCH v2 6/7] app/test-compress-perf: add force process termination

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch adds a possibility to force controlled process termination as a result of two signals: SIGTERM and SIGINT Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/comp_perf_options.h| 1 + app/test-compress-perf/comp_perf_test_benchmark.c | 13 +

[dpdk-dev] [PATCH v2 4/7] app/test-compress-perf: add benchmark test case

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch adds a benchmark part to compression-perf-tool as a separate test case, which can be executed multi-threaded. Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/Makefile | 1 + app/test-compress-perf/comp_perf_test_benchmark.c | 139 +++

[dpdk-dev] [PATCH v2 1/7] app/test-compress-perf: add weak functions for multi-cores test

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch adds a template functions for multi-cores performance version of compress-perf-tool. Signed-off-by: Tomasz Jozwiak Signed-off-by: Tomasz Jozwiak --- app/test-compress-perf/Makefile | 3 +- app/test-compress-perf/comp_perf.h | 6

[dpdk-dev] [PATCH v2 7/7] doc: update release notes for 19.08

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak Added release note entry for test-compress-perf application Signed-off-by: Tomasz Jozwiak --- doc/guides/rel_notes/release_19_08.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/rel_notes/release_19_08.rst b/doc/guides/rel_notes/release_19_08.rst inde

[dpdk-dev] [PATCH v2 5/7] doc: update dpdk-test-compress-perf description

2019-06-08 Thread Tomasz Jozwiak
From: Tomasz Jozwiak This patch updates a dpdk-test-compress-perf documentation. Signed-off-by: Tomasz Jozwiak --- doc/guides/tools/comp_perf.rst | 34 +++--- 1 file changed, 31 insertions(+), 3 deletions(-) diff --git a/doc/guides/tools/comp_perf.rst b/doc/guides/

Re: [dpdk-dev] [EXT] [PATCH v2 0/7] add multiple cores feature to test-compress-perf

2019-06-08 Thread Shally Verma
> -Original Message- > From: Tomasz Jozwiak > Sent: Sunday, June 9, 2019 3:29 AM > To: dev@dpdk.org; fiona.tr...@intel.com; tjozwia...@gmail.com; Shally > Verma > Subject: [EXT] [PATCH v2 0/7] add multiple cores feature to test-compress- > perf > > External Email > >