Re: [dpdk-dev] [PATCH] ethdev: fix queue mapping documentation

2018-07-15 Thread Ferruh Yigit
On 7/10/2018 8:06 AM, Andrew Rybchenko wrote: > On 10.07.2018 09:20, Jerin Jacob wrote: >> -Original Message- >>> Date: Mon, 2 Jul 2018 16:45:33 +0100 >>> From: Ferruh Yigit >>> To: Andrew Rybchenko , Jerin Jacob >>> , dev@dpdk.org >>> CC: tho...@monjalon.net, sta...@dpdk.org >>> Subject

[dpdk-dev] [PATCH 0/3] net/sfc: improve Rx checksumming support

2018-07-15 Thread Andrew Rybchenko
Andrew Rybchenko (3): net/sfc: move Rx checksum offload check to device level net/sfc: fix Rx queue offloads reporting in queue info net/sfc: prepare to support Rx datapath without checksum drivers/net/sfc/sfc_dp_rx.h| 1 + drivers/net/sfc/sfc_ef10_essb_rx.c | 3 ++- drivers/net/s

[dpdk-dev] [PATCH 3/3] net/sfc: prepare to support Rx datapath without checksum

2018-07-15 Thread Andrew Rybchenko
Signed-off-by: Andrew Rybchenko Reviewed-by: Ivan Malov --- drivers/net/sfc/sfc_dp_rx.h| 1 + drivers/net/sfc/sfc_ef10_essb_rx.c | 3 ++- drivers/net/sfc/sfc_ef10_rx.c | 3 ++- drivers/net/sfc/sfc_rx.c | 19 ++- 4 files changed, 19 insertions(+), 7 delet

[dpdk-dev] [PATCH 1/3] net/sfc: move Rx checksum offload check to device level

2018-07-15 Thread Andrew Rybchenko
Rx checksum offloads are on device level and should be checked and enforced on device level. Avoid logging of Rx checksum offloads enforced for each Rx queue. Fixes: ff6a1197c3b1 ("net/sfc: convert to new Rx offload API") Cc: sta...@dpdk.org Signed-off-by: Andrew Rybchenko Reviewed-by: Ivan Mal

[dpdk-dev] [PATCH 2/3] net/sfc: fix Rx queue offloads reporting in queue info

2018-07-15 Thread Andrew Rybchenko
CRC_STRIP offload is always enabled, but lost here. It is more robust to use device level offloads directly to compose returned value. Fixes: ff6a1197c3b1 ("net/sfc: convert to new Rx offload API") Cc: sta...@dpdk.org Signed-off-by: Andrew Rybchenko Reviewed-by: Ivan Malov --- drivers/net/sfc

Re: [dpdk-dev] warnings when including DPDK headers from a C++17 source file

2018-07-15 Thread Montorsi, Francesco
Hi, From: Stephen Hemminger Sent: Friday, July 13, 2018 5:52 PM To: Montorsi, Francesco Cc: dev@dpdk.org Subject: Re: [dpdk-dev] warnings when including DPDK headers from a C++17 source file > Why is DPDK code using register keyword at all? It is ignored

[dpdk-dev] [PATCH] hash table: add a bucket iterator function

2018-07-15 Thread Qiaobin Fu
Function rte_hash_bucket_iterate() enables callers to incrementally iterate over the hash table bucket by bucket, so that it can avoid creating hiccups and thrashing the cache of the processor. This patch mainly deals with cases in which the hash table is full and one needs to decide if the incomi

[dpdk-dev] [PATCH] net/mlx5: fix compilation issues on old kernels

2018-07-15 Thread Moti Haimovsky
This commit fixes compilation errors due to missing definitions found when compiling mlx5 PMD from DPDK 17.11-LTS on Ubuntu 12.4 with kernel 3.15. Fixes: 75ef62a94301 ("net/mlx5: fix link speed capability information") Fixes: 5bfc9fc112dd ("net/mlx5: use static assert for compile-time sanity chec

[dpdk-dev] [PATCH] bus/vmbus: fix build without libuuid

2018-07-15 Thread Thomas Monjalon
The dependency on libuuid is useless because the required code is embedded in EAL, see commit 6bc67c497a51 ("eal: add uuid API"). Fixes: 831dba47bd36 ("bus/vmbus: add Hyper-V virtual bus support") Signed-off-by: Thomas Monjalon --- drivers/bus/vmbus/Makefile | 2 +- 1 file changed, 1 insertion(

Re: [dpdk-dev] [PATCH] bus/vmbus: fix build without libuuid

2018-07-15 Thread Thomas Monjalon
15/07/2018 22:39, Thomas Monjalon: > The dependency on libuuid is useless because the required code > is embedded in EAL, see commit 6bc67c497a51 ("eal: add uuid API"). > > Fixes: 831dba47bd36 ("bus/vmbus: add Hyper-V virtual bus support") > > Signed-off-by: Thomas Monjalon Applied

Re: [dpdk-dev] [PATCH v11 00/25] Device querying

2018-07-15 Thread Thomas Monjalon
11/07/2018 23:44, Gaetan Rivet: > Gaetan Rivet (25): > devargs: use rte-log functions > devargs: add non-variadic parsing function > kvargs: remove error logs > kvargs: build before EAL > kvargs: introduce a more flexible parsing function > eal: introduce dtor macros > eal: introduce

Re: [dpdk-dev] [PATCH v2] eal/devargs: add option to supply PCI dev args

2018-07-15 Thread Thomas Monjalon
10/07/2018 12:19, Pavan Nikhilesh: > Hi Gaëtan,Ferruh, > > On Wed, Jun 27, 2018 at 11:57:36AM +0200, Gaëtan Rivet wrote: > > On Wed, Jun 27, 2018 at 02:25:30PM +0530, Pavan Nikhilesh wrote: > > > Hi Gaëtan, > > > > > > On Wed, Jun 27, 2018 at 10:39:59AM +0200, Gaëtan Rivet wrote: > > > > Hi Ferruh

Re: [dpdk-dev] [PATCH] app/testpmd: set keep CRC offload flag

2018-07-15 Thread Thomas Monjalon
10/07/2018 15:43, Iremonger, Bernard: > From: Yigit, Ferruh > > If "--disable-crc-strip" testpmd parameter issued, it removes the > > DEV_RX_OFFLOAD_CRC_STRIP flag. > > With introduction of new DEV_RX_OFFLOAD_KEEP_CRC offload flag, this flag > > also should be set when this parameter issued. > > >

Re: [dpdk-dev] [PATCH] app/testpmd: fix typo in setting Tx offload command

2018-07-15 Thread Thomas Monjalon
10/07/2018 17:02, Iremonger, Bernard: > From: Yigit, Ferruh > > > > udp_cksum is duplicated, second one should be tcp_cksum > > > > Fixes: c73a9071877a ("app/testpmd: add commands to test new offload > > API") > > Cc: sta...@dpdk.org > > > > Signed-off-by: Ferruh Yigit > > Acked-by: Bernard Ir

Re: [dpdk-dev] [PATCH v9] checkpatches.sh: Add checks for ABI symbol addition

2018-07-15 Thread Thomas Monjalon
27/06/2018 20:01, Neil Horman: > Recently, some additional patches were added to allow for programmatic > marking of C symbols as experimental. The addition of these markers is > dependent on the manual addition of exported symbols to the EXPERIMENTAL > section of the corresponding libraries versi

Re: [dpdk-dev] [PATCH v10] devtools: alert on new instances of rte_panic and rte_exit

2018-07-15 Thread Thomas Monjalon
27/05/2018 22:34, Arnon Warshavsky: > This is consuming stdin. > > I guess the checkpatch.pl will have nothing to check in the next step. > > We should merge Neil's patch first, because he is adding a tmpfile > > to solve the issue of stdin read only once. > > > > Yup. Missed the fact stdin is con

[dpdk-dev] [dpdk-announce] release candidate 18.0-rc1

2018-07-15 Thread Thomas Monjalon
A new DPDK release candidate is ready for testing: https://git.dpdk.org/dpdk/tag/?id=v18.08-rc1 It is the first milestone of a short release after the huge 18.05. The number of commits is small (570) and there is no specific feature to highlight, except a big work on vhost/virtio (in-order

Re: [dpdk-dev] [dpdk-announce] release candidate 18.08-rc1

2018-07-15 Thread Thomas Monjalon
There was a typo in the subject: it is the release candidate 18.08-rc1. Sorry, being distracted because of the soccer world cup won by France :-) > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v18.08-rc1 > > It is the first milestone of a short re

Re: [dpdk-dev] [PATCH v2] ethdev: fix device info getting

2018-07-15 Thread Lu, Wenzhuo
Hi Andrew, > -Original Message- > From: Andrew Rybchenko [mailto:arybche...@solarflare.com] > Sent: Friday, July 13, 2018 4:03 PM > To: Lu, Wenzhuo ; dev@dpdk.org > Cc: Yigit, Ferruh ; Thomas Monjalon > > Subject: Re: [dpdk-dev] [PATCH v2] ethdev: fix device info getting > > Hi, Wenzhuo,

Re: [dpdk-dev] [PATCH v2] ethdev: fix device info getting

2018-07-15 Thread Lu, Wenzhuo
Hi Andrew, > -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Lu, Wenzhuo > Sent: Monday, July 16, 2018 9:08 AM > To: Andrew Rybchenko ; dev@dpdk.org > Cc: Yigit, Ferruh ; Thomas Monjalon > > Subject: Re: [dpdk-dev] [PATCH v2] ethdev: fix device info getting > >

Re: [dpdk-dev] [RFC] queue: introduce queue APIs and driver framework

2018-07-15 Thread Honnappa Nagarahalli
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, June 27, 2018 11:20 AM > To: Honnappa Nagarahalli > Cc: dev@dpdk.org; Gavin Hu ; nd > Subject: Re: [dpdk-dev] [RFC] queue: introduce queue APIs and driver > framework > > -Original Message- > > Date: Wed, 27 Jun 2018 1

Re: [dpdk-dev] [PATCH v3] app/testpmd: fix little perf drop

2018-07-15 Thread Lu, Wenzhuo
Hi, > -Original Message- > From: Li, Xiaoyun > Sent: Thursday, July 12, 2018 3:56 PM > To: Zhang, Qi Z ; Lu, Wenzhuo > > Cc: dev@dpdk.org; Li, Xiaoyun ; sta...@dpdk.org > Subject: [PATCH v3] app/testpmd: fix little perf drop > > There is about 3% perf drop. And it is because of a bitrate

[dpdk-dev] [Bug 70] freebsd build dpdk18.08-rc1 issue

2018-07-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=70 Bug ID: 70 Summary: freebsd build dpdk18.08-rc1 issue Product: DPDK Version: 18.08 Hardware: x86 OS: FreeBSD Status: CONFIRMED Severity: normal Priority:

[dpdk-dev] [Bug 71] suse build dpdk 18.08-rc1 issue

2018-07-15 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=71 Bug ID: 71 Summary: suse build dpdk 18.08-rc1 issue Product: DPDK Version: 18.08 Hardware: x86 OS: Linux Status: CONFIRMED Severity: normal Priority: Norm

Re: [dpdk-dev] [PATCH 2/4] eventdev: add caps API and PMD callbacks for eth Tx adapter

2018-07-15 Thread Rao, Nikhil
On 7/10/2018 4:26 PM, Pavan Nikhilesh wrote: +int __rte_experimental +rte_event_eth_tx_adapter_caps_get(uint8_t dev_id, uint32_t *caps) +{ The caps get API needs to be similar to rx adapter caps get i.e. it needs to have the eth_port_id as a parameter so that the underlying event dev driver can

Re: [dpdk-dev] [PATCH] rawdev: remove experimental flag

2018-07-15 Thread Hemant Agrawal
Acked-by: Hemant Agrawal

Re: [dpdk-dev] [PATCH v2] net/qede: move SPDX tags to source files

2018-07-15 Thread Hemant
  Acked-by: Hemant Agrawal

Re: [dpdk-dev] [PATCH v2] net/bnx2x: move SPDX tags to source files

2018-07-15 Thread Hemant
Hi Rasesh On 7/14/2018 7:03 AM, Rasesh Mody wrote: diff --git a/drivers/net/bnx2x/bnx2x_stats.h b/drivers/net/bnx2x/bnx2x_stats.h index 6fcaf60..107ef20 100644 --- a/drivers/net/bnx2x/bnx2x_stats.h +++ b/drivers/net/bnx2x/bnx2x_stats.h @@ -1,4 +1,4 @@ -/*- +/* SPDX-License-Identifier: BSD-3-Clau