Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-11-29 Thread David Marchand
On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger wrote: > > Valgrind reports that eal interrupt thread is calling epoll_ctl > with uninitialized data. Trivial to fix by initializing it. > > Fixes: af75078fece3 ("first public release") > Cc: sta...@dpdk.org > Signed-off-by: Stephen Hemminger >

[dpdk-dev] [PATCH] doc: introduce openwrt how-to guide

2019-11-29 Thread Xiaolong Ye
This doc describes how to enable DPDK on openwrt in both virtual and physical x86 environment. Signed-off-by: Xiaolong Ye --- doc/guides/howto/index.rst | 1 + doc/guides/howto/openwrt.rst | 180 +++ 2 files changed, 181 insertions(+) create mode 100644 doc/g

Re: [dpdk-dev] [PATCH] doc: introduce openwrt how-to guide

2019-11-29 Thread Bruce Richardson
On Fri, Nov 29, 2019 at 04:19:11PM +0800, Xiaolong Ye wrote: > This doc describes how to enable DPDK on openwrt in both virtual and > physical x86 environment. > > Signed-off-by: Xiaolong Ye > --- At this point, I don't think it's a good idea to be adding more instructions for building DPDK usin

Re: [dpdk-dev] [PATCH] cryptodev: add chacha20-poly1305 aead algorithm

2019-11-29 Thread Trahe, Fiona
Hi Akhil, doc question below > -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, November 29, 2019 6:58 AM > To: dev@dpdk.org > Cc: akhil.go...@nxp.com; Trahe, Fiona ; Kusztal, > ArkadiuszX > > Subject: [PATCH] cryptodev: add chacha20-poly1305 aead algorithm > > This patc

Re: [dpdk-dev] [RFC PATCH] mark experimental variables

2019-11-29 Thread Neil Horman
On Wed, Nov 27, 2019 at 09:45:46PM +0100, David Marchand wrote: > On Tue, Nov 26, 2019 at 3:22 PM Neil Horman wrote: > > On Mon, Nov 25, 2019 at 05:13:14PM +0100, David Marchand wrote: > > > So far, we did not pay attention to direct access to variables but they > > > are part of the API/ABI too a

Re: [dpdk-dev] Admin Queue ENA

2019-11-29 Thread kumaraparameshwaran rathinavel
Hi MichaƂ, Thanks for getting back on this. In our design we are using multiple cores requesting for rte_eth_stats_get, it is not from one process and hence not serialized. Since in our design this is not serialized, and hence in get_comp_ctxt() checking for occupied flag and comp_ctxt_release()

Re: [dpdk-dev] [RFC PATCH] mark experimental variables

2019-11-29 Thread David Marchand
On Fri, Nov 29, 2019 at 12:43 PM Neil Horman wrote: > > On Wed, Nov 27, 2019 at 09:45:46PM +0100, David Marchand wrote: > > On Tue, Nov 26, 2019 at 3:22 PM Neil Horman wrote: > > > On Mon, Nov 25, 2019 at 05:13:14PM +0100, David Marchand wrote: > > > > So far, we did not pay attention to direct a

Re: [dpdk-dev] [RFC 0/6] Add ABI compatibility checks to the meson build

2019-11-29 Thread David Marchand
Hello Kevin, On Wed, Oct 23, 2019 at 11:26 AM Kevin Laatz wrote: > > With the recent changes made to stabilize ABI versioning in DPDK, it will > become increasingly important to check patches for ABI compatibility. We > propose adding the ABI compatibility checking to be done as part of the > bui

Re: [dpdk-dev] [PATCH] config: update Marvell ARMADA

2019-11-29 Thread Jerin Jacob
On Fri, Nov 29, 2019 at 3:55 PM wrote: > > From: Liron Himi > > disable more NXP modules that conflict with MUSDK # Please share more details on the conflict. # What about meson build? "make" will be deprecated soon. # This scheme won't work for distro build, Please spend the effort to analyze t

[dpdk-dev] [PATCH v4] add drop statistic for af_packet

2019-11-29 Thread Vadim Podovinnikov
Signed-off-by: Vadim Podovinnikov --- drivers/net/af_packet/rte_eth_af_packet.c | 33 +-- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/drivers/net/af_packet/rte_eth_af_packet.c b/drivers/net/af_packet/rte_eth_af_packet.c index eee0fbce2..2aa7c0fcc 100644 ---

Re: [dpdk-dev] [PATCH] doc: introduce openwrt how-to guide

2019-11-29 Thread Ye Xiaolong
On 11/29, Bruce Richardson wrote: >On Fri, Nov 29, 2019 at 04:19:11PM +0800, Xiaolong Ye wrote: >> This doc describes how to enable DPDK on openwrt in both virtual and >> physical x86 environment. >> >> Signed-off-by: Xiaolong Ye >> --- > >At this point, I don't think it's a good idea to be addin

Re: [dpdk-dev] [PATCH] doc: introduce openwrt how-to guide

2019-11-29 Thread Stephen Hemminger
On Fri, 29 Nov 2019 16:19:11 +0800 Xiaolong Ye wrote: > This doc describes how to enable DPDK on openwrt in both virtual and > physical x86 environment. > > Signed-off-by: Xiaolong Ye > --- > doc/guides/howto/index.rst | 1 + > doc/guides/howto/openwrt.rst | 180 +++

Re: [dpdk-dev] [dpdk-stable] [PATCH] eal: fix unitialized data warning

2019-11-29 Thread Stephen Hemminger
On Fri, 29 Nov 2019 09:25:15 +0100 David Marchand wrote: > On Wed, Nov 27, 2019 at 11:32 PM Stephen Hemminger > wrote: > > > > Valgrind reports that eal interrupt thread is calling epoll_ctl > > with uninitialized data. Trivial to fix by initializing it. > > > > Fixes: af75078fece3 ("first publ

[dpdk-dev] [PATCH v2 0/7] Add ABI compatibility checks to the meson build

2019-11-29 Thread Kevin Laatz
With the recent changes made to stabilize ABI versioning in DPDK, it will become increasingly important to check patches for ABI compatibility. We propose adding the ABI compatibility checking to be done as part of the build. The advantages to adding the ABI compatibility checking to the build are

[dpdk-dev] [PATCH v2 1/7] build: enable debug info by default in meson builds

2019-11-29 Thread Kevin Laatz
From: Bruce Richardson We can turn on debug info by default in meson builds, since it has no performance penalty. This is done by changing the default build type from "release" to "debugoptimized". Since the latter using O2, we can using extra cflags to override that back to O3, which will make l

[dpdk-dev] [PATCH v2 5/7] build: add lib abi checks to meson

2019-11-29 Thread Kevin Laatz
This patch adds the ABI compatibility check for the lib directory to the meson build. If enabled, the ABI compatibility checks will run for all .so's in the lib directory (provided a matching dump file exists). The build will fail if an ABI incompatibility is detected. Signed-off-by: Kevin Laatz

[dpdk-dev] [PATCH v2 3/7] devtools: add abi dump generation script

2019-11-29 Thread Kevin Laatz
This patch adds a script to generate ABI dump files. These files will be required to perform ABI compatibility checks during the build later in the patchset. This script should be run on a DPDK version with a stable ABI. Since this is a tool designed for human use, we simplify it to just work off

[dpdk-dev] [PATCH v2 7/7] build: clean up experimental syms check

2019-11-29 Thread Kevin Laatz
This patch cleans up the meson build files in lib and drivers by moving the custom target for checking the experimental syms next to the abi compat checks. This also removes the dependency on the check for the shared build, which was not required by anything, but was only added to force the experim

[dpdk-dev] [PATCH v2 2/7] build: use meson warning levels

2019-11-29 Thread Kevin Laatz
From: Bruce Richardson Rather than trying to manage all the cflags ourselves, we can use meson warning levels to give the user more control. We remove the Wextra flag and rely on meson to add it, by bumping up our default warning level. Signed-off-by: Bruce Richardson --- config/meson.build |

[dpdk-dev] [PATCH v2 6/7] build: add drivers abi checks to meson

2019-11-29 Thread Kevin Laatz
This patch adds the ABI compatibility check for the drivers directory to the meson build. If enabled, the ABI compatibility checks will run for all .so's in the lib directory (provided a matching dump file exists). The build will fail if an ABI incompatibility is detected. Signed-off-by: Kevin Laa

[dpdk-dev] [PATCH v2 4/7] build: add meson option for abi related checks

2019-11-29 Thread Kevin Laatz
This patch adds a new meson option for running ABI compatibility checks during the build. If enabled, the lib and drivers .so files will be compared against any existing ABI dump files in lib|drivers/abi of the source directory. If there are any incompatibilities, the build will fail and display th

[dpdk-dev] SPDX license tag nag

2019-11-29 Thread Stephen Hemminger
This is the current status of DPDK 19.11 about files with missing or incorrect SPDX tags. This is a polite nag, please either ack the patches, or merge them. If there is no patch please submit one if you are the author. Several patches are outstanding to fix some of these. But others have not bee

Re: [dpdk-dev] [EXT] Re: [PATCH] config: update Marvell ARMADA

2019-11-29 Thread Liron Himi
Regards, Liron -Original Message- From: Jerin Jacob Sent: Friday, 29 November 2019 16:05 To: Liron Himi Cc: Jerin Jacob Kollanukkaran ; dpdk-dev ; dpdk stable Subject: [EXT] Re: [dpdk-dev] [PATCH] config: update Marvell ARMADA External Email ---

[dpdk-dev] [PATCH v3 1/7] build: enable debug info by default in meson builds

2019-11-29 Thread Kevin Laatz
From: Bruce Richardson We can turn on debug info by default in meson builds, since it has no performance penalty. This is done by changing the default build type from "release" to "debugoptimized". Since the latter using O2, we can using extra cflags to override that back to O3, which will make l

[dpdk-dev] [PATCH v3 0/7] Add ABI compatibility checks to the meson build

2019-11-29 Thread Kevin Laatz
With the recent changes made to stabilize ABI versioning in DPDK, it will become increasingly important to check patches for ABI compatibility. We propose adding the ABI compatibility checking to be done as part of the build. The advantages to adding the ABI compatibility checking to the build are

[dpdk-dev] [PATCH v3 2/7] build: use meson warning levels

2019-11-29 Thread Kevin Laatz
From: Bruce Richardson Rather than trying to manage all the cflags ourselves, we can use meson warning levels to give the user more control. We remove the Wextra flag and rely on meson to add it, by bumping up our default warning level. Signed-off-by: Bruce Richardson --- config/meson.build |

[dpdk-dev] [PATCH v3 3/7] devtools: add abi dump generation script

2019-11-29 Thread Kevin Laatz
This patch adds a script to generate ABI dump files. These files will be required to perform ABI compatibility checks during the build later in the patchset. This script should be run on a DPDK version with a stable ABI. Since this is a tool designed for human use, we simplify it to just work off

[dpdk-dev] [PATCH v3 7/7] build: clean up experimental syms check

2019-11-29 Thread Kevin Laatz
This patch cleans up the meson build files in lib and drivers by moving the custom target for checking the experimental syms next to the abi compat checks. This also removes the dependency on the check for the shared build, which was not required by anything, but was only added to force the experim

[dpdk-dev] [PATCH v3 4/7] build: add meson option for abi related checks

2019-11-29 Thread Kevin Laatz
This patch adds a new meson option for running ABI compatibility checks during the build. If enabled, the lib and drivers .so files will be compared against any existing ABI dump files in lib|drivers/abi of the source directory. If there are any incompatibilities, the build will fail and display th

[dpdk-dev] [PATCH v3 6/7] build: add drivers abi checks to meson

2019-11-29 Thread Kevin Laatz
This patch adds the ABI compatibility check for the drivers directory to the meson build. If enabled, the ABI compatibility checks will run for all .so's in the lib directory (provided a matching dump file exists). The build will fail if an ABI incompatibility is detected. Signed-off-by: Kevin Laa

[dpdk-dev] [PATCH v3 5/7] build: add lib abi checks to meson

2019-11-29 Thread Kevin Laatz
This patch adds the ABI compatibility check for the lib directory to the meson build. If enabled, the ABI compatibility checks will run for all .so's in the lib directory (provided a matching dump file exists). The build will fail if an ABI incompatibility is detected. Signed-off-by: Kevin Laatz

Re: [dpdk-dev] Jumbo Frame in pktgen & dpdk-pktgen

2019-11-29 Thread Wiles, Keith
> On Nov 19, 2019, at 11:42 AM, Roberts, Lee A. wrote: > > Nirmal, > > Here are the changes that I've been using to allow jumbo frames with > dpdk-19.08 and > pktgen-19.10.0: > > diff -r default/dpdk-19.08/lib/librte_mbuf/rte_mbuf.h > jumbo/dpdk-19.08/lib/librte_mbuf/rte_mbuf.h > 462c462 >

Re: [dpdk-dev] [PATCH v2] [pktgen] Fix IPv6 addressing for set/sequence/save commands, packet headers, UI printing

2019-11-29 Thread Wiles, Keith
> On Nov 19, 2019, at 6:47 PM, Frank Li wrote: > > Current IPv6 functionality in pktgen is broken. This fix makes it so that > IPv6 addresses are properly set when using the set, sequence, and save > commands and that the IP header and UDP/TCP psuedo-header IPV6 addresses > are properly set. >