Re: [dpdk-dev] [PATCH v5 1/2] ethdev: add level support for RSS offload types

2020-08-20 Thread Ajit Khaparde
On Tue, Aug 18, 2020 at 11:05 PM wrote: > From: Kiran Kumar K > > This patch reserves 2 bits as input selection to select Inner and > outer layers for RSS computation. It is combined with existing > ETH_RSS_* to choose Inner or outer layers for L2, L3 and L4. > This functionality already exists

Re: [dpdk-dev] [PATCH] app/testpmd: fix flow rules list after port stop

2020-08-20 Thread Gregory Etelson
Hello, Is this patch scheduled for merge with dpdk.org ? Please update me. Regards, Gregory > -Original Message- > From: Gregory Etelson > Sent: Monday, August 10, 2020 19:15 > To: dev@dpdk.org > Cc: Gregory Etelson ; Matan Azrad > ; Raslan Darawsheh ; > sta...@dpdk.org; Ori Kam ; Wenzh

[dpdk-dev] [PATCH v3 0/3] minor updates for getting queue info

2020-08-20 Thread Wei Hu (Xavier)
This series include 3 patches. One patch is a minor update to add checking whether the related Tx or Rx queue has been setuped in the rte_eth_rx_queue_info_get and rte_eth_tx_queue_info_get API function to avoid illegal address access. And the other two patches for hns3 PMD driver. Huisong Li (1)

[dpdk-dev] [PATCH v3 2/3] net/hns3: support getting Tx and Rx queue information

2020-08-20 Thread Wei Hu (Xavier)
From: Huisong Li This patch adds support for querying Rx/Tx queue information. Signed-off-by: Huisong Li Signed-off-by: Wei Hu (Xavier) --- drivers/net/hns3/hns3_ethdev.c| 2 ++ drivers/net/hns3/hns3_ethdev_vf.c | 2 ++ drivers/net/hns3/hns3_rxtx.c | 33

[dpdk-dev] [PATCH v3 3/3] ethdev: check if queue setupped when getting queue info

2020-08-20 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" This patch adds checking whether the related Tx or Rx queue has been setuped in the rte_eth_rx_queue_info_get and rte_eth_tx_queue_info_get API function to avoid illegal address access. Signed-off-by: Wei Hu (Xavier) --- lib/librte_ethdev/rte_ethdev.c | 16 +

[dpdk-dev] [PATCH v3 1/3] net/hns3: report Rx drop packets enable configuration

2020-08-20 Thread Wei Hu (Xavier)
From: "Wei Hu (Xavier)" Currently, if there are not available Rx buffer descriptors in recieving direction based on hns3 network engine, incoming packets will always be dropped by hardware. This patch reports the '.rx_drop_en' information to DPDK framework in the '.dev_infos_get', '.rxq_info_get'

Re: [dpdk-dev] [PATCH V2] net/hns3: support getting Tx and Rx queue information

2020-08-20 Thread Wei Hu (Xavier)
Hi, Ferruh Yigit On 2020/8/20 0:19, Ferruh Yigit wrote: On 8/18/2020 4:07 AM, Wei Hu (Xavier) wrote: From: Huisong Li This patch adds support for querying Rx/Tx queue information. Currently, if there are not available Rx buffer descriptors in receiving direction based on hns3 network engine,

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

2020-08-20 Thread Juraj Linkeš
From: Ruifeng Wang Sent: Thursday, August 20, 2020 5:00 AM To: Ajit Khaparde (ajit.khapa...@broadcom.com) ; Juraj Linkeš Cc: Bruce Richardson ; Aaron Conole ; maicolgabr...@hotmail.com; dpdk-dev ; nd Subject: RE: [dpdk-dev] [PATCH v7 1/5] net/bnxt: add support for aarch32 From: Ajit Khapar

[dpdk-dev] DPDK Release Status Meeting 20/08/2020

2020-08-20 Thread Ferruh Yigit
Minutes 20 August 2020 -- Agenda: * Release Dates * Highlights * 20.08 retrospective * LTS * Opens Participants: * Arm * Broadcom * Debian/Microsoft * Intel * Marvell * Nvidia * NXP * Red Hat Release Dates - * v20.11 dates * Proposal/V1:Friday, 11 Septembe

Re: [dpdk-dev] [PATCH] net/ark: fix meson build

2020-08-20 Thread Ferruh Yigit
On 8/19/2020 9:45 PM, Ed Czeck wrote: > * Rename net/ark specific CONFIG_RTE macros to local macros. > * Change condition of ARK_PAD_TX to match behavior of meson build > to makefile build. > * Install header file needed for dynamic library. > * Update doc as required. > > Signed-off-by: Ed Czeck

Re: [dpdk-dev] [PATCH] net: add a new network PMD named txgbe

2020-08-20 Thread Ferruh Yigit
On 8/20/2020 4:02 AM, Jiawen Wu wrote: > This is a new network PMD named txgbe provides poll mode driver support for > Wangxun 10Gb Ethernet NICs. > > Beijing WangXun Technology Co., Ltd. is a high-tech company specializing in > the design of high-end integrated circuit chips and providing indep

[dpdk-dev] [PATCH] usertools/dpdk-devbind: add support for PCI wildcards

2020-08-20 Thread Bruce Richardson
When binding or unbinding a range of devices, it can be useful to use wildcards to specify the devices rather than repeating the same prefix multiple times. We can use the python "glob" module to give us this functionality - at least for PCI devices - by checking /sys for matching files. Examples

[dpdk-dev] [PATCH v2 00/37] remove make support in DPDK

2020-08-20 Thread Ciara Power
v2: - Fixed comments on v1. - Removed additional make references. - Added some meson replacements where necessary. - Added dummy root Makefile. As previously decided [1] and communicated via deprecation notice [2], the make build system is to be removed in the 20.11 release. This patchset

[dpdk-dev] [PATCH v2 01/37] examples: remove legacy sections of makefiles

2020-08-20 Thread Ciara Power
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 Power --- examples/bbdev_app/Makefile | 23 ++-

[dpdk-dev] [PATCH v2 02/37] examples/multi_process: convert to pkg-config-based build

2020-08-20 Thread Ciara Power
From: Bruce Richardson Remove references to the old make build system and use pkg-config for building these examples. Signed-off-by: Bruce Richardson --- examples/multi_process/Makefile | 21 ++-- .../multi_process/client_server_mp/Makefile | 19 ++- .../client_server_m

[dpdk-dev] [PATCH v2 03/37] examples/server_node_efd: convert to pkg-config-based build

2020-08-20 Thread Ciara Power
From: Kevin Laatz Remove references to the old make build system and use pkg-config for building these examples. Signed-off-by: Kevin Laatz --- examples/server_node_efd/Makefile| 18 +++-- examples/server_node_efd/node/Makefile | 46 +++-- examples/server_node_efd

[dpdk-dev] [PATCH v2 04/37] examples/ka-agent: convert to pkg-config-based build

2020-08-20 Thread Ciara Power
From: Kevin Laatz Remove references to the old make build system and use pkg-config for building these examples. Signed-off-by: Kevin Laatz --- examples/l2fwd-keepalive/ka-agent/Makefile | 51 -- 1 file changed, 37 insertions(+), 14 deletions(-) diff --git a/examples/l2fwd

[dpdk-dev] [PATCH v2 05/37] examples/pthread: convert to pkg-config-based build

2020-08-20 Thread Ciara Power
From: Kevin Laatz Remove references to the old make build system and use pkg-config for building these examples. Signed-off-by: Kevin Laatz --- examples/performance-thread/Makefile | 21 +++ examples/performance-thread/common/common.mk | 6 +- .../performance-thread/l3fwd-thread

[dpdk-dev] [PATCH v2 06/37] examples/vm_power_manager: convert to use DPDK pkg-config

2020-08-20 Thread Ciara Power
From: Bruce Richardson Convert the build of the vm_power_manager app over to use DPDK from pkg-config rather than using RTE_SDK/RTE_TARGET. Signed-off-by: Bruce Richardson --- examples/vm_power_manager/Makefile | 74 ++ 1 file changed, 35 insertions(+), 39 deletions

[dpdk-dev] [PATCH v2 07/37] examples/vm_power_manager: convert guest cli to pkg-config

2020-08-20 Thread Ciara Power
From: Bruce Richardson Convert the makefile for the vm_power_manager/guest_cli utility to build using pkg-config rather than the old build system. Signed-off-by: Bruce Richardson --- examples/vm_power_manager/guest_cli/Makefile | 50 1 file changed, 31 insertions(+), 19 de

[dpdk-dev] [PATCH v2 08/37] examples/ethtool: convert to pkg-config-based build

2020-08-20 Thread Ciara Power
From: Bruce Richardson Remove references to the old DPDK build system from the makefiles, and use pkg-config provided flags instead. Signed-off-by: Bruce Richardson --- examples/ethtool/Makefile | 26 +++ examples/ethtool/ethtool-app/Makefile | 56 +++-

[dpdk-dev] [PATCH v2 09/37] build: create dummy Makefile

2020-08-20 Thread Ciara Power
From: Bruce Richardson This patch modifies the root Makefile to act as a dummy Makefile for when the make support is removed from DPDK in subsequent patches. Signed-off-by: Bruce Richardson --- Makefile | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makef

[dpdk-dev] [PATCH v2 11/37] config: remove all config files used by make

2020-08-20 Thread Ciara Power
Make is not supported for compiling DPDK, the config files are no longer needed. Signed-off-by: Ciara Power --- config/common_armv8a_linux| 43 - config/common_base| 1154 - config/common_freebsd | 15 -

[dpdk-dev] [PATCH v2 13/37] buildtools: remove all scripts for use with make

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, scripts used with make are no longer needed. Signed-off-by: Ciara Power --- MAINTAINERS | 4 -- buildtools/auto-config-h.sh | 108 buildtools/gen-build-mk.sh | 23 buildtools/gen-con

[dpdk-dev] [PATCH v2 12/37] examples: remove old build system references

2020-08-20 Thread Ciara Power
Remove the references to RTE_SDK and RTE_TARGET environment variables from the build instructions in the comments of the various BPF files, and in the ipsec-secgw common definition script. Signed-off-by: Ciara Power Signed-off-by: Bruce Richardson --- Ask for maintainer to review changes and s

[dpdk-dev] [PATCH v2 14/37] devtools: remove use of make in scripts

2020-08-20 Thread Ciara Power
Make is no longer supported, the test script for make builds is no longer required. Uses of make in other tool scripts are replaced. Signed-off-by: Ciara Power --- MAINTAINERS| 1 - devtools/build-tags.sh | 14 +- devtools/check-includes.sh | 3 +- devtools/git-log-fixes

[dpdk-dev] [PATCH v2 15/37] app/test: remove references to make

2020-08-20 Thread Ciara Power
Make is no longer supported, RTE_SDK, RTE_TARGET and CONFIG options are no longer in use. Signed-off-by: Ciara Power --- Ask for maintainer to review changes and suggest alternatives to the values added in replacement of environment variables. --- app/test-bbdev/test-bbdev.py | 11 + app

[dpdk-dev] [PATCH v2 17/37] lib: remove references to make config options

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in code comments. Signed-off-by: Ciara Power --- lib/librte_mempool/rte_mempool.h | 2 +- lib/librte_ring/rte_ring_elem.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/lib/librte_mempool/rte_mem

[dpdk-dev] [PATCH v2 18/37] doc/guides: remove use of DPDK make build system

2020-08-20 Thread Ciara Power
From: Bruce Richardson When building the DPDK guide documents, the DPDK version information was pulled using "make showversion", which meant there was a dependency on the DPDK make-based build system. Change this to have the version info passed in from meson itself. Signed-off-by: Bruce Richards

[dpdk-dev] [PATCH v2 16/37] drivers: remove references to make config options

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in code comments. Signed-off-by: Ciara Power --- drivers/bus/pci/linux/pci_vfio.c | 1 - drivers/net/i40e/i40e_rxtx.c | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/bus/pci/linux/pci_vfio.c b/drivers/bus

[dpdk-dev] [PATCH v2 21/37] doc: remove references to make in compressdev guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Reviewed-by: Kevin Laatz Signed-off-by: Ciara Power --- doc/guides/compressdevs/isal.rst | 4 doc/guides/compressdevs/octeontx.rst | 24 ++-- doc/guides/compressdevs/zl

[dpdk-dev] [PATCH v2 19/37] doc: remove deprecation notice for make

2020-08-20 Thread Ciara Power
The deprecation notice for make can now be removed as this patchset removes the make build system. Signed-off-by: Ciara Power --- doc/guides/rel_notes/deprecation.rst | 7 --- 1 file changed, 7 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecatio

[dpdk-dev] [PATCH v2 20/37] doc: remove references to make in bbdev guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Reviewed-by: Kevin Laatz Signed-off-by: Ciara Power --- doc/guides/bbdevs/fpga_5gnr_fec.rst | 7 ++- doc/guides/bbdevs/fpga_lte_fec.rst | 7 ++- doc/guides/bbdevs/turbo_sw.rst | 15 -

[dpdk-dev] [PATCH v2 22/37] doc: remove references to make in contributing guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power Signed-off-by: Louise Kilheeney --- doc/guides/contributing/coding_style.rst | 46 +--- doc/guides/contributing/design.rst| 127 ++ doc/g

[dpdk-dev] [PATCH v2 23/37] doc: remove references to make in cryptodev guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/cryptodevs/aesni_gcm.rst | 4 +- doc/guides/cryptodevs/aesni_mb.rst | 4 +- doc/guides/cryptodevs/armv8.rst | 3 -- doc/guides/cryptodevs/caam_jr.rst

[dpdk-dev] [PATCH v2 24/37] doc: remove references to make in eventdev guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Reviewed-by: Kevin Laatz Signed-off-by: Ciara Power --- doc/guides/eventdevs/dpaa.rst | 20 doc/guides/eventdevs/dpaa2.rst | 20 doc/guides/eventde

[dpdk-dev] [PATCH v2 25/37] doc: remove references to make in FreeBSD gsg guide

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Acked-by: Bruce Richardson Signed-off-by: Ciara Power --- doc/guides/freebsd_gsg/build_dpdk.rst | 2 +- doc/guides/freebsd_gsg/intro.rst | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(

[dpdk-dev] [PATCH v2 27/37] doc: remove references to make in Linux gsg guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/linux_gsg/build_dpdk.rst | 84 +++ doc/guides/linux_gsg/build_sample_apps.rst| 69 +-- .../linux_gsg/cross_build_dp

[dpdk-dev] [PATCH v2 26/37] doc: remove references to make in howto guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/howto/lm_bond_virtio_sriov.rst | 4 +-- doc/guides/howto/lm_virtio_vhost_user.rst | 4 +-- doc/guides/howto/packet_capture_framework.rst | 21 +++--

[dpdk-dev] [PATCH v2 29/37] doc: remove references to make in NIC guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/nics/ark.rst| 26 - doc/guides/nics/atlantic.rst | 4 -- doc/guides/nics/axgbe.rst | 15 doc/guides/nics/bnx

[dpdk-dev] [PATCH v2 30/37] doc: remove references to make in platform guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/platform/bluefield.rst | 22 - doc/guides/platform/octeontx.rst | 33 +-- doc/guides/platform/octeontx2.rst

[dpdk-dev] [PATCH v2 28/37] doc: remove references to make in mempool guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/mempool/octeontx.rst | 28 +++- doc/guides/mempool/octeontx2.rst | 10 +- 2 files changed, 4 insertions(+), 34 deletions(-)

[dpdk-dev] [PATCH v2 32/37] doc: remove references to make in rawdev guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Reviewed-by: Kevin Laatz Signed-off-by: Ciara Power --- doc/guides/rawdevs/dpaa2_cmdif.rst | 21 - doc/guides/rawdevs/dpaa2_qdma.rst| 21 - doc/guides/r

[dpdk-dev] [PATCH v2 31/37] doc: remove references to make in prog guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- MAINTAINERS | 3 +- doc/guides/prog_guide/build_app.rst | 48 +-- .../prog_guide/dev_kit_build_system.rst | 331 ---

[dpdk-dev] [PATCH v2 34/37] doc: remove references to make in vdpadevs guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/vdpadevs/ifc.rst | 13 doc/guides/vdpadevs/mlx5.rst | 40 +++- 2 files changed, 3 insertions(+), 50 deletions(-

[dpdk-dev] [PATCH v2 33/37] doc: remove references to make in sample app guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/sample_app_ug/bbdev_app.rst| 34 ++-- doc/guides/sample_app_ug/cmd_line.rst | 2 +- doc/guides/sample_app_ug/compiling.rst| 83 +

[dpdk-dev] [PATCH v2 35/37] doc: remove reference to make in tools guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/tools/comp_perf.rst| 10 ++--- doc/guides/tools/cryptoperf.rst | 20 +++-- doc/guides/tools/pdump.rst| 15 ++--- doc/gu

[dpdk-dev] [PATCH v2 36/37] doc: remove references to make in testpmd guides

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/testpmd_app_ug/run_app.rst | 6 +++--- doc/guides/testpmd_app_ug/testpmd_funcs.rst | 9 + 2 files changed, 4 insertions(+), 11 deletions(-) di

[dpdk-dev] [PATCH v2 37/37] doc: update quick build doc to remove make references

2020-08-20 Thread Ciara Power
Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/build-sdk-quick.txt | 55 - 1 file changed, 21 insertions(+), 34 deletions(-) diff --git a/doc/build-sdk-quick.txt b/doc/bu

Re: [dpdk-dev] [PATCH v2] sched: fix port time rounding error

2020-08-20 Thread Kevin Traynor
Hi, On 25/06/2020 10:59, alangordonde...@gmail.com wrote: > From: Alan Dewar > > The QoS scheduler works off port time that is computed from the number > of CPU cycles that have elapsed since the last time the port was > polled. It divides the number of elapsed cycles to calculate how > many b

[dpdk-dev] [PATCH] vdpa/mlx5: fix event channel setup

2020-08-20 Thread Xueming Li
From: Xueming Li During vdap device setup, if some error happens, event channel release stuck at polling event channel. Event channel fd is set to nonblocking in cqe setup, so if any error happens before this function and after event channel created, the pooling before releasing resources will s

Re: [dpdk-dev] [PATCH v3 05/11] baseband/acc100: add LDPC processing functions

2020-08-20 Thread Dave Burley
Hi Nic, As you've now specified the use of RTE_BBDEV_LDPC_LLR_COMPRESSION for this PMB, please could you confirm what the packed format of the LLRs in memory looks like? Best Regards Dave Burley From: dev on behalf of Nicolas Chautru Sent: 19 August 2020 01:25 To: dev@dpdk.org ; akhil.go

Re: [dpdk-dev] [PATCH] usertools/dpdk-devbind: add support for PCI wildcards

2020-08-20 Thread Ferruh Yigit
On 8/20/2020 1:23 PM, Bruce Richardson wrote: > When binding or unbinding a range of devices, it can be useful to use > wildcards to specify the devices rather than repeating the same prefix > multiple times. We can use the python "glob" module to give us this > functionality - at least for PCI dev

[dpdk-dev] [PATCH v1 01/13] common/mlx5: replace strsep with strtok_r

2020-08-20 Thread Ophir Munk
From: Ophir Munk strsep() is a non-standardized API (by C or POSIX) and thus it is non-portable between different operating systems. Replace it with strtok_r() which is standardized by the C standard, and hence also by POSIX. The replacement occurs in the code that extracts individual PCI class n

[dpdk-dev] [PATCH v1 04/13] net/mlx5: move mlx5_get_ifname prototype under Linux

2020-08-20 Thread Ophir Munk
From: Ophir Munk mlx5_get_ifname() prototype includes 'IF_NAMESIZE' definition from Linux file net/if.h. Since this API is only used under Linux and to enable compilation under non-Linux OS - move this prototype from shared file mlx5.h to file linux/mlx5_os.h. Signed-off-by: Ophir Munk Acked-by

[dpdk-dev] [PATCH v1 02/13] common/mlx5: replace linux __bexx types with rte

2020-08-20 Thread Ophir Munk
From: Ophir Munk Replace Linux specific int types with their corresponding rte typedefs. __be16 ==> rte_be16_t __be32 ==> rte_be32_t __be64 ==> rte_be64_t Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/common/mlx5/mlx5_prm.h | 14 +++--- 1 file changed, 7 insertions(+), 7

[dpdk-dev] [PATCH v1 05/13] net/mlx5: fix removal of unused inclusion files

2020-08-20 Thread Ophir Munk
From: Ophir Munk Remove unused Linux included files: , from file net/mlx5/mlx5_mac.c from file net/mlx5/mlx5.c Fixes: 771fa900b73a ("mlx5: introduce new driver for Mellanox ConnectX-4 adapters") Cc: sta...@dpdk.org Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/net/mlx5/mlx5

[dpdk-dev] [PATCH v1 06/13] net/mlx5: remove Netlink dependency in shared code

2020-08-20 Thread Ophir Munk
From: Ophir Munk This commit adds Linux implementation of routine mlx5_os_mac_addr_flush as wrapper to Netlink API to avoid direct calls under non-Linux operating systems. Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/net/mlx5/linux/mlx5_os.c | 18 ++ drivers/net

[dpdk-dev] [PATCH v1 03/13] net/mlx5: rename mlx5 enumeration REG_NONE

2020-08-20 Thread Ophir Munk
From: Ophir Munk Enumerated variable REG_NONE (defined in mlx5_prm.h) is in conflict with Windows definition (winnt.h): #define REG_NONE ( 0ul ) // No value type To enable mlx5 PMD Windows compilation - rename REG_NONE as REG_NON. Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/co

[dpdk-dev] [PATCH v1 11/13] net/mlx5: remove ibv_* dependency in rx/tx objects

2020-08-20 Thread Ophir Munk
From: Ophir Munk Replace pointers to ibv structs with pointers to void (file mlx5_rxtx.h). Specifically the following pointers were replaced: 'struct ibv_cq *', 'struct ibv_wq *', 'struct ibv_comp_channel *', 'struct ibv_rwq_ind_table *a', 'struct ibv_qp *'. Signed-off-by: Ophir Munk Acked-by:

[dpdk-dev] [PATCH v1 07/13] net/mlx5: fix unused utility macros

2020-08-20 Thread Ophir Munk
From: Ophir Munk Remove utility macros INFO, WARN, ERROR. They are not in use and conflict with identical definitions when compiled under Windows. Fixes: 80f2d0ed7ff9 ("net/mlx5: add hardware flow debug dump") Cc: sta...@dpdk.org Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/ne

[dpdk-dev] [PATCH v1 13/13] linux/mlx5: refactor VLAN

2020-08-20 Thread Ophir Munk
From: Ophir Munk File mlx5_vlan.c contains Netlink APIs (Linux dependent) as part of VM workaround implementation. Move this implementation to file linux/mlx5_vlan_os.c. To remove Netlink dependency in header files change pointer of type 'struct mlx5_nl_vlan_vmwa_context *' to 'void *'. Signed-

[dpdk-dev] [PATCH v1 09/13] net/mlx5: add ICMP protocol number definition

2020-08-20 Thread Ophir Munk
From: Ophir Munk Some Windows distributions do not include ICMP protocol definitions IPPROTO_ICMP and IPPROTO_ICMPV6. This commit defines them if needed. Signed-off-by: Ophir Munk Acked-by: Matan Azrad --- drivers/net/mlx5/mlx5_flow.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a

[dpdk-dev] [PATCH v1 08/13] net/mlx5: call meter detach only if DR is supported

2020-08-20 Thread Ophir Munk
From: Ophir Munk Flow metering is supported only in direct rules (DR). Currently the APIs of meter actions create and modify are under #ifdef HAVE_MLX5_DR_CREATE_ACTION_FLOW_METER, while detaching the meter action is executed unconditionally. This commit adds the same ifdef to API mlx5_flow_meter

[dpdk-dev] [PATCH v1 10/13] net/mlx5: remove more DV dependencies

2020-08-20 Thread Ophir Munk
From: Ophir Munk Several DV-based structs of type 'struct mlx5dv_devx_XXX' are replaced with 'void *' to enable compilation under non-Linux operating systems. New getter functions were added to retrieve the specific fields that were previously accessed directly. Replaced structs: 'struct mlx5dv_

[dpdk-dev] [PATCH v1 12/13] net/mlx5: separate vlan strip modification

2020-08-20 Thread Ophir Munk
From: Ophir Munk When updating a queue vlan stripping offload - either the WQ is modified in Verbs or the RQ is modified in DevX. Add a vlan stripping modify callback to 'struct mlx5_obj_ops' and assign it with the specic Verbs and DevX implementations: 'rxq_obj_modify_wq_vlan_strip' and 'rxq_ob

Re: [dpdk-dev] [PATCH v3 05/11] baseband/acc100: add LDPC processing functions

2020-08-20 Thread Chautru, Nicolas
Hi Dave, This is assuming 6 bits LLR compression packing (ie. first 2 MSB dropped). Similar to HARQ compression. Let me know if unclear, I can clarify further in documentation if not explicit enough. Thanks Nic > -Original Message- > From: Dave Burley > Sent: Thursday, August 20, 2020

Re: [dpdk-dev] [PATCH v3 05/11] baseband/acc100: add LDPC processing functions

2020-08-20 Thread Dave Burley
Hi Nic Thank you - it would be useful to have further documentation for clarification as the data format isn't explicitly documented in BBDEV. Best Regards Dave From: Chautru, Nicolas Sent: 20 August 2020 15:52 To: Dave Burley ; dev@dpdk.org Cc: Richardson, Bruce Subject: RE: [dpdk-dev] [PA

Re: [dpdk-dev] [PATCH v2 23/37] doc: remove references to make in cryptodev guides

2020-08-20 Thread Laatz, Kevin
On 20/08/2020 13:41, Ciara Power wrote: Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- doc/guides/cryptodevs/aesni_gcm.rst | 4 +- doc/guides/cryptodevs/aesni_mb.rst | 4 +- doc/guides/cryptodevs/armv8.rst

Re: [dpdk-dev] [PATCH v2 31/37] doc: remove references to make in prog guides

2020-08-20 Thread Laatz, Kevin
On 20/08/2020 13:41, Ciara Power wrote: Make is no longer supported for compiling DPDK, references are now removed in the documentation. Signed-off-by: Ciara Power --- MAINTAINERS | 3 +- doc/guides/prog_guide/build_app.rst | 48 +-- .../prog_g

Re: [dpdk-dev] [PATCH] net/ark: fix meson build

2020-08-20 Thread Ed Czeck
On Thu, Aug 20, 2020 at 7:16 AM Ferruh Yigit wrote: > ... > > Logging can be controlled in runtime, that is what we should use. > In data path, we use compile time flags because of the performance issues. So > OK > to have 'CONFIG_RTE_LIBRTE_ARK_DEBUG_RX' & 'CONFIG_RTE_LIBRTE_ARK_DEBUG_TX' as > c

[dpdk-dev] [PATCH v2] usertools/dpdk-devbind: add support for PCI wildcards

2020-08-20 Thread Bruce Richardson
When binding or unbinding a range of devices, it can be useful to use wildcards to specify the devices rather than repeating the same prefix multiple times. We can use the python "glob" module to give us this functionality - at least for PCI devices - by checking /sys for matching files. Examples

Re: [dpdk-dev] [PATCH] usertools/dpdk-devbind: add support for PCI wildcards

2020-08-20 Thread Bruce Richardson
On Thu, Aug 20, 2020 at 03:44:54PM +0100, Ferruh Yigit wrote: > On 8/20/2020 1:23 PM, Bruce Richardson wrote: > > When binding or unbinding a range of devices, it can be useful to use > > wildcards to specify the devices rather than repeating the same prefix > > multiple times. We can use the pytho

[dpdk-dev] [PATCH v3] usertools/dpdk-devbind: add support for PCI wildcards

2020-08-20 Thread Bruce Richardson
When binding or unbinding a range of devices, it can be useful to use wildcards to specify the devices rather than repeating the same prefix multiple times. We can use the python "glob" module to give us this functionality - at least for PCI devices - by checking /sys for matching files. Examples

Re: [dpdk-dev] [PATCH] doc/guides: remove dependency on make build system

2020-08-20 Thread Bruce Richardson
On Wed, Jul 22, 2020 at 01:59:49PM +0100, Bruce Richardson wrote: > On Wed, Jul 22, 2020 at 02:45:54PM +0200, Thomas Monjalon wrote: > > 21/07/2020 17:39, Bruce Richardson: > > > When building the DPDK guide documents, the DPDK version information was > > > pulled using "make showversion", which me

[dpdk-dev] [PATCH v1] doc: update bbdev guide

2020-08-20 Thread Nicolas Chautru
Clarify the capability assumptions for LLR and HARQ compression format. Correct one historical typo. Signed-off-by: Nicolas Chautru --- doc/guides/prog_guide/bbdev.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/prog_guide/bbdev.rst b/doc/guides/prog_guide/b

Re: [dpdk-dev] [PATCH v3 05/11] baseband/acc100: add LDPC processing functions

2020-08-20 Thread Chautru, Nicolas
> From: Dave Burley > > Hi Nic > > Thank you - it would be useful to have further documentation for clarification > as the data format isn't explicitly documented in BBDEV. Thanks Dave. Just updated on this other patch -> https://patches.dpdk.org/patch/75793/ Feel free to ack or let me know i

Re: [dpdk-dev] [PATCH v5 0/5] compiling ethdev lib under windows

2020-08-20 Thread Ranjit Menon
On 8/10/2020 11:24 PM, Fady Bader wrote: Added needed changes in order to get ethdev compiling under windows. Depends-on: series-10382 ("compile librte_net for windows") v5: fixed style issues. v4: added comments to #else and fixed code issue. v3: rebased on current master, added more expor

[dpdk-dev] [PATCH 2/2] net/ark remove ARK_TX_PAD_TO_60 configuration macro

2020-08-20 Thread Ed Czeck
Update documenation as needed. Signed-off-by: Ed Czeck --- doc/guides/nics/ark.rst | 3 --- drivers/net/ark/ark_ethdev_tx.c | 42 ++--- drivers/net/ark/ark_logs.h | 8 --- 3 files changed, 23 insertions(+), 30 deletions(-) diff --git a/doc/guides/n

[dpdk-dev] [PATCH 1/2] net/ark: remove compile time log macros in favor of run time log control

2020-08-20 Thread Ed Czeck
Use ARK_PMD_LOG in place of PMD_DRV_LOG, PMD_DEBUG_LOG, PMD_FUNC_LOG, PMD_STATS_LOG, PMD_RX_LOG, and PMD_TX_LOG. Review and adjust log levels and messages as needed. Signed-off-by: Ed Czeck --- doc/guides/nics/ark.rst | 13 -- drivers/net/ark/ark_ddm.c | 12 ++--- drivers/net/a

[dpdk-dev] [PATCH v2] windows/netuio: add Windows NetUIO kernel driver

2020-08-20 Thread Narcisa Ana Maria Vasile
From: Narcisa Vasile The Windows NetUIO kernel driver allows the DPDK userspace application to directly access the hardware. Cc: Harini Ramakrishnan Cc: Omar Cardona Signed-off-by: Narcisa Vasile --- v2: Fix license message in each file Minor fixes in README Remove RC file as it is aut

Re: [dpdk-dev] [PATCH v2] windows/netuio: add Windows NetUIO kernel driver

2020-08-20 Thread Ranjit Menon
Hi, Naty On 8/20/2020 3:23 PM, Narcisa Ana Maria Vasile wrote: From: Narcisa Vasile The Windows NetUIO kernel driver allows the DPDK userspace application to directly access the hardware. Cc: Harini Ramakrishnan Cc: Omar Cardona Signed-off-by: Narcisa Vasile --- v2: Fix license message

Re: [dpdk-dev] [PATCH v2 20/37] doc: remove references to make in bbdev guides

2020-08-20 Thread Chautru, Nicolas
> From: Power, Ciara > Make is no longer supported for compiling DPDK, references are now removed > in the documentation. > > Reviewed-by: Kevin Laatz > Signed-off-by: Ciara Power > --- > doc/guides/bbdevs/fpga_5gnr_fec.rst | 7 ++- > doc/guides/bbdevs/fpga_lte_fec.rst | 7 ++- > doc

Re: [dpdk-dev] [PATCH v2 20/37] doc: remove references to make in bbdev guides

2020-08-20 Thread Chautru, Nicolas
From: Power, Ciara > Make is no longer supported for compiling DPDK, references are now removed > in the documentation. > > Reviewed-by: Kevin Laatz > Signed-off-by: Ciara Power > --- > doc/guides/bbdevs/fpga_5gnr_fec.rst | 7 ++- > doc/guides/bbdevs/fpga_lte_fec.rst | 7 ++- > doc/g

Re: [dpdk-dev] [PATCH v2 10/37] build: remove makefiles and mk directory

2020-08-20 Thread Ruifeng Wang
> -Original Message- > From: Ciara Power > Sent: Thursday, August 20, 2020 8:41 PM > To: dev@dpdk.org > Cc: Ciara Power ; tho...@monjalon.net; Reshma > Pattan ; Maryam Tahhan > ; Konstantin Ananyev > ; Nicolas Chautru > ; Olivier Matz ; > Declan Doherty ; jer...@marvell.com; Vladimir > M

[dpdk-dev] [PATCH] net/octeontx2: set max vtag insertion size

2020-08-20 Thread kirankumark
From: Kiran Kumar K When TX side VTAG insertion is enabled, As we are not setting the max vtag insertion size an interrupt has been received. This patch will fix the issue by configuring the max vtag insertion size to 8B. Signed-off-by: Kiran Kumar K --- drivers/net/octeontx2/otx2_tm.c | 5 +++