Re: [PATCH] tap: fix build of tap_bpf_program

2023-07-20 Thread Ferruh Yigit
On 7/19/2023 5:12 PM, Stephen Hemminger wrote: > On Wed, 19 Jul 2023 11:03:36 +0100 > Ferruh Yigit wrote: > >> On 7/19/2023 11:00 AM, Ferruh Yigit wrote: >>> On 7/17/2023 8:15 PM, Stephen Hemminger wrote: The tap_bpf_program.c is not built as part of normal DPDK EAL environment. It is

Re: [PATCH v2] usertools: add tool to generate balanced rss traffic flows

2023-07-20 Thread Robin Jarry
Hi Thomas, Thomas Monjalon, Jul 20, 2023 at 06:50: > Applied, thanks. Thanks! I think there's a byte order issue with the i40e rss key. If I submit a fix today, can it make it for GA? > You have great skills for user tools in Python, > and this file as other ones have no official maintainer: >

Re: [dpdk-dev] [PATCH v1] doc: process for new library approval in principle

2023-07-20 Thread Ferruh Yigit
On 5/18/2023 2:21 PM, jer...@marvell.com wrote: > From: Jerin Jacob > > Based on techboard meeting[1] action item, defining the process for a > new library approval in principle. > > [1] > https://mails.dpdk.org/archives/dev/2023-January/260035.html > > Signed-off-by: Jerin Jacob > --- > RFC..

[PATCH] usertools/rss: fix byte order of the default i40e key

2023-07-20 Thread Robin Jarry
The key is represented as uint32 words in the driver source code but it is actually stored as little endian in the NIC registers. Fix the byte ordering in the python script. Fixes: 106a231ae528 ("usertools: add tool to generate balanced rss traffic flows") Reported-by: Abhiram R N Signed-off-by

Re: [PATCH] doc: postpone deprecation of pipeline legacy API

2023-07-20 Thread Radu Nicolau
On 19-Jul-23 4:12 PM, Cristian Dumitrescu wrote: Postpone the deprecation of the legacy pipeline, table and port library API and gradual stabilization of the new API. Signed-off-by: Cristian Dumitrescu --- Acked-by: Radu Nicolau

Re: [PATCH v3] build: announce requirement for C11

2023-07-20 Thread Bruce Richardson
On Wed, May 17, 2023 at 06:34:00PM +0100, Bruce Richardson wrote: > Add a deprecation notice informing users that we will require a C11 > compiler from 23.11 release onwards. This requirement was agreed by > technical board to enable use of newer C language features, e.g. > standard atomics. [1] >

[PATCH] net/ngbe: fix RSS offload capability

2023-07-20 Thread Jiawen Wu
Fix missed RTE_ETH_RX_OFFLOAD_RSS_HASH flag in ngbe_get_rx_port_offloads(). Fixes: 0779d7f61991 ("net/ngbe: support RSS hash") Cc: sta...@dpdk.org Signed-off-by: Jiawen Wu --- drivers/net/ngbe/ngbe_rxtx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/net/ngbe/ngbe_rxtx.c b/drivers

Re: [PATCH] tap: fix build of tap_bpf_program

2023-07-20 Thread Ferruh Yigit
On 7/20/2023 8:45 AM, Ferruh Yigit wrote: > On 7/19/2023 5:12 PM, Stephen Hemminger wrote: >> On Wed, 19 Jul 2023 11:03:36 +0100 >> Ferruh Yigit wrote: >> >>> On 7/19/2023 11:00 AM, Ferruh Yigit wrote: On 7/17/2023 8:15 PM, Stephen Hemminger wrote: > The tap_bpf_program.c is not built a

Re: [PATCH v11 1/1] dts: add smoke tests

2023-07-20 Thread Juraj Linkeš
All good now from my side. Reviewed-by: Juraj Linkeš On Wed, Jul 19, 2023 at 10:18 PM wrote: > > From: Jeremy Spewock > > Adds a new test suite for running smoke tests that verify general > configuration aspects of the system under test. If any of these tests > fail, the DTS execution terminat

[PATCH v19 5/6] memarea: support dump API

2023-07-20 Thread Chengwen Feng
This patch supports rte_memarea_dump() API which could be used for debug. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup Acked-by: Anatoly Burakov --- doc/guides/prog_guide/memarea_lib.rst | 3 + lib/memarea/rte_memarea.c | 100 +++

[PATCH v19 3/6] memarea: support alloc and free API

2023-07-20 Thread Chengwen Feng
This patch supports rte_memarea_alloc() and rte_memarea_free() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup Acked-by: Anatoly Burakov --- doc/guides/prog_guide/memarea_lib.rst | 6 + lib/memarea/memarea_private.h | 10 ++ lib/memarea/rte_memar

[PATCH v19 2/6] test/memarea: support memarea test

2023-07-20 Thread Chengwen Feng
This patch supports memarea test of rte_memarea_create() and rte_memarea_destroy() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup Acked-by: Anatoly Burakov --- MAINTAINERS | 1 + app/test/meson.build| 2 + app/test/test_memarea.c | 166

[PATCH v19 1/6] memarea: introduce memarea library

2023-07-20 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. This patch provides rte_memarea_create() and rte_memarea_destroy() API. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup Acked-by: Anatoly Burakov --- MAINTAINERS

[PATCH v19 6/6] test/memarea: support dump API test

2023-07-20 Thread Chengwen Feng
This patch supports rte_memarea_dump() API test. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup --- app/test/test_memarea.c | 52 + 1 file changed, 52 insertions(+) diff --git a/app/test/test_memarea.c b/app/test/test_mem

[PATCH v19 0/6] introduce memarea library

2023-07-20 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. The main features are as follows: - The memory region can be initialized from the following memory sources: 1. HEAP: e.g. invoke rte_malloc_socket. 2. LIBC: e.g. invoke posix_memalign. 3. Another me

[PATCH v19 4/6] test/memarea: support alloc and free API test

2023-07-20 Thread Chengwen Feng
This patch supports rte_memarea_alloc() and rte_memarea_free() API test. Signed-off-by: Chengwen Feng Reviewed-by: Dongdong Liu Acked-by: Morten Brørup Acked-by: Anatoly Burakov --- app/test/test_memarea.c | 222 +++- 1 file changed, 221 insertions(+), 1 de

Re: [PATCH v16 6/6] test/memarea: support dump API test

2023-07-20 Thread fengchengwen
Hi Anatoly, On 2023/7/19 20:09, Burakov, Anatoly wrote: > On 7/10/2023 7:49 AM, Chengwen Feng wrote: >> This patch supports rte_memarea_dump() API test. >> >> Signed-off-by: Chengwen Feng >> Reviewed-by: Dongdong Liu >> Acked-by: Morten Brørup >> --- >>   app/test/test_memarea.c | 40 ++

[PATCH v1] examples/l3fwd: relax the RSS/Offload requirement

2023-07-20 Thread Trevor Tao
Now the port Rx mq_mode had been set to RTE_ETH_MQ_RX_RSS, and offload mode set to RTE_ETH_RX_OFFLOAD_CHECKSUM by default, but some hardware and/or virtual interface does not support the RSS and offload mode presupposed, e.g., some virtio interfaces in the cloud don't support RSS and may only partl

[POC v2] net/iavf: support no data path polling mode

2023-07-20 Thread Mingjin Ye
Introduces a devargs "no-poll-on-link-down" in iavf PMD. When this flag is set, the PMD switches to no-poll mode when the link state is down (rx/tx burst returns to 0 immediately). When the link state returns to normal, PMD switches to normal rx/tx burst state. Signed-off-by: Mingjin Ye --- V2: A

[PATCH] app/dma-perf: fix dma mapping access overruns

2023-07-20 Thread Mingjin Ye
The dma map supports a maximum of `MAX_WORKER_NB=128`. Initializing the dma map allows a maximum support of `MAX_WORKER_NB=256`. This results in memory access out-of-bounds when the actual dma entries exceed MAX_WORKER_NB. This patch talks about MAX_WORKER_NB and MAX_WORKER_NB size set to 256 to f

RE: [PATCH] doc: postpone deprecation of pipeline legacy API

2023-07-20 Thread Dumitrescu, Cristian
> -Original Message- > From: Richardson, Bruce > Sent: Wednesday, July 19, 2023 5:09 PM > To: Dumitrescu, Cristian > Cc: dev@dpdk.org; Nicolau, Radu ; R, > Kamalakannan ; Suresh Narayane, Harshad > > Subject: Re: [PATCH] doc: postpone deprecation of pipeline legacy API > > On Wed, Ju

[PATCH v1] crypto/ipsec_mb: add digest encrypted feature

2023-07-20 Thread Brian Dooley
AESNI_MB PMD does not support Digest Encrypted. This patch adds support for this feature. Signed-off-by: Brian Dooley --- drivers/crypto/ipsec_mb/pmd_aesni_mb.c | 107 +++-- 1 file changed, 102 insertions(+), 5 deletions(-) diff --git a/drivers/crypto/ipsec_mb/pmd_aesni_mb.c

Re: [PATCH v3] build: announce requirement for C11

2023-07-20 Thread Jerin Jacob
On Thu, Jul 20, 2023 at 1:52 PM Bruce Richardson wrote: > > On Wed, May 17, 2023 at 06:34:00PM +0100, Bruce Richardson wrote: > > Add a deprecation notice informing users that we will require a C11 > > compiler from 23.11 release onwards. This requirement was agreed by > > technical board to enabl

Re: [PATCH v3 2/2] doc/contributing: guidelines for logging, tracing and telemetry

2023-07-20 Thread Jerin Jacob
On Wed, Jul 19, 2023 at 6:38 AM lihuisong (C) wrote: > > > 在 2023/7/19 0:48, Bruce Richardson 写道: > > As discussed by DPDK technical board [1], our contributor guide should > > include some details as to when to use logging vs tracing vs telemetry > > to provide the end user with information about

[PATCH v4 0/2] Improve docs on getting info on running process

2023-07-20 Thread Bruce Richardson
Add details to our documentation on how to register logging for a component. Also provide guidelines on when to use logs vs tracing vs telemetry. V4: Added note to patch 1 saying not to use the old static logging method V3: Moved new doc section on runtime info, and other minor changes flagged

[PATCH v4 1/2] doc/contributing: provide coding details for dynamic logging

2023-07-20 Thread Bruce Richardson
While the section on dynamic logging in the contributors guide covered the details of the logging naming scheme, it failed to cover exactly how the component developer, i.e. the contributor, could actually use dynamic logging in their component. Fix this by splitting the details of the naming sche

[PATCH v4 2/2] doc/contributing: guidelines for logging, tracing and telemetry

2023-07-20 Thread Bruce Richardson
As discussed by DPDK technical board [1], our contributor guide should include some details as to when to use logging vs tracing vs telemetry to provide the end user with information about the running process and the DPDK libraries it uses. [1] https://mails.dpdk.org/archives/dev/2023-March/265204

Re: [PATCH v4 0/2] Improve docs on getting info on running process

2023-07-20 Thread Ferruh Yigit
On 7/20/2023 12:05 PM, Bruce Richardson wrote: > Add details to our documentation on how to register logging for a > component. Also provide guidelines on when to use logs vs tracing > vs telemetry. > > V4: Added note to patch 1 saying not to use the old static logging method > > V3: Moved new do

[PATCH] test: eal: update base-virtaddr parameter test

2023-07-20 Thread Aaron Conole
When 97435d7906 ("net/bnxt: update Truflow core") was applied, it introduced a number of static variables. These ended up filling the lower address space enough that on some platforms, the min addr for heap address to start was not within the range specified by base-virtaddr. This is dependent on

[PATCH] examples/ipsec-secgw: add security capabilities mapping

2023-07-20 Thread Akhil Goyal
Currently the cryptodev queue pair mapping was done only on lookaside crypto capabilities. But device capabilities for lookaside crypto and lookaside proto may be different. Hence, mappings are also added for rte_security_capabilities of cryptodev. Signed-off-by: Akhil Goyal --- examples/ipsec-s

Re: [PATCH] test: eal: update base-virtaddr parameter test

2023-07-20 Thread Ajit Khaparde
On Thu, Jul 20, 2023 at 6:09 AM Aaron Conole wrote: > > When 97435d7906 ("net/bnxt: update Truflow core") was applied, it introduced > a number of static variables. These ended up filling the lower address space > enough that on some platforms, the min addr for heap address to start was > not wit

Re: [PATCH v2] usertools: add tool to generate balanced rss traffic flows

2023-07-20 Thread Thomas Monjalon
20/07/2023 10:00, Robin Jarry: > Hi Thomas, > > Thomas Monjalon, Jul 20, 2023 at 06:50: > > Applied, thanks. > > Thanks! I think there's a byte order issue with the i40e rss key. If > I submit a fix today, can it make it for GA? Yes you can. > > You have great skills for user tools in Python, >

Re: [PATCH v3 6/6] dts: add basic UDP test case

2023-07-20 Thread Jeremy Spewock
Acked-by: Jeremy Spewock

RE: [EXT] Re: [PATCH v2 4/4] app: add testgraph application

2023-07-20 Thread Rakesh Kudurumalla
> -Original Message- > From: Vamsi Krishna Attunuru > Sent: Thursday, June 1, 2023 8:14 AM > To: Jerin Jacob > Cc: Yan, Zhirun ; dev@dpdk.org; > tho...@monjalon.net; Jerin Jacob Kollanukkaran ; > Nithin Kumar Dabilpuram ; Liang, Cunming > ; Wang, Haiyue ; Sunil > Kumar Kori > Subject:

Re: [PATCH] mailmap: update contributor entry

2023-07-20 Thread Ivan Malov
PING On Tue, 13 Jun 2023, Ivan Malov wrote: Signed-off-by: Ivan Malov --- .mailmap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mailmap b/.mailmap index 8e3940a253..d97cdc670c 100644 --- a/.mailmap +++ b/.mailmap @@ -105,7 +105,7 @@ Andriy Berestovskyy Andrzej Ostrus

Community CI Meeting Minutes - July 20, 2023

2023-07-20 Thread Patrick Robb
July 20, 2023 # Attendees 1. Patrick Robb 2. Alex Agerholm 3. Christian Muf 4. Juraj Linkeš 5. Danylo Vodopianov 6. Jeremy Spewock 7. M Kostenok 8. Lincoln Lavoie 9. Manit Mahajan 10. Alex Kholodnyi 11. Aaron Conole 12. Thomas Mon

[PATCH v3] MAINTAINERS: add status information

2023-07-20 Thread Stephen Hemminger
Add a new field S: which indicates the status of support for individual sub-trees. Almost everything is marked as supported but components without any maintainer are listed as Orphan. Signed-off-by: Stephen Hemminger --- v3 - add back Makefile mark vdev_netvsc as Odd Fixes MAINTAINERS | 26

[PATCH v2 ] tap: fix build of TAP BPF program

2023-07-20 Thread Stephen Hemminger
The code was depending on old versions of headers from iproute2. Include those headers here so that build works. The standalone build was also broken because by commit ef5baf3486e0 ("replace packed attributes") which introduced __rte_packed into this code. This patch does not address several othe

[PATCH] net/mana: fix stats for txq bytes sent

2023-07-20 Thread longli
From: Long Li Bytes should be calculated using the packet length, not the mbuf segment data length. Fixes: 517ed6e2d590 ("net/mana: add basic driver with build environment") Cc: sta...@dpdk.org Signed-off-by: Long Li --- drivers/net/mana/tx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

[PATCH v3] tap: fix build of TAP BPF program

2023-07-20 Thread Stephen Hemminger
Move the BPF program related code into a subdirectory. And add a Makefile for building it. The code was depending on old versions of headers from iproute2. Include those headers here so that build works. The standalone build was also broken because by commit ef5baf3486e0 ("replace packed attribut

[PATCH v1] test/graph: fix unused return value

2023-07-20 Thread Zhirun Yan
Return value stored in "ret" but it may be overwritten before use. Add goto to return when meet an error. Issue reported by coverity scan. Coverity issue: 395532 Fixes: 15f483feec65 ("graph: fix model check in core binding") Signed-off-by: Zhirun Yan --- app/test/test_graph.c | 11 +++

[PATCH] bus/dpaa: fix outside array bounds error with GCC v13

2023-07-20 Thread Gagandeep Singh
when RTE_ENABLE_ASSERT is enable, DPAA driver is doing wrong NULL check on frame queue which allows the code to have access to NULL address. GCC v13 is giving array bounds error if code is accessing any memory region less than 4KB. This patch fixes this issue by adding proper NULL checks on frame q

[PATCH] net/i40e: fix FDIR Rxq receives broadcast packets

2023-07-20 Thread beilei . xing
From: Beilei Xing FDIR Rxq is excepted to only reveive FDIR programming status, won't receive broadcast packets. Fixes: a778a1fa2e4e ("i40e: set up and initialize flow director") Cc: sta...@dpdk.org Signed-off-by: Beilei Xing --- drivers/net/i40e/i40e_ethdev.c | 16 +--- 1 file ch

[PATCH v2] net/i40e: fix FDIR Rxq receives broadcast packets

2023-07-20 Thread beilei . xing
From: Beilei Xing FDIR Rxq is excepted to only receive FDIR programming status, won't receive broadcast packets. Fixes: a778a1fa2e4e ("i40e: set up and initialize flow director") Cc: sta...@dpdk.org Signed-off-by: Beilei Xing --- V2 change: - Fix typo in commit log. drivers/net/i40e/i40e_et

[PATCH v2] doc: update release notes for Intel IPU

2023-07-20 Thread beilei . xing
From: Beilei Xing Update release notes for Intel IPU new features: - Support VF whose device id is 0x145c. - Support hairpin queue. Fixes: 32bcd47e16fe ("net/idpf: support VF") Fixes: 1ec8064832db ("net/cpfl: add haipin queue group during vport init") Signed-off-by: Beilei Xing Acked-by: Jin

RE: [PATCH v2] net/i40e: fix FDIR Rxq receives broadcast packets

2023-07-20 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, July 21, 2023 1:35 PM > To: Wu, Jingjing ; Zhang, Yuying > > Cc: dev@dpdk.org; Xing, Beilei ; sta...@dpdk.org > Subject: [PATCH v2] net/i40e: fix FDIR Rxq receives broadcast packets > > From: Beilei Xing > > FDIR Rxq is exce

Re: [EXT] Re: [PATCH v2 4/4] app: add testgraph application

2023-07-20 Thread Jerin Jacob
On Thu, Jul 20, 2023 at 9:22 PM Rakesh Kudurumalla wrote: > > > > > -Original Message- > > From: Vamsi Krishna Attunuru > > Sent: Thursday, June 1, 2023 8:14 AM > > To: Jerin Jacob > > Cc: Yan, Zhirun ; dev@dpdk.org; > > tho...@monjalon.net; Jerin Jacob Kollanukkaran ; > > Nithin Kumar D