[dpdk-dev] [PATCH 0/2] bugfix for testpmd

2021-04-22 Thread Min Hu (Connor)
This patchset contains two bugfixes for testpmd. Chengchang Tang (2): app/testpmd: fix integer overflow during get DCB conf app/testpmd: fix max queue number when configure Tx offloads app/test-pmd/cmdline.c | 2 +- app/test-pmd/testpmd.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions

[dpdk-dev] [PATCH 1/2] app/testpmd: fix integer overflow during get DCB conf

2021-04-22 Thread Min Hu (Connor)
From: Chengchang Tang In C, constant is treated as integer. Therefore, if nb_queque_pools is ETH_32_POOLS, the shift here may cause integer overflow. Fixes: 1a572499beb6 ("app/testpmd: setup DCB forwarding based on traffic class") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-b

[dpdk-dev] [PATCH 2/2] app/testpmd: fix max queue number when configure Tx offloads

2021-04-22 Thread Min Hu (Connor)
From: Chengchang Tang When txq offload is configured, max rxq is used as the max queue. This patch fixes it. Fixes: 74453ac9ef67 ("app/testpmd: fix queue offload configuration") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Min Hu (Connor) --- app/test-pmd/cmdline.c | 2 +

[dpdk-dev] [PATCH] net/bonding: fix socket id check

2021-04-22 Thread Min Hu (Connor)
From: Chengchang Tang The socket ID entered by user is cast to an unsigned integer. However, the value may be an illegal negative value, which may cause some problems. In this case, an error should be returned. In addition, the socket ID may be an invalid positive number, which is also processed

[dpdk-dev] [PATCH] net/mlx5: probe LAG representor with PF1 PCI address

2021-04-22 Thread Xueming Li
In case of bonding, orchestrator wants to use same devargs for LAG and non-LAG scenario, to probe representor on PF1 using PF1 PCI address like ",representor=pf1vf[0-3]". This patch changes PCI address check policy to allow PF1 PCI address for representors on PF1. Note: detaching PF0 device can't

[dpdk-dev] [PATCH] bpf: fix unreachable statement

2021-04-22 Thread Min Hu (Connor)
From: HongBo Zheng In function 'eval_jcc', judgment 'op == EBPF_JLT' occurs twice, as a result, the corresponding second statement cannot be accessed. This patch fix this problem. Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") Cc: sta...@dpdk.org Signed-off-by: HongBo

[dpdk-dev] [PATCH v1] raw/ifpga: fix ifpga device name format

2021-04-22 Thread Wei Huang
The device name format used in ifpga_rawdev_create() was changed to "IFPGA:%02x:%02x.%x", but the format used in ifpga_rawdev_destroy() was left as "IFPGA:%x:%02x.%x", it should be changed synchronously. Fixes: 9c006c45d0c5 ("raw/ifpga: scan PCIe BDF device tree") Cc: sta...@dpdk.org Signed-off-b

Re: [dpdk-dev] [PATCH v5] build: use platform option for generic and native

2021-04-22 Thread Wang, Yinan
Hi Linkeš, This patch cause vhost/virtio basic pvp test with 1518 packet size performance drop about 9% on IA platform. BR, Yinan > -Original Message- > From: dev On Behalf Of Juraj Linkeš > Sent: 2021年4月21日 16:38 > To: Thomas Monjalon > Cc: david.march...@redhat.com; Richardson, Bruc

Re: [dpdk-dev] [PATCH] pipeline: fix deallocate null pointer

2021-04-22 Thread Dumitrescu, Cristian
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 7:39 AM > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Dumitrescu, Cristian > > Subject: [PATCH] pipeline: fix deallocate null pointer > > From: HongBo Zheng > > Fix deallocate null pointer in instruction_config

Re: [dpdk-dev] [PATCH] drivers: fix indentation in build files

2021-04-22 Thread Bruce Richardson
On Thu, Apr 22, 2021 at 12:03:57AM +0200, Thomas Monjalon wrote: > A couple of mistakes slipped in the mass change. > > More mistakes could happen, especially when rebasing pending patches, so > we need an automatic check. > I have a partially-done script from when I was doing the original reinden

[dpdk-dev] [Bug 238] [tree-wide] enhance getopt_long usage

2021-04-22 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=238 Thomas Monjalon (tho...@monjalon.net) changed: What|Removed |Added Status|CONFIRMED |RESOLVED Resolutio

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Andrew Rybchenko
On 4/21/21 7:30 PM, Ajit Khaparde wrote: > On Wed, Apr 21, 2021 at 9:21 AM Ferruh Yigit wrote: >> >> Fixes a few different things: >> * Remove 'fw_version' NULL checks, it is allowed if the 'fw_size' is >> zero, 'fw_version' being NULL but 'fw_size' not zero condition checked >> in ethdev laye

[dpdk-dev] [RFC PATCH] devtools: script to check meson indentation of lists

2021-04-22 Thread Bruce Richardson
This is a draft script developed when I was working on the whitespace rework changes, since extended a little to attempt to fix some trailing comma issues. Signed-off-by: Bruce Richardson --- devtools/dpdk_meson_check.py | 106 +++ 1 file changed, 106 insertions(+

Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq

2021-04-22 Thread Burakov, Anatoly
On 22-Apr-21 7:15 AM, Richael Zhuang wrote: Currently in DPDK only acpi_cpufreq and pstate_cpufreq drivers are supported, which are both not available on arm64 platforms. Add support for cppc_cpufreq driver which works on most arm64 platforms. Signed-off-by: Richael Zhuang --- Just a general

[dpdk-dev] [PATCH v1] eal/arm64: fix aarch64 reg platform value

2021-04-22 Thread Juraj Linkeš
REG_PLATFORM only uses bit 0 to indicate whether the value retrieved from hardware matches PLATFORM_STR. Signed-off-by: Juraj Linkeš Fixes: 97523f822ba9 ("eal/arm: add CPU flags for ARMv8") Cc: jer...@marvell.com Cc: sta...@dpdk.org --- lib/eal/arm/rte_cpuflags.c | 2 +- 1 file changed, 1 insert

[dpdk-dev] [PATCH] test/timer: fix memzone reserve failure check

2021-04-22 Thread Min Hu (Connor)
Segmentation fault may occur without checking if memzone reserves succeed or not. This patch fixed it. Fixes: 50247fe03fe0 ("test/timer: exercise new APIs in secondary process") Cc: sta...@dpdk.org Signed-off-by: Min Hu (Connor) --- app/test/test_timer_secondary.c | 10 ++ 1 file chang

Re: [dpdk-dev] [PATCH] drivers: fix indentation in build files

2021-04-22 Thread Thomas Monjalon
22/04/2021 10:39, Bruce Richardson: > On Thu, Apr 22, 2021 at 12:03:57AM +0200, Thomas Monjalon wrote: > > A couple of mistakes slipped in the mass change. > > > > More mistakes could happen, especially when rebasing pending patches, so > > we need an automatic check. > > > I have a partially-done

Re: [dpdk-dev] [PATCH v1] eal/arm64: fix aarch64 reg platform value

2021-04-22 Thread Jerin Jacob
On Thu, Apr 22, 2021 at 2:41 PM Juraj Linkeš wrote: > > REG_PLATFORM only uses bit 0 to indicate whether the value retrieved > from hardware matches PLATFORM_STR. > > Signed-off-by: Juraj Linkeš > Fixes: 97523f822ba9 ("eal/arm: add CPU flags for ARMv8") Fixes and cc stable should go above Signof

[dpdk-dev] [PATCH] bonding: fix overflow check

2021-04-22 Thread Min Hu (Connor)
Buffer 'test_params->slave_port_ids' of size 6 accessed may overflow, since its index 'i' can have value be is out of range. This patch fixed it. Fixes: 92073ef961ee ("bond: unit tests") Cc: sta...@dpdk.org Signed-off-by: Min Hu (Connor) --- app/test/test_link_bonding.c | 3 ++- 1 file changed

[dpdk-dev] [PATCH] baseband/turbo_sw: fix dereference of null

2021-04-22 Thread Min Hu (Connor)
Return value of a function 'rte_malloc' is dereferenced without checking, and may result in segmetation fault. This patch fixed it. Fixes: 31a7853d1ed9 ("baseband/turbo_sw: support large size code block") Cc: sta...@dpdk.org Signed-off-by: Min Hu (Connor) --- app/test-bbdev/test_bbdev_perf.c |

Re: [dpdk-dev] [PATCH v1] eal/arm64: fix aarch64 reg platform value

2021-04-22 Thread Ruifeng Wang
> -Original Message- > From: Juraj Linkeš > Sent: Thursday, April 22, 2021 5:12 PM > To: tho...@monjalon.net; david.march...@redhat.com; Honnappa > Nagarahalli ; Ruifeng Wang > ; jer...@marvell.com > Cc: dev@dpdk.org; Juraj Linkeš ; > sta...@dpdk.org > Subject: [PATCH v1] eal/arm64: fix aa

Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq

2021-04-22 Thread Richael Zhuang
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, April 22, 2021 5:06 PM > To: Richael Zhuang ; dev@dpdk.org > Cc: nd ; David Hunt > Subject: Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq > > On 22-Apr-21 7:15 AM, Richael Zhuang wrote: > > Currently in

Re: [dpdk-dev] [PATCH] pipeline: fix deallocate null pointer

2021-04-22 Thread Min Hu (Connor)
在 2021/4/22 16:36, Dumitrescu, Cristian 写道: -Original Message- From: Min Hu (Connor) Sent: Thursday, April 22, 2021 7:39 AM To: dev@dpdk.org Cc: Yigit, Ferruh ; Dumitrescu, Cristian Subject: [PATCH] pipeline: fix deallocate null pointer From: HongBo Zheng Fix deallocate null po

Re: [dpdk-dev] [RFC PATCH] devtools: script to check meson indentation of lists

2021-04-22 Thread Burakov, Anatoly
On 22-Apr-21 10:02 AM, Bruce Richardson wrote: This is a draft script developed when I was working on the whitespace rework changes, since extended a little to attempt to fix some trailing comma issues. Signed-off-by: Bruce Richardson --- devtools/dpdk_meson_check.py | 106 +++

Re: [dpdk-dev] [PATCH] test: fix flow classifier creating failure

2021-04-22 Thread Iremonger, Bernard
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 7:14 AM > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Iremonger, Bernard > > Subject: [PATCH] test: fix flow classifier creating failure > > 'cls->cls' will be NULL if flow classifier create has failed, then > segm

Re: [dpdk-dev] [RFC PATCH] devtools: script to check meson indentation of lists

2021-04-22 Thread Bruce Richardson
On Thu, Apr 22, 2021 at 10:40:37AM +0100, Burakov, Anatoly wrote: > On 22-Apr-21 10:02 AM, Bruce Richardson wrote: > > This is a draft script developed when I was working on the whitespace rework > > changes, since extended a little to attempt to fix some trailing comma > > issues. > > > > Signed

Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq

2021-04-22 Thread Burakov, Anatoly
On 22-Apr-21 10:29 AM, Richael Zhuang wrote: -Original Message- From: Burakov, Anatoly Sent: Thursday, April 22, 2021 5:06 PM To: Richael Zhuang ; dev@dpdk.org Cc: nd ; David Hunt Subject: Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq On 22-Apr-21 7:15 AM, Richae

Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq

2021-04-22 Thread Richael Zhuang
> -Original Message- > From: Burakov, Anatoly > Sent: Thursday, April 22, 2021 6:00 PM > To: Richael Zhuang ; dev@dpdk.org > Cc: nd ; David Hunt > Subject: Re: [dpdk-dev] [PATCH v1 1/1] power: add support for cppc cpufreq > > On 22-Apr-21 10:29 AM, Richael Zhuang wrote: > > > > > >> --

[dpdk-dev] [PATCH v1] net/ice: refactor input set fields for switch filter

2021-04-22 Thread Yuying Zhang
Input set has been divided into inner and outer part to distinguish different fields. However, the parse method of switch filter doesn't match this update. Refactor switch filter to distingush inner and outer input set in the same way as other filters. Clean ICE_INSET_TUN_* codes since they are red

Re: [dpdk-dev] [PATCH 1/3] net/mlx5: fix unsupported offloads disablement

2021-04-22 Thread Odi Assli
> Subject: [PATCH 1/3] net/mlx5: fix unsupported offloads disablement > > mlx5 offloads which are unsupported on Windows are currently disabled by > checks with IBV/DV flags which are irrelevant to Windows. > > The checks are removed until they are fully available. > > Fixes: 93f4ece91a1f ("net/

Re: [dpdk-dev] [PATCH 2/3] common/mlx5: read checksum capability from DevX

2021-04-22 Thread Odi Assli
> Subject: [PATCH 2/3] common/mlx5: read checksum capability from DevX > > mlx5 in Windows needs the hca capability csum_cap to query the NIC for > checksum offloading support > > Added the capability as part of the capabilities queried by the PMD using > DevX. > > Signed-off-by: Tal Shnaiderman

Re: [dpdk-dev] [PATCH 3/3] net/mlx5: support checksum offload on Windows

2021-04-22 Thread Odi Assli
> Subject: [PATCH 3/3] net/mlx5: support checksum offload on Windows > > Support of the checksum offloading by checking the relevant FW capability > (csum_cap) for NIC support. > > RX supported offloads: > > DEV_RX_OFFLOAD_IPV4_CKSUM > DEV_RX_OFFLOAD_UDP_CKSUM > DEV_RX_OFFLOAD_TCP_CKSUM > > TX

Re: [dpdk-dev] [RFC PATCH] devtools: script to check meson indentation of lists

2021-04-22 Thread Burakov, Anatoly
On 22-Apr-21 10:58 AM, Bruce Richardson wrote: On Thu, Apr 22, 2021 at 10:40:37AM +0100, Burakov, Anatoly wrote: On 22-Apr-21 10:02 AM, Bruce Richardson wrote: This is a draft script developed when I was working on the whitespace rework changes, since extended a little to attempt to fix some tr

Re: [dpdk-dev] [PATCH] autotest: disable lcores_autotest on ppc

2021-04-22 Thread Luca Boccassi
On Wed, 2021-04-21 at 17:06 +0200, Thomas Monjalon wrote: > 20/04/2021 13:45, luca.bocca...@gmail.com: > > This test consistently times out on ppc64 builds. Disable it. > > It looks like hiding an issue. > Is there any specific reason for this timeout? As mentioned in the message, there's nothing

Re: [dpdk-dev] [RFC PATCH] devtools: script to check meson indentation of lists

2021-04-22 Thread Bruce Richardson
On Thu, Apr 22, 2021 at 11:21:26AM +0100, Burakov, Anatoly wrote: > On 22-Apr-21 10:58 AM, Bruce Richardson wrote: > > On Thu, Apr 22, 2021 at 10:40:37AM +0100, Burakov, Anatoly wrote: > > > On 22-Apr-21 10:02 AM, Bruce Richardson wrote: > > > > This is a draft script developed when I was working o

Re: [dpdk-dev] [PATCH v7 0/4] net/mlx5: support meter policy operations

2021-04-22 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Li Zhang > Sent: Wednesday, April 21, 2021 6:12 AM > To: dek...@nvidia.com; Ori Kam ; Slava Ovsiienko > ; Matan Azrad ; Shahaf > Shuler > Cc: dev@dpdk.org; NBU-Contact-Thomas Monjalon > ; Raslan Darawsheh ; Roni > Bar Yanai > Subject: [PATCH v7 0/4] net/

Re: [dpdk-dev] [PATCH] autotest: disable lcores_autotest on ppc

2021-04-22 Thread Thomas Monjalon
22/04/2021 12:26, Luca Boccassi: > On Wed, 2021-04-21 at 17:06 +0200, Thomas Monjalon wrote: > > 20/04/2021 13:45, luca.bocca...@gmail.com: > > > This test consistently times out on ppc64 builds. Disable it. > > > > It looks like hiding an issue. > > Is there any specific reason for this timeout?

Re: [dpdk-dev] [PATCH v2] mbuf: support eCPRI hardware packet type

2021-04-22 Thread Liu, Lingyu
> 20/04/2021 04:17, Liu, Lingyu: > > Hi Olivier, > > > > This new packet type will be used by iavf driver to map ECPRI hardware > packet. > > This is the patch which will use this new hardware packet type. > > http://patchwork.dpdk.org/project/dpdk/patch/20210420083817.10741-3- > li > > ngyu@in

Re: [dpdk-dev] [PATCH v1] raw/ifpga: fix ifpga device name format

2021-04-22 Thread Xu, Rosen
Hi, > -Original Message- > From: Huang, Wei > Sent: Thursday, April 22, 2021 16:27 > To: dev@dpdk.org; Xu, Rosen ; Zhang, Qi Z > > Cc: sta...@dpdk.org; Zhang, Tianfei ; Yigit, Ferruh > ; Huang, Wei > Subject: [PATCH v1] raw/ifpga: fix ifpga device name format > > The device name format

Re: [dpdk-dev] [PATCH] bpf: fix unreachable statement

2021-04-22 Thread Ananyev, Konstantin
> From: HongBo Zheng > > In function 'eval_jcc', judgment 'op == EBPF_JLT' occurs > twice, as a result, the corresponding second statement > cannot be accessed. > > This patch fix this problem. > > Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") > Cc: sta...@dpdk.org

[dpdk-dev] [PATCH 0/2] bugfix for tap device

2021-04-22 Thread Min Hu (Connor)
This patchset contains two bugfixes for tap device. Chengchang Tang (2): net/tap: fix log loss when state fails to be restored net/tap: fix tap interrupt vector array size drivers/net/tap/rte_eth_tap.c | 6 +- drivers/net/tap/tap_intr.c| 2 +- 2 files changed, 6 insertions(+), 2 dele

[dpdk-dev] [PATCH 1/2] net/tap: fix log loss when state fails to be restored

2021-04-22 Thread Min Hu (Connor)
From: Chengchang Tang After restoring the remote states, the return value of ioctl() is not checked. Therefore, users cannot know whether the remote state is restored successfully. This patch add log for restoring failure. Fixes: 4810d3af8343 ("net/tap: restore state of remote device when closi

[dpdk-dev] [PATCH 2/2] net/tap: fix tap interrupt vector array size

2021-04-22 Thread Min Hu (Connor)
From: Chengchang Tang The size of the current interrupt vector array is fixed to an integer. This patch will create an interrupt vector array based on the number of rxqs. Fixes: 4870a8cdd968 ("net/tap: support Rx interrupt") Cc: sta...@dpdk.org Signed-off-by: Chengchang Tang Signed-off-by: Mi

Re: [dpdk-dev] [PATCH] bpf: delete meaningless code

2021-04-22 Thread Ananyev, Konstantin
> > 在 2021/4/21 19:43, Ananyev, Konstantin 写道: > >> > >> 'rd->u.max = rd->u.max' is meaningless which should be deleted. > >> > >> This patch fixed it. > >> > >> Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") > >> Cc: sta...@dpdk.org > > > > As I remember, I did it on

Re: [dpdk-dev] [PATCH] bpf: delete meaningless code

2021-04-22 Thread Min Hu (Connor)
在 2021/4/22 19:29, Ananyev, Konstantin 写道: 在 2021/4/21 19:43, Ananyev, Konstantin 写道: 'rd->u.max = rd->u.max' is meaningless which should be deleted. This patch fixed it. Fixes: 8021917293d0 ("bpf: add extra validation for input BPF program") Cc: sta...@dpdk.org As I remember, I di

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Wang, Haiyue
> -Original Message- > From: Yigit, Ferruh > Sent: Thursday, April 22, 2021 00:21 > To: Igor Russkikh ; Pavel Belous > ; Somalapuram > Amaranath ; Ajit Khaparde ; > Somnath Kotur > ; Hemant Agrawal ; Sachin > Saxena > ; Guo, Jia ; Wang, Haiyue > ; Daley, > John ; Hyong Youb Kim ; Min H

[dpdk-dev] [PATCH 0/2] bugfix for graph

2021-04-22 Thread Min Hu (Connor)
This patchset contains two bugfixes for graph. HongBo Zheng (2): graph: fix memory leak graph: fix dereferencing null pointer lib/librte_graph/graph_stats.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) -- 2.7.4

[dpdk-dev] [PATCH 2/2] graph: fix dereferencing null pointer

2021-04-22 Thread Min Hu (Connor)
From: HongBo Zheng In function 'stats_mem_init', pointer 'stats' should be confirmed not null before memset it. Fixes: af1ae8b6a32c ("graph: implement stats") Cc: sta...@dpdk.org Signed-off-by: HongBo Zheng Signed-off-by: Min Hu (Connor) --- lib/librte_graph/graph_stats.c | 2 +- 1 file chan

[dpdk-dev] [PATCH 1/2] graph: fix memory leak

2021-04-22 Thread Min Hu (Connor)
From: HongBo Zheng Fix function 'stats_mem_populate' return without free dynamic memory referenced by 'stats'. Fixes: af1ae8b6a32c ("graph: implement stats") Cc: sta...@dpdk.org Signed-off-by: HongBo Zheng Signed-off-by: Min Hu (Connor) --- lib/librte_graph/graph_stats.c | 4 +++- 1 file cha

Re: [dpdk-dev] [PATCH] autotest: disable lcores_autotest on ppc

2021-04-22 Thread Luca Boccassi
On Thu, 2021-04-22 at 13:01 +0200, Thomas Monjalon wrote: > 22/04/2021 12:26, Luca Boccassi: > > On Wed, 2021-04-21 at 17:06 +0200, Thomas Monjalon wrote: > > > 20/04/2021 13:45, luca.bocca...@gmail.com: > > > > This test consistently times out on ppc64 builds. Disable it. > > > > > > It looks lik

Re: [dpdk-dev] [PATCH] autotest: disable lcores_autotest on ppc

2021-04-22 Thread Thomas Monjalon
22/04/2021 14:36, Luca Boccassi: > On Thu, 2021-04-22 at 13:01 +0200, Thomas Monjalon wrote: > > 22/04/2021 12:26, Luca Boccassi: > > > On Wed, 2021-04-21 at 17:06 +0200, Thomas Monjalon wrote: > > > > 20/04/2021 13:45, luca.bocca...@gmail.com: > > > > > This test consistently times out on ppc64 bu

[dpdk-dev] [PATCH v17 0/8] aarch64 -> aarch32 cross compilation support

2021-04-22 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 v17 1/8] net/sfc: fix aarch32 build

2021-04-22 Thread Juraj Linkeš
From: Ruifeng Wang The sfc PMD was enabled for aarch32 which is 32-bit mode but has cpu_family set to aarch64. As sfc support only 64-bit system, it should be disabled for aarch32. Updated meson file to disable sfc for aarch32 build. Fixes: 141d2870675a ("net/sfc: support aarch64 architecture")

[dpdk-dev] [PATCH v17 2/8] net/bnxt: fix aarch32 build

2021-04-22 Thread Juraj Linkeš
From: Ruifeng Wang NEON vector path of the PMD needs aarch64 support. But it was enabled for aarch32 build as well because aarch32 build had cpu_family set to aarch64. So build for aarch32 will fail due to unsupported intrinsics. Fix aarch32 build by updating meson file to exclude NEON vector im

[dpdk-dev] [PATCH v17 3/8] net/virtio: fix aarch32 build

2021-04-22 Thread Juraj Linkeš
NEON vector path of the PMD needs aarch64 support. But it was enabled for aarch32 build as well because aarch32 build had cpu_family set to aarch64. So build for aarch32 will fail due to unsupported intrinsics. Fix aarch32 build by updating meson file to exclude NEON vector implementation for aarc

[dpdk-dev] [PATCH v17 4/8] eal/arm: update CPU flags

2021-04-22 Thread Juraj Linkeš
There are two execution states on armv8 architecture, aarch64 and aarch32. Add PLATFORM_STR for the latter and update RTE_ARCH_* flags according to e9b97392640. Signed-off-by: Juraj Linkeš --- lib/eal/arm/include/rte_cpuflags_32.h | 1 + lib/eal/arm/rte_cpuflags.c| 10 +- 2

[dpdk-dev] [PATCH v17 5/8] build: add aarch32 meson build flags

2021-04-22 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š Acked-by: Ruifeng Wang --- config/arm/meson.build | 32 ++

[dpdk-dev] [PATCH v17 6/8] build: add aarch32 to meson cross-compilation

2021-04-22 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š Acked-by: Ruifeng Wang --- config/arm/arm32_armv8a_linux_gcc | 17 + 1 file changed, 1

[dpdk-dev] [PATCH v17 7/8] ci: add aarch64 -> aarch32 cross compiling jobs

2021-04-22 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š Reviewed-by: Ruifeng Wang Acked-by: Aaron Conole --- .ci/linux-build.sh | 7 ++- .travis.yml

[dpdk-dev] [PATCH v17 8/8] doc: add aarch32 build guidance

2021-04-22 Thread Juraj Linkeš
From: Phil Yang Add cross-compiling guidance for 32-bit aarch32 DPDK on aarch64 host. Signed-off-by: Phil Yang Acked-by: Ruifeng Wang Acked-by: Aaron Conole --- .../linux_gsg/cross_build_dpdk_for_arm64.rst | 38 +++ 1 file changed, 31 insertions(+), 7 deletions(-) diff --gi

Re: [dpdk-dev] [PATCH 1/2] net/i40e: fix veb index negative was not checked

2021-04-22 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Min Hu (Connor) > Sent: Wednesday, April 21, 2021 10:33 AM > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Xing, Beilei > ; > Guo, Jia > Subject: [dpdk-dev] [PATCH 1/2] net/i40e: fix veb index negative was not > checked > > From: Chengwen Feng

Re: [dpdk-dev] [PATCH 2/2] net/i40e: remove redundant judgment

2021-04-22 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Min Hu (Connor) > Sent: Wednesday, April 21, 2021 10:33 AM > To: dev@dpdk.org > Cc: Yigit, Ferruh ; Xing, Beilei > ; > Guo, Jia > Subject: [dpdk-dev] [PATCH 2/2] net/i40e: remove redundant judgment > > From: Chengwen Feng > > The vsi po

[dpdk-dev] [Bug 684] lcores_autotest consistently times out on ppc64el

2021-04-22 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=684 Bug ID: 684 Summary: lcores_autotest consistently times out on ppc64el Product: DPDK Version: 20.11 Hardware: POWER OS: Linux Status: UNCONFIRMED Severity: normal

Re: [dpdk-dev] [PATCH] autotest: disable lcores_autotest on ppc

2021-04-22 Thread Luca Boccassi
On Thu, 2021-04-22 at 14:43 +0200, Thomas Monjalon wrote: > 22/04/2021 14:36, Luca Boccassi: > > On Thu, 2021-04-22 at 13:01 +0200, Thomas Monjalon wrote: > > > 22/04/2021 12:26, Luca Boccassi: > > > > On Wed, 2021-04-21 at 17:06 +0200, Thomas Monjalon wrote: > > > > > 20/04/2021 13:45, luca.bocca.

[dpdk-dev] [Bug 685] ring_autotest consistently crashes with SIGBUS on armhf/armv7

2021-04-22 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=685 Bug ID: 685 Summary: ring_autotest consistently crashes with SIGBUS on armhf/armv7 Product: DPDK Version: 20.11 Hardware: ARM OS: Linux Status: UNCONFIRM

[dpdk-dev] [PATCH v1 1/4] test/power: fix check for cpu frequency

2021-04-22 Thread David Hunt
Different drivers present the current cpu core frequency in different sysfs iles. Some present it in cpuinfo_cur_freq, some in scaling_cur_freq, and some actually present it in both. This patch attempts to open one, if that fails, tries the other. Fixes: d550a8cc31f3 ("app/test: enhance power man

[dpdk-dev] [PATCH v1 3/4] test/power: fix low freq test when turbo enabled

2021-04-22 Thread David Hunt
With the intel_pstate driver and turbo enabled, indexing is slightly different to normal, so to get the test to work properly, enable turbo at the start. Fixes: ed7c51a6a680 ("app/test: vm power management") Cc: sta...@dpdk.org Signed-off-by: David Hunt --- app/test/test_power_cpufreq.c | 2 ++

[dpdk-dev] [PATCH v1 2/4] test/power: add turbo mode to freq check function

2021-04-22 Thread David Hunt
With the intel_pstate driver and turbo enabled, the top frequency in the frequency array is the P1+1, i.e. 231, whereas the frequency shown in scaling_cur_freq could be a lot higher. This patch adds a flag to the check_cur_freq function so that we can specify if a frequency is greater than exp

[dpdk-dev] [PATCH v1 4/4] test/power: fix turbo test

2021-04-22 Thread David Hunt
when turbo is enabled or disabled, the frequency is set to a low non-turbo frequency, so we need to set to the frequency expected by the test before checking. Fixes: aeaeaf5f2d62 ("test/power: add cases for turbo feature") Cc: sta...@dpdk.org Signed-off-by: David Hunt --- app/test/test_power_cp

[dpdk-dev] DPDK Release Status Meeting 22/04/2021

2021-04-22 Thread Ferruh Yigit
Release status meeting minutes {Date} = :Date: 22 April 2021 :toc: .Agenda: * Release Dates * -rc1 status * Subtrees * LTS * Opens .Participants: * Arm * Broadcom * Debian/Microsoft * Intel * Individual contributor(s) * Marvell * Nvidia * Red Hat Release Date

[dpdk-dev] [21.08 PATCH v3 1/1] power: refactor pstate sysfs handling

2021-04-22 Thread Anatoly Burakov
Currently, pstate sysfs handling code is a bit of an unmaintainable mess, which has contributed to various errors leading to bugs. Refactor the code in a way that makes it more maintainable and less error prone. Signed-off-by: Anatoly Burakov --- lib/power/meson.build| 7 + lib/pow

Re: [dpdk-dev] [PATCH] baseband/turbo_sw: fix dereference of null

2021-04-22 Thread Chautru, Nicolas
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 2:25 AM > > Return value of a function 'rte_malloc' is dereferenced without checking, > and may result in segmetation fault. > > This patch fixed it. > > Fixes: 31a7853d1ed9 ("baseband/turbo_sw: support lar

Re: [dpdk-dev] [PATCH 2/2] net/tap: fix tap interrupt vector array size

2021-04-22 Thread Stephen Hemminger
On Thu, 22 Apr 2021 19:27:14 +0800 "Min Hu (Connor)" wrote: > diff --git a/drivers/net/tap/tap_intr.c b/drivers/net/tap/tap_intr.c > index 5cf4f17..1cacc15 100644 > --- a/drivers/net/tap/tap_intr.c > +++ b/drivers/net/tap/tap_intr.c > @@ -59,7 +59,7 @@ tap_rx_intr_vec_install(struct rte_eth_dev *

Re: [dpdk-dev] [PATCH v1 2/4] test/power: add turbo mode to freq check function

2021-04-22 Thread Burakov, Anatoly
On 22-Apr-21 3:40 PM, David Hunt wrote: With the intel_pstate driver and turbo enabled, the top frequency in the frequency array is the P1+1, i.e. 231, whereas the frequency shown in scaling_cur_freq could be a lot higher. This patch adds a flag to the check_cur_freq function so that we can

Re: [dpdk-dev] [EXT] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Rasesh Mody
> From: Ferruh Yigit > Sent: Wednesday, April 21, 2021 9:51 PM > > Fixes a few different things: > * Remove 'fw_version' NULL checks, it is allowed if the 'fw_size' is > zero, 'fw_version' being NULL but 'fw_size' not zero condition checked > in ethdev layer > * Be sure required buffer size i

Re: [dpdk-dev] [PATCH v3 2/2] lib/mempool: distinguish debug counters from cache and pool

2021-04-22 Thread Dharmik Thakkar
Hi Olivier, Thank you for your comments! > On Apr 21, 2021, at 11:29 AM, Olivier Matz wrote: > > Hi Dharmik, > > Please see some comments below. > > On Mon, Apr 19, 2021 at 07:08:00PM -0500, Dharmik Thakkar wrote: >> From: Joyce Kong >> >> If cache is enabled, objects will be retrieved/put

Re: [dpdk-dev] [PATCH v3 2/2] lib/mempool: distinguish debug counters from cache and pool

2021-04-22 Thread Honnappa Nagarahalli
> >> diff --git a/lib/librte_mempool/rte_mempool.h > >> b/lib/librte_mempool/rte_mempool.h > >> index 848a19226149..0959f8a3f367 100644 > >> --- a/lib/librte_mempool/rte_mempool.h > >> +++ b/lib/librte_mempool/rte_mempool.h > >> @@ -66,12 +66,20 @@ extern "C" { > >> * A structure that stores the

Re: [dpdk-dev] [PATCH v6 05/10] app/testpmd: add clock_gettime_monotonic

2021-04-22 Thread Jie Zhou
On Tue, Apr 20, 2021 at 09:09:52AM +, Ananyev, Konstantin wrote: > > > > > > Add clock_gettime_monotonic for testpmd on Windows > > > > Signed-off-by: Jie Zhou > > Signed-off-by: Jie Zhou > > --- > > app/test-pmd/config.c | 33 - > > 1 file changed, 32 ins

Re: [dpdk-dev] [PATCH v17 2/8] net/bnxt: fix aarch32 build

2021-04-22 Thread Ajit Khaparde
On Thu, Apr 22, 2021 at 5:49 AM Juraj Linkeš wrote: > > From: Ruifeng Wang > > NEON vector path of the PMD needs aarch64 support. But it was > enabled for aarch32 build as well because aarch32 build had > cpu_family set to aarch64. So build for aarch32 will fail due > to unsupported intrinsics. >

[dpdk-dev] [PATCH v7 01/10] lib: build libraries that testpmd depends on

2021-04-22 Thread Jie Zhou
Enable building libraries that testpmd depends on Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- lib/meson.build | 7 +++ 1 file changed, 7 insertions(+) diff --git a/lib/meson.build b/lib/meson.build index c9a20f65b..2d499b238 100644 --- a/lib/meson.build +++ b/lib/meson.build @@ -76

[dpdk-dev] [PATCH v7 02/10] eal/windows: add necessary macros

2021-04-22 Thread Jie Zhou
Add required macros by testpmd on Windows in rte_os_shim.h Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- lib/eal/windows/include/rte_os_shim.h | 9 + 1 file changed, 9 insertions(+) diff --git a/lib/eal/windows/include/rte_os_shim.h b/lib/eal/windows/include/rte_os_shim.h index

[dpdk-dev] [PATCH v7 03/10] eal/windows: add device event stubs

2021-04-22 Thread Jie Zhou
Add device event stubs in eal_dev.c for Windows Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- lib/eal/windows/eal_dev.c | 33 + lib/eal/windows/meson.build | 1 + 2 files changed, 34 insertions(+) create mode 100644 lib/eal/windows/eal_dev.c diff --git

[dpdk-dev] [PATCH v7 00/10] app/testpmd: enable testpmd on Windows

2021-04-22 Thread Jie Zhou
This patchset is to enable testpmd on windows. It mainly includes: - Enable building libraries on Windows that testpmd depends on - Add necessary macros required by testpmd on Windows in rte_os_shim.h - Add device event stubs for Windows - Resolve name collisions with Windows types - Add clock_gett

[dpdk-dev] [PATCH v7 04/10] app/testpmd: resolve name collisions

2021-04-22 Thread Jie Zhou
Resolve name collisions with Windows types Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/test-pmd/cmdline_flow.c | 512 ++-- 1 file changed, 256 insertions(+), 256 deletions(-) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c inde

[dpdk-dev] [PATCH v7 08/10] app/testpmd: fix headers inclusion

2021-04-22 Thread Jie Zhou
- Include rte_os_shim.h in testpmd.h - Remove redundant headers Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/test-pmd/cmdline.c | 3 --- app/test-pmd/cmdline_flow.c | 2 -- app/test-pmd/parameters.c | 1 - app/test-pmd/testpmd.h | 1 + 4 files changed, 1 insertion(+), 6 d

[dpdk-dev] [PATCH v7 06/10] app/testpmd: fix parse_fec_mode return type

2021-04-22 Thread Jie Zhou
Fix parse_fec_mode to return fec_capa instead of mode Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/test-pmd/cmdline.c | 6 +++--- app/test-pmd/config.c | 4 ++-- app/test-pmd/testpmd.h | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/test-pmd/cmdline.c b/ap

[dpdk-dev] [PATCH v7 05/10] app/testpmd: add clock_gettime on Windows

2021-04-22 Thread Jie Zhou
Add clock_gettime for testpmd on Windows in config.h Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/test-pmd/config.c | 10 ++- app/test-pmd/config.h | 66 +++ 2 files changed, 68 insertions(+), 8 deletions(-) create mode 100644 app/test-pmd

[dpdk-dev] [PATCH v7 07/10] app/testpmd: replace POSIX specific code

2021-04-22 Thread Jie Zhou
- Make printf format OS independent - Replace htons with RTE_BE16 - Replace POSIX specific inet_aton with OS independent inet_pton - Replace sleep with rte_delay_us_sleep - Repalce random with rte_rand - #ifndef mman related code on Windows for now Signed-off-by: Jie Zhou Signed-off-by: Jie

[dpdk-dev] [PATCH v7 09/10] app/testpmd: fix unused function warnings

2021-04-22 Thread Jie Zhou
Function print_fdir_mask and print_fdir_flex_payload is only called when either i40e or ixgbe presents. Add #if defined to remove "unused function" compilation warning. Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/test-pmd/config.c | 82 +-- 1

[dpdk-dev] [PATCH v7 10/10] app/testpmd: enable building testpmd on Windows

2021-04-22 Thread Jie Zhou
From: Jie Zhou - Disable unsupported Apps on Windows - Enable building of testpmd on Windows Signed-off-by: Jie Zhou Signed-off-by: Jie Zhou --- app/meson.build| 4 app/pdump/meson.build | 6 ++ app/proc-info/meson.build | 6 ++ app/test-

[dpdk-dev] [PATCH v4 0/2] lib/mempool: add debug stats

2021-04-22 Thread Dharmik Thakkar
- Add debug counters for objects put/get to/from the common pool. - Make __MEMPOOL_STAT_ADD() more generic --- v4: - Remove cache stats v3: - Add a patch to make stat add macro generic - Remove other stat add/subtract macros - Rename counters for better understanding - Add put/get cache bulk

[dpdk-dev] [PATCH v4 2/2] lib/mempool: distinguish debug counters from cache and pool

2021-04-22 Thread Dharmik Thakkar
From: Joyce Kong If cache is enabled, objects will be retrieved/put from/to cache, subsequently from/to the common pool. Now the debug stats calculate the objects retrieved/put from/to cache and pool together, it is better to distinguish them. Signed-off-by: Joyce Kong Signed-off-by: Dharmik Th

[dpdk-dev] [PATCH v4 1/2] lib/mempool: make stats macro generic

2021-04-22 Thread Dharmik Thakkar
Make __MEMPOOL_STAT_ADD macro more generic and delete __MEMPOOL_CONTIG_BLOCKS_STAT_ADD macro Suggested-by: Olivier Matz Signed-off-by: Dharmik Thakkar Reviewed-by: Ruifeng Wang Reviewed-by: Honnappa Nagarahalli Acked-by: Olivier Matz --- lib/mempool/rte_mempool.h | 34 ---

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Jiawen Wu
On April 22, 2021 12:21 AM, Ferruh Yigit wrote: > Fixes a few different things: > * Remove 'fw_version' NULL checks, it is allowed if the 'fw_size' is > zero, 'fw_version' being NULL but 'fw_size' not zero condition checked > in ethdev layer > * Be sure required buffer size is returned if provi

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Xing, Beilei
> -Original Message- > From: Yigit, Ferruh > Sent: Thursday, April 22, 2021 12:21 AM > To: Igor Russkikh ; Pavel Belous > ; Somalapuram Amaranath > ; Ajit Khaparde ; > Somnath Kotur ; Hemant Agrawal > ; Sachin Saxena ; > Guo, Jia ; Wang, Haiyue ; > Daley, John ; Hyong Youb Kim ; > Min H

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Jiawen Wu
On April 22, 2021 12:21 AM, Ferruh Yigit wrote: > Fixes a few different things: > * Remove 'fw_version' NULL checks, it is allowed if the 'fw_size' is > zero, 'fw_version' being NULL but 'fw_size' not zero condition checked > in ethdev layer > * Be sure required buffer size is returned if provi

Re: [dpdk-dev] [PATCH] drivers/net: fix FW version get

2021-04-22 Thread Hemant Agrawal
Acked-by: Hemant Agrawal

Re: [dpdk-dev] [EXT] [PATCH 1/2] graph: fix memory leak

2021-04-22 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 5:22 PM > To: dev@dpdk.org > Cc: ferruh.yi...@intel.com; Jerin Jacob Kollanukkaran ; > Kiran Kumar Kokkilagadda > Subject: [EXT] [PATCH 1/2] graph: fix memory leak > > External Email > > ---

Re: [dpdk-dev] [EXT] [PATCH 2/2] graph: fix dereferencing null pointer

2021-04-22 Thread Kiran Kumar Kokkilagadda
> -Original Message- > From: Min Hu (Connor) > Sent: Thursday, April 22, 2021 5:22 PM > To: dev@dpdk.org > Cc: ferruh.yi...@intel.com; Jerin Jacob Kollanukkaran ; > Kiran Kumar Kokkilagadda > Subject: [EXT] [PATCH 2/2] graph: fix dereferencing null pointer > > External Email > >

[dpdk-dev] [PATCH] net/bnxt: fix to remove unused function parameters

2021-04-22 Thread Kalesh A P
From: Kalesh AP 1. Clean up unused function parameters. 2. Declare no external referenced function as static and remove their prototye from the header file. Fixes: ec77c6298301 ("net/bnxt: add stats context allocation") Fixes: 200b64ba0be8 ("net/bnxt: free statistics context") Cc: sta...@dpdk

  1   2   >