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
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
>> +
>
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
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
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
-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
-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
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
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
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
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 |
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
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 +++
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 ++
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
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 ++
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/
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
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
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
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
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
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
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
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
>
>
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
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
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
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
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
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
---
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
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
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
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
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 ++
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
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(
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
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
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
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
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
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-
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 +
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
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 +++
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
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/
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
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
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 ++
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 |
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 |
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:
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
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:
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
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
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
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
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
> -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
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
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
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
---
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 +
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
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
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 ++
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
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
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 +
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
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
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
>
> 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
> -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
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
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:
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
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
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
---
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
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
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
-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
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
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
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
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
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 [
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
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
> -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
>
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
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
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
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
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 - 100 of 133 matches
Mail list logo