(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,
> -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
> -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
> > >
> > > 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
> > >
> > > -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]
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
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
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
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
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
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
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
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
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/
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 ++
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 +
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 +++
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
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
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/
> -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
>
>
21 matches
Mail list logo