Re: [dpdk-dev] [PATCH 0/3] Some fixes/improvements for virtio-user memory table

2018-09-20 Thread Maxime Coquelin
On 09/05/2018 06:28 AM, Tiwei Bie wrote: This series consists of some fixes and improvements for virtio-user's memory table preparation. This series supersedes below patches: https://patches.dpdk.org/patch/43807/ https://patches.dpdk.org/patch/43918/ The second patch in this series depends o

Re: [dpdk-dev] [PATCH v4 1/8] net/mvneta: add neta PMD skeleton

2018-09-20 Thread Andrzej Ostruszka
Thank you Stephen for taking a look at these patches. On 19.09.2018 18:19, Stephen Hemminger wrote: > On Wed, 19 Sep 2018 17:01:27 +0200 > Andrzej Ostruszka wrote: [...] >> + git clone >> https://github.com/MarvellEmbeddedProcessors/linux-marvell.git -b >> linux-4.4.52-armada-17.10 >> + >

Re: [dpdk-dev] [PATCH v4 1/8] net/mvneta: add neta PMD skeleton

2018-09-20 Thread Andrzej Ostruszka
On 19.09.2018 18:28, Stephen Hemminger wrote: > On Wed, 19 Sep 2018 17:01:27 +0200 > Andrzej Ostruszka wrote: > >> +/** >> + * Create private device structure. >> + * >> + * @param dev_name >> + * Pointer to the port name passed in the initialization parameters. >> + * >> + * @return >> + * P

[dpdk-dev] [PATCH] test: disable alarm autotest in FreeBSD

2018-09-20 Thread Pallantla Poornima
Disabled the alarm_autotest UT in FreeBSD Interrupts are not supported in FreeBSD. Alarm API depends on interrupts, so disabled alarm test on FreeBSD. Signed-off-by: Pallantla Poornima --- test/test/test_alarm.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test/te

[dpdk-dev] [PATCH] test: disable alarm autotest in FreeBSD

2018-09-20 Thread Pallantla Poornima
Disabled the alarm_autotest UT in FreeBSD Interrupts are not supported in FreeBSD. Alarm API depends on interrupts, so disabled alarm test on FreeBSD. Signed-off-by: Pallantla Poornima --- test/test/test_alarm.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/test/te

Re: [dpdk-dev] [PATCH v2 1/3] config: use one single config option for C11 memory model

2018-09-20 Thread Jerin Jacob
-Original Message- > Date: Wed, 19 Sep 2018 21:42:38 +0800 > From: Phil Yang > To: dev@dpdk.org > CC: n...@arm.com, jerin.ja...@caviumnetworks.com, > kkokkilaga...@caviumnetworks.com, honnappa.nagaraha...@arm.com, > gavin...@arm.com > Subject: [PATCH v2 1/3] config: use one single config

Re: [dpdk-dev] [PATCH v2 2/3] kni: fix kni fifo synchronization

2018-09-20 Thread Jerin Jacob
-Original Message- > Date: Wed, 19 Sep 2018 21:42:39 +0800 > From: Phil Yang > To: dev@dpdk.org > CC: n...@arm.com, jerin.ja...@caviumnetworks.com, > kkokkilaga...@caviumnetworks.com, honnappa.nagaraha...@arm.com, > gavin...@arm.com > Subject: [PATCH v2 2/3] kni: fix kni fifo synchroniza

[dpdk-dev] How to replace rte_eth_dev_attach with rte_eal_hotplug_add

2018-09-20 Thread Hideyuki Yamashita
Hello, From dpdk 18.08 release rte_eth_dev_attach and rte_eth_dev_detach becom deprecated API and it is recommended to replace with rte_eal_hotplug_add and rte_eal_hotplug_remove. My program uses above mentioned deprecated APIs and have to replace those. Note that my program uses attach to att

[dpdk-dev] [PATCH v5 0/8] Add Marvell NETA PMD

2018-09-20 Thread Andrzej Ostruszka
This patch series introduces new PMD for Marvell NETA adapters (MVNETA). See the documentation for more info. It is split for easier reviewing. v5: * fixed wrong order of clenup in mvneta_eth_dev_create() * inlined one auxilary function (mvneta_priv_create()) v4: * rebased on top of next-n

[dpdk-dev] [PATCH v5 1/8] net/mvneta: add neta PMD skeleton

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add neta pmd driver skeleton providing base for the further development. Signed-off-by: Natalie Samsonov Signed-off-by: Yelena Krivosheev Signed-off-by: Dmitri Epshtein Signed-off-by: Zyta Szpak Signed-off-by: Andrzej Ostruszka --- MAINTAINERS

[dpdk-dev] [PATCH v5 2/8] net/mvneta: add Rx/Tx support

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add part of PMD for actual reception/transmission. Signed-off-by: Yelena Krivosheev Signed-off-by: Dmitri Epshtein Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 3 + doc/guides/nics/mvneta.rst | 4 + drivers/net/mvneta/Makefile |

[dpdk-dev] [PATCH v5 3/8] net/mvneta: support for setting of MTU

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add callback for setting of MTU. Signed-off-by: Natalie Samsonov Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 1 + doc/guides/nics/mvneta.rst | 1 + drivers/net/mvneta/mvneta_ethdev.c | 78 + 3 files chang

[dpdk-dev] [PATCH v5 4/8] net/mvneta: add link update

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add callback for updating information about link status/info. Signed-off-by: Natalie Samsonov Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 1 + doc/guides/nics/mvneta.rst | 1 + drivers/net/mvneta/mvneta_ethdev.c | 71 +++

[dpdk-dev] [PATCH v5 5/8] net/mvneta: support for promiscuous

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add callbacks for enabling/disabling of promiscuous mode. Signed-off-by: Yelena Krivosheev Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 1 + doc/guides/nics/mvneta.rst | 1 + drivers/net/mvneta/mvneta_ethdev.c | 54 ++

[dpdk-dev] [PATCH v5 7/8] net/mvneta: add support for basic stats

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add support for getting of basic statistics for the driver. Signed-off-by: Yelena Krivosheev Signed-off-by: Natalie Samsonov Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 1 + doc/guides/nics/mvneta.rst | 1 + drivers/net/mvneta/mvneta_ethdev

[dpdk-dev] [PATCH v5 6/8] net/mvneta: add MAC filtering

2018-09-20 Thread Andrzej Ostruszka
From: Zyta Szpak Add callbacks for adding/removing MAC addresses. Signed-off-by: Yelena Krivosheev Signed-off-by: Natalie Samsonov Signed-off-by: Zyta Szpak --- doc/guides/nics/features/mvneta.ini | 1 + doc/guides/nics/mvneta.rst | 1 + drivers/net/mvneta/mvneta_ethdev.c | 69 ++

[dpdk-dev] [PATCH v5 8/8] net/mvneta: add reset statistics callback

2018-09-20 Thread Andrzej Ostruszka
From: Natalie Samsonov Add support for resetting of driver statistics. Signed-off-by: Natalie Samsonov --- drivers/net/mvneta/mvneta_ethdev.c | 40 +++--- drivers/net/mvneta/mvneta_ethdev.h | 1 + 2 files changed, 34 insertions(+), 7 deletions(-) diff --git a/

Re: [dpdk-dev] How to replace rte_eth_dev_attach with rte_eal_hotplug_add

2018-09-20 Thread Gaëtan Rivet
On Thu, Sep 20, 2018 at 05:46:37PM +0900, Hideyuki Yamashita wrote: > Hello, > > From dpdk 18.08 release rte_eth_dev_attach and > rte_eth_dev_detach becom deprecated API and > it is recommended to replace with rte_eal_hotplug_add > and rte_eal_hotplug_remove. > > My program uses above mentione

Re: [dpdk-dev] [PATCH v2 02/20] mem: allow memseg lists to be marked as external

2018-09-20 Thread Andrew Rybchenko
On 9/19/18 4:56 PM, Anatoly Burakov wrote: When we allocate and use DPDK memory, we need to be able to differentiate between DPDK hugepage segments and segments that were made part of DPDK but are externally allocated. Add such a property to memseg lists. This breaks the ABI, so bump the EAL lib

[dpdk-dev] [PATCH] eal/bsd: fix compile issue due to unused variables

2018-09-20 Thread Anatoly Burakov
Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd") Signed-off-by: Anatoly Burakov --- lib/librte_eal/bsdapp/eal/eal_memalloc.c | 8 +--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/librte_eal/bsdapp/eal/eal_memalloc.c b/lib/librte_eal/bsdapp/eal/ea

Re: [dpdk-dev] [PATCH v2 02/20] mem: allow memseg lists to be marked as external

2018-09-20 Thread Burakov, Anatoly
On 20-Sep-18 10:30 AM, Andrew Rybchenko wrote: On 9/19/18 4:56 PM, Anatoly Burakov wrote: When we allocate and use DPDK memory, we need to be able to differentiate between DPDK hugepage segments and segments that were made part of DPDK but are externally allocated. Add such a property to memseg

Re: [dpdk-dev] [PATCH v2 05/13] ethdev: add private generic device iterator

2018-09-20 Thread Andrew Rybchenko
On 9/19/18 7:03 PM, Gaetan Rivet wrote: This iterator can be customized with a comparison function that will trigger a stopping condition. It can be leveraged to write several different iterators that have similar but non-identical purposes. It is private to librte_ethdev. Signed-off-by: Gaeta

Re: [dpdk-dev] [PATCH] net/fm10k: add imissed stats

2018-09-20 Thread Meunier, Julien (Nokia - FR/Paris-Saclay)
Sorry the delay. False alert, I thought that imissed was counted also in ipackets, but it's not the case :) So you can integrate this patch. Thanks in advance ! -- Julien Meunier > -Original Message- > From: Meunier, Julien (Nokia - FR/Paris-Saclay) > Sent: Tuesday, September 11, 2018

Re: [dpdk-dev] [PATCH v2 12/13] ethdev: process declarative eth devargs

2018-09-20 Thread Andrew Rybchenko
On 9/19/18 7:03 PM, Gaetan Rivet wrote: Process the eth parameters of a devargs. For each parameters that have a setter implemented, the relevant field in rte_eth_dev field is written. Currently only "name" is implemented. Signed-off-by: Gaetan Rivet Acked-by: Andrew Rybchenko

Re: [dpdk-dev] [PATCH] latency: clear mbuf timestamp after latency calculation

2018-09-20 Thread Pattan, Reshma
Hi, > -Original Message- > From: long...@viettel.com.vn [mailto:long...@viettel.com.vn] > Sent: Wednesday, September 19, 2018 9:23 AM > To: Pattan, Reshma > Cc: dev@dpdk.org; Bao-Long Tran ; > sta...@dpdk.org > Subject: [PATCH] latency: clear mbuf timestamp after latency calculation > >

[dpdk-dev] [PATCH v2] latency: clear mbuf timestamp after latency calculation

2018-09-20 Thread longtb5
The timestamp of a mbuf should be cleared after that mbuf was used for latency calculation, otherwise future packets which reuse the same mbuf would inherit that previous timestamp. The latencystats library looks for mbuf with non-zero timestamp, thus incorrectly inherited value would result in inc

[dpdk-dev] [PATCH] eal: fix unused parameter errors on FreeBSD

2018-09-20 Thread Bruce Richardson
When compiling with clang on FreeBSD, lots of warnings/errors are thrown for unused parameter. Fix these by marking the parameters as unused in the code. Fixes: 3a44687139eb ("mem: allow querying offset into segment fd") Fixes: 046aa5c4477b ("mem: add memalloc init stage") Fixes: 1009ba1704f9 ("me

Re: [dpdk-dev] [PATCH] devtools: use a common prefix for temporary files

2018-09-20 Thread Bruce Richardson
On Wed, Sep 19, 2018 at 07:16:29PM +0200, Thomas Monjalon wrote: > Some temporary files were generated in /tmp, others in the current > directory, and none was "dpdk prefixed". > > All these files have a common path prefix now: $TMPDIR/dpdk. > TMPDIR is /tmp by default. > > Note: the previous use

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

2018-09-20 Thread Harry van Haaren
This commit introduces a new function in the eventdev API, which allows applications to read the number of unlink requests in progress on a particular port of an eventdev instance. This information allows applications to verify when no more packets from a particular queue (or any queue) will arriv

[dpdk-dev] [PATCH v2 2/3] event/sw: implement unlinks in progress function

2018-09-20 Thread Harry van Haaren
This commit adds a counter to each port, which counts the number of unlinks that have been performed. When the scheduler thread starts its scheduling routine, it "acks" all unlinks that have been requested, and the application is gauranteed that no more events will be scheduled to the port from the

[dpdk-dev] [PATCH v2 3/3] event/sw: add unit test for unlinks in progress

2018-09-20 Thread Harry van Haaren
This commit adds a unit test that checks the behaviour of the unlinks_in_progress() function, ensuring that the returned values are the number of unlinks requested, until the scheduler runs and "acks" the requests, after which the count should be zero again. Signed-off-by: Harry van Haaren ---

Re: [dpdk-dev] [PATCH] eal/bsd: fix compile issue due to unused variables

2018-09-20 Thread Bruce Richardson
On Thu, Sep 20, 2018 at 10:34:46AM +0100, Anatoly Burakov wrote: > Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd") > > Signed-off-by: Anatoly Burakov > --- Sorry, I missed your patch by about 1 hour - hadn't got through my mail fully when sent mine. I think you could do w

Re: [dpdk-dev] [PATCH] eal/bsd: fix compile issue due to unused variables

2018-09-20 Thread Burakov, Anatoly
On 20-Sep-18 12:25 PM, Bruce Richardson wrote: On Thu, Sep 20, 2018 at 10:34:46AM +0100, Anatoly Burakov wrote: Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd") Signed-off-by: Anatoly Burakov --- Sorry, I missed your patch by about 1 hour - hadn't got through my mail f

[dpdk-dev] [PATCH v3 00/20] Support externally allocated memory in DPDK

2018-09-20 Thread Anatoly Burakov
This is a proposal to enable using externally allocated memory in DPDK. In a nutshell, here is what is being done here: - Index internal malloc heaps by NUMA node index, rather than NUMA node itself (external heaps will have ID's in order of creation) - Add identifier string to malloc heap, to

[dpdk-dev] [PATCH v3 05/20] flow_classify: do not check for invalid socket ID

2018-09-20 Thread Anatoly Burakov
We will be assigning "invalid" socket ID's to external heap, and malloc will now be able to verify if a supplied socket ID is in fact a valid one, rendering parameter checks for sockets obsolete. Signed-off-by: Anatoly Burakov --- lib/librte_flow_classify/rte_flow_classify.c | 3 +-- 1 file chan

[dpdk-dev] [PATCH v3 11/20] malloc: allow destroying heaps

2018-09-20 Thread Anatoly Burakov
Add an API to destroy specified heap. Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/include/rte_malloc.h | 23 + lib/librte_eal/common/malloc_heap.c| 22 lib/librte_eal/common/malloc_heap.h| 3 ++ lib/librte_eal/common/rte_malloc.c | 58 ++

[dpdk-dev] [PATCH v3 03/20] malloc: index heaps using heap ID rather than NUMA node

2018-09-20 Thread Anatoly Burakov
Switch over all parts of EAL to use heap ID instead of NUMA node ID to identify heaps. Heap ID for DPDK-internal heaps is NUMA node's index within the detected NUMA node list. Heap ID for external heaps will be order of their creation. Signed-off-by: Anatoly Burakov --- config/common_base

[dpdk-dev] [PATCH v3 07/20] sched: do not check for invalid socket ID

2018-09-20 Thread Anatoly Burakov
We will be assigning "invalid" socket ID's to external heap, and malloc will now be able to verify if a supplied socket ID is in fact a valid one, rendering parameter checks for sockets obsolete. Signed-off-by: Anatoly Burakov --- lib/librte_sched/rte_sched.c | 2 +- 1 file changed, 1 insertion(

[dpdk-dev] [PATCH v3 18/20] doc: add external memory feature to the release notes

2018-09-20 Thread Anatoly Burakov
Document the addition of external memory support to DPDK. Signed-off-by: Anatoly Burakov --- doc/guides/rel_notes/release_18_11.rst | 5 + 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/release_18_11.rst b/doc/guides/rel_notes/release_18_11.rst index 63bbb1b51..9a05c9980

[dpdk-dev] [PATCH v3 19/20] doc: add external memory feature to programmer's guide

2018-09-20 Thread Anatoly Burakov
Add a short chapter on usage of external memory in DPDK to the Programmer's Guide. Signed-off-by: Anatoly Burakov --- .../prog_guide/env_abstraction_layer.rst | 38 +++ 1 file changed, 38 insertions(+) diff --git a/doc/guides/prog_guide/env_abstraction_layer.rst b/doc/guid

[dpdk-dev] [PATCH v3 13/20] malloc: allow removing memory from named heaps

2018-09-20 Thread Anatoly Burakov
Add an API to remove memory from specified heaps. This will first check if all elements within the region are free, and that the region is the original region that was added to the heap (by comparing its length to length of memory addressed by the underlying memseg list). Signed-off-by: Anatoly Bu

[dpdk-dev] [PATCH v3 02/20] mem: allow memseg lists to be marked as external

2018-09-20 Thread Anatoly Burakov
When we allocate and use DPDK memory, we need to be able to differentiate between DPDK hugepage segments and segments that were made part of DPDK but are externally allocated. Add such a property to memseg lists. This breaks the ABI, so bump the EAL library ABI version and document the change in r

[dpdk-dev] [PATCH v3 06/20] pipeline: do not check for invalid socket ID

2018-09-20 Thread Anatoly Burakov
We will be assigning "invalid" socket ID's to external heap, and malloc will now be able to verify if a supplied socket ID is in fact a valid one, rendering parameter checks for sockets obsolete. Signed-off-by: Anatoly Burakov --- lib/librte_pipeline/rte_pipeline.c | 3 +-- 1 file changed, 1 ins

[dpdk-dev] [PATCH v3 14/20] malloc: allow attaching to external memory chunks

2018-09-20 Thread Anatoly Burakov
In order to use external memory in multiple processes, we need to attach to primary process's memseg lists, so add a new API to do that. It is the responsibility of the user to ensure that memory is accessible and that it has been previously added to the malloc heap by another process. Signed-off-

[dpdk-dev] [PATCH v3 16/20] test: add unit tests for external memory support

2018-09-20 Thread Anatoly Burakov
Add simple unit tests to test external memory support. The tests are pretty basic and mostly consist of checking if invalid API calls are handled correctly, plus a simple allocation/deallocation test for malloc and memzone. Signed-off-by: Anatoly Burakov --- test/test/Makefile| 1 +

[dpdk-dev] [PATCH v3 20/20] doc: add external memory sample application guide

2018-09-20 Thread Anatoly Burakov
Add a guide for external memory sample application. The application is identical to Basic Forwarding example in everything except parts of initialization code, so the bits that are identical will not be described. It is also not necessary to describe how external memory is being allocated due to t

[dpdk-dev] [PATCH v3 09/20] malloc: add function to query socket ID of named heap

2018-09-20 Thread Anatoly Burakov
When we will be creating external heaps, they will have their own "fake" socket ID, so add a function that will map the heap name to its socket ID. Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/include/rte_malloc.h | 14 lib/librte_eal/common/rte_malloc.c | 37 +++

[dpdk-dev] [PATCH v3 17/20] examples: add external memory example app

2018-09-20 Thread Anatoly Burakov
Introduce an example application demonstrating the use of external memory support. This is a simple application based on skeleton app, but instead of using internal DPDK memory, it is using externally allocated memory. The RX/TX and init path is a carbon-copy of skeleton app, with no modifications

[dpdk-dev] [PATCH v3 01/20] mem: add length to memseg list

2018-09-20 Thread Anatoly Burakov
Previously, to calculate length of memory area covered by a memseg list, we would've needed to multiply page size by length of fbarray backing that memseg list. This is not obvious and unnecessarily low level, so store length in the memseg list itself. Signed-off-by: Anatoly Burakov --- drivers/

[dpdk-dev] [PATCH v3 12/20] malloc: allow adding memory to named heaps

2018-09-20 Thread Anatoly Burakov
Add an API to add externally allocated memory to malloc heap. The memory will be stored in memseg lists like regular DPDK memory. Multiple segments are allowed within a heap. If IOVA table is not provided, IOVA addresses are filled in with RTE_BAD_IOVA. Signed-off-by: Anatoly Burakov --- lib/lib

[dpdk-dev] [PATCH v3 04/20] mem: do not check for invalid socket ID

2018-09-20 Thread Anatoly Burakov
We will be assigning "invalid" socket ID's to external heap, and malloc will now be able to verify if a supplied socket ID is in fact a valid one, rendering parameter checks for sockets obsolete. This changes the semantics of what we understand by "socket ID", so document the change in the release

[dpdk-dev] [PATCH v3 10/20] malloc: allow creating malloc heaps

2018-09-20 Thread Anatoly Burakov
Add API to allow creating new malloc heaps. They will be created with socket ID's going above RTE_MAX_NUMA_NODES, to avoid clashing with internal heaps. Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/include/rte_malloc.h | 19 lib/librte_eal/common/malloc_heap.c| 30 ++

[dpdk-dev] [PATCH v3 08/20] malloc: add name to malloc heaps

2018-09-20 Thread Anatoly Burakov
We will need to refer to external heaps in some way. While we use heap ID's internally, for external API use it has to be something more user-friendly. So, we will be using a string to uniquely identify a heap. Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/include/rte_malloc_heap.h |

[dpdk-dev] [PATCH v3 15/20] malloc: allow detaching from external memory

2018-09-20 Thread Anatoly Burakov
Add API to detach from existing chunk of external memory in a process. Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/include/rte_malloc.h | 27 ++ lib/librte_eal/common/rte_malloc.c | 27 ++ lib/librte_eal/rte_eal_version.map |

Re: [dpdk-dev] [PATCH v2 2/2] net/failsafe: support multicast address list set

2018-09-20 Thread Andrew Rybchenko
On 9/19/18 6:12 PM, Gaëtan Rivet wrote: On Wed, Sep 19, 2018 at 04:50:57PM +0200, Gaëtan Rivet wrote: Hi, Sorry about the delay on this, overall it looks ok; I have an issue however, see inline. On Mon, Sep 03, 2018 at 07:55:22AM +0100, Andrew Rybchenko wrote: From: Evgeny Im Signed-off-by:

Re: [dpdk-dev] [PATCH] latency: clear mbuf timestamp after latency calculation

2018-09-20 Thread longtb5
Hi, Thanks, I have sent a v2. Any comment on the problem of dropped mbuf that I described in the cover letter? In our application the max_latency_ns metric is useless since after running for a while it would always take on obviously incorrect value (up to a few minutes). I suspect the impact o

[dpdk-dev] [PATCH v2] eal/bsd: fix unused parameters compile error

2018-09-20 Thread Anatoly Burakov
When compiling on FreeBSD, lots of warnings/errors are thrown for unused parameter. Fix these by marking the parameters as unused in the code. Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd") Fixes: 3a44687139eb ("mem: allow querying offset into segment fd") Signed-off-by:

Re: [dpdk-dev] [PATCH] net/bonding: ensure fairness among slaves

2018-09-20 Thread Chas Williams
On Thu, Sep 20, 2018 at 2:28 AM Matan Azrad wrote: > > Hi Chas > Please see small comments. > > > From: Chas Williams > > Some PMDs, especially ones with vector receives, require a minimum > > number of receive buffers in order to receive any packets. If the first > > slave > > read leaves less

[dpdk-dev] [PATCH v2] mem: fix undefined behavior in NUMA code

2018-09-20 Thread Anatoly Burakov
When NUMA-aware hugepages config option is set, we rely on libnuma to tell the kernel to allocate hugepages on a specific NUMA node. However, we allocate node mask before we check if NUMA is available in the first place, which, according to the manpage [1], causes undefined behaviour. Fix by only

[dpdk-dev] [PATCH v2] net/bonding: fix RX slave fairness

2018-09-20 Thread Chas Williams
From: Chas Williams Some PMDs, especially ones with vector receives, require a minimum number of receive buffers in order to receive any packets. If the first slave read leaves less than this number available, a read from the next slave may return 0 implying that the slave doesn't have any packe

Re: [dpdk-dev] [PATCH v2] eal/bsd: fix unused parameters compile error

2018-09-20 Thread Thomas Monjalon
20/09/2018 14:26, Anatoly Burakov: > When compiling on FreeBSD, lots of warnings/errors are thrown for > unused parameter. Fix these by marking the parameters as unused > in the code. > > Fixes: 1009ba1704f9 ("mem: add internal API to get and set segment fd") > Fixes: 3a44687139eb ("mem: allow que

Re: [dpdk-dev] How to replace rte_eth_dev_attach with rte_eal_hotplug_add

2018-09-20 Thread Thomas Monjalon
20/09/2018 11:09, Gaëtan Rivet: > On Thu, Sep 20, 2018 at 05:46:37PM +0900, Hideyuki Yamashita wrote: > > Hello, > > > > From dpdk 18.08 release rte_eth_dev_attach and > > rte_eth_dev_detach becom deprecated API and > > it is recommended to replace with rte_eal_hotplug_add > > and rte_eal_hotplu

Re: [dpdk-dev] Incorrect latencystats implementation

2018-09-20 Thread Pattan, Reshma
> -Original Message- > From: long...@viettel.com.vn [mailto:long...@viettel.com.vn] > Sent: Wednesday, September 19, 2018 9:17 AM > To: Pattan, Reshma > Cc: dev@dpdk.org; Bao-Long Tran > Subject: Incorrect latencystats implementation > > > I have submit a patch to implement the trivi

[dpdk-dev] [PATCH v3] pci/vfio: allow mapping MSI-X BARs if kernel allows it

2018-09-20 Thread Anatoly Burakov
Currently, DPDK will skip mapping some areas (or even an entire BAR) if MSI-X table happens to be in them but is smaller than page size. Kernels 4.16+ will allow mapping MSI-X BARs [1], and will report this as a capability flag. Capability flags themselves are also only supported since kernel 4.6

Re: [dpdk-dev] [PATCH v2] doc: support building HTML guides with meson

2018-09-20 Thread Timothy Redaelli
On Wed, 19 Sep 2018 14:48:27 +0100 Luca Boccassi wrote: > From: Bruce Richardson > > Signed-off-by: Bruce Richardson > Signed-off-by: Luca Boccassi > --- > v2: send on behalf of Bruce on request. > - tell sphinx to create .doctrees working files in the > parent of the target directo

[dpdk-dev] [PATCH] test: restructure and cleanup ring PMD test

2018-09-20 Thread Jananee Parthasarathy
From: Chaitanya Babu Talluri Divided main test to smaller logical tests. Registered with UT framework. Added cleanup of the resources else ring creation fails during consecutive test runs. Freed the allocated mempool, rings and uninitalized the drivers. Signed-off-by: Chaitanya Babu Talluri ---

Re: [dpdk-dev] [PATCH 1/4] app/testpmd: add queue deferred start switch

2018-09-20 Thread Andrew Rybchenko
On 9/3/18 7:56 PM, Ferruh Yigit wrote: On 8/29/2018 8:16 AM, Andrew Rybchenko wrote: From: Ian Dolzhansky Signed-off-by: Ian Dolzhansky Signed-off-by: Andrew Rybchenko --- app/test-pmd/cmdline.c | 91 ++ doc/guides/rel_notes/release_18_11.rst | 6 +

[dpdk-dev] [PATCH v3] doc: support building HTML guides with meson

2018-09-20 Thread Luca Boccassi
From: Bruce Richardson Signed-off-by: Bruce Richardson Signed-off-by: Luca Boccassi --- v2: send on behalf of Bruce on request. - tell sphinx to create .doctrees working files in the parent of the target directory so that they don't get installed - change the output director

Re: [dpdk-dev] [PATCH v3] doc: support building HTML guides with meson

2018-09-20 Thread Timothy Redaelli
On Thu, 20 Sep 2018 14:22:08 +0100 Luca Boccassi wrote: > From: Bruce Richardson > > Signed-off-by: Bruce Richardson > Signed-off-by: Luca Boccassi Tested on Fedora 28 (sphinx 1.7.5) and RHEL 7.5 (sphinx 1.1.3) Tested-by: Timothy Redaelli

[dpdk-dev] [PATCH v2 3/4] net/failsafe: add Rx queue start and stop functions

2018-09-20 Thread Andrew Rybchenko
From: Ian Dolzhansky Support Rx queue deferred start. Signed-off-by: Ian Dolzhansky Signed-off-by: Andrew Rybchenko Acked-by: Gaetan Rivet --- doc/guides/nics/features/failsafe.ini | 1 + doc/guides/rel_notes/release_18_11.rst | 7 ++ drivers/net/failsafe/failsafe_ether.c | 44 ++

[dpdk-dev] [PATCH v2 1/4] app/testpmd: add queue deferred start switch

2018-09-20 Thread Andrew Rybchenko
From: Ian Dolzhansky Signed-off-by: Ian Dolzhansky Signed-off-by: Andrew Rybchenko Acked-by: Gaetan Rivet --- app/test-pmd/cmdline.c | 91 + doc/guides/rel_notes/release_18_11.rst | 8 ++ doc/guides/testpmd_app_ug/testpmd_funcs.rst | 7 ++ 3 fil

[dpdk-dev] [PATCH v2 0/4] net/failsafe: support deferred queue start

2018-09-20 Thread Andrew Rybchenko
Since the topic is raised in multicast address list patchset, I'd like to highlight it here as well. Current version uses failsafe ops directly on sync to synchronize queues state which iterates over all sub-devices. For already in sync sub-devices it does not go to driver since ethdev functions ch

[dpdk-dev] [PATCH v2 4/4] net/failsafe: add Tx queue start and stop functions

2018-09-20 Thread Andrew Rybchenko
From: Ian Dolzhansky Support Tx queue deferred start. Signed-off-by: Ian Dolzhansky Signed-off-by: Andrew Rybchenko Acked-by: Gaetan Rivet --- doc/guides/nics/features/failsafe.ini | 2 +- doc/guides/rel_notes/release_18_11.rst | 4 +- drivers/net/failsafe/failsafe_ether.c | 44 +

[dpdk-dev] [PATCH v2 2/4] net/failsafe: add checks for deferred queue setup

2018-09-20 Thread Andrew Rybchenko
From: Ian Dolzhansky Fixes: a46f8d584eb8 ("net/failsafe: add fail-safe PMD") Cc: sta...@dpdk.org Signed-off-by: Ian Dolzhansky Signed-off-by: Andrew Rybchenko Acked-by: Gaetan Rivet --- drivers/net/failsafe/failsafe_ops.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/driver

Re: [dpdk-dev] [PATCH] test: restructure and cleanup ring PMD test

2018-09-20 Thread Parthasarathy, JananeeX M
Adding Bruce in CC Thanks M.P.Jananee >-Original Message- >From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jananee >Parthasarathy >Sent: Thursday, September 20, 2018 6:54 PM >To: dev@dpdk.org >Cc: Pattan, Reshma ; Chaitanya Babu, TalluriX > >Subject: [dpdk-dev] [PATCH] test: restruc

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

2018-09-20 Thread Akhil Goyal
Hi Konstantin, On 9/18/2018 6:12 PM, Ananyev, Konstantin wrote: I am not saying this should be the ONLY way to do as it does not work very well with non NPU/FPGA class of SoC. So how about making the proposed IPSec library as plugin/driver to rte_security. As I mentioned above, I don't think t

Re: [dpdk-dev] [PATCH] net: fix Intel prepare function for IP checksum offload

2018-09-20 Thread Ananyev, Konstantin
> > Current Intel tx prepare function does not properly handle the > case where only IP checksum is requested, without requesting > any L4 checksum or TSO: IP checksum is not properly reset to 0 > and output packet may contain invalid IP checksum. > > Fixes: 4fb7e803eb1a ("ethdev: add Tx prepa

Re: [dpdk-dev] [PATCH v2 2/3] kni: fix kni fifo synchronization

2018-09-20 Thread Honnappa Nagarahalli
> -Original Message- > > Date: Wed, 19 Sep 2018 21:42:39 +0800 > > From: Phil Yang > > To: dev@dpdk.org > > CC: n...@arm.com, jerin.ja...@caviumnetworks.com, > > kkokkilaga...@caviumnetworks.com, honnappa.nagaraha...@arm.com, > > gavin...@arm.com > > Subject: [PATCH v2 2/3] kni: fix kni fi

[dpdk-dev] [PATCH v2 7/7] eal: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
Musl complains about pthread id being of wrong size, because on musl, pthread_t is a struct pointer, not an unsinged int. Fix the printing code by casting pthread id to unsigned pointer type and adjusting the format specifier to be of appropriate size. Signed-off-by: Anatoly Burakov --- lib/libr

[dpdk-dev] [PATCH v2 6/7] string_fns: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
Musl wraps various string functions such as strlcpy in order to harden them. However, the fortify wrappers are included without including the actual string functions being wrapped, which throws missing definition compile errors. Fix by including string.h in string functions header. Signed-off-by:

[dpdk-dev] [PATCH v2 5/7] mem: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
When built against musl, fcntl.h doesn't silently get included. Fix by including it explicitly. Bugzilla ID: 31 Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/eal_common_memory.c | 1 + lib/librte_eal/linuxapp/eal/eal_memory.c | 1 + 2 files changed, 2 insertions(+) diff --git a/lib

[dpdk-dev] [PATCH v2 3/7] fbarray: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
When built against musl, fcntl.h doesn't silently get included. Fix by including it explicitly. Bugzilla ID: 34 Signed-off-by: Anatoly Burakov --- lib/librte_eal/common/eal_common_fbarray.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/common/eal_common_fbarray.c b/lib/lib

[dpdk-dev] [PATCH v2 1/7] linuxapp: build with _GNU_SOURCE defined by default

2018-09-20 Thread Anatoly Burakov
We use _GNU_SOURCE all over the place, but often times we miss defining it, resulting in broken builds on musl. Rather than fixing every library's and driver's and application's makefile, fix it by simply defining _GNU_SOURCE by default for all Linuxapp builds. Signed-off-by: Anatoly Burakov ---

[dpdk-dev] [PATCH v2 2/7] pci/vfio: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
Musl already has PAGE_SIZE defined, and our define clashed with it. Rename our define to SYS_PAGE_SIZE. Bugzilla ID: 36 Signed-off-by: Anatoly Burakov --- drivers/bus/pci/linux/pci_vfio.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/bus/pci/linux/pci_vfio.c b/drivers/bus/pci/li

[dpdk-dev] [PATCH v2 0/7] Improve core EAL musl compatibility

2018-09-20 Thread Anatoly Burakov
This patchset fixes numerous issues with musl compatibility in the core EAL libraries. It does not fix anything beyond core EAL (so, PCI driver is still broken, so are a few other drivers), but it's a good start. Tested on container with Alpine Linux. Alpine dependencies: build-base bsd-compat-he

[dpdk-dev] [PATCH v2 4/7] eal/hugepage_info: improve musl compatibility

2018-09-20 Thread Anatoly Burakov
When built against musl, fcntl.h doesn't silently get included. Fix by including it explicitly. Bugzilla ID: 33 Signed-off-by: Anatoly Burakov --- lib/librte_eal/linuxapp/eal/eal_hugepage_info.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/linuxapp/eal/eal_hugepage_info.c

Re: [dpdk-dev] [PATCH v2 2/3] kni: fix kni fifo synchronization

2018-09-20 Thread Jerin Jacob
-Original Message- > Date: Thu, 20 Sep 2018 15:20:53 + > From: Honnappa Nagarahalli > To: Jerin Jacob , "Phil Yang (Arm > Technology China)" > CC: "dev@dpdk.org" , nd , > "kkokkilaga...@caviumnetworks.com" , > "Gavin Hu (Arm Technology China)" , > "ferruh.yi...@intel.com" > Subje

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

2018-09-20 Thread Xiaolong Ye
Signed-off-by: Xiaolong Ye --- lib/librte_vhost/rte_vdpa.h| 3 +++ lib/librte_vhost/rte_vhost_version.map | 1 + lib/librte_vhost/vdpa.c| 6 ++ 3 files changed, 10 insertions(+) diff --git a/lib/librte_vhost/rte_vdpa.h b/lib/librte_vhost/rte_vdpa.h index 90465ca26

[dpdk-dev] [PATCH v3 0/2] introduce vdpa sample

2018-09-20 Thread Xiaolong Ye
Hi, This patchset introduces vdpa sample to demonstrate the vDPA use case. v3 changes: * list cmd would show queue number and supported features of vdpa devices. * address Xiao's review comments v2 changes: * fix a compilation error reported by Rosen * improve create cmd in interactive mode and

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

2018-09-20 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] mem: store memory mode flags in shared config

2018-09-20 Thread Anatoly Burakov
Currently, command-line switches for legacy mem mode or single-file segments mode are only stored in internal config. This leads to a situation where these flags have to always match between primary and secondary, which is bad for usability. Fix this by storing these flags in the shared config as

Re: [dpdk-dev] [PATCH v3 1/5] vhost: unify VhostUserMsg usage

2018-09-20 Thread Burakov, Anatoly
On 15-Sep-18 6:20 AM, Nikolay Nikolaev wrote: Use the typedef version of struct VhostUserMsg. Also unify the related parameter name. Signed-off-by: Nikolay Nikolaev --- I'm probably missing some background on this, but according to DPDK coding style guide, typedef structs are to be avoided [

Re: [dpdk-dev] [PATCH] test: disable alarm autotest in FreeBSD

2018-09-20 Thread Burakov, Anatoly
On 19-Sep-18 3:39 PM, Pallantla Poornima wrote: Disabled the alarm_autotest UT in FreeBSD Interrupts are not supported in FreeBSD. Alarm API depends on interrupts, so disabled alarm test on FreeBSD. Signed-off-by: Pallantla Poornima --- Reviewed-by: Anatoly Burakov -- Thanks, Anatoly

Re: [dpdk-dev] [PATCH v2 04/13] bus/vdev: add device matching field driver

2018-09-20 Thread Thomas Monjalon
19/09/2018 18:03, Gaetan Rivet: > The vdev bus parses a field "driver", matching > a vdev driver name with one passed as follows: > >"bus=vdev,driver=" I think the property should be "name". We already have a "driver" category. So it may be "bus=vdev,name=mytap/driver=tap" Until now we w

Re: [dpdk-dev] [PATCH] app/testpmd: fix missing jump action in flow action

2018-09-20 Thread Iremonger, Bernard
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Reshma Pattan > Sent: Wednesday, September 19, 2018 3:01 PM > To: adrien.mazarg...@6wind.com; dev@dpdk.org > Cc: Pattan, Reshma > Subject: [dpdk-dev] [PATCH] app/testpmd: fix missing jump action in flow > action >

Re: [dpdk-dev] [PATCH v2 07/13] ethdev: add device matching field name

2018-09-20 Thread Thomas Monjalon
19/09/2018 18:03, Gaetan Rivet: > The eth device class can now parse a field name, > matching the eth_dev name with one passed as > >"class=eth,name=xx" I am not sure what is the purpose of the "name" property. I think we should not need it to choose a port by its ethdev name. If you are

Re: [dpdk-dev] [PATCH 00/17] net/qede: add enhancements and fixes

2018-09-20 Thread Ferruh Yigit
On 9/8/2018 9:30 PM, Rasesh Mody wrote: > This patchset adds enhancements and fixes for QEDE PMD. > > Rasesh Mody (8): > net/qede/base: fix to handle stag update event > net/qede/base: add support for OneView APIs > net/qede/base: get pre-negotiated values for stag and bw > net/qede: fix t

Re: [dpdk-dev] [PATCH v6] app/testpmd: add forwarding mode to simulate a noisy neighbour

2018-09-20 Thread Kevin Traynor
On 09/18/2018 10:35 AM, Jens Freimann wrote: > This adds a new forwarding mode to testpmd to simulate > more realistic behavior of a guest machine engaged in receiving > and sending packets performing Virtual Network Function (VNF). > > The goal is to enable a simple way of measuring performance i

[dpdk-dev] [PATCH v4 1/5] eventdev: add eth Tx adapter APIs

2018-09-20 Thread Nikhil Rao
The ethernet Tx adapter abstracts the transmit stage of an event driven packet processing application. The transmit stage may be implemented with eventdev PMD support or use a rte_service function implemented in the adapter. These APIs provide a common configuration and control interface and an tra

[dpdk-dev] [PATCH v4 3/5] eventdev: add eth Tx adapter implementation

2018-09-20 Thread Nikhil Rao
This patch implements the Tx adapter APIs by invoking the corresponding eventdev PMD callbacks and also provides the common rte_service function based implementation when the eventdev PMD support is absent. Signed-off-by: Nikhil Rao --- config/rte_config.h|1 + li

  1   2   >