[dpdk-dev] [PATCH] net/e1000: correct queue number in RSS configuration

2018-09-13 Thread Beilei Xing
RSS configuration works for all e1000 NICs except 82576. This patch fixes this issue by correcting queue number in RSS configuration. Fixes: 424ae915baf0 ("net/e1000: move RSS to flow API") Fixes: ac8d22de2394 ("ethdev: flatten RSS configuration in flow API") Cc: sta...@dpdk.org Signed-off-by: Be

Re: [dpdk-dev] [PATCH] net/ifc: do not notify before HW ready

2018-09-13 Thread Wang, Xiao W
Hi Xiaolong, > -Original Message- > From: Ye, Xiaolong > Sent: Thursday, September 13, 2018 8:55 PM > To: Wang, Xiao W > Cc: Bie, Tiwei ; dev@dpdk.org > Subject: Re: [PATCH] net/ifc: do not notify before HW ready > > Hi, Xiao > > On 09/10, Xiao Wang wrote: > >Fixes: a3f8150eac6d ("net/i

Re: [dpdk-dev] [PATCH 00/16] Support externally allocated memory in DPDK

2018-09-13 Thread Shahaf Shuler
Hi Anatoly, First thanks for the patchset, it is a great enhancement. See question below. Tuesday, September 4, 2018 4:12 PM, Anatoly Burakov: > Subject: [dpdk-dev] [PATCH 00/16] Support externally allocated memory in > DPDK > > This is a proposal to enable using externally allocated memory i

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: add multi-core support

2018-09-13 Thread Maxime Coquelin
On 06/22/2018 02:36 PM, Fan Zhang wrote: Originally vhost_crypto sample application only supports single core. This patch adds the multi-core support with more flexible options. Signed-off-by: Fan Zhang --- doc/guides/sample_app_ug/vhost_crypto.rst | 26 +- examples/vhost_crypto/main.c

Re: [dpdk-dev] [PATCH 2/8] net/ixgbe/base: cleanup codes

2018-09-13 Thread Ferruh Yigit
On 9/10/2018 5:37 PM, Xiaoyun Li wrote: > Cleanup UNREFERENCED_1PARAMETER() macro because "hw" is used. > And remove Light Spring codes because the device was never > productised. And cleanup unused bypass codes. > > Signed-off-by: Xiaoyun Li This patch breaks the build because IXGBE_DEV_ID_8259

Re: [dpdk-dev] [PATCH] build: create relative symlinks for PMDs in libdir

2018-09-13 Thread Bruce Richardson
On Wed, Sep 12, 2018 at 06:21:34PM +0100, Luca Boccassi wrote: > Add -r option to ln, otherwise the link will be absolute and contain > the build path and break packaging among other things: > > lrwxrwxrwx 1 bluca bluca 99 Sep 11 22:17 librte_mempool_dpaa.so.1.1 > -> /home/bluca/git/dpdk/tes

Re: [dpdk-dev] [PATCH v5 07/11] net/virtio: implement transmit path for packed queues

2018-09-13 Thread Tiwei Bie
On Thu, Sep 06, 2018 at 07:19:43PM +0100, Jens Freimann wrote: > This implements the transmit path for devices with > support for packed virtqueues. > > Add the feature bit and enable code to > add buffers to vring and mark descriptors as available. > > Signed-off-by: Jens Freiman > --- > drive

Re: [dpdk-dev] [PATCH v5] net/mlx: add meson build support

2018-09-13 Thread Bruce Richardson
On Fri, Sep 07, 2018 at 11:34:29AM +0100, Bruce Richardson wrote: > On Wed, Sep 05, 2018 at 02:47:46PM +0300, Shahaf Shuler wrote: > > From: Nelio Laranjeiro > > > > Compile Mellanox drivers when their external dependencies are met. A > > glue version of the driver can still be requested by usin

[dpdk-dev] [PATCH v2 0/3] introduces the enetc PMD driver

2018-09-13 Thread Gagandeep Singh
*ENETC* PMD driver which integrates with the existing PCI bus. Document is also part of the set Change-log: document improvement checkpatch warnings removed Gagandeep Singh (3): doc: add usage doc for ENETC PMD net/enetc: add ENETC PMD with basic operations net/enetc: enable Rx and Tx MAI

[dpdk-dev] [PATCH v2 1/3] doc: add usage doc for ENETC PMD

2018-09-13 Thread Gagandeep Singh
Add enetc usage document to compile and run the DPDK application on enetc supported platform. This document introduces the enetc driver, supported platforms and supported features. Signed-off-by: Gagandeep Singh --- MAINTAINERS| 5 + doc/guides/nics/enetc.rst |

[dpdk-dev] [PATCH v2 2/3] net/enetc: add ENETC PMD with basic operations

2018-09-13 Thread Gagandeep Singh
This patch introduces the enetc PMD with basic initialisation functions includes probe, teardown, hardware initialisation Signed-off-by: Gagandeep Singh --- MAINTAINERS | 1 + config/common_base | 5 + config/common_linuxapp

[dpdk-dev] [PATCH v2 3/3] net/enetc: enable Rx and Tx

2018-09-13 Thread Gagandeep Singh
Add RX and TX queue setup, datapath functions and enable the packet parsing Signed-off-by: Gagandeep Singh --- MAINTAINERS | 1 + drivers/net/enetc/Makefile | 3 +- drivers/net/enetc/enetc_ethdev.c | 6 +- drivers/net/enetc/enetc_rxtx.c | 447 ++

Re: [dpdk-dev] [PATCH v4 1/2] lib/librte_power: traffic pattern aware power control

2018-09-13 Thread Kevin Traynor
On 09/11/2018 10:19 AM, Hunt, David wrote: > Hi Kevin, > Hi Dave, > > On 27/6/2018 6:33 PM, Kevin Traynor wrote: >> On 06/26/2018 12:40 PM, Radu Nicolau wrote: >>> From: Liang Ma >>> >>> 1. Abstract > > --snip-- > >>> 2.2 There are two phases to establish the power management system: >>> >>>

Re: [dpdk-dev] [PATCH v5] net/mlx: add meson build support

2018-09-13 Thread Shahaf Shuler
Hi Bruce, Sorry for the late reply. Holiday time in Israel. Thursday, September 13, 2018 12:22 PM, Bruce Richardson: > Subject: Re: [dpdk-dev] [PATCH v5] net/mlx: add meson build support > > On Fri, Sep 07, 2018 at 11:34:29AM +0100, Bruce Richardson wrote: > > On Wed, Sep 05, 2018 at 02:47:46PM

[dpdk-dev] [PATCH] net/i40e: remove invalid comment

2018-09-13 Thread Ferruh Yigit
Comments says "no csum error report support" but there is no check related csum offloads. Removing the comment. Signed-off-by: Ferruh Yigit --- Patch can be other way around too, adding the csum check mentioned in the comment. Please comment if this is the correct thing to do. --- drivers/net/i

[dpdk-dev] [PATCH] net/mlx5: support e-switch flow count action

2018-09-13 Thread Moti Haimovsky
This commit adds support for configuring flows destined to the mlx5 eswitch with 'count' action and for querying these counts at runtime. It is possible to offload an interface flow rules to the hardware using DPDK flow commands. With mlx5 it is also possible to offload a limited set of flow rules

[dpdk-dev] [PATCH] net/mlx5: support e-switch TCP-flags flow filter

2018-09-13 Thread Moti Haimovsky
This patch adds support for offloading flow rules with tcp-flags filter to mlx5 eswitch hardwrae. Today, it is possible to offload an interface flow rules to the hardware using DPDK flow commands. With mlx5 it is also possible to offload a limited set of flow rules to the mlxsw (or e-switch) using

Re: [dpdk-dev] [PATCH v7 1/4] lib/librte_power: traffic pattern aware power control

2018-09-13 Thread Kevin Traynor
On 09/04/2018 03:10 PM, Liang Ma wrote: > 1. Abstract > Hi Liang, I didn't review the code, but some comments on API below, > For packet processing workloads such as DPDK polling is continuous. > This means CPU cores always show 100% busy independent of how much work > those cores are doing. It

Re: [dpdk-dev] [PATCH v5] net/mlx: add meson build support

2018-09-13 Thread Bruce Richardson
On Thu, Sep 13, 2018 at 10:12:18AM +, Shahaf Shuler wrote: > Hi Bruce, > > Sorry for the late reply. Holiday time in Israel. > No problem! Hope you had a good break. :-) > Thursday, September 13, 2018 12:22 PM, Bruce Richardson: > > Subject: Re: [dpdk-dev] [PATCH v5] net/mlx: add meson buil

[dpdk-dev] [PATCH v2 1/2] vhost: introduce API to get vDPA device number

2018-09-13 Thread Xiaolong Ye
Signed-off-by: Xiaolong Ye --- lib/librte_vhost/rte_vdpa.h | 3 +++ lib/librte_vhost/vdpa.c | 6 ++ 2 files changed, 9 insertions(+) diff --git a/lib/librte_vhost/rte_vdpa.h b/lib/librte_vhost/rte_vdpa.h index 90465ca26..b8223e337 100644 --- a/lib/librte_vhost/rte_vdpa.h +++ b/lib/librte

[dpdk-dev] [PATCH v2 2/2] examples/vdpa: introduce a new sample for vDPA

2018-09-13 Thread Xiaolong Ye
The vdpa sample application creates vhost-user sockets by using the vDPA backend. vDPA stands for vhost Data Path Acceleration which utilizes virtio ring compatible devices to serve virtio driver directly to enable datapath acceleration. As vDPA driver can help to set up vhost datapath, this applic

[dpdk-dev] [PATCH v2 01/21] net/atlantic: atlantic PMD driver skeleton

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Makefile/meson build infrastructure, atl_ethdev minimal skeleton, header with aquantia aQtion NIC device and vendor IDs. Signed-off-by: Igor Russkikh --- config/common_base| 9 + drivers/net/Makefile | 2 + dri

[dpdk-dev] [PATCH v2 02/21] net/atlantic: documentation and rel notes

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- doc/guides/nics/atlantic.rst | 59 ++ doc/guides/nics/features/atlantic.ini | 37 + doc/guides/nics/index.rst | 1 + doc/guides/rel_notes/release_18_11.rst | 5 +++ 4 files changed, 102

[dpdk-dev] [PATCH v2 03/21] net/atlantic: logging macroes and some typedefs

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 18 +-- drivers/net/atlantic/atl_logs.h | 68 +++ drivers/net/atlantic/atl_types.h | 35 3 files changed, 118 insertions(+), 3 deletions(-) create mode 100644

[dpdk-dev] [PATCH v2 06/21] net/atlantic: firmware operations layer

2018-09-13 Thread Igor Russkikh
AQC NICs comes in fields with two major FW generations: 1x and 3x. This is part of linux atlantic driver shared code, responsible for internal NIC firmware interactions, including link management ops, FW initialization, various lifecycle features. Signed-off-by: Igor Russkikh --- drivers/net/at

[dpdk-dev] [PATCH v2 08/21] net/atlantic: rte device start, stop, initial configuration

2018-09-13 Thread Igor Russkikh
Start, stop and reset are all done via hw_atl layer. Link interrupt configuration is also done here. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 256 ++ drivers/net/atlantic/atl_ethdev.h | 2 + 2 files changed, 258 insertions(+) dif

[dpdk-dev] [PATCH v2 07/21] net/atlantic: hardware register access routines

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_hw_regs.c | 52 + drivers/net/atlantic/atl_hw_regs.h | 53 ++ 2 files changed, 105 insertions(+) create mode 100644 drivers/net/atlantic/atl_hw_regs.c create mode 10

[dpdk-dev] [PATCH v2 10/21] net/atlantic: add hw adapter structures and defines

2018-09-13 Thread Igor Russkikh
From: Pavel Belous These declare statistic structures, hw internal structures and variables. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.h | 9 ++ drivers/net/atlantic/atl_types.h | 200 ++ 2 files changed, 209 insertions(+) diff --g

[dpdk-dev] [PATCH v2 11/21] net/atlantic: RSS and RETA manipulation API

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 99 + drivers/net/atlantic/hw_atl/hw_atl_b0.c | 29 +- 2 files changed, 100 insertions(+), 28 deletions(-) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl

[dpdk-dev] [PATCH v2 12/21] net/atlantic: flow control configuration

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 50 +++ 1 file changed, 50 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index b58f684f6..72acb053d 100644 --- a/drive

[dpdk-dev] [PATCH v2 09/21] net/atlantic: link status and interrupt management

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Implement link interrupt, link info, link polling Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 258 ++ drivers/net/atlantic/atl_ethdev.h | 10 ++ 2 files changed, 268 insertions(+) diff --git a/drivers/net/atlanti

[dpdk-dev] [PATCH v2 13/21] net/atlantic: MAC address manipulations

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 108 ++ 1 file changed, 108 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 72acb053d..940fd83d9 100644 --- a/driv

[dpdk-dev] [PATCH v2 14/21] net/atlantic: eeprom and register manipulation routines

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 79 +++ 1 file changed, 79 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 940fd83d9..c16d179fd 100644 --- a/drive

[dpdk-dev] [PATCH v2 16/21] net/atlantic: promisc and allmulti configuration

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 46 +++ 1 file changed, 46 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 08f1a07c8..44bdbcbb3 100644 --- a/drive

[dpdk-dev] [PATCH v2 15/21] net/atlantic: LED control DPDK and private APIs

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/Makefile | 4 +++ drivers/net/atlantic/atl_ethdev.c | 55 + drivers/net/atlantic/atl_ethdev.h | 2 ++ drivers/net/atlantic/meson.build| 3 ++ drivers/net/atlantic/rte_pmd_atlanti

[dpdk-dev] [PATCH v2 17/21] net/atlantic: device statistics, xstats

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 136 ++ 1 file changed, 136 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 44bdbcbb3..37f32c421 100644 --- a/drivers/net/atlantic/atl_

[dpdk-dev] [PATCH v2 20/21] net/atlantic: RX side structures and implementation

2018-09-13 Thread Igor Russkikh
Signed-off-by: Igor Russkikh --- drivers/net/atlantic/Makefile | 6 + drivers/net/atlantic/atl_ethdev.c | 44 +++ drivers/net/atlantic/atl_ethdev.h | 82 drivers/net/atlantic/atl_rxtx.c | 787 ++ drivers/net/atlantic/meson.build | 6 + 5 files

[dpdk-dev] [PATCH v2 21/21] net/atlantic: TX side structures and implementation

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 10 + drivers/net/atlantic/atl_rxtx.c | 578 ++ 2 files changed, 588 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c

[dpdk-dev] [PATCH v2 19/21] net/atlantic: device MTU and statuses

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 162 ++ 1 file changed, 162 insertions(+) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 7ff1126d7..01700b4ad 100644 --- a/driv

[dpdk-dev] [PATCH v2 05/21] net/atlantic: b0 hardware layer main logic

2018-09-13 Thread Igor Russkikh
This is hw_atl logic layer derived from linux atlantic driver. It contains RX/TX hardware initialization sequences, various hw configuration. Signed-off-by: Igor Russkikh --- drivers/net/atlantic/hw_atl/hw_atl_b0.c | 537 +++ drivers/net/atlantic/hw_atl/hw_atl_b0.h

[dpdk-dev] [PATCH v2 18/21] net/atlantic: VLAN filters and offloads

2018-09-13 Thread Igor Russkikh
From: Pavel Belous Signed-off-by: Igor Russkikh --- drivers/net/atlantic/atl_ethdev.c | 159 +- 1 file changed, 157 insertions(+), 2 deletions(-) diff --git a/drivers/net/atlantic/atl_ethdev.c b/drivers/net/atlantic/atl_ethdev.c index 37f32c421..7ff1126d7 1

[dpdk-dev] [PATCH v6 1/2] net/mlx5: support meson build

2018-09-13 Thread Shahaf Shuler
From: Nelio Laranjeiro Compile Mellanox driver when its external dependencies are met. A glue version of the driver can still be requested by using the -Denable_driver_mlx_glue=true To avoid modifying the whole sources and keep the compatibility with current build systems (e.g. make), the mlx5_

[dpdk-dev] [PATCH v2 00/21] net/atlantic: Aquantia aQtion 10G NIC Family DPDK PMD driver

2018-09-13 Thread Igor Russkikh
Hello DPDK community! Aquantia would like to contribute PMD for aQtion AQC10X NIC family: https://www.aquantia.com/products/aqtion/chips/ These are 10G ethernet NICs with various features. We do base this work on parts of the existing native linux kernel driver source (atlantic). Shared code is h

[dpdk-dev] [PATCH v6 2/2] net/mlx4: support meson build

2018-09-13 Thread Shahaf Shuler
From: Nelio Laranjeiro Compile Mellanox driver when their external dependencies are met. A glue version of the driver can still be requested by using the -Denable_driver_mlx_glue=true To avoid modifying the whole sources and keep the compatibility with current build systems (e.g. make), the mlx

Re: [dpdk-dev] [PATCH v2] net/i40e: stop lldp before setting local lldp MIB

2018-09-13 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Chas Williams > Sent: Tuesday, August 7, 2018 4:06 AM > To: dev@dpdk.org > Cc: Xing, Beilei ; Zhang, Qi Z ; > Charles (Chas) Williams > Subject: [dpdk-dev] [PATCH v2] net/i40e: stop lldp before setting local lldp

Re: [dpdk-dev] [PATCH v6 1/2] net/mlx5: support meson build

2018-09-13 Thread Bruce Richardson
On Thu, Sep 13, 2018 at 03:11:05PM +0300, Shahaf Shuler wrote: > From: Nelio Laranjeiro > > Compile Mellanox driver when its external dependencies are met. A > glue version of the driver can still be requested by using the > -Denable_driver_mlx_glue=true > > To avoid modifying the whole sources

Re: [dpdk-dev] [PATCH] net/i40e: remove invalid comment

2018-09-13 Thread Zhang, Qi Z
> -Original Message- > From: Yigit, Ferruh > Sent: Thursday, September 13, 2018 7:21 PM > To: Xing, Beilei ; Zhang, Qi Z > Cc: dev@dpdk.org; Yigit, Ferruh > Subject: [PATCH] net/i40e: remove invalid comment > > Comments says "no csum error report support" but there is no check related

Re: [dpdk-dev] [PATCH v3 1/9] fbarray: fix detach in noshconf mode

2018-09-13 Thread Maxime Coquelin
On 09/04/2018 05:15 PM, Anatoly Burakov wrote: In noshconf mode, no shared files are created, but we're still trying to unlink them, resulting in detach/destroy failure even though it should have succeeded. Fix it by exiting early in noshconf mode. Fixes: 3ee2cde248a7 ("fbarray: support --no-

Re: [dpdk-dev] [PATCH v3 2/9] eal: don't allow legacy mode with in-memory mode

2018-09-13 Thread Maxime Coquelin
On 09/04/2018 05:15 PM, Anatoly Burakov wrote: In-memory mode was never meant to support legacy mode, because we cannot sort anonymous pages anyway. Fixes: 72b49ff623c4 ("mem: support --in-memory mode") Cc: sta...@dpdk.org Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/eal_commo

Re: [dpdk-dev] [PATCH v3 3/9] mem: raise maximum fd limit unconditionally

2018-09-13 Thread Maxime Coquelin
On 09/04/2018 05:15 PM, Anatoly Burakov wrote: Previously, when we allocated hugepages, we closed the fd's corresponding to them after we've done our mappings. Since we did mmap(), we didn't actually lose the reference, but file descriptors used for mmap() do not count against the fd limit. Si

Re: [dpdk-dev] [PATCH v2 1/9] build: add Meson file for TAP PMD

2018-09-13 Thread Bruce Richardson
On Tue, Sep 11, 2018 at 05:08:55PM +0100, Luca Boccassi wrote: > Use same autoconf generation mechanism as the MLX4/5 PMDs > > Signed-off-by: Luca Boccassi > --- > drivers/net/meson.build | 1 + > drivers/net/tap/meson.build | 41 + > 2 files changed, 42

Re: [dpdk-dev] [PATCH v2 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Bruce Richardson
On Tue, Sep 11, 2018 at 05:08:58PM +0100, Luca Boccassi wrote: > Signed-off-by: Luca Boccassi > --- > drivers/net/avf/base/meson.build | 20 > drivers/net/avf/meson.build | 15 +++ > drivers/net/meson.build | 1 + > 3 files changed, 36 insertions(+)

Re: [dpdk-dev] [PATCH v5] net/i40e: add interface to choose latest vector path

2018-09-13 Thread Ferruh Yigit
On 9/12/2018 11:12 AM, Xiaoyun Li wrote: > Right now, vector path is limited to only use on later platform. i40e supports vector instructions for intel, arm and powerpc, this behavior is only for Intel vector drivers, can be good to clarify, also it can better to explain a little more what "limite

Re: [dpdk-dev] [PATCH v2 1/9] build: add Meson file for TAP PMD

2018-09-13 Thread Luca Boccassi
On Thu, 2018-09-13 at 14:11 +0100, Bruce Richardson wrote: > On Tue, Sep 11, 2018 at 05:08:55PM +0100, Luca Boccassi wrote: > > Use same autoconf generation mechanism as the MLX4/5 PMDs > > > > Signed-off-by: Luca Boccassi > > --- > >  drivers/net/meson.build |  1 + > >  drivers/net/tap/meson

Re: [dpdk-dev] [PATCH v2 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Luca Boccassi
On Thu, 2018-09-13 at 14:24 +0100, Bruce Richardson wrote: > On Tue, Sep 11, 2018 at 05:08:58PM +0100, Luca Boccassi wrote: > > Signed-off-by: Luca Boccassi > > --- > >  drivers/net/avf/base/meson.build | 20 > >  drivers/net/avf/meson.build  | 15 +++ > >  drive

Re: [dpdk-dev] [PATCH v7] linuxapp, eal: Fix the memory leak issue of logid

2018-09-13 Thread Aaron Conole
On second thought - please just fold in the patch I proposed back in July that I was told would be merged: http://mails.dpdk.org/archives/dev/2018-July/108445.html http://mails.dpdk.org/archives/dev/2018-August/109177.html It doesn't include the issues calling rte_atomic32_clear (that I have

Re: [dpdk-dev] [PATCH v4 1/2] lib/librte_power: traffic pattern aware power control

2018-09-13 Thread Liang, Ma
Hi Kevin, Many thanks for your feedback. Please check my comments below. On 13 Sep 10:46, Kevin Traynor wrote: > > Thanks for following up. It's allowing it to run without a training > phase which is what I thought could be problematic from an application > view, so that's nice. I'm no

Re: [dpdk-dev] [PATCH v7 1/4] lib/librte_power: traffic pattern aware power control

2018-09-13 Thread Liang, Ma
Hi Kevin, Many thanks for your comments. I will send v8 patch soon. Please check comments below. On 13 Sep 11:54, Kevin Traynor wrote: > On 09/04/2018 03:10 PM, Liang Ma wrote: > > 1. Abstract > > > > Hi Liang, > > I didn't review the code, but some comments on API below, > > > For

Re: [dpdk-dev] [PATCH] net/ifc: do not notify before HW ready

2018-09-13 Thread Ye Xiaolong
On 09/13, Wang, Xiao W wrote: >Hi Xiaolong, > >> -Original Message- >> From: Ye, Xiaolong >> Sent: Thursday, September 13, 2018 8:55 PM >> To: Wang, Xiao W >> Cc: Bie, Tiwei ; dev@dpdk.org >> Subject: Re: [PATCH] net/ifc: do not notify before HW ready >> >> Hi, Xiao >> >> On 09/10, Xiao

[dpdk-dev] [PATCH v3 1/9] build: add Meson file for TAP PMD

2018-09-13 Thread Luca Boccassi
Use same autoconf generation mechanism as the MLX4/5 PMDs Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 1 + drivers/net/tap/meson.build | 41 + 2 files changed, 42 insertions(+) create mode 100644 drivers/net/tap/meson.build diff --git a/d

[dpdk-dev] [PATCH v3 2/9] build: add Meson file for vdev_netvsc PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 1 + drivers/net/vdev_netvsc/meson.build | 19 +++ 2 files changed, 20 insertions(+) create mode 100644 drivers/net/vdev_netvsc/meson.build diff --git a/drivers/net/meson.build b/drivers/net/meson.build inde

[dpdk-dev] [PATCH v3 3/9] build: add Meson file for crypto scheduler PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/crypto/meson.build | 2 +- drivers/crypto/scheduler/meson.build | 19 +++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 drivers/crypto/scheduler/meson.build diff --git a/drivers/crypto/meson.build b/driver

[dpdk-dev] [PATCH v3 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/avf/base/meson.build | 20 drivers/net/avf/meson.build | 15 +++ drivers/net/meson.build | 1 + 3 files changed, 36 insertions(+) create mode 100644 drivers/net/avf/base/meson.build create mode 100644 d

[dpdk-dev] [PATCH v3 6/9] build: add Meson file for bbdev_null PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/baseband/meson.build | 7 +++ drivers/baseband/null/meson.build | 7 +++ drivers/meson.build | 1 + 3 files changed, 15 insertions(+) create mode 100644 drivers/baseband/meson.build create mode 100644 drivers/baseband/null/meso

[dpdk-dev] [PATCH v3 7/9] event/opdl: rename map file to match library name

2018-09-13 Thread Luca Boccassi
So that it can be used from Meson as well Signed-off-by: Luca Boccassi --- drivers/event/opdl/Makefile | 2 +- ...md_evdev_opdl_version.map => rte_pmd_opdl_event_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/event/opdl/{rte_p

[dpdk-dev] [PATCH v3 8/9] build: add Meson file for opdl_event PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/event/meson.build | 2 +- drivers/event/opdl/meson.build | 11 +++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 drivers/event/opdl/meson.build diff --git a/drivers/event/meson.build b/drivers/event/meson.build index e

[dpdk-dev] [PATCH v3 5/9] build: add Meson files for qede PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi Acked-by: Shahed Shaikh --- config/rte_config.h | 3 ++ drivers/net/meson.build | 2 +- drivers/net/qede/base/meson.build | 57 +++ drivers/net/qede/meson.build | 12 +++ 4 files changed, 73 insertions(+)

Re: [dpdk-dev] [PATCH] doc/fix: add CCM to the QAT feature list

2018-09-13 Thread Kovacevic, Marko
> Signed-off-by: Tomasz Cel > --- > doc/guides/cryptodevs/features/qat.ini | 3 +++ > doc/guides/cryptodevs/qat.rst | 1 + > 2 files changed, 4 insertions(+) Hi Tomasz, I think the patch is ok there is just a few things as this is a fix you need to add a fixes tag into the commit me

[dpdk-dev] [PATCH v3 9/9] build: add Meson file for vmxnet3_uio PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 4 +++- drivers/net/vmxnet3/meson.build | 18 ++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 drivers/net/vmxnet3/meson.build diff --git a/drivers/net/meson.build b/drivers/net/meson.build

[dpdk-dev] [PATCH 1/4] ethdev: add SCTP Rx checksum offload support

2018-09-13 Thread Jerin Jacob
Signed-off-by: Jerin Jacob --- app/test-pmd/config.c | 9 + doc/guides/nics/features.rst | 4 ++-- lib/librte_ethdev/rte_ethdev.c | 1 + lib/librte_ethdev/rte_ethdev.h | 1 + 4 files changed, 13 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/config.c b/app/test-pmd/co

[dpdk-dev] [PATCH 2/4] mbuf: fix Tx offload mask

2018-09-13 Thread Jerin Jacob
Fixes missing PKT_TX_UDP_SEG value in PKT_TX_OFFLOAD_MASK. Fixes: 6d18505efaa6 ("vhost: support UDP Fragmentation Offload") Cc: sta...@dpdk.org Cc: jiayu...@intel.com Signed-off-by: Jerin Jacob --- lib/librte_mbuf/rte_mbuf.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/

[dpdk-dev] [PATCH 3/4] ethdev: add Rx offload outer L4 checksum definitions

2018-09-13 Thread Jerin Jacob
Introduced DEV_RX_OFFLOAD_OUTER_UDP_CKSUM, DEV_RX_OFFLOAD_OUTER_TCP_CKSUM and DEV_RX_OFFLOAD_OUTER_SCTP_CKSUM offload flags and PKT_RX_EL4_CKSUM_BAD mbuf ol_flags to enable outer Rx L4 checksum offload. # To use hardware Rx outer L4 checksum offload, the user needs to configure DEV_RX_OFFLOAD_OUT

[dpdk-dev] [PATCH 4/4] ethdev: add Tx offload outer L4 checksum definitions

2018-09-13 Thread Jerin Jacob
Introduced DEV_TX_OFFLOAD_OUTER_UDP_CKSUM, DEV_TX_OFFLOAD_OUTER_TCP_CKSUM and DEV_TX_OFFLOAD_OUTER_SCTP_CKSUM offload flags and PKT_TX_OUTER_L4_NO_CKSUM, PKT_TX_OUTER_TCP_CKSUM, PKT_TX_OUTER_SCTP_CKSUM and PKT_TX_OUTER_UDP_CKSUM mbuf ol_flags to enable Tx outer L4 checksum offload. To use hardwar

Re: [dpdk-dev] [PATCH] net/ifc: add live migration support

2018-09-13 Thread Ye Xiaolong
Reviewed-and-Tested-by: Ye Xiaolong Thanks, Xiaolong On 09/10, Xiao Wang wrote: >IFCVF can help to log dirty page in live migration stage, >each queue's index can be read and configured to support >VHOST_USER_GET_VRING_BASE and VHOST_USER_SET_VRING_BASE. > >Signed-off-by: Xiao Wang >--- > drive

Re: [dpdk-dev] [PATCH 0/4] net/cxgbe: add destination MAC match and VLAN rewrite support for flow API

2018-09-13 Thread Ferruh Yigit
On 8/27/2018 1:52 PM, Rahul Lakkireddy wrote: > This series of patches add support to offload flows with destination MAC > match item and VLAN push/pop/rewrite actions. > > Patch 1 adds API to program and manage hardware Layer 2 Table (L2T). > L2T holds destination node information to be used for

Re: [dpdk-dev] [PATCH v7 1/4] lib/librte_power: traffic pattern aware power control

2018-09-13 Thread Hunt, David
On 13/9/2018 2:37 PM, Liang, Ma wrote: Hi Kevin, Many thanks for your comments. I will send v8 patch soon. Please check comments below. On 13 Sep 11:54, Kevin Traynor wrote: On 09/04/2018 03:10 PM, Liang Ma wrote: --snip-- HIGH: the frequency is used to process busy traffic w

Re: [dpdk-dev] [PATCH 1/2] net/sfc: support runtime Rx queue setup

2018-09-13 Thread Ferruh Yigit
On 8/29/2018 8:35 AM, Andrew Rybchenko wrote: > From: Igor Romanov > > Signed-off-by: Igor Romanov > Signed-off-by: Andrew Rybchenko Series applied to dpdk-next-net/master, thanks.

[dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-13 Thread Bruce Richardson
Compiling with all warnings turned on causes errors about unused variables and an unused label. Remove these to allow building without having to disable those warnings. Signed-off-by: Bruce Richardson --- drivers/net/avf/avf_ethdev.c | 15 +-- drivers/net/avf/avf_rxtx.c | 17 +-

Re: [dpdk-dev] [PATCH 1/3] event: add function for reading unlink in progress

2018-09-13 Thread Jerin Jacob
-Original Message- > Date: Wed, 12 Sep 2018 17:16:14 +0100 > From: Harry van Haaren > To: dev@dpdk.org > CC: jerin.ja...@caviumnetworks.com, matias@nokia.com, Harry van Haaren > > Subject: [PATCH 1/3] event: add function for reading unlink in progress > X-Mailer: git-send-email 2.17.

Re: [dpdk-dev] [PATCH v2 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Bruce Richardson
On Thu, Sep 13, 2018 at 02:27:54PM +0100, Luca Boccassi wrote: > On Thu, 2018-09-13 at 14:24 +0100, Bruce Richardson wrote: > > On Tue, Sep 11, 2018 at 05:08:58PM +0100, Luca Boccassi wrote: > > > Signed-off-by: Luca Boccassi > > > --- > > >  drivers/net/avf/base/meson.build | 20 +

Re: [dpdk-dev] [PATCH v3 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Bruce Richardson
On Thu, Sep 13, 2018 at 02:41:35PM +0100, Luca Boccassi wrote: > Signed-off-by: Luca Boccassi > --- > drivers/net/avf/base/meson.build | 20 > drivers/net/avf/meson.build | 15 +++ > drivers/net/meson.build | 1 + > 3 files changed, 36 insertions(+)

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: use evenly distributed default RSS RETA

2018-09-13 Thread Ferruh Yigit
On 9/4/2018 2:29 PM, Chas Williams wrote: > On Wed, Aug 29, 2018 at 3:48 AM Andrew Rybchenko > wrote: > >> From: Igor Romanov >> >> Default Redirection Table that is set in bonding driver is distributed >> evenly over all Rx queues only within every RETA group (the first RETA >> entries in every

Re: [dpdk-dev] [PATCH] net/bonding: propagate promiscous mode in mode 4

2018-09-13 Thread Chas Williams
On Wed, Sep 12, 2018 at 1:56 AM Matan Azrad wrote: > > Hi Chas > > From: Chas Williams > > On Mon, Aug 6, 2018 at 3:35 PM Matan Azrad > > wrote: > > > > > > > > > Hi Chas > > > > > > From: Chas Williams > > > >On Mon, Aug 6, 2018 at 1:46 PM Matan Azrad > > wrote: > >

Re: [dpdk-dev] [PATCH v3 4/9] memalloc: rename lock list to fd list

2018-09-13 Thread Maxime Coquelin
On 09/04/2018 05:15 PM, Anatoly Burakov wrote: Previously, we were only using lock lists to store per-page lock fd's because we cannot use modern fcntl() file description locks to lock parts of the page in single file segments mode. Now, we will be using this list to store either lock fd's (a

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/bonding: don't ignore RSS key on device configuration

2018-09-13 Thread Ferruh Yigit
On 9/4/2018 2:27 PM, Chas Williams wrote: > On Wed, Aug 29, 2018 at 3:51 AM Andrew Rybchenko > wrote: > >> From: Igor Romanov >> >> Bonding driver ignores the value of RSS key (that is set in the port RSS >> configuration) in bond_ethdev_configure(). So the only way to set >> non-default RSS key

Re: [dpdk-dev] [PATCH] net/bonding: propagate promiscous mode in mode 4

2018-09-13 Thread Matan Azrad
Hi Chas From: Chas Williams > On Wed, Sep 12, 2018 at 1:56 AM Matan Azrad > wrote: > > > > Hi Chas > > > > From: Chas Williams > > > On Mon, Aug 6, 2018 at 3:35 PM Matan Azrad > > > wrote: > > > > > > > > > > > > Hi Chas > > > > > > > > From: Chas Williams > > > > >On Mon, Aug 6, 2018 at 1:46

Re: [dpdk-dev] [PATCH v3 5/9] memalloc: track page fd's in non-single file mode

2018-09-13 Thread Maxime Coquelin
On 09/04/2018 05:15 PM, Anatoly Burakov wrote: Previously, we were only tracking lock file fd's in single-file segments mode, but did not track fd's in non-single file mode because we didn't need to (mmap() call still kept the lock). Now that we are going to expose these fd's to the world, we

[dpdk-dev] [PATCH v4 2/9] build: add Meson file for vdev_netvsc PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 1 + drivers/net/vdev_netvsc/meson.build | 19 +++ 2 files changed, 20 insertions(+) create mode 100644 drivers/net/vdev_netvsc/meson.build diff --git a/drivers/net/meson.build b/drivers/net/meson.build inde

[dpdk-dev] [PATCH v4 1/9] build: add Meson file for TAP PMD

2018-09-13 Thread Luca Boccassi
Use same autoconf generation mechanism as the MLX4/5 PMDs Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 1 + drivers/net/tap/meson.build | 41 + 2 files changed, 42 insertions(+) create mode 100644 drivers/net/tap/meson.build diff --git a/d

[dpdk-dev] [PATCH v4 3/9] build: add Meson file for crypto scheduler PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/crypto/meson.build | 2 +- drivers/crypto/scheduler/meson.build | 19 +++ 2 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 drivers/crypto/scheduler/meson.build diff --git a/drivers/crypto/meson.build b/driver

[dpdk-dev] [PATCH v4 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/avf/base/meson.build | 20 drivers/net/avf/meson.build | 19 +++ drivers/net/meson.build | 1 + 3 files changed, 40 insertions(+) create mode 100644 drivers/net/avf/base/meson.build create mode 1006

[dpdk-dev] [PATCH v4 5/9] build: add Meson files for qede PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi Acked-by: Shahed Shaikh --- config/rte_config.h | 3 ++ drivers/net/meson.build | 2 +- drivers/net/qede/base/meson.build | 57 +++ drivers/net/qede/meson.build | 12 +++ 4 files changed, 73 insertions(+)

[dpdk-dev] [PATCH v4 6/9] build: add Meson file for bbdev_null PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/baseband/meson.build | 7 +++ drivers/baseband/null/meson.build | 7 +++ drivers/meson.build | 1 + 3 files changed, 15 insertions(+) create mode 100644 drivers/baseband/meson.build create mode 100644 drivers/baseband/null/meso

[dpdk-dev] [PATCH v4 7/9] event/opdl: rename map file to match library name

2018-09-13 Thread Luca Boccassi
So that it can be used from Meson as well Signed-off-by: Luca Boccassi --- drivers/event/opdl/Makefile | 2 +- ...md_evdev_opdl_version.map => rte_pmd_opdl_event_version.map} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename drivers/event/opdl/{rte_p

[dpdk-dev] [PATCH v4 9/9] build: add Meson file for vmxnet3_uio PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/net/meson.build | 4 +++- drivers/net/vmxnet3/meson.build | 18 ++ 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 drivers/net/vmxnet3/meson.build diff --git a/drivers/net/meson.build b/drivers/net/meson.build

[dpdk-dev] [PATCH v4 8/9] build: add Meson file for opdl_event PMD

2018-09-13 Thread Luca Boccassi
Signed-off-by: Luca Boccassi --- drivers/event/meson.build | 2 +- drivers/event/opdl/meson.build | 11 +++ 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 drivers/event/opdl/meson.build diff --git a/drivers/event/meson.build b/drivers/event/meson.build index e

Re: [dpdk-dev] [PATCH v3 4/9] build: add Meson files for avf PMD

2018-09-13 Thread Luca Boccassi
On Thu, 2018-09-13 at 15:49 +0100, Bruce Richardson wrote: > On Thu, Sep 13, 2018 at 02:41:35PM +0100, Luca Boccassi wrote: > > Signed-off-by: Luca Boccassi > > --- > >  drivers/net/avf/base/meson.build | 20 > >  drivers/net/avf/meson.build  | 15 +++ > >  drive

Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label

2018-09-13 Thread Luca Boccassi
On Thu, 2018-09-13 at 15:44 +0100, Bruce Richardson wrote: > Compiling with all warnings turned on causes errors about unused > variables > and an unused label. Remove these to allow building without having to > disable those warnings. > > Signed-off-by: Bruce Richardson > --- >  drivers/net/avf/

Re: [dpdk-dev] [PATCH 2/2] app/testpmd: use the generic function to dump packets

2018-09-13 Thread David Marchand
On Wed, Sep 12, 2018 at 10:06 AM, Raslan Darawsheh wrote: > use the generic function to dump packets for several forwarding > engines. Rather than patching some engines, how about putting this in rx/tx callbacks ? A bit like something I sent earlier ? http://patches.dpdk.org/patch/44465/ -- D

Re: [dpdk-dev] [PATCH 3/4] ethdev: add Rx offload outer L4 checksum definitions

2018-09-13 Thread Shahaf Shuler
Thursday, September 13, 2018 4:47 PM, Jerin Jacob: > Subject: [dpdk-dev] [PATCH 3/4] ethdev: add Rx offload outer L4 checksum > definitions > > Introduced DEV_RX_OFFLOAD_OUTER_UDP_CKSUM, > DEV_RX_OFFLOAD_OUTER_TCP_CKSUM and > DEV_RX_OFFLOAD_OUTER_SCTP_CKSUM offload flags and Out of curiosity, whi

  1   2   >