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
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
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 +
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
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
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
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
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
> -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
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
https://bugs.dpdk.org/show_bug.cgi?id=238
Thomas Monjalon (tho...@monjalon.net) changed:
What|Removed |Added
Status|CONFIRMED |RESOLVED
Resolutio
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
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(+
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
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
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
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
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
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
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 |
> -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
> -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
在 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
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 +++
> -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
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
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
> -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:
> >
> >
> >> --
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
> 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/
> 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
> 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
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
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
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
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/
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?
> 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
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
> 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
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
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
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
>
> 在 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
在 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
> -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
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
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
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
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
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
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
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")
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
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
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
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 ++
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
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
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
> -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
> -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
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
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.
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
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
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 ++
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
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
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
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
> -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
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 *
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
> 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
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
> >> 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
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
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.
>
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
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
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
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
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
- 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
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
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
- 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
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
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-
- 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
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
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 ---
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
> -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
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
Acked-by: Hemant Agrawal
> -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
>
> ---
> -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
>
>
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 - 100 of 102 matches
Mail list logo