Re: [dpdk-dev] [PATCH v4 2/3] examples/ipsec-secgw: add target queues in flow actions

2017-12-18 Thread Anoob Joseph
Hi Nelio, On 12/14/2017 08:44 PM, Nelio Laranjeiro wrote: Mellanox INNOVA NIC needs to have final target queue actions to perform inline crypto. Signed-off-by: Nelio Laranjeiro --- Changes in v4: * remove Egress code. Changes in v3: * removed PASSTHRU test for ingress. * removed ch

Re: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW active pool

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Fri, 15 Dec 2017 15:54:42 +0530 > From: Hemant Agrawal > To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com > CC: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW > active pool > X-Mailer: git-send-email 2.7.4 >

Re: [dpdk-dev] [PATCH 2/2] dpaa2: register dpaa2 mempool ops as active mempool

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Fri, 15 Dec 2017 15:54:43 +0530 > From: Hemant Agrawal > To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com > CC: dev@dpdk.org > Subject: [dpdk-dev] [PATCH 2/2] dpaa2: register dpaa2 mempool ops as active > mempool > X-Mailer: git-send-email 2.7.4 >

Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for pktmbuf pool create API

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Fri, 15 Dec 2017 16:11:22 +0530 > From: Hemant Agrawal > To: olivier.m...@6wind.com > CC: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2] doc: announce ABI change for pktmbuf pool > create API > X-Mailer: git-send-email 2.7.4 > > Introduce a new argument ops_name

Re: [dpdk-dev] [PATCH] net/octeontx: advertise supported mbuf pool ops

2017-12-18 Thread santosh
On Thursday 14 December 2017 02:01 PM, Pavan Nikhilesh wrote: > Advertise mempool/octeontx as the only supported mempool ops when the > application checks using `rte_eth_dev_pool_ops_supported`. > > Signed-off-by: Pavan Nikhilesh > --- Acked-by: Santosh Shukla

Re: [dpdk-dev] [PATCH 0/6] event/dpaa: Support for eventdev

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Fri, 15 Dec 2017 18:29:27 +0530 > From: Sunil Kumar Kori > To: jerin.ja...@caviumnetworks.com > CC: dev@dpdk.org, hemant.agra...@nxp.com > Subject: [PATCH 0/6] event/dpaa: Support for eventdev > X-Mailer: git-send-email 2.9.3 > > Event device support for atomic

Re: [dpdk-dev] [RFC v2 PATCH 0/8] event: eventdev OPDL PMD

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Fri, 15 Dec 2017 11:26:21 + > From: Liang Ma > To: jerin.ja...@caviumnetworks.com > CC: dev@dpdk.org, harry.van.haa...@intel.com, bruce.richard...@intel.com, > deepak.k.j...@intel.com, john.ge...@intel.com, peter.mccar...@intel.com, > sea...@gmail.com > Sub

Re: [dpdk-dev] [PATCH 2/2] dpaa2: register dpaa2 mempool ops as active mempool

2017-12-18 Thread Hemant Agrawal
On 12/18/2017 2:27 PM, Jerin Jacob wrote: ... diff --git a/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c b/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c index 334e1f5..5a6f292 100644 --- a/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c +++ b/drivers/bus/fslmc/portal/dpaa2_hw_dpbp.c @@ -64,6 +64,7 @@ dpaa2_cre

Re: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW active pool

2017-12-18 Thread Hemant Agrawal
On 12/15/2017 9:22 PM, Stephen Hemminger wrote: On Fri, 15 Dec 2017 15:54:42 +0530 Hemant Agrawal wrote: + if ((strcmp(default_ops, RTE_MBUF_DEFAULT_MEMPOOL_OPS) == 0) && + (active_mbuf_pool_ops_name != NULL)) Why not have less parenthesis () in conditionals? I will cha

Re: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW active pool

2017-12-18 Thread Hemant Agrawal
On 12/18/2017 2:25 PM, Jerin Jacob wrote: -Original Message- Date: Fri, 15 Dec 2017 15:54:42 +0530 From: Hemant Agrawal To: olivier.m...@6wind.com, santosh.shu...@caviumnetworks.com CC: dev@dpdk.org Subject: [dpdk-dev] [PATCH 1/2] mbuf: update default Mempool ops with HW active pool X-

Re: [dpdk-dev] [PATCH v2 1/2] net/octeontx: add channel to port id mapping

2017-12-18 Thread santosh
On Saturday 09 December 2017 06:25 PM, Pavan Nikhilesh wrote: > The channel to port id map is used by event octeontx to map the received > wqe to the respective ethdev port. > > Signed-off-by: Pavan Nikhilesh > --- > > v2 changes: > - Used extern instead of defining global variable > > driver

Re: [dpdk-dev] [PATCH v2 2/2] event/octeontx: fix Rx adapter port id mapping

2017-12-18 Thread santosh
On Saturday 09 December 2017 06:25 PM, Pavan Nikhilesh wrote: > When octeontx event dev receives a packet for the event Rx adapter, the > mbuf port id should contain the appropriate ethdev id instead of > internal channel info. > > Fixes: 45a914c5bd71 ("event/octeontx: support event Rx adapter") >

Re: [dpdk-dev] [PATCH v4 2/3] examples/ipsec-secgw: add target queues in flow actions

2017-12-18 Thread Nélio Laranjeiro
Hi Anoob, On Mon, Dec 18, 2017 at 01:53:50PM +0530, Anoob Joseph wrote: > Hi Nelio, > > > On 12/14/2017 08:44 PM, Nelio Laranjeiro wrote: > > Mellanox INNOVA NIC needs to have final target queue actions to perform > > inline crypto. > > > > Signed-off-by: Nelio Laranjeiro > > > > --- > > > >

[dpdk-dev] [PATCH v5 1/3] examples/ipsec-secgw: fix missing ingress flow attribute

2017-12-18 Thread Nelio Laranjeiro
Generic flow API have both direction bits, ingress and egress for rules which may work on both sides. Fixes: ec17993a145a ("examples/ipsec-secgw: support security offload") Cc: akhil.go...@nxp.com Signed-off-by: Nelio Laranjeiro Acked-by: Radu Nicolau Acked-by: Anoob Joseph --- examples/ipsec

[dpdk-dev] [PATCH v5 2/3] examples/ipsec-secgw: add target queues in flow actions

2017-12-18 Thread Nelio Laranjeiro
Mellanox INNOVA NIC needs to have final target queue actions to perform inline crypto. Signed-off-by: Nelio Laranjeiro --- Changes in v5: * Add back default second action. Changes in v4: * remove Egress code. Changes in v3: * removed PASSTHRU test for ingress. * removed check on config

[dpdk-dev] [PATCH v5 3/3] examples/ipsec-secgw: add Egress flow actions

2017-12-18 Thread Nelio Laranjeiro
Add Egress flow create for devices supporting RTE_SECURITY_TX_HW_TRAILER_OFFLOAD. Signed-off-by: Nelio Laranjeiro -- Changes in v5: * removed default second end actions wrongly added in this patch. --- examples/ipsec-secgw/ipsec.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/ex

Re: [dpdk-dev] [PATCH] ethdev: fix setting of MAC address

2017-12-18 Thread Andrew Rybchenko
On 12/14/2017 08:15 PM, Olivier Matz wrote: From: Laurent Hardy When a new mac address is set, it is saved in dev->data->mac_addrs before the ethdev handler is called. First, it is inconsistent with the other ethdev functions rte_eth_dev_mac_addr_remove() and rte_eth_dev_mac_addr_add(). Moreo

Re: [dpdk-dev] [PATCH v2] lib/cmdline: init CLI parsing memory

2017-12-18 Thread Adrien Mazarguil
On Thu, Dec 14, 2017 at 04:35:45PM +0100, Olivier MATZ wrote: > Hi Xueming, > > On Sat, Dec 09, 2017 at 11:39:23PM +0800, Xueming Li wrote: > > Initialize result memory every time before parsing. Also save > > successfully parsed result before further ambiguous command detection to > > avoid resul

Re: [dpdk-dev] [PATCH] ethdev: fix setting of MAC address

2017-12-18 Thread Igor Ryzhov
Hello Andrew, Don't you think that it's not correct that net/sfc works that way? If we go further, dev->dev_ops->mac_addr_set not only should be called before ether_addr_copy. It should return status code, and in case of error ether_addr_copy shouldn't be called at all. Am I wrong? Best regards,

Re: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify lib

2017-12-18 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jasvinder Singh > Sent: Friday, December 15, 2017 10:39 AM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify > lib > > Updates the docum

Re: [dpdk-dev] [PATCH v2 1/8] event/opdl: add the opdl ring infrastructure library

2017-12-18 Thread Ma, Liang
On 15 Dec 16:23, Neil Horman wrote: > On Fri, Dec 15, 2017 at 01:50:41PM +, Ma, Liang wrote: > > On 15 Dec 07:38, Neil Horman wrote: > > > On Fri, Dec 15, 2017 at 11:26:22AM +, Liang Ma wrote: > > > > OPDL ring is the core infrastructure of OPDL PMD. OPDL ring library > > > > provide the co

Re: [dpdk-dev] how to iterator all malloc_elem of a malloc_heap

2017-12-18 Thread Burakov, Anatoly
On 16-Dec-17 2:35 PM, liupan1234 wrote: Hi All, struct malloc_heap { rte_spinlock_t lock; LIST_HEAD(, malloc_elem) free_head[RTE_HEAP_NUM_FREELISTS]; unsigned alloc_count; size_t total_size; } __rte_cache_aligned; I found there are free list of one malloc h

Re: [dpdk-dev] shared memory statistic

2017-12-18 Thread Burakov, Anatoly
On 15-Dec-17 3:39 AM, liupan1234 wrote: Hi all, I have an urgent question: 1) when an app runs, how to get the really memory it used in real time? for example, it use -m param to specify 1G memory, but it only used 500 MB, how to get this info 2) When several apps runs with shared memory: s

Re: [dpdk-dev] [PATCH] ethdev: fix setting of MAC address

2017-12-18 Thread Andrew Rybchenko
On 12/18/2017 01:53 PM, Igor Ryzhov wrote: On Mon, Dec 18, 2017 at 1:35 PM, Andrew Rybchenko mailto:arybche...@solarflare.com>> wrote: On 12/14/2017 08:15 PM, Olivier Matz wrote: From: Laurent Hardy mailto:laurent.ha...@6wind.com>> When a new mac address is set, it is sa

[dpdk-dev] [PATCH 0/2] next-build: add test app to build

2017-12-18 Thread Harry van Haaren
This patchset adds the test/test/test app to the Meson build. In doing so, the test app is improved to allow running a unit test by setting an environment variable. This allows the meson test infrastructure to integrate with the DPDK tests. Some nice improvements from the above integration, includi

[dpdk-dev] [PATCH 2/2] meson: add tests app to build

2017-12-18 Thread Harry van Haaren
This patch enables the test/test app to be built. It also adds the test binary to be a meson-test, which allows the meson test infrastructure to be used to run tests. Tests are listed using the same test binary, however each test sets a different DPDK_TEST environment variable. The string contents

[dpdk-dev] [PATCH 1/2] test: use env variable to run test if set

2017-12-18 Thread Harry van Haaren
This commit paves the way for the meson tests in the next patch. With this patch the test binary checks the DPDK_TEST environment variable and if set, the contents of the var are inserted on the test app command line, and run. This allows testing of various different unit tests without manual inte

[dpdk-dev] [PATCH v4 1/4] Introducing SPDX License Identifiers

2017-12-18 Thread Hemant Agrawal
The DPDK uses the Open Source BSD-3-Clause license for the core libraries and drivers. The kernel components are naturally GPLv2 licensed. Many of the files in the DPDK source code contain the full text of the applicable license. For example, most of the BSD-3-Clause files contain a full copy of t

[dpdk-dev] [PATCH v4 2/4] change root makefile license to SPDX tag

2017-12-18 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- GNUmakefile | 29 + Makefile| 29 + 2 files changed, 2 insertions(+), 56 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 45b7fbb..2ff3e4b 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,33 +1

[dpdk-dev] [PATCH v4 4/4] change NXP dpaa code License text to SPDX tags

2017-12-18 Thread Hemant Agrawal
Signed-off-by: Hemant Agrawal --- config/defconfig_arm64-dpaa-linuxapp-gcc | 30 ++--- doc/guides/cryptodevs/dpaa_sec.rst| 31 +++--- doc/guides/nics/dpaa.rst | 31 +++--- doc/guides/prog_guide/rte_security.rst

[dpdk-dev] Next technical board meeting on 2017-12-20

2017-12-18 Thread Hemant Agrawal
The next techboard meeting will take place on 2017-12-20 i.e. this Wednesday, at 3pm UTC. Meeting place: IRC #dpdk-board Please send on any items requiring techboard attention. Regards, /Hemant > -Original Message- > From: techboard [mailto:techboard-boun...@dpdk.org] On Behalf Of >

Re: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify lib

2017-12-18 Thread Singh, Jasvinder
> -Original Message- > From: Kovacevic, Marko > Sent: Monday, December 18, 2017 11:05 AM > To: Singh, Jasvinder ; dev@dpdk.org > Cc: Iremonger, Bernard > Subject: RE: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow > classify lib > > > > > -Original Message- > > F

Re: [dpdk-dev] [PATCH v2] lib/cmdline: init CLI parsing memory

2017-12-18 Thread Xueming(Steven) Li
No problem, make enough sense for v3. > -Original Message- > From: Adrien Mazarguil [mailto:adrien.mazarg...@6wind.com] > Sent: Monday, December 18, 2017 6:51 PM > To: Olivier MATZ > Cc: Xueming(Steven) Li ; dev@dpdk.org > Subject: Re: [PATCH v2] lib/cmdline: init CLI parsing memory > >

Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 11:53:57AM +, Harry van Haaren wrote: > This commit paves the way for the meson tests in the next > patch. With this patch the test binary checks the DPDK_TEST > environment variable and if set, the contents of the var > are inserted on the test app command line, and run

Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for pktmbuf pool create API

2017-12-18 Thread Wiles, Keith
> On Dec 15, 2017, at 4:41 AM, Hemant Agrawal wrote: > > Introduce a new argument ops_name in rte_mempool_set_ops_byname > for allowing the application to optionally specify the mempool ops. > > Signed-off-by: Hemant Agrawal > --- > v2: fix checkpatch error > > doc/guides/rel_notes/deprecati

Re: [dpdk-dev] [PATCH 2/2] meson: add tests app to build

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 11:53:58AM +, Harry van Haaren wrote: > This patch enables the test/test app to be built. It also adds > the test binary to be a meson-test, which allows the meson test > infrastructure to be used to run tests. > > Tests are listed using the same test binary, however ea

Re: [dpdk-dev] [PATCH 0/2] next-build: add test app to build

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 11:53:56AM +, Harry van Haaren wrote: > This patchset adds the test/test/test app to the Meson build. > In doing so, the test app is improved to allow running a unit > test by setting an environment variable. This allows the meson > test infrastructure to integrate with

[dpdk-dev] [PATCH] maintainers: resign from maintenance

2017-12-18 Thread Sergio Gonzalez Monroy
I will not be directly working on the DPDK project anymore. Signed-off-by: Sergio Gonzalez Monroy --- MAINTAINERS | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index f0baeb4..64f154a 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -113,7 +113

Re: [dpdk-dev] [PATCH v3 5/5] bbdev: documentation

2017-12-18 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Amr Mokhtar > Sent: Thursday, December 7, 2017 9:41 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; Burakov, Anatoly ; De > Lara Guarch, Pablo ; Power, Niall > ; Macnamara, Chris ; > Mokhtar, Amr > Subject: [dpd

Re: [dpdk-dev] [PATCH] maintainers: resign from maintenance

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 02:02:06PM +, Sergio Gonzalez Monroy wrote: > I will not be directly working on the DPDK project anymore. > > Signed-off-by: Sergio Gonzalez Monroy > --- With regret. Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v4 2/4] change root makefile license to SPDX tag

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote: > Signed-off-by: Hemant Agrawal > --- > GNUmakefile | 29 + > Makefile| 29 + > 2 files changed, 2 insertions(+), 56 deletions(-) > Acked-by: Bruce Richardson

Re: [dpdk-dev] [PATCH v2] doc: announce ABI change for pktmbuf pool create API

2017-12-18 Thread Neil Horman
On Mon, Dec 18, 2017 at 01:51:52PM +, Wiles, Keith wrote: > > > > On Dec 15, 2017, at 4:41 AM, Hemant Agrawal wrote: > > > > Introduce a new argument ops_name in rte_mempool_set_ops_byname > > for allowing the application to optionally specify the mempool ops. > > > > Signed-off-by: Hemant

Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Mon, 18 Dec 2017 11:53:57 + > From: Harry van Haaren > To: dev@dpdk.org > CC: bruce.richard...@intel.com, Harry van Haaren > > Subject: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set > X-Mailer: git-send-email 2.7.4 > > This commit paves

Re: [dpdk-dev] [PATCH v2] virtio_net: kick guest even when virtio queue is full

2017-12-18 Thread Patrik Andersson R
Hi Maxime, apologies for the late answer. Yes I would think that it would solve the problem that we had. But there is a slight risk that a driver in a VM (not within our area of influence) was partly responsible for the severity of the fault and that we might again experience some difficulties

Re: [dpdk-dev] [PATCH v1] net/tap: allow user mac to be passed as args

2017-12-18 Thread Varghese, Vipin
On 11/30/2017 11:49 AM, Vipin Varghese wrote: > One of the uses cases from customer site is use TAP PMD to intake user > specific MAC address during probe. This allows applications make use > of interfaces with desired MAC. > > Extending MAC argumentinfrastructure for tap PMD; we pass custom MAC

Re: [dpdk-dev] [PATCH 0/2] next-build: add test app to build

2017-12-18 Thread Van Haaren, Harry
> From: Richardson, Bruce > Sent: Monday, December 18, 2017 1:57 PM > To: Van Haaren, Harry > Cc: dev@dpdk.org > Subject: Re: [PATCH 0/2] next-build: add test app to build > > On Mon, Dec 18, 2017 at 11:53:56AM +, Harry van Haaren wrote: > > This patchset adds the test/test/test app to the Me

Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set

2017-12-18 Thread Van Haaren, Harry
> From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Monday, December 18, 2017 2:59 PM > To: Van Haaren, Harry > Cc: dev@dpdk.org; Richardson, Bruce > Subject: Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if > set > > -Original Message- > > Date: Mon, 18 D

Re: [dpdk-dev] [PATCH 2/2] meson: add tests app to build

2017-12-18 Thread Van Haaren, Harry
> From: Richardson, Bruce > Sent: Monday, December 18, 2017 1:55 PM > To: Van Haaren, Harry > Cc: dev@dpdk.org > Subject: Re: [PATCH 2/2] meson: add tests app to build > > On Mon, Dec 18, 2017 at 11:53:58AM +, Harry van Haaren wrote: > > This patch enables the test/test app to be built. It al

[dpdk-dev] [PATCH v2 2/2] eal/x86: Use lock-prefixed instructions to reduce cost of rte_smp_mb()

2017-12-18 Thread Konstantin Ananyev
On x86 it is possible to use lock-prefixed instructions to get the similar effect as mfence. As pointed by Java guys, on most modern HW that gives a better performance than using mfence: https://shipilev.net/blog/2014/on-the-fence-with-dependencies/ That patch adopts that technique for rte_smp_mb(

[dpdk-dev] [PATCH v2 1/2] test/test: introduce new test-case for rte_smp_mb()

2017-12-18 Thread Konstantin Ananyev
Simple functional test for rte_smp_mb() implementations. Also when executed on a single lcore could be used as rough estimation how many cycles particular implementation of rte_smp_mb() might take. Signed-off-by: Konstantin Ananyev --- test/test/Makefile | 1 + test/test/test_mb.c | 315 +

[dpdk-dev] [PATCH v2 0/2] eal/x86: Optimize rte_smp_mb() and create a new test case for it

2017-12-18 Thread Konstantin Ananyev
v2 changes: Address Bruce code-review comments: - get rid of macros to simplify the code - add more comments to the test case Konstantin Ananyev (2): test/test: introduce new test-case for rte_smp_mb() eal/x86: Use lock-prefixed instructions to reduce cost of rte_smp_mb() .../common/in

Re: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if set

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Mon, 18 Dec 2017 15:24:22 + > From: "Van Haaren, Harry" > To: Jerin Jacob > CC: "dev@dpdk.org" , "Richardson, Bruce" > > Subject: RE: [dpdk-dev] [PATCH 1/2] test: use env variable to run test if > set > > > From: Jerin Jacob [mailto:jerin.ja...@caviumnet

Re: [dpdk-dev] [PATCH v2 2/2] eal/x86: Use lock-prefixed instructions to reduce cost of rte_smp_mb()

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 03:34:13PM +, Konstantin Ananyev wrote: > On x86 it is possible to use lock-prefixed instructions to get > the similar effect as mfence. > As pointed by Java guys, on most modern HW that gives a better > performance than using mfence: > https://shipilev.net/blog/2014/on

Re: [dpdk-dev] [PATCH v4 2/4] change root makefile license to SPDX tag

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote: > Signed-off-by: Hemant Agrawal > --- > GNUmakefile | 29 + > Makefile| 29 + > 2 files changed, 2 insertions(+), 56 deletions(-) > > diff --git a/GNUmakefile b/GNUmakefile

Re: [dpdk-dev] [PATCH] igb_uio: allow multi-process access

2017-12-18 Thread Wang, Xiao W
Hi, > -Original Message- > From: Stephen Hemminger [mailto:step...@networkplumber.org] > Sent: Tuesday, December 12, 2017 9:39 AM > To: Wang, Xiao W > Cc: Yigit, Ferruh ; dev@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] igb_uio: allow multi-process access > > On Fri, 8 Dec 2017 17:57:33 -

Re: [dpdk-dev] [PATCH v4 2/4] change root makefile license to SPDX tag

2017-12-18 Thread Thomas Monjalon
18/12/2017 16:52, Bruce Richardson: > On Mon, Dec 18, 2017 at 06:09:02PM +0530, Hemant Agrawal wrote: > > --- a/GNUmakefile > > +++ b/GNUmakefile > > @@ -1,33 +1,6 @@ > > -# BSD LICENSE > > +# SPDX-License-Identifier: BSD-3-Clause > > # > > # Copyright(c) 2010-2015 Intel Corporation. All righ

Re: [dpdk-dev] [RFC] eventdev: add crypto adapter API header

2017-12-18 Thread Eads, Gage
> -Original Message- > From: Jerin Jacob [mailto:jerin.ja...@caviumnetworks.com] > Sent: Monday, December 18, 2017 12:30 AM > To: Eads, Gage > Cc: Gujjar, Abhinandan S ; dev@dpdk.org; > Vangati, Narender ; Rao, Nikhil > ; hemant.agra...@nxp.com; Doherty, Declan > ; nidadavolu.mur...@cavi

Re: [dpdk-dev] [RFC PATCH 0/3] ethdev: few changes in rte_ethdev layer

2017-12-18 Thread Jerin Jacob
-Original Message- > Date: Thu, 14 Dec 2017 13:57:02 + > From: "Ananyev, Konstantin" > To: Jerin Jacob > CC: "dev@dpdk.org" , "shah...@mellanox.com" > > Subject: RE: [dpdk-dev] [RFC PATCH 0/3] ethdev: few changes in rte_ethdev > layer > > Hi Jerin, Hi Konstantin, > > > > > Hi

[dpdk-dev] [PATCH v1 0/3] Introduce virtual PMD for Hyper-V/Azure platforms

2017-12-18 Thread Adrien Mazarguil
Virtual machines hosted by Hyper-V/Azure platforms are fitted with simplified virtual network devices named NetVSC that are used for fast communication between VM to VM, VM to hypervisor, and the outside. They appear as standard system netdevices to user-land applications, the main difference bein

[dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Adrien Mazarguil
As described in more details in the attached documentation (see patch contents), this virtual device driver manages NetVSC interfaces in virtual machines hosted by Hyper-V/Azure platforms. This driver does not manage traffic nor Ethernet devices directly; it acts as a thin configuration layer that

[dpdk-dev] [PATCH v1 1/3] net/hyperv: introduce MS Hyper-V platform driver

2017-12-18 Thread Adrien Mazarguil
This patch lays the groundwork for this PMD (draft documentation, copyright notices, code base skeleton and build system hooks). While it can be successfully compiled and invoked, it's an empty shell at this stage. Signed-off-by: Adrien Mazarguil --- MAINTAINERS

[dpdk-dev] [PATCH v1 3/3] net/hyperv: add "force" parameter

2017-12-18 Thread Adrien Mazarguil
This parameter allows specifying any non-NetVSC interface to use with tap sub-devices for development purposes. Signed-off-by: Adrien Mazarguil --- doc/guides/nics/hyperv.rst | 5 + drivers/net/hyperv/hyperv.c | 26 +++--- 2 files changed, 24 insertions(+), 7 deletions(

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Wiles, Keith
> On Dec 18, 2017, at 10:46 AM, Adrien Mazarguil > wrote: > > As described in more details in the attached documentation (see patch > contents), this virtual device driver manages NetVSC interfaces in virtual > machines hosted by Hyper-V/Azure platforms. > > This driver does not manage traffi

Re: [dpdk-dev] [PATCH] build: replace license text with SPDX ids in meson files

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote: > On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote: > > Signed-off-by: Bruce Richardson > > --- > >  app/meson.build| 32 ++ > > > > Reviewed-by: Luca Boccassi > > LG

Re: [dpdk-dev] [PATCH] build: replace license text with SPDX ids in meson files

2017-12-18 Thread Bruce Richardson
On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote: > On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote: > > Signed-off-by: Bruce Richardson > > --- > > Reviewed-by: Luca Boccassi > Applied to dpdk-next-build.

Re: [dpdk-dev] [PATCH] build: replace license text with SPDX ids in meson files

2017-12-18 Thread Luca Boccassi
On Mon, 2017-12-18 at 17:41 +, Bruce Richardson wrote: > On Mon, Dec 18, 2017 at 04:27:48PM +, Luca Boccassi wrote: > > On Mon, 2017-12-18 at 16:00 +, Bruce Richardson wrote: > > > Signed-off-by: Bruce Richardson > > > --- > > >  app/meson.build| 32

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Adrien Mazarguil
On Mon, Dec 18, 2017 at 05:04:23PM +, Wiles, Keith wrote: > > On Dec 18, 2017, at 10:46 AM, Adrien Mazarguil > > wrote: > > > > As described in more details in the attached documentation (see patch > > contents), this virtual device driver manages NetVSC interfaces in virtual > > machines ho

Re: [dpdk-dev] [PATCH 0/6] next-build: create both static and shared libs

2017-12-18 Thread Aaron Conole
Luca Boccassi writes: > On Tue, 2017-12-12 at 17:14 +, Bruce Richardson wrote: >> On Tue, Dec 12, 2017 at 04:59:34PM +, Bruce Richardson wrote: >> > This patchset changes the meson+ninja build system to always create >> > both >> > static and shared libraries when doing a build. The appli

Re: [dpdk-dev] [PATCH v1 0/3] Introduce virtual PMD for Hyper-V/Azure platforms

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 17:46:19 +0100 Adrien Mazarguil wrote: > Virtual machines hosted by Hyper-V/Azure platforms are fitted with > simplified virtual network devices named NetVSC that are used for fast > communication between VM to VM, VM to hypervisor, and the outside. > > They appear as standar

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 17:46:23 +0100 Adrien Mazarguil wrote: > +static int > +ether_addr_from_str(struct ether_addr *eth_addr, const char *str) > +{ > + static const uint8_t conv[0x100] = { > + ['0'] = 0x80, ['1'] = 0x81, ['2'] = 0x82, ['3'] = 0x83, > + ['4'] = 0x84, ['5

Re: [dpdk-dev] [PATCH v1 1/3] net/hyperv: introduce MS Hyper-V platform driver

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 17:46:21 +0100 Adrien Mazarguil wrote: > +#ifdef RTE_LIBRTE_HYPERV_DEBUG > + > +#define PMD_DRV_LOG(level, ...) \ > + RTE_LOG(level, PMD, \ > + RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \ > + strrchr("/" __FILE__, '/') + 1, \

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 17:46:23 +0100 Adrien Mazarguil wrote: > > /** > + * Destroy a hyperv context instance. > + * > + * @param ctx > + * Context to destroy. > + */ > +static void > +hyperv_ctx_destroy(struct hyperv_ctx *ctx) > +{ > + if (ctx->pipe[0] != -1) > + close(ctx->pip

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Wiles, Keith
> On Dec 18, 2017, at 11:59 AM, Adrien Mazarguil > wrote: >> Not to criticize style, but a few blank lines could help in readability for >> these files IMHO. Unless blank lines are illegal :-) > > It's a matter of taste, I think people tend to add random blank lines where > they think doing

Re: [dpdk-dev] [PATCH v1 0/3] Introduce virtual PMD for Hyper-V/Azure platforms

2017-12-18 Thread Thomas Monjalon
18/12/2017 19:23, Stephen Hemminger: > Please don't call this drivers/net/hyperv/ > that name conflicts with the real netvsc PMD that I am working on. > > Maybe vdev-netvsc? I expect your PMD to be in drivers/net/netvsc/ Why is it conflicting with drivers/net/hyperv/ ?

Re: [dpdk-dev] [PATCH v1 0/3] Introduce virtual PMD for Hyper-V/Azure platforms

2017-12-18 Thread Adrien Mazarguil
On Mon, Dec 18, 2017 at 10:23:04AM -0800, Stephen Hemminger wrote: > On Mon, 18 Dec 2017 17:46:19 +0100 > Adrien Mazarguil wrote: > > > Virtual machines hosted by Hyper-V/Azure platforms are fitted with > > simplified virtual network devices named NetVSC that are used for fast > > communication b

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Adrien Mazarguil
On Mon, Dec 18, 2017 at 10:26:29AM -0800, Stephen Hemminger wrote: > On Mon, 18 Dec 2017 17:46:23 +0100 > Adrien Mazarguil wrote: > > > +static int > > +ether_addr_from_str(struct ether_addr *eth_addr, const char *str) > > +{ > > + static const uint8_t conv[0x100] = { > > + ['0'] = 0x

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Adrien Mazarguil
On Mon, Dec 18, 2017 at 10:34:12AM -0800, Stephen Hemminger wrote: > On Mon, 18 Dec 2017 17:46:23 +0100 > Adrien Mazarguil wrote: > > > > > /** > > + * Destroy a hyperv context instance. > > + * > > + * @param ctx > > + * Context to destroy. > > + */ > > +static void > > +hyperv_ctx_destroy(

Re: [dpdk-dev] [PATCH v1 1/3] net/hyperv: introduce MS Hyper-V platform driver

2017-12-18 Thread Thomas Monjalon
18/12/2017 19:28, Stephen Hemminger: > On Mon, 18 Dec 2017 17:46:21 +0100 > Adrien Mazarguil wrote: > > > +#ifdef RTE_LIBRTE_HYPERV_DEBUG > > + > > +#define PMD_DRV_LOG(level, ...) \ > > + RTE_LOG(level, PMD, \ > > + RTE_FMT("%s:%u: %s(): " RTE_FMT_HEAD(__VA_ARGS__,) "\n", \ > > +

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Thomas Monjalon
18/12/2017 21:21, Adrien Mazarguil: > On Mon, Dec 18, 2017 at 10:26:29AM -0800, Stephen Hemminger wrote: > > On Mon, 18 Dec 2017 17:46:23 +0100 > > Adrien Mazarguil wrote: > > > > > +static int > > > +ether_addr_from_str(struct ether_addr *eth_addr, const char *str) > > > +{ > > > + static const

[dpdk-dev] [PATCH] net/pcap: convert license headers to SPDX tags

2017-12-18 Thread Ferruh Yigit
Signed-off-by: Ferruh Yigit --- doc/guides/nics/pcap_ring.rst | 29 + drivers/net/pcap/Makefile | 35 --- drivers/net/pcap/rte_eth_pcap.c | 35 --- 3 files changed, 9 insertions(+), 90 deletions(-)

Re: [dpdk-dev] [RFC v3 0/1] Compression API in DPDK

2017-12-18 Thread Ahmed Mansour
Hi Fiona, On 12/15/2017 11:16 PM, Trahe, Fiona wrote: > With the vast amounts of data being transported around networks and stored in > storage systems, reducing data size is becoming ever more important. There > are both software libraries and hardware devices available that provide > compressio

[dpdk-dev] [PATCH 1/2] kni: convert license headers to SPDX tags

2017-12-18 Thread Ferruh Yigit
Signed-off-by: Ferruh Yigit --- doc/guides/prog_guide/kernel_nic_interface.rst | 29 +-- doc/guides/sample_app_ug/kernel_nic_interface.rst | 29 +-- examples/kni/Makefile | 32 +--- examples/kni/main.c| 32 +

[dpdk-dev] [PATCH 2/2] net/kni: convert license headers to SPDX tags

2017-12-18 Thread Ferruh Yigit
Signed-off-by: Ferruh Yigit --- doc/guides/nics/kni.rst | 29 + drivers/net/kni/Makefile | 31 ++- drivers/net/kni/rte_eth_kni.c | 32 ++-- 3 files changed, 5 insertions(+), 87 deletions(-) diff --git

[dpdk-dev] [PATCH] igb_uio: convert license headers to SPDX tags

2017-12-18 Thread Ferruh Yigit
Signed-off-by: Ferruh Yigit --- lib/librte_eal/linuxapp/igb_uio/Makefile | 32 ++- lib/librte_eal/linuxapp/igb_uio/igb_uio.c | 23 ++ 2 files changed, 4 insertions(+), 51 deletions(-) diff --git a/lib/librte_eal/linuxapp/igb_uio/Makefile b/lib/li

[dpdk-dev] [PATCH] doc: convert license headers to SPDX tags for NIC docs

2017-12-18 Thread Ferruh Yigit
Signed-off-by: Ferruh Yigit --- doc/guides/nics/build_and_test.rst | 28 +--- doc/guides/nics/features.rst | 29 + doc/guides/nics/overview.rst | 28 +--- 3 files changed, 3 insertions(+), 82 deletions(-) dif

Re: [dpdk-dev] [PATCH v1 1/3] net/hyperv: introduce MS Hyper-V platform driver

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 20:54:16 +0100 Thomas Monjalon wrote: > > > +#endif /* RTE_LIBRTE_HYPERV_DEBUG */ > > > + > > > +#define DEBUG(...) PMD_DRV_LOG(DEBUG, __VA_ARGS__) > > > +#define INFO(...) PMD_DRV_LOG(INFO, __VA_ARGS__) > > > +#define WARN(...) PMD_DRV_LOG(WARNING, __VA_ARGS__) > > > +#define

Re: [dpdk-dev] [PATCH] net/pcap: convert license headers to SPDX tags

2017-12-18 Thread Ferruh Yigit
On 12/18/2017 1:06 PM, Ferruh Yigit wrote: > Signed-off-by: Ferruh Yigit <...> > + * SPDX-License-Identifier: BSD-3-Clause > + * Copyright(c) 2010-2016 Intel Corporation. All rights reserved. > + * Copyright(c) 2014 6WIND S.A. > + * All rights reserved. > */ Hi Hemant, Thomas, Can you please

Re: [dpdk-dev] [PATCH v1 2/3] net/hyperv: implement core functionality

2017-12-18 Thread Stephen Hemminger
On Mon, 18 Dec 2017 22:03:55 +0100 Thomas Monjalon wrote: > > > > Good question. For the following reasons: > > > > - I forgot about the existence of ether_ntoa() and didn't look it up seeing > > struct ether_addr is (re-)defined by rte_ether.h. What happens when one > > includes netinet/et

Re: [dpdk-dev] [PATCH] net/pcap: convert license headers to SPDX tags

2017-12-18 Thread Thomas Monjalon
18/12/2017 22:18, Ferruh Yigit: > On 12/18/2017 1:06 PM, Ferruh Yigit wrote: > > Signed-off-by: Ferruh Yigit > > <...> > > > + * SPDX-License-Identifier: BSD-3-Clause > > + * Copyright(c) 2010-2016 Intel Corporation. All rights reserved. > > + * Copyright(c) 2014 6WIND S.A. > > + * All rights re

Re: [dpdk-dev] [RFC v3 1/1] lib: add compressdev API

2017-12-18 Thread Ahmed Mansour
On 12/15/2017 11:19 PM, Trahe, Fiona wrote: .. > + > +/** Compression Algorithms */ > +enum rte_comp_algorithm { > + RTE_COMP_NULL = 0, > + /**< No compression. > + * Pass-through, data is copied unchanged from source buffer to > + * destination buffer. > + */ > + RTE_C

[dpdk-dev] [PATCH v2 01/12] app/eventdev: add packet distribution logs

2017-12-18 Thread Pavan Nikhilesh
Add logs for packet distribution across worker cores to be printed along with the test results. Signed-off-by: Pavan Nikhilesh Acked-by: Jerin Jacob --- app/test-eventdev/evt_main.c | 3 +++ app/test-eventdev/test_perf_common.c | 12 2 files changed, 15 insertions(+) diff

[dpdk-dev] [PATCH v2 03/12] app/eventdev: add mempool setup and destroy

2017-12-18 Thread Pavan Nikhilesh
Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 29 + app/test-eventdev/test_pipeline_common.h | 2 ++ 2 files changed, 31 insertions(+) diff --git a/app/test-eventdev/test_pipeline_common.c b/app/test-eventdev/test_pipeline_common.c in

[dpdk-dev] [PATCH v2 02/12] app/eventdev: add pipeline test setup and destroy

2017-12-18 Thread Pavan Nikhilesh
Pipeline test has the queue and all types queue variants. Introduce test_pipeline_common* to share the common code between those tests. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/Makefile | 2 + app/test-eventdev/test_pipeline_common.c | 71 +++ a

[dpdk-dev] [PATCH v2 04/12] app/eventdev: add pipeline opt dump and check functions

2017-12-18 Thread Pavan Nikhilesh
Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 84 app/test-eventdev/test_pipeline_common.h | 3 ++ 2 files changed, 87 insertions(+) diff --git a/app/test-eventdev/test_pipeline_common.c b/app/test-eventdev/test_pipeline_common.c

[dpdk-dev] [PATCH v2 05/12] app/eventdev: add perf ethport setup and destroy

2017-12-18 Thread Pavan Nikhilesh
Add common ethdev port setup and destroy along with event dev destroy. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 98 app/test-eventdev/test_pipeline_common.h | 3 + 2 files changed, 101 insertions(+) diff --git a/app/test-eve

[dpdk-dev] [PATCH v2 06/12] app/eventdev: add event port setup and Rx adapter setup

2017-12-18 Thread Pavan Nikhilesh
Setup one port per worker and link to all queues and setup producer port based on Rx adapter capabilities. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 102 +++ app/test-eventdev/test_pipeline_common.h | 4 ++ 2 files changed, 106 in

[dpdk-dev] [PATCH v2 08/12] app/eventdev: add pipeline queue test

2017-12-18 Thread Pavan Nikhilesh
This is a pipeline queue test case that aims at testing the following: 1. Measure the end-to-end performance of an event dev with a ethernet dev. 2. Maintain packet ordering from Rx to Tx. The pipeline queue test configures the eventdev with Q queues and P ports, where Q is (nb_ethdev * nb_stages)

[dpdk-dev] [PATCH v2 07/12] app/eventdev: launch pipeline lcores

2017-12-18 Thread Pavan Nikhilesh
The event master lcore's test termination and the logic to print the mpps are common for the queue and all types queue test. Move them as the common function. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.c | 64 app/test-eventdev/tes

[dpdk-dev] [PATCH v2 09/12] app/eventdev: add pipeline queue worker functions

2017-12-18 Thread Pavan Nikhilesh
Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_pipeline_common.h | 80 +++ app/test-eventdev/test_pipeline_queue.c | 367 ++- 2 files changed, 446 insertions(+), 1 deletion(-) diff --git a/app/test-eventdev/test_pipeline_common.h b/app/test-eventdev/

[dpdk-dev] [PATCH v2 10/12] app/eventdev: add pipeline atq test

2017-12-18 Thread Pavan Nikhilesh
This is a pipeline test case that aims at testing the following with ``all types queue`` eventdev scheme. 1. Measure the end-to-end performance of an event dev with a ethernet dev. 2. Maintain packet ordering from Rx to Tx. The atq queue test functions as same as ``pipeline_queue`` test. The diffe

  1   2   >