Re: [dpdk-dev] [PATCH] mbuf: remove deprecated segment free functions

2018-09-17 Thread Olivier Matz
Hi Thomas, On Sun, Sep 16, 2018 at 11:39:29AM +0200, Thomas Monjalon wrote: > 10/09/2018 10:06, Andrew Rybchenko: > > On 09/10/2018 08:18 AM, David Marchand wrote: > > > __rte_mbuf_raw_free and __rte_pktmbuf_prefree_seg have been deprecated for > > > a long time now (early 17.05), are not part of

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

2018-09-17 Thread Li, Xiaoyun
Will send new version later. Thanks. > -Original Message- > From: Yigit, Ferruh > Sent: Thursday, September 13, 2018 21:27 > To: Li, Xiaoyun ; Xing, Beilei ; > Zhang, Qi Z > Cc: dev@dpdk.org; Yang, Zhiyong > Subject: Re: [dpdk-dev] [PATCH v5] net/i40e: add interface to choose latest > ve

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

2018-09-17 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Zhao1, Wei > Sent: Friday, September 14, 2018 2:50 PM > To: Xing, Beilei ; Lu, Wenzhuo > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/e1000: correct queue number in RSS > configuration

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

2018-09-17 Thread Zhang, Qi Z
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Luca Boccassi > Sent: Friday, September 14, 2018 12:26 AM > To: Richardson, Bruce ; Wu, Jingjing > ; Lu, Wenzhuo > Cc: dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/avf: remove unused variables and label >

[dpdk-dev] [PATCH] config: remove unused macro

2018-09-17 Thread Qi Zhang
RTE_LIBRTE_I40E_ITR_INTERVAL is not used. So it should also be removed in config/rte_config.h for meson+ninjia build. Fixes: 864a800d706d ("net/i40e: remove VF interrupt handler") Cc: sta...@dpdk.org Signed-off-by: Qi Zhang --- config/rte_config.h | 2 -- 1 file changed, 2 deletions(-) diff --

[dpdk-dev] [PATCH] vmxnet3: stats_reset implementation

2018-09-17 Thread yogev ch
'stats_reset()' callback was missing. This commit implements the callback by taking a snapshot of the stats (SNAPSHOT) each time 'stats_reset()' is called. When getting stats with 'stats_get()', hw stats which always increase reduce SNAPSHOT stats. That's how we get the "real" stats since the las

[dpdk-dev] [PATCH v3 1/3] app/testpmd: show errno along with flow API errors

2018-09-17 Thread Gavin Hu
From: Adrien Mazarguil Signed-off-by: Adrien Mazarguil Reviewed-by: Ferruh Yigit --- app/test-pmd/config.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c index 92686a05f..a0f934932 100644 --- a/app/test-pmd/config.c +++ b/

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

2018-09-17 Thread Gavin Hu
From: 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 Acked-by: Qi Zhang --- drivers/net/i40e/i40e_rxtx_vec_common.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/

[dpdk-dev] [PATCH v3 3/3] doc: add cross compile part for sample applications

2018-09-17 Thread Gavin Hu
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps") Cc: sta...@dpdk.org Signed-off-by: Gavin Hu Reviewed-by: Honnappa Nagarahalli --- doc/guides/sample_app_ug/compiling.rst | 15 ++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/doc/guides/sampl

Re: [dpdk-dev] [PATCH] crypto/qat: fix typo

2018-09-17 Thread Thomas Monjalon
Hi, 10/08/2018 17:20, Trahe, Fiona: > > -/**< Intel(R) QAT Symmetric Crypto PMD device name */ > > +/**< Intel(R) QAT Symmetric Crypto PMD driver name */ > > #define CRYPTODEV_NAME_QAT_SYM_PMD crypto_qat The comment is above, so the syntax should be /**, not /**< Do you want me to fix it when pu

[dpdk-dev] [PATCH v4 1/4] bus/fslmc: fix undefined reference of memsegs

2018-09-17 Thread Gavin Hu
From: Hemant Agrawal This patch fix the undefined reference issue with rte_dpaa2_memsegs when compiled in shared lib mode with EXTRA_CFLAGS="-g -O0" Bugzilla ID: 61 Fixes: 365fb925d3b3 ("bus/fslmc: optimize physical to virtual address search") Cc: sta...@dpdk.org Reported-by: Keith Wiles Signe

[dpdk-dev] [PATCH v4 2/4] ring: read tail using atomic load

2018-09-17 Thread Gavin Hu
In update_tail, read ht->tail using __atomic_load.Although the compiler currently seems to be doing the right thing even without _atomic_load, we don't want to give the compiler freedom to optimise what should be an atomic load, it should not be arbitarily moved around. Fixes: 39368ebfc6 ("ring: i

[dpdk-dev] [PATCH v4 3/4] ring: synchronize the load and store of the tail

2018-09-17 Thread Gavin Hu
Synchronize the load-acquire of the tail and the store-release within update_tail, the store release ensures all the ring operations, enqueue or dequeue, are seen by the observers on the other side as soon as they see the updated tail. The load-acquire is needed here as the data dependency is not a

[dpdk-dev] [PATCH v4 4/4] ring: move the atomic load of head above the loop

2018-09-17 Thread Gavin Hu
In __rte_ring_move_prod_head, move the __atomic_load_n up and out of the do {} while loop as upon failure the old_head will be updated, another load is costly and not necessary. This helps a little on the latency,about 1~5%. Test result with the patch(two cores): SP/SC bulk enq/dequeue (size: 8

Re: [dpdk-dev] [PATCH] compat: fix symbol version support with meson

2018-09-17 Thread Bruce Richardson
On Sun, Sep 16, 2018 at 11:14:10AM +0200, Thomas Monjalon wrote: > 30/08/2018 19:31, Luca Boccassi: > > On Thu, 2018-08-30 at 18:07 +0100, Bruce Richardson wrote: > > > For meson builds, the define to enable the symbol version > > > macros in rte_compat.h was missing. This led to symbols being > >

[dpdk-dev] [PATCH v3 1/3] ring: read tail using atomic load

2018-09-17 Thread Gavin Hu
In update_tail, read ht->tail using __atomic_load.Although the compiler currently seems to be doing the right thing even without _atomic_load, we don't want to give the compiler freedom to optimise what should be an atomic load, it should not be arbitarily moved around. Fixes: 39368ebfc6 ("ring: i

[dpdk-dev] [PATCH v3 3/3] ring: move the atomic load of head above the loop

2018-09-17 Thread Gavin Hu
In __rte_ring_move_prod_head, move the __atomic_load_n up and out of the do {} while loop as upon failure the old_head will be updated, another load is costly and not necessary. This helps a little on the latency,about 1~5%. Test result with the patch(two cores): SP/SC bulk enq/dequeue (size: 8

[dpdk-dev] [PATCH v3 2/3] ring: synchronize the load and store of the tail

2018-09-17 Thread Gavin Hu
Synchronize the load-acquire of the tail and the store-release within update_tail, the store release ensures all the ring operations, enqueue or dequeue, are seen by the observers on the other side as soon as they see the updated tail. The load-acquire is needed here as the data dependency is not a

[dpdk-dev] [PATCH v2] compat: fix symbol version support with meson

2018-09-17 Thread Bruce Richardson
For meson builds, the define to enable the symbol version macros in rte_compat.h was missing. This led to symbols being omitted from shared objects. For example, checking rte_distributor.so with objdump and comparing make and meson built versions: $ objdump -T make-build/lib/librte_distributor.so

Re: [dpdk-dev] [PATCH v2 1/4] build: include missing hypervisor files in Meson build

2018-09-17 Thread Bruce Richardson
On Sun, Sep 16, 2018 at 11:00:24AM +0200, Thomas Monjalon wrote: > 31/08/2018 13:00, Bruce Richardson: > > On Fri, Aug 31, 2018 at 11:41:51AM +0100, Luca Boccassi wrote: > > > They are built by the legacy makefiles but not by Meson. > > > > > > Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name")

Re: [dpdk-dev] [PATCH] config: remove unused macro

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 03:39:32PM +0800, Qi Zhang wrote: > RTE_LIBRTE_I40E_ITR_INTERVAL is not used. So it should also be removed > in config/rte_config.h for meson+ninjia build. > > Fixes: 864a800d706d ("net/i40e: remove VF interrupt handler") > Cc: sta...@dpdk.org > > Signed-off-by: Qi Zhang

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

2018-09-17 Thread Gavin Hu (Arm Technology China)
Hi All, I am really sorry I made a mistake by submitting patches from a wrong branch and tried to rescue quickly and made another mistake(submitted one more patch not mine). Please skip these wrong patches(I already superseded them) and help review the new 3 patches for rte ring. Really sorry

Re: [dpdk-dev] [PATCH] eal: force IOVA mode to physical

2018-09-17 Thread Stojaczyk, Dariusz
Hi, A little bit of self-advertising: I recently pushed patches that will make DPDK default to RTE_IOVA_VA when physical addresses were not explicitly requested and are not available, e.g. when running as a non-privileged user. It shouldn't cause any conflicts with the changes you're proposing

Re: [dpdk-dev] [PATCH v2] compat: fix symbol version support with meson

2018-09-17 Thread Thomas Monjalon
17/09/2018 10:18, Bruce Richardson: > For meson builds, the define to enable the symbol version > macros in rte_compat.h was missing. This led to symbols being > omitted from shared objects. For example, checking rte_distributor.so > with objdump and comparing make and meson built versions: > > $

[dpdk-dev] [PATCH v3 3/4] build: use -Wno-error=format-security for Meson i40e build

2018-09-17 Thread Luca Boccassi
This PMD is built with -Wno-format, which means GCC errors out if -Wformat-security is used. Fixes: e940646b20fa ("drivers/net: build Intel NIC PMDs with meson") Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi Acked-by: Bruce Richardson --- v2: re-arranged flags v3: added acked-by and cc stabl

[dpdk-dev] [PATCH v3 1/4] build: include missing hypervisor files in Meson build

2018-09-17 Thread Luca Boccassi
They are built by the legacy makefiles but not by Meson. Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name") Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi Acked-by: Bruce Richardson --- v3: added acked-by and cc stable lib/librte_eal/common/arch/arm/meson.build | 2 +- lib/librte_eal/comm

[dpdk-dev] [PATCH v3 2/4] build: use -Wno-error=format-security for Meson ifpga_rawdev build

2018-09-17 Thread Luca Boccassi
This PMD is built with -Wno-format, which means GCC errors out if -Wformat-security is used. Fixes: 56bb54ea1bdf ("raw/ifpga/base: add Intel FPGA OPAE share code") Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi Acked-by: Bruce Richardson --- v2: re-arranged flags v3: added acked-by and cc sta

[dpdk-dev] [PATCH v3 4/4] build: install igb_uio kernel module when building with Meson

2018-09-17 Thread Luca Boccassi
Install in $kerneldir/../extra/dpdk. Usually $kerneldir should something like: /lib/modules/$kver/build, so this directory will match the default one used by legacy makefiles. Fixes: a52f4574f798 ("igb_uio: build with meson") Cc: sta...@dpdk.org Signed-off-by: Luca Boccassi Acked-by: Bruce Richa

Re: [dpdk-dev] [PATCH] crypto/qat: fix typo

2018-09-17 Thread Trahe, Fiona
> -Original Message- > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Monday, September 17, 2018 8:56 AM > To: Trahe, Fiona ; akhil.go...@nxp.com > Cc: dev@dpdk.org; De Lara Guarch, Pablo ; > Jozwiak, TomaszX > > Subject: Re: [dpdk-dev] [PATCH] crypto/qat: fix typo > > Hi,

Re: [dpdk-dev] [PATCH v2 1/4] build: include missing hypervisor files in Meson build

2018-09-17 Thread Luca Boccassi
On Mon, 2018-09-17 at 09:20 +0100, Bruce Richardson wrote: > On Sun, Sep 16, 2018 at 11:00:24AM +0200, Thomas Monjalon wrote: > > 31/08/2018 13:00, Bruce Richardson: > > > On Fri, Aug 31, 2018 at 11:41:51AM +0100, Luca Boccassi wrote: > > > > They are built by the legacy makefiles but not by Meson.

Re: [dpdk-dev] [PATCH v5 09/11] net/virtio: disable ctrl virtqueue for packed rings

2018-09-17 Thread Jens Freimann
On Fri, Sep 14, 2018 at 01:32:36PM +0800, Tiwei Bie wrote: On Thu, Sep 06, 2018 at 07:19:45PM +0100, Jens Freimann wrote: Signed-off-by: Jens Freiman --- drivers/net/virtio/virtio_ethdev.c | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/net/virtio/virtio_ethdev.c b/driver

[dpdk-dev] Patches in need of some attention

2018-09-17 Thread Andrzej Ostruszka
On behalf of Tomasz (who is out of office) I'd like to attract some attention of DPDK community to the following list of patch sets: crypto/mvsam: add new features and fixes http://patches.dpdk.org/project/dpdk/list/?series=1048 https://mails.dpdk.org/archives/dev/2018-August/thread.html#110133 c

[dpdk-dev] [PATCH v2 0/7] update ixgbe base code

2018-09-17 Thread Xiaoyun Li
Update the ixgbe base code to version cid-ixgbe.2018.08.28.tar.gz. Xiaoyun Li (7): net/ixgbe/base: update the license net/ixgbe/base: cleanup codes net/ixgbe/base: add FW recovery mode check net/ixgbe/base: relpace an operation in X550 setup net/ixgbe/base: update X550 SFP identification

[dpdk-dev] [PATCH v2 2/7] net/ixgbe/base: cleanup codes

2018-09-17 Thread Xiaoyun Li
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 --- v2: * Merge base code change and ethdev fix into 1 patch to avoid in * between build issue. --- d

[dpdk-dev] [PATCH v2 1/7] net/ixgbe/base: update the license

2018-09-17 Thread Xiaoyun Li
Update the GPL and BSD license headers to use the SPDX License Identifier instead. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/ixgbe_82598.c | 35 ++- drivers/net/ixgbe/base/ixgbe_82598.h | 35 ++- drivers/net/ixgbe/base/ixgbe_82599.c

[dpdk-dev] [PATCH v2 4/7] net/ixgbe/base: relpace an operation in X550 setup

2018-09-17 Thread Xiaoyun Li
Replace "=" operation with "|=" operation to only set the intended register bits. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/ixgbe_x550.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/base/ixgbe_x550.c b/drivers/net/ixgbe/base/ixgbe_x550.c i

[dpdk-dev] [PATCH v2 6/7] net/ixgbe/base: add support for DCB registers dump

2018-09-17 Thread Xiaoyun Li
Add support for DCB registers dump. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/ixgbe_type.h | 5 + 1 file changed, 5 insertions(+) diff --git a/drivers/net/ixgbe/base/ixgbe_type.h b/drivers/net/ixgbe/base/ixgbe_type.h index ea34bb979..cee6ba2e0 100644 --- a/drivers/net/ixgbe/base

[dpdk-dev] [PATCH v2 5/7] net/ixgbe/base: update X550 SFP identification

2018-09-17 Thread Xiaoyun Li
Use ixgbe_identify_sfp_module_X550em to update SFP identification flow. ixgbe_identify_sfp_module_X550em includes specific checks for X550 about supported SFP modules. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/ixgbe_x550.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) dif

[dpdk-dev] [PATCH v2 3/7] net/ixgbe/base: add FW recovery mode check

2018-09-17 Thread Xiaoyun Li
Add FM NVM recovery mode check. Allow the software to detect this. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/ixgbe_api.c | 12 drivers/net/ixgbe/base/ixgbe_api.h | 1 + drivers/net/ixgbe/base/ixgbe_type.h | 4 drivers/net/ixgbe/base/ixgbe_x550.c | 16

[dpdk-dev] [PATCH v2 7/7] net/ixgbe/base: update README file

2018-09-17 Thread Xiaoyun Li
Update README file to specify the version of CID drop. Signed-off-by: Xiaoyun Li --- drivers/net/ixgbe/base/README | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ixgbe/base/README b/drivers/net/ixgbe/base/README index 70fdfe7c8..431be0260 100644 --- a/drivers

Re: [dpdk-dev] [PATCH v3 3/3] doc: add cross compile part for sample applications

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Mon, 17 Sep 2018 15:47:35 +0800 > From: Gavin Hu > To: dev@dpdk.org > CC: gavin...@arm.com, honnappa.nagaraha...@arm.com, steve.cap...@arm.com, > ola.liljed...@arm.com, jerin.ja...@caviumnetworks.com, n...@arm.com, > sta...@dpdk.org > Subject: [PATCH v3 3/3] do

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

2018-09-17 Thread Burakov, Anatoly
On 13-Sep-18 2:06 PM, Maxime Coquelin wrote: 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 B

Re: [dpdk-dev] [PATCH v3 6/9] memalloc: add EAL-internal API to get and set segment fd's

2018-09-17 Thread Burakov, Anatoly
On 14-Sep-18 8:54 AM, Maxime Coquelin wrote: On 09/04/2018 05:15 PM, Anatoly Burakov wrote: Enable setting and retrieving segment fd's internally. For now, retrieving fd's will not be used anywhere until we get an external API, but it will be useful for things like virtio, where we wish to sh

[dpdk-dev] Warnings when building the doc on Ubuntu 18.04

2018-09-17 Thread David Marchand
Hello, I tried to build the documentation but it looks like the instructions about how to build it are not up to date. Currently running Ubuntu 18.04, it might be the reason. marchand@gribouille:~/git/dpdk$ make doc [...] lookup cache used 16122/65536 hits=132815 misses=16618 finished... sphinx p

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

2018-09-17 Thread Burakov, Anatoly
On 13-Sep-18 8:44 AM, Shahaf Shuler wrote: 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

[dpdk-dev] [PATCH v6] net/i40e: add interface to use latest vec path

2018-09-17 Thread Xiaoyun Li
For IA, the AVX2 vector path is only recommended to be used on later platforms (identified by AVX512 support, like SKL etc.) This is because performance benchmark shows downgrade when running AVX2 vector path on early platform (BDW/HSW) in some cases. But we still observe perf gain with some real w

Re: [dpdk-dev] Warnings when building the doc on Ubuntu 18.04

2018-09-17 Thread Thomas Monjalon
17/09/2018 11:59, David Marchand: > Hello, > > I tried to build the documentation but it looks like the instructions > about how to build it are not up to date. Currently running Ubuntu > 18.04, it might be the reason. In pkg/dpdk.spec, there is this requirement (for RedHat based distro):

Re: [dpdk-dev] [PATCH 2/3] net/virtio-user: avoid parsing process mappings

2018-09-17 Thread Burakov, Anatoly
On 10-Sep-18 4:59 AM, Tiwei Bie wrote: On Fri, Sep 07, 2018 at 01:21:35PM +0100, Burakov, Anatoly wrote: On 07-Sep-18 12:35 PM, Tiwei Bie wrote: On Fri, Sep 07, 2018 at 10:39:16AM +0100, Burakov, Anatoly wrote: On 05-Sep-18 5:28 AM, Tiwei Bie wrote: Recently some memory APIs were introduced t

Re: [dpdk-dev] [PATCH 3/3] net/virtio-user: fix memory hotplug support in vhost-kernel

2018-09-17 Thread Burakov, Anatoly
On 10-Sep-18 5:04 AM, Tiwei Bie wrote: On Fri, Sep 07, 2018 at 01:24:05PM +0100, Burakov, Anatoly wrote: On 07-Sep-18 12:37 PM, Tiwei Bie wrote: On Fri, Sep 07, 2018 at 10:44:22AM +0100, Burakov, Anatoly wrote: On 05-Sep-18 5:28 AM, Tiwei Bie wrote: It's possible to have much more hugepage ba

Re: [dpdk-dev] [PATCH v3 1/4] build: include missing hypervisor files in Meson build

2018-09-17 Thread Thomas Monjalon
17/09/2018 11:01, Luca Boccassi: > They are built by the legacy makefiles but not by Meson. > > Fixes: 8f40ee0734c8 ("eal/x86: get hypervisor name") > Cc: sta...@dpdk.org > > Signed-off-by: Luca Boccassi > Acked-by: Bruce Richardson Series applied, thanks

Re: [dpdk-dev] [PATCH v2] build: add PPC64 Meson build

2018-09-17 Thread Thomas Monjalon
10/09/2018 15:28, Bruce Richardson: > On Mon, Sep 10, 2018 at 12:32:43PM +0100, Luca Boccassi wrote: > > This has been only build-tested for now, on a native ppc64el POWER8E > > machine running Debian sid. > > > > Signed-off-by: Luca Boccassi > > --- > > v2: fix indentation, drop march_opt in ppc

Re: [dpdk-dev] [PATCH v3 3/3] doc: add cross compile part for sample applications

2018-09-17 Thread Gavin Hu (Arm Technology China)
> -Original Message- > From: Jerin Jacob > Sent: Monday, September 17, 2018 5:48 PM > To: Gavin Hu (Arm Technology China) > Cc: dev@dpdk.org; Honnappa Nagarahalli > ; Steve Capper > ; Ola Liljedahl ; nd > ; sta...@dpdk.org > Subject: Re: [PATCH v3 3/3] doc: add cross compile part for s

Re: [dpdk-dev] [PATCH v2] eal/bus: use RTE_IOVA_PA only if phys addresses are available

2018-09-17 Thread Burakov, Anatoly
On 07-Sep-18 4:58 PM, Darek Stojaczyk wrote: When neither RTE_IOVA_VA nor RTE_IOVA_PA was explicitly requested, DPDK would currently fallback to the default RTE_IOVA_PA mode and possibly encounter a failure later on if running as a non-priviledged user. Attempting to use RTE_IOVA_VA if no phys ad

Re: [dpdk-dev] [PATCH v2 03/33] crypto/octeontx: add PCI probe and remove

2018-09-17 Thread Akhil Goyal
+static struct rte_pci_driver otx_cryptodev_pmd = { + .id_table = pci_id_cpt_table, + .drv_flags = RTE_PCI_DRV_NEED_MAPPING, + .probe = otx_cpt_pci_probe, + .remove = otx_cpt_pci_remove, +}; remove extra spaces/ Between otx_cryptodev_pmd, otx_cry

Re: [dpdk-dev] [PATCH v3 3/3] doc: add cross compile part for sample applications

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Mon, 17 Sep 2018 10:28:57 + > From: "Gavin Hu (Arm Technology China)" > To: Jerin Jacob > CC: "dev@dpdk.org" , Honnappa Nagarahalli > , Steve Capper , Ola > Liljedahl , nd , "sta...@dpdk.org" > > Subject: RE: [PATCH v3 3/3] doc: add cross compile part fo

Re: [dpdk-dev] [RFC] ipsec: new library for IPsec data-path processing

2018-09-17 Thread Ananyev, Konstantin
Hi Anoob, > > Hi Konstantin, > Please see inline. > > > This RFC introduces a new library within DPDK: librte_ipsec. > The aim is to provide DPDK native high performance library for IPsec > data-path processing. > The library is supposed to utilize existing DPDK crypto-dev and > security API to

[dpdk-dev] [PATCH 01/11] bus/fslmc: upgrade mc FW APIs to 10.10.0

2018-09-17 Thread Shreyansh Jain
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/mc/dpbp.c | 10 ++ drivers/bus/fslmc/mc/dpci.c | 25 + drivers/bus/fslmc/mc/dpio.c | 9 + drivers/bus/fslmc/mc/fsl_dpbp.h | 1 + drivers/bus/fslmc/mc/fs

[dpdk-dev] [PATCH 05/11] bus/fslmc: support memory backed portals with QBMAN 5.0

2018-09-17 Thread Shreyansh Jain
From: Nipun Gupta Signed-off-by: Youri Querry Signed-off-by: Roy Pledge Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/portal/dpaa2_hw_dpio.c | 180 ++--- drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 4 + drivers/bus/fslmc/qbman/include/compat.h | 3 +- .../fslmc/qbman/incl

[dpdk-dev] [PATCH 00/11] Upgrade DPAA2 FW and other feature/bug fixes

2018-09-17 Thread Shreyansh Jain
About the series: This series of patches upgrades the DPAA2 driver firmware to v10.10.10 (MC Firmware). As the bus/fslmc is modified, it is a dependent object for other drivers like net/crypto/qdma. Also, the changes are mostly tightly linked - thus, the patches include upgrade as well as sequenti

[dpdk-dev] [PATCH 02/11] bus/fslmc: upgrade qdma mc FW APIs to 10.10.0

2018-09-17 Thread Shreyansh Jain
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/bus/fslmc/mc/dpdmai.c | 14 ++ drivers/bus/fslmc/mc/fsl_dpdmai.h | 5 + drivers/bus/fslmc/mc/fsl_dpdmai_cmd.h | 21 + drivers/raw/dpaa2_qdma/dpaa2_qdma.c | 14 +++--- driver

[dpdk-dev] [PATCH 03/11] net/dpaa2: upgrade dpni to mc FW APIs to 10.10.0

2018-09-17 Thread Shreyansh Jain
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/dpaa2_ethdev.c| 21 +- drivers/net/dpaa2/mc/dpni.c | 22 +- drivers/net/dpaa2/mc/fsl_dpni.h | 343 +++- drivers/net/dpaa2/mc/fsl_dpni_cmd.h | 17 +- drivers/net/dpaa2/mc/fsl_net.h

[dpdk-dev] [PATCH 06/11] bus/fslmc: support 32 enq and deq for LX2 platform

2018-09-17 Thread Shreyansh Jain
From: Nipun Gupta Signed-off-by: Nipun Gupta --- drivers/bus/fslmc/portal/dpaa2_hw_dpio.c| 17 ++-- drivers/bus/fslmc/portal/dpaa2_hw_dpio.h| 4 drivers/bus/fslmc/portal/dpaa2_hw_pvt.h | 22 - drivers/bus/fslmc/rte_bus_fslmc_version.map | 8 +++

[dpdk-dev] [PATCH 04/11] crypto/dpaa2_sec: upgarde mc FW APIs to 10.10.0

2018-09-17 Thread Shreyansh Jain
From: Hemant Agrawal Signed-off-by: Hemant Agrawal --- drivers/crypto/dpaa2_sec/mc/dpseci.c | 30 ++-- drivers/crypto/dpaa2_sec/mc/fsl_dpseci.h | 10 +-- drivers/crypto/dpaa2_sec/mc/fsl_dpseci_cmd.h | 13 +++-- 3 files changed, 45 insertions(+), 8 deletions(-

[dpdk-dev] [PATCH 09/11] net/dpaa2: read hardware provided MAC for DPNI devices

2018-09-17 Thread Shreyansh Jain
Firmware would contain pre-configured devices for each DPMAC backing a DPNI. This patch reads those MAC address when the device is initialized and sets it. THereafter, it can be changed through API or commands from testpmd. Signed-off-by: Shreyansh Jain --- drivers/net/dpaa2/dpaa2_ethdev.c | 79

[dpdk-dev] [PATCH 07/11] bus/fslmc: disable annotation prefetch for LX2

2018-09-17 Thread Shreyansh Jain
From: Nipun Gupta In case of LX2 we get parse result summary in FD. We do not need to prefetch and read the annotation to fetch the parse results. Signed-off-by: Nipun Gupta DPDK-1404 --- drivers/net/dpaa2/dpaa2_rxtx.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --gi

[dpdk-dev] [PATCH 08/11] net/dpaa2: fix IOVA conversion for congestion memory

2018-09-17 Thread Shreyansh Jain
From: Nipun Gupta Fixes: 5ae1edff6895 ("dpaa2: prepare for 32-bit build") Cc: sta...@dpdk.org Signed-off-by: Nipun Gupta --- drivers/net/dpaa2/dpaa2_ethdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.

[dpdk-dev] [PATCH 10/11] net/dpaa2: add per queue stats get and reset support

2018-09-17 Thread Shreyansh Jain
For now, only the packet count stats per queue is available. This is part of xstats output (though, per queue stats are actually part of rte_eth_stats basic stats). Signed-off-by: Shreyansh Jain --- drivers/net/dpaa2/dpaa2_ethdev.c | 32 1 file changed, 32 insert

[dpdk-dev] [PATCH 11/11] net/dpaa2: fix VLAN filter enablement

2018-09-17 Thread Shreyansh Jain
From: Hemant Agrawal Fixes: 0ebce6129bc6 ("net/dpaa2: support new ethdev offload APIs") Cc: sta...@dpdk.org Signed-off-by: Hemant Agrawal --- drivers/net/dpaa2/dpaa2_ethdev.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dp

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Akhil Goyal
I think it would be better to squash the makefile related changes in the 3/33 patch as the code is actually added in that and here the code is not getting compiled here. So the changes in the following files has to be moved to patch 3/33?   drivers/crypto/Makefile   drivers/crypto/meson.

Re: [dpdk-dev] [PATCH v2 03/33] crypto/octeontx: add PCI probe and remove

2018-09-17 Thread Joseph, Anoob
Hi Akhil, On 17-09-2018 16:04, Akhil Goyal wrote: External Email +static struct rte_pci_driver otx_cryptodev_pmd = { + .id_table = pci_id_cpt_table, + .drv_flags = RTE_PCI_DRV_NEED_MAPPING, + .probe = otx_cpt_pci_probe, + .remove = otx_cpt_pci_re

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Akhil Goyal
On 9/4/2018 9:28 AM, Anoob Joseph wrote: From: Anoob Joseph Adding code identified common for OcteonTX family crypto devices. This patch is adding the code required by the structures and code path of init routine. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph Signed-off-by: Mur

[dpdk-dev] [PATCH v4] doc: add cross compile part for sample applications

2018-09-17 Thread Gavin Hu
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps") Cc: sta...@dpdk.org Signed-off-by: Gavin Hu Reviewed-by: Honnappa Nagarahalli --- doc/guides/sample_app_ug/compiling.rst | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/guides/samp

[dpdk-dev] [PATCH v5] doc: add cross compile part for sample applications

2018-09-17 Thread Gavin Hu
Fixes: 7cacb05655 ("doc: add generic build instructions for sample apps") Cc: sta...@dpdk.org Signed-off-by: Gavin Hu Reviewed-by: Honnappa Nagarahalli --- doc/guides/sample_app_ug/compiling.rst | 16 +++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/doc/guides/samp

Re: [dpdk-dev] [PATCH v3 3/3] doc: add cross compile part for sample applications

2018-09-17 Thread Gavin Hu (Arm Technology China)
Hi Jerin, Thanks for review, could you help review the v5 version? Best Regards, Gavin > -Original Message- > From: Jerin Jacob > Sent: Monday, September 17, 2018 6:35 PM > To: Gavin Hu (Arm Technology China) > Cc: dev@dpdk.org; Honnappa Nagarahalli > ; Steve Capper > ; Ola Liljedahl ;

Re: [dpdk-dev] [PATCH v3] net/i40e: add alarm handler

2018-09-17 Thread Ferruh Yigit
On 9/11/2018 4:35 AM, Beilei Xing wrote: > This patch adds alarm handler, and then i40e > PF will use alarm handler instead of interrupt > handler when device is started and Rx interrupt > mode is disabled. This way will save CPU cycles > during receiving packets. > > Signed-off-by: Beilei Xing

Re: [dpdk-dev] [PATCH v2 07/33] common/cpt: add hardware register defines

2018-09-17 Thread Akhil Goyal
+typedef union cpt_res_s { + uint64_t u[2]; + struct cpt_res_s_8s { +#if (RTE_BYTE_ORDER == RTE_BIG_ENDIAN) /* Word 0 - Big Endian */ + uint64_t reserved_17_63: 47; + uint64_t doneint : 1; + /**< [ 16: 16] Done interrup

Re: [dpdk-dev] Warnings when building the doc on Ubuntu 18.04

2018-09-17 Thread David Marchand
On Mon, Sep 17, 2018 at 12:15 PM, Thomas Monjalon wrote: > 17/09/2018 11:59, David Marchand: >> Hello, >> >> I tried to build the documentation but it looks like the instructions >> about how to build it are not up to date. Currently running Ubuntu >> 18.04, it might be the reason. > > In pkg/dpdk

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

2018-09-17 Thread Thomas Monjalon
13/09/2018 11:11, 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_mempo

Re: [dpdk-dev] [PATCH v3 01/10] event/dsw: add DSW device registration and build system

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:07 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 01/10] event/dsw: add DSW device registration and build > system > X-Mailer: g

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Joseph, Anoob
Hi Akhil, On 17-09-2018 16:07, Akhil Goyal wrote: External Email I think it would be better to squash the makefile related changes in the 3/33 patch as the code is actually added in that and here the code is not getting compiled here. So the changes in the following files has to be moved t

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Thomas Monjalon
17/09/2018 12:45, Akhil Goyal: > On 9/4/2018 9:28 AM, Anoob Joseph wrote: > > +struct pending_queue { > > + uint16_t enq_tail; > > + uint16_t deq_head; > > + uint16_t soft_qlen; > > + /**< Software expected queue length */ > > + uint16_t p_doorbell; > > + struct rid *rid_queue;

Re: [dpdk-dev] [PATCH] build: simplify logic for default library dependencies

2018-09-17 Thread Thomas Monjalon
08/08/2018 17:58, Bruce Richardson: > On Thu, Jul 26, 2018 at 03:55:56PM +0200, Thomas Monjalon wrote: > > 19/07/2018 16:37, Bruce Richardson: > > > EAL is a standard dependency of all libraries, except for those built > > > before it. We can therefore simplify the logic by just checking if EAL > >

Re: [dpdk-dev] [PATCH] build: add configuration summary at end of config

2018-09-17 Thread Thomas Monjalon
29/08/2018 18:19, Bruce Richardson: > After running meson to configure a DPDK build, it can be useful to know > what was automatically enabled or disabled. Therefore, print out by way of > summary a categorised list of libraries and drivers to be built. > > Signed-off-by: Bruce Richardson Applie

Re: [dpdk-dev] [PATCH 2/3] net/virtio-user: avoid parsing process mappings

2018-09-17 Thread Tiwei Bie
On Mon, Sep 17, 2018 at 11:17:42AM +0100, Burakov, Anatoly wrote: > On 10-Sep-18 4:59 AM, Tiwei Bie wrote: > > On Fri, Sep 07, 2018 at 01:21:35PM +0100, Burakov, Anatoly wrote: > > > On 07-Sep-18 12:35 PM, Tiwei Bie wrote: > > > > On Fri, Sep 07, 2018 at 10:39:16AM +0100, Burakov, Anatoly wrote: >

Re: [dpdk-dev] [PATCH v2 09/33] crypto/octeontx: adds symmetric capabilities

2018-09-17 Thread Akhil Goyal
diff --git a/drivers/crypto/octeontx/otx_cryptodev_ops.c b/drivers/crypto/octeontx/otx_cryptodev_ops.c index d25f9c1..cc0030e 100644 --- a/drivers/crypto/octeontx/otx_cryptodev_ops.c +++ b/drivers/crypto/octeontx/otx_cryptodev_ops.c @@ -10,9 +10,15 @@ #include "cpt_pmd_logs.h" #include "ot

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Thomas Monjalon
29/08/2018 18:02, Bruce Richardson: > Add in a cross-file to enable 32-bit compile tests as part > of the test-meson-builds script. > > Signed-off-by: Bruce Richardson > --- > NOTE: For ease of use, it's recommended that meson 0.47 be used for > this testing. With earlier versions, it may be nece

Re: [dpdk-dev] [PATCH v3 03/10] event/dsw: add DSW port configuration

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:09 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 03/10] event/dsw: add DSW port configuration > X-Mailer: git-send-email 2.17.1

Re: [dpdk-dev] [PATCH v3 04/10] event/dsw: add support in DSW for linking/unlinking ports

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:10 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 04/10] event/dsw: add support in DSW for > linking/unlinking ports > X-Mailer:

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

2018-09-17 Thread Shahaf Shuler
Monday, September 17, 2018 1:07 PM, Burakov, Anatoly: > Subject: Re: [dpdk-dev] [PATCH 00/16] Support externally allocated memory > in DPDK > > On 13-Sep-18 8:44 AM, Shahaf Shuler wrote: [...] > >> The responsibility to ensure memory is accessible before using it is > >> on the shoulders of the

Re: [dpdk-dev] [PATCH v2 01/33] config: add Cavium OcteonTX crypto PMD skeleton

2018-09-17 Thread Akhil Goyal
On 9/17/2018 5:12 PM, Joseph, Anoob wrote: Hi Akhil, On 17-09-2018 16:07, Akhil Goyal wrote: External Email I think it would be better to squash the makefile related changes in the 3/33 patch as the code is actually added in that and here the code is not getting compiled here. So the change

Re: [dpdk-dev] [PATCH v3 05/10] event/dsw: add DSW event scheduling and device start/stop

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:11 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 05/10] event/dsw: add DSW event scheduling and device > start/stop > X-Mailer:

Re: [dpdk-dev] [PATCH v3 09/10] event/dsw: implement eventdev 'xstats' counters in DSW

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:15 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 09/10] event/dsw: implement eventdev 'xstats' counters > in DSW > X-Mailer: gi

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Joseph, Anoob
Hi Thomas, On 17-09-2018 17:16, Thomas Monjalon wrote: External Email 17/09/2018 12:45, Akhil Goyal: On 9/4/2018 9:28 AM, Anoob Joseph wrote: +struct pending_queue { + uint16_t enq_tail; + uint16_t deq_head; + uint16_t soft_qlen; + /**< Software expected queue length */ + ui

Re: [dpdk-dev] [PATCH v3 10/10] event/dsw: include DSW event device documentation

2018-09-17 Thread Jerin Jacob
-Original Message- > Date: Tue, 11 Sep 2018 10:02:16 +0200 > From: Mattias Rönnblom > To: jerin.ja...@caviumnetworks.com > CC: bruce.richard...@intel.com, dev@dpdk.org, Mattias Rönnblom > > Subject: [PATCH v3 10/10] event/dsw: include DSW event device documentation > X-Mailer: git-send-e

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Akhil Goyal
Hi Thomas, On 9/17/2018 5:16 PM, Thomas Monjalon wrote: 17/09/2018 12:45, Akhil Goyal: On 9/4/2018 9:28 AM, Anoob Joseph wrote: +struct pending_queue { + uint16_t enq_tail; + uint16_t deq_head; + uint16_t soft_qlen; + /**< Software expected queue length */ +

Re: [dpdk-dev] [PATCH v2 09/33] crypto/octeontx: adds symmetric capabilities

2018-09-17 Thread Joseph, Anoob
Hi Akhil, On 17-09-2018 17:31, Akhil Goyal wrote: External Email diff --git a/drivers/crypto/octeontx/otx_cryptodev_ops.c b/drivers/crypto/octeontx/otx_cryptodev_ops.c index d25f9c1..cc0030e 100644 --- a/drivers/crypto/octeontx/otx_cryptodev_ops.c +++ b/drivers/crypto/octeontx/otx_cryptodev_o

[dpdk-dev] [PATCH v2] mbuf: remove deprecated segment free functions

2018-09-17 Thread David Marchand
__rte_mbuf_raw_free and __rte_pktmbuf_prefree_seg have been deprecated for a long time now (early 17.05), are not part of the abi and are easily replaced with existing api. Signed-off-by: David Marchand Acked-by: Andrew Rybchenko --- doc/guides/rel_notes/release_18_11.rst | 5 + lib/librte

Re: [dpdk-dev] [PATCH v2 10/33] common/cpt: add PMD ops helper functions

2018-09-17 Thread Akhil Goyal
On 9/4/2018 9:28 AM, Anoob Joseph wrote: From: Murthy NSSR Adding pmd ops helper functions. Control path accessed APIs would be added as helper functions. Adding microcode defined macros etc as dependencies to the helper functions. Signed-off-by: Ankur Dwivedi Signed-off-by: Anoob Joseph

Re: [dpdk-dev] [PATCH v2 05/33] common/cpt: add common code for init routine

2018-09-17 Thread Thomas Monjalon
17/09/2018 14:32, Akhil Goyal: > > Hi Thomas, > > On 9/17/2018 5:16 PM, Thomas Monjalon wrote: > > > 17/09/2018 12:45, Akhil Goyal: > >> On 9/4/2018 9:28 AM, Anoob Joseph wrote: > >>> +struct pending_queue { > >>> + uint16_t enq_tail; > >>> + uint16_t deq_head; > >>> + uint16_t soft_qlen; > >>>

Re: [dpdk-dev] [PATCH] test-meson-builds: add 32-bit compilation test

2018-09-17 Thread Bruce Richardson
On Mon, Sep 17, 2018 at 02:03:50PM +0200, Thomas Monjalon wrote: > 29/08/2018 18:02, Bruce Richardson: > > Add in a cross-file to enable 32-bit compile tests as part > > of the test-meson-builds script. > > > > Signed-off-by: Bruce Richardson > > --- > > NOTE: For ease of use, it's recommended th

  1   2   >