Re: [dpdk-dev] [RFC PATCH] config: remap flags used for Arm platforms

2020-08-14 Thread Bruce Richardson
On Fri, Aug 14, 2020 at 02:03:20PM +0800, Ruifeng Wang wrote: > Flags are used to distinguish different platform architectures. > These flags can be used to pick different code paths for different > architectures at compile time. > For Arm platforms, there are 3 flags in use: RTE_ARCH_ARM, > RTE_AR

Re: [dpdk-dev] [RFC PATCH] config: remap flags used for Arm platforms

2020-08-14 Thread Ruifeng Wang
> -Original Message- > From: Bruce Richardson > Sent: Friday, August 14, 2020 4:13 PM > To: Ruifeng Wang > Cc: hemant.agra...@nxp.com; jer...@marvell.com; > vikto...@rehivetech.com; dev@dpdk.org; Honnappa Nagarahalli > ; Phil Yang ; nd > > Subject: Re: [dpdk-dev] [RFC PATCH] config: re

[dpdk-dev] [PATCH] cryptodev: revert ABI compatibility for ChaCha20-Poly1305

2020-08-14 Thread Adam Dybkowski
This reverts commit a0f0de06d457753c94688d551a6e8659b4d4e041 as the rte_cryptodev_info_get function versioning was a temporary solution to maintain ABI compatibility for ChaCha20-Poly1305 and is not needed in 20.11. Fixes: a0f0de06d457 ("cryptodev: fix ABI compatibility for ChaCha20-Poly1305") Si

Re: [dpdk-dev] [RFC PATCH] config: remap flags used for Arm platforms

2020-08-14 Thread Bruce Richardson
On Fri, Aug 14, 2020 at 09:05:23AM +, Ruifeng Wang wrote: > > > -Original Message- > > From: Bruce Richardson > > Sent: Friday, August 14, 2020 4:13 PM > > To: Ruifeng Wang > > Cc: hemant.agra...@nxp.com; jer...@marvell.com; > > vikto...@rehivetech.com; dev@dpdk.org; Honnappa Nagarah

[dpdk-dev] [Bug 526] ixgbe: X550 flow type ETH / VLAN / RAW not supported

2020-08-14 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=526 Bug ID: 526 Summary: ixgbe: X550 flow type ETH / VLAN / RAW not supported Product: DPDK Version: 20.05 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

[dpdk-dev] [RFC v1 0/2] Add device emulation support in DPDK

2020-08-14 Thread Chenbo Xia
This series enables DPDK to be an alternative I/O device emulation library of building virtualized devices in separate processes outside QEMU. It introduces a new library (librte_vfio_user), a new device class (emudev) and one pilot device provider (avf_emudev) with its backend of Ethdev PMD (avfbe

[dpdk-dev] [RFC v1 2/2] emudev: Add library for emulated device

2020-08-14 Thread Chenbo Xia
To enable DPDK to be an alternative I/O device emulation library of building virtualized devices in separate processes outside QEMU, a new device class named emudev is introduced in this patch. Emudev is a device type for emulated devices. Providers, which are specific emudev drivers, could choose

[dpdk-dev] [RFC v1 1/2] vfio_user: Add library for vfio over socket

2020-08-14 Thread Chenbo Xia
Vfio-over-socket, also named as vfio-user, is a protocol for emulating devices in a separate process outside of QEMU. The main difference between APP using vfio-user and vfio kernel module is that device manipulation is based on socket messages for vfio-user but system calls for vfio kernel module.

Re: [dpdk-dev] [PATCH 20.11 01/19] examples: remove legacy sections of makefiles

2020-08-14 Thread Bruce Richardson
On Fri, Aug 07, 2020 at 01:29:51PM +0100, Ciara Power wrote: > The example app makefiles contained sections using the legacy method of > compiling with make. These are no longer needed, and are removed, > leaving only the section that uses pkg-config for the make build. > > Signed-off-by: Ciara Po

[dpdk-dev] [PATCH v7 0/5] aarch64 -> aarch32 cross compilation support

2020-08-14 Thread Juraj Linkeš
Add support for aarch32 cross build in meson and add aarch64 -> aarch32 cross build to Travis. Aarch32 is an execution state that allows execution of 32-bit code on armv8 machines. This execution state contains a superset of previous armv7 32-bit instructions and features. Thus the aarch32 build i

[dpdk-dev] [PATCH v7 1/5] net/bnxt: add support for aarch32

2020-08-14 Thread Juraj Linkeš
From: Ruifeng Wang Expand vector PMD support to aarch32. Signed-off-by: Ruifeng Wang --- drivers/net/bnxt/Makefile | 2 +- drivers/net/bnxt/bnxt_rxq.h | 2 +- drivers/net/bnxt/bnxt_rxr.h | 2 +- drivers/net/bnxt/bnxt_txr.h | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git

[dpdk-dev] [PATCH v7 4/5] ci: add aarch64 -> aarch32 cross compiling jobs

2020-08-14 Thread Juraj Linkeš
Add two jobs (static and shared libs), both building on aarch64 and producing 32-bit arm binaries executable on armv8-a, but not armv7. Do not run tests in these jobs. Signed-off-by: Juraj Linkeš --- .ci/linux-build.sh | 7 ++- .travis.yml| 19 +++ 2 files changed, 2

[dpdk-dev] [PATCH v7 2/5] build: add aarch32 meson build flags

2020-08-14 Thread Juraj Linkeš
Add aarch32 extra build flags and aarch32 machine flags to generic machine args. Also modify how arm flags are updated in meson build - for 32-bit build, update only if cross-compiling. Signed-off-by: Juraj Linkeš --- config/arm/meson.build | 20 ++-- 1 file changed, 18 insertion

[dpdk-dev] [PATCH v7 5/5] doc: add aarch32 build guidance

2020-08-14 Thread Juraj Linkeš
From: Phil Yang Add cross-compiling guidance for 32-bit aarch32 DPDK on aarch64 host. Signed-off-by: Phil Yang --- .../linux_gsg/cross_build_dpdk_for_arm64.rst | 30 ++- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/doc/guides/linux_gsg/cross_build_dpdk_for_ar

[dpdk-dev] [PATCH v7 3/5] build: add aarch32 to meson cross-compilation

2020-08-14 Thread Juraj Linkeš
Create meson cross file arm32_armv8a_linux_gcc. Use arm-linux-gnueabihf- toolset which comes with standard packages on most used systems, such as Ubuntu and CentOS. Signed-off-by: Juraj Linkeš --- config/arm/arm32_armv8a_linux_gcc | 17 + 1 file changed, 17 insertions(+) create

[dpdk-dev] [Bug 413] rte_ring: capacity was set incorrectly

2020-08-14 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=413 Bruce Richardson (bruce.richard...@intel.com) changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED R

Re: [dpdk-dev] [RFC PATCH] config: remap flags used for Arm platforms

2020-08-14 Thread Ruifeng Wang
> -Original Message- > From: Bruce Richardson > Sent: Friday, August 14, 2020 6:01 PM > To: Ruifeng Wang > Cc: hemant.agra...@nxp.com; jer...@marvell.com; > vikto...@rehivetech.com; dev@dpdk.org; Honnappa Nagarahalli > ; Phil Yang ; nd > > Subject: Re: [dpdk-dev] [RFC PATCH] config: re

[dpdk-dev] [PATCH 2/4] examples/vm_power_manager: fix string truncation warning

2020-08-14 Thread Bruce Richardson
When compiling on ubuntu 20.04, a warning was issued about possible truncation of the path string for the power management socket. channel_manager.c: In function ‘add_all_channels’: channel_manager.c:470:41: warning: ‘%s’ directive output may be truncated writing up to 255 bytes into a region of

[dpdk-dev] [PATCH 3/4] examples/mp_server: fix snprintf overflow

2020-08-14 Thread Bruce Richardson
When producing a printable mac address the buffer was appropriately sized for holding the mac address exactly, but the actual snprintf included a '\n' character at the end, which means that the snprintf technically is getting truncated i.e. the \n would not be added due to lack of space. This gets

[dpdk-dev] [PATCH 0/4] fixes for example app builds

2020-08-14 Thread Bruce Richardson
While helping prepare some patches for converting the DPDK examples to build using pkg-config, a number of errors and warnings were encountered in the example app builds. These patches fix those issues. Bruce Richardson (4): power: make guest channel headers public examples/vm_power_manager: f

[dpdk-dev] [PATCH 1/4] power: make guest channel headers public

2020-08-14 Thread Bruce Richardson
The channel commands header file contains definitions that are used by the example application for power management, and so need to be made public. Similarly the guest_channel.h header is used by the guest_cli example utility, so needs to be public also. Without this change, the example apps, or a

[dpdk-dev] [PATCH 4/4] examples/mp_server: clear string truncation warning

2020-08-14 Thread Bruce Richardson
Compiling with GCC 9.3 on Ubuntu 20.04 gives a warning about possible string truncation when getting the RX queue name: In file included from init.c:36: init.c: In function ‘init’: ../shared/common.h:38:28: warning: ‘%u’ directive output may be truncated writing between 1 and 10 bytes into a regi

Re: [dpdk-dev] [PATCH 1/4] power: make guest channel headers public

2020-08-14 Thread Bruce Richardson
On Fri, Aug 14, 2020 at 12:00:42PM +0100, Bruce Richardson wrote: > The channel commands header file contains definitions that are used by the > example application for power management, and so need to be made public. > Similarly the guest_channel.h header is used by the guest_cli example > utility

Re: [dpdk-dev] [PATCH v3 2/7] app/proc-info: eliminate useless borders

2020-08-14 Thread Varghese, Vipin
Hi Stephen, > > > snipped > > > > > > snipped > > > > > > > > > > snipped > > > > > > > > > > > > 15/07/2020 23:22, Stephen Hemminger: > > > > > > > Printing extra borders does not improve readability, and is > > > > > > > just unnecessary. Putting TSC hz in header also makes no sense > here. > >

Re: [dpdk-dev] [PATCH v3 2/7] app/proc-info: eliminate useless borders

2020-08-14 Thread Stephen Hemminger
On Fri, 14 Aug 2020 11:08:31 + "Varghese, Vipin" wrote: > Hi Stephen, > > > > > > snipped > > > > > > > > snipped > > > > > > > > > > > > snipped > > > > > > > > > > > > > > 15/07/2020 23:22, Stephen Hemminger: > > > > > > > > Printing extra borders does not improve readability, a

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Harini Ramakrishnan
On Thu, Aug 13, 2020 at 04:21:23PM -0700, Narcisa Ana Maria Vasile wrote: > From: Narcisa Vasile > > The NetUIO driver for Windows allows the usermode application > to directly access the hardware and allocates the memory that gets mapped in > usermode. > > Anand Rawat (1): > Updated Source an

Re: [dpdk-dev] [RFC v1 0/2] Add device emulation support in DPDK

2020-08-14 Thread Stephen Hemminger
On Fri, 14 Aug 2020 19:16:04 + Chenbo Xia wrote: > This series enables DPDK to be an alternative I/O device emulation library of > building virtualized devices in separate processes outside QEMU. It introduces > a new library (librte_vfio_user), a new device class (emudev) and one pilot > dev

Re: [dpdk-dev] [PATCH 3/4] examples/mp_server: fix snprintf overflow

2020-08-14 Thread Stephen Hemminger
On Fri, 14 Aug 2020 12:00:44 +0100 Bruce Richardson wrote: > When producing a printable mac address the buffer was appropriately sized > for holding the mac address exactly, but the actual snprintf included a > '\n' character at the end, which means that the snprintf technically is > getting trun

[dpdk-dev] Please note: v21 ABI notification

2020-08-14 Thread Kinsella, Ray
Please note, ABI v21 has been declared aligned with the DPDK 20.11 release. (https://git.dpdk.org/dpdk/commit/?id=4f86c0ba19ba065c8c32a5b0111efc7bb74c9b96) The requirement to preserve compatibility with the previous major ABI version v20 in DPDK 19.11 is now dropped. This is commonly known as

Re: [dpdk-dev] Please note: v21 ABI notification

2020-08-14 Thread Kinsella, Ray
Hi folks, Now is the time to remove old ABI compatibility preserving code. Remove versioning code: * Cryptodev Fiona Trahe Arek Kusztal * Mempool Olivier Matz Remove alias to experimental: * Metering Ferruh Yigit Finally, Along the way I noted the following public symbols

[dpdk-dev] [PATCH v1] common/iavf: mark the global functions internal

2020-08-14 Thread Haiyue Wang
According to ABI policy, the internal functions should have the new tag __rte_internal and linked into INTERNAL sessions. Signed-off-by: Haiyue Wang --- drivers/common/iavf/iavf_prototype.h| 6 ++ drivers/common/iavf/rte_common_iavf_version.map | 2 +- 2 files changed, 7 insertio

[dpdk-dev] [PATCH v2] common/iavf: mark internal symbols

2020-08-14 Thread Haiyue Wang
According to ABI policy, the internal functions should have the new tag __rte_internal and linked into INTERNAL sessions. Signed-off-by: Haiyue Wang --- v2: update the commit title --- drivers/common/iavf/iavf_prototype.h| 6 ++ drivers/common/iavf/rte_common_iavf_version.map | 2

[dpdk-dev] [PATCH] eal: add option to put timestamp on console output

2020-08-14 Thread Stephen Hemminger
When debugging driver or startup issues, it is useful to have a timestamp on each message printed. The messages in syslog already have a timestamp, but often syslog is not available during testing. The timestamp format is chosen to look like the default Linux dmesg timestamp. Example: [ 0.00

[dpdk-dev] [PATCH] net/failsafe: don't double space warning

2020-08-14 Thread Stephen Hemminger
Already get a newline from WARN() macro call. Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot") Cc: ma...@mellanox.com Signed-off-by: Stephen Hemminger --- drivers/net/failsafe/failsafe_ether.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/n

[dpdk-dev] [PATCH] eal: change debug diagnostic message from udev handler

2020-08-14 Thread Stephen Hemminger
The debug message was poorly worded and did not include the part that would be useful. I.e it never said what was being ignored. Change it to print the message so that if udev changes format or other subsystems need to be added then the necessary information will be in the debug log. Fixes: 0d0f47

Re: [dpdk-dev] [PATCH] eal: add option to put timestamp on console output

2020-08-14 Thread Dmitry Kozlyuk
On Fri, 14 Aug 2020 10:34:41 -0700, Stephen Hemminger wrote: > When debugging driver or startup issues, it is useful to have > a timestamp on each message printed. The messages in syslog > already have a timestamp, but often syslog is not available > during testing. The timestamp format is chosen t

Re: [dpdk-dev] [PATCH] eal: add option to put timestamp on console output

2020-08-14 Thread Stephen Hemminger
On Fri, 14 Aug 2020 21:39:29 +0300 Dmitry Kozlyuk wrote: > On Fri, 14 Aug 2020 10:34:41 -0700, Stephen Hemminger wrote: > > When debugging driver or startup issues, it is useful to have > > a timestamp on each message printed. The messages in syslog > > already have a timestamp, but often syslog

Re: [dpdk-dev] [PATCH] eal: add option to put timestamp on console output

2020-08-14 Thread Dmitry Kozlyuk
On Fri, 14 Aug 2020 11:45:49 -0700, Stephen Hemminger wrote: > On Fri, 14 Aug 2020 21:39:29 +0300 > Dmitry Kozlyuk wrote: [...] > FreeBsd doesn't go through the same log code. Then --log-timestamp shouldn't appear on FreeBSD if it's unsupported. > Iovec is to keep timestamp and message as an ato

Re: [dpdk-dev] [PATCH] eal: add option to put timestamp on console output

2020-08-14 Thread Stephen Hemminger
On Fri, 14 Aug 2020 22:09:11 +0300 Dmitry Kozlyuk wrote: > On Fri, 14 Aug 2020 11:45:49 -0700, Stephen Hemminger wrote: > > On Fri, 14 Aug 2020 21:39:29 +0300 > > Dmitry Kozlyuk wrote: > [...] > > FreeBsd doesn't go through the same log code. > > Then --log-timestamp shouldn't appear on Fre

Re: [dpdk-dev] [PATCH 03/22] Added new core libraries for Windows

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:26 -0700, Narcisa Ana Maria Vasile wrote: > From: Jason Messer > > --- > mk/exec-env/windows/netuio/netuio.vcxproj | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/mk/exec-env/windows/netuio/netuio.vcxproj > b/mk/exec-env/windows/netuio/net

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:23 -0700, Narcisa Ana Maria Vasile wrote: > From: Narcisa Vasile > > The NetUIO driver for Windows allows the usermode application > to directly access the hardware > and allocates the memory that gets mapped in usermode. It doesn't allocate the buffer anymore, does it

Re: [dpdk-dev] [PATCH 01/22] init DPDK repository

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:24 -0700, Narcisa Ana Maria Vasile wrote: > From: Thomas Monjalon > > --- > .gitignore | 0 > 1 file changed, 0 insertions(+), 0 deletions(-) > create mode 100644 .gitignore > > diff --git a/.gitignore b/.gitignore > new file mode 100644 > index 0..e69de29bb

Re: [dpdk-dev] [PATCH 11/22] Updated Source and Project files to use Clang toolset

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:34 -0700, Narcisa Ana Maria Vasile wrote: > From: Anand Rawat > > Updated the code for using LLVM toolset. The code still uses > msbuild and VS2017. Some header files and windows specific > utility functions are removed due to conflicts with Clang > intrinsic functions.

Re: [dpdk-dev] [PATCH 20/22] license: update headers with BSD 3-clause license:

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:43 -0700, Narcisa Ana Maria Vasile wrote: > From: Harini Ramakrishnan > > Signed-off-by: Harini Ramakrishnan > --- > kernel/windows/netuio/netuio.inf | 3 +- > kernel/windows/netuio/netuio.rc | Bin 4772 -> 8098 bytes > kernel/windows/netuio/netuio_d

Re: [dpdk-dev] [PATCH 05/22] doc: remove embedded buffer from Windows UIO ioctl

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:28 -0700, Narcisa Ana Maria Vasile wrote: > From: Harini Ramakrishnan > > --- > mk/exec-env/windows/netuio/netuio.vcxproj | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/mk/exec-env/windows/netuio/netuio.vcxproj > b/mk/exec-env/windows/netuio/netuio.vcx

Re: [dpdk-dev] [PATCH 21/22] doc: updating REAME for NetUIO driver

2020-08-14 Thread Dmitry Kozlyuk
On Thu, 13 Aug 2020 16:21:44 -0700, Narcisa Ana Maria Vasile wrote: > From: Harini Ramakrishnan > > Signed-off-by: Harini Ramakrishnan > --- > kernel/README_NetUIO.rst | 63 > 1 file changed, 63 insertions(+) > create mode 100644 kernel/README_NetUIO.rs

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Narcisa Ana Maria Vasile
On Fri, Aug 14, 2020 at 11:01:39PM +0300, Dmitry Kozlyuk wrote: > On Thu, 13 Aug 2020 16:21:23 -0700, Narcisa Ana Maria Vasile wrote: > > From: Narcisa Vasile > > > > The NetUIO driver for Windows allows the usermode application > > to directly access the hardware > > > and allocates the memory

Re: [dpdk-dev] [PATCH] net/failsafe: don't double space warning

2020-08-14 Thread Gaëtan Rivet
On 14/08/20 10:39 -0700, Stephen Hemminger wrote: > Already get a newline from WARN() macro call. > > Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot") > Cc: ma...@mellanox.com > Signed-off-by: Stephen Hemminger Acked-by: Gaetan Rivet > > --- > drivers/net/failsafe/failsa

Re: [dpdk-dev] [PATCH] net/failsafe: don't double space warning

2020-08-14 Thread Gaëtan Rivet
On 14/08/20 22:28 +0200, Gaëtan Rivet wrote: > On 14/08/20 10:39 -0700, Stephen Hemminger wrote: > > Already get a newline from WARN() macro call. > > > > Fixes: 9dda3e3393c2 ("net/failsafe: add timestamp to stats snapshot") > > Cc: ma...@mellanox.com > > Signed-off-by: Stephen Hemminger > > Ack

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Dmitry Kozlyuk
On Fri, 14 Aug 2020 13:26:11 -0700, Narcisa Ana Maria Vasile wrote: > On Fri, Aug 14, 2020 at 11:01:39PM +0300, Dmitry Kozlyuk wrote: > > On Thu, 13 Aug 2020 16:21:23 -0700, Narcisa Ana Maria Vasile wrote: [...] > > As far as I understand, you're importing history from dpdk-draft-repo and > > the

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Ranjit Menon
On 8/14/2020 1:57 PM, Dmitry Kozlyuk wrote: On Fri, 14 Aug 2020 13:26:11 -0700, Narcisa Ana Maria Vasile wrote: On Fri, Aug 14, 2020 at 11:01:39PM +0300, Dmitry Kozlyuk wrote: On Thu, 13 Aug 2020 16:21:23 -0700, Narcisa Ana Maria Vasile wrote: [...] As far as I understand, you're importing

Re: [dpdk-dev] [PATCH 00/22] windows/netuio: add netuio driver for Windows

2020-08-14 Thread Omar Cardona
Hi Naty, IMHO this is small and sufficiently scoped where history (individual buildable patches) are not necessary. We'd prefer to avoid that overhead here. DmitryK, Please let us know if otherwise. -Original Message- From: Narcisa Ana Maria Vasile Sent: Friday, August 14, 2020 1:2

Re: [dpdk-dev] [PATCH v3 2/7] app/proc-info: eliminate useless borders

2020-08-14 Thread Varghese, Vipin
> > > Hi Stephen, > > > > > > > > > snipped > > > > > > > > > > snipped > > > > > > > > > > > > > > snipped > > > > > > > > > > > > > > > > 15/07/2020 23:22, Stephen Hemminger: > > > > > > > > > Printing extra borders does not improve readability, and > > > > > > > > > is just unnecessary. Putting