RE: [PATCH v5 0/3] Recycle buffers from Tx to Rx

2023-04-25 Thread Feifei Wang
> -Original Message- > From: Ferruh Yigit > Sent: Wednesday, April 19, 2023 10:56 PM > To: Feifei Wang ; Qi Z Zhang > ; Mcnamara, John > Cc: dev@dpdk.org; konstantin.v.anan...@yandex.ru; > m...@smartsharesystems.com; nd > Subject: Re: [PATCH v5 0/3] Recycle buffers from Tx to Rx > > O

Re: [RFC PATCH v1 0/4] dts: add dts api docs

2023-04-25 Thread Juraj Linkeš
On Mon, Apr 3, 2023 at 11:42 AM Bruce Richardson wrote: > > On Mon, Apr 03, 2023 at 11:17:06AM +0200, Juraj Linkeš wrote: > >Hi Bruce, Thomas, > >The meson integration is kinda all over the place. I wanted to use the > >existing conf.py Sphinx config file, but I also wanted to keep the

Re: [RFC PATCH v1 0/4] dts: add dts api docs

2023-04-25 Thread Bruce Richardson
On Tue, Apr 25, 2023 at 10:20:36AM +0200, Juraj Linkeš wrote: > On Mon, Apr 3, 2023 at 11:42 AM Bruce Richardson > wrote: > > > > On Mon, Apr 03, 2023 at 11:17:06AM +0200, Juraj Linkeš wrote: > > >Hi Bruce, Thomas, > > >The meson integration is kinda all over the place. I wanted to use the

Re: [RFC PATCH v1 0/4] dts: add dts api docs

2023-04-25 Thread Juraj Linkeš
On Tue, Apr 25, 2023 at 10:44 AM Bruce Richardson wrote: > > On Tue, Apr 25, 2023 at 10:20:36AM +0200, Juraj Linkeš wrote: > > On Mon, Apr 3, 2023 at 11:42 AM Bruce Richardson > > wrote: > > > > > > On Mon, Apr 03, 2023 at 11:17:06AM +0200, Juraj Linkeš wrote: > > > >Hi Bruce, Thomas, > > > >

Re: [PATCH v2 00/17] use __atomic operations returning previous value

2023-04-25 Thread David Marchand
On Thu, Mar 2, 2023 at 5:18 PM Tyler Retzlaff wrote: > > This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with > __atomic_fetch_{add,and,or,sub,xor} intrinsics. The latter omits generation > of code that is only needed if the returned value is actually used. > > Additionally, this

RE: [PATCH v4] net/idpf: add VF support

2023-04-25 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, April 24, 2023 8:45 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v4] net/idpf: add VF support > > From: Beilei Xing > > Support VF whose device id is 0x145c. > > Signed-off-by: Beilei Xing Acked

Re: [PATCH v3 00/16] replace __atomic operations returning new value

2023-04-25 Thread David Marchand
On Mon, Mar 20, 2023 at 8:01 PM Tyler Retzlaff wrote: > > This series replaces uses of __atomic_{add,and,or,sub,xor}_fetch with > __atomic_fetch_{add,and,or,sub,xor} intrinsics where the new value > is used. > > This series is being separated from the other similar series in > an effort to reduce

Re: [PATCH v2] devtools: stop compiler atomics with no C11 equivalent

2023-04-25 Thread David Marchand
On Tue, Apr 4, 2023 at 2:21 AM Tyler Retzlaff wrote: > > Refrain from using compiler __atomic_{add,and,nand,or,sub,xor}_fetch() > to ease future adoption of C11 standard atomics. > > Signed-off-by: Tyler Retzlaff > --- > devtools/checkpatches.sh | 8 > 1 file changed, 8 insertions(+) >

Re: [RFC 0/3] introduce coroutine library

2023-04-25 Thread Mattias Rönnblom
On 2023-04-24 15:02, Chengwen Feng wrote: This patchset introduces the coroutine library which will help refactor the hns3 PMD's reset process. The hns3 single function reset process consists of the following steps: 1.stop_service(); 2.prepare_reset(); 3.delay(100ms); 4.notif

Re: [RFC PATCH v1 0/4] dts: add dts api docs

2023-04-25 Thread Bruce Richardson
On Tue, Apr 25, 2023 at 10:57:12AM +0200, Juraj Linkeš wrote: > On Tue, Apr 25, 2023 at 10:44 AM Bruce Richardson > wrote: > > > > On Tue, Apr 25, 2023 at 10:20:36AM +0200, Juraj Linkeš wrote: > > > On Mon, Apr 3, 2023 at 11:42 AM Bruce Richardson > > > wrote: > > > > > > > > On Mon, Apr 03, 2023

[PATCH 1/5] common/cnxk: fix IPsec IPv6 tunnel address byte swap

2023-04-25 Thread Rahul Bhansali
Fix the IPsec IPv6 tunnel address bytes swap during SA configurations in session create/update. Fixes: 78d03027f2c ("common/cnxk: add IPsec common code") Signed-off-by: Rahul Bhansali --- drivers/common/cnxk/cnxk_security.c | 16 1 file changed, 16 insertions(+) diff --git a/d

[PATCH 2/5] event/cnxk: set Rx offload flags

2023-04-25 Thread Rahul Bhansali
Configure event dev Rx offload flags with rx adapter start/stop callbacks. Signed-off-by: Rahul Bhansali --- drivers/event/cnxk/cnxk_eventdev_adptr.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/event/cnxk/cnxk_eventdev_adptr.c b/drivers/event/cnxk/cnxk

[PATCH 3/5] event/cnxk: fix Tx adapter data pointer

2023-04-25 Thread Rahul Bhansali
Dpdk test application crashes when event inline IPsec test ran for second time onwards. In case of event device cleanup, Tx adapter data pointer is free but not set back to NULL, which causes incomplete initialization on next run. Fixes: 6a24c7c4bcd ("event/cnxk: add Tx adapter freeing") Signed-o

[PATCH 4/5] event/cnxk: fix mempool cookies check

2023-04-25 Thread Rahul Bhansali
Fix for mempool cookies get mark to be done before meta to mbuf processing. Fixes: 7a709964d9b ("net/cnxk: use NPA batch burst free for meta buffers") Signed-off-by: Rahul Bhansali --- drivers/event/cnxk/cn10k_worker.h | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/d

[PATCH 5/5] net/cnxk: add mempool check for frag attach

2023-04-25 Thread Rahul Bhansali
Add mempool cookies get mark to all frags in case of reassembly failure. Signed-off-by: Rahul Bhansali --- drivers/net/cnxk/cn10k_rx.h | 9 + 1 file changed, 9 insertions(+) diff --git a/drivers/net/cnxk/cn10k_rx.h b/drivers/net/cnxk/cn10k_rx.h index 9fdb5565e9..cbaf994aa2 100644 --- a/

Re: [PATCH] app/testpmd: fix GTP L2 len in checksum engine

2023-04-25 Thread Singh, Aman Deep
On 4/2/2023 5:56 PM, Raslan Darawsheh wrote: GTP header can be followed by an optional 32 bits extension. But, l2_len value statically set to RTE_ETHER_GTP_HLEN which is defined to be (sizeof(struct rte_udp_hdr) + sizeof(struct rte_gtp_hdr)) This fixes the l2_len to take into conside

Re: [PATCH] ci: switch to Fedora 37

2023-04-25 Thread David Marchand
Hello Aaron, On Fri, Apr 21, 2023 at 11:06 PM Aaron Conole wrote: > David Marchand writes: > > Fedora 35 has been declared EOL in 2022/12 (see [1]). > > Fedora 36 will soon be EOL too. > > > > Move to Fedora 37. > > Fedora 37 libbpf does not support AF_XDP anymore, now provided by > > libxdp. >

RE: [PATCH v10 1/2] mempool cache: add zero-copy get and put functions

2023-04-25 Thread Morten Brørup
PING mempool maintainers - ack/review or further comments to this series? > > From: Kamalakshitha Aligeri [mailto:kamalakshitha.alig...@arm.com] > > Sent: Friday, 24 February 2023 19.11 > > > > From: = Morten Brørup > > This should be: > > From: Morten Brørup > > It could be fixed while mergi

[PATCH v2 0/4] app: introduce testgraph application

2023-04-25 Thread Vamsi Attunuru
This patch series introduces testgraph application that verifies graph architecture, it provides an infra to verify the graph & node libraries and scale the test coverage by adding newer configurations to exercise various graph topologies & graph-walk models required by the DPDK applications. Also

[PATCH v2 1/4] node: add pkt punt to kernel node

2023-04-25 Thread Vamsi Attunuru
Patch adds a node to punt the packets to kernel over a raw socket. Signed-off-by: Vamsi Attunuru --- doc/guides/prog_guide/graph_lib.rst | 10 +++ lib/node/meson.build| 1 + lib/node/punt_kernel.c | 125 lib/node/punt_kernel_priv.h

[PATCH v2 2/4] node: add a node to receive pkts from kernel

2023-04-25 Thread Vamsi Attunuru
Patch adds a node to receive packets from kernel over a raw socket. Signed-off-by: Vamsi Attunuru --- doc/guides/prog_guide/graph_lib.rst | 7 + lib/node/kernel_recv.c | 276 lib/node/kernel_recv_priv.h | 74 lib/node/meson.build

[PATCH v2 3/4] node: remove hardcoded node next details

2023-04-25 Thread Vamsi Attunuru
For ethdev_rx node, node_next details can be populated during node cloning time and same gets assigned to node context structure during node initialization. Patch removes overriding node_next details in node init(). Signed-off-by: Vamsi Attunuru --- lib/node/ethdev_rx.c | 2 -- 1 file changed,

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

2023-04-25 Thread Vamsi Attunuru
Patch adds test-graph application to validate graph and node libraries. Signed-off-by: Vamsi Attunuru --- app/meson.build|1 + app/test-graph/cmdline.c | 211 + app/test-graph/cmdline_graph.c | 294 +++ app/test-graph/cmdline_graph.h | 19 + app/test-graph/m

RE: [RFC] lib: set/get max memzone segments

2023-04-25 Thread Ophir Munk
Thank you, Tyler Retzlaff, for your comments. > > --- a/app/test/test_memzone.c > > +++ b/app/test/test_memzone.c > > @@ -871,7 +871,7 @@ test_memzone_bounded(void) static int > > test_memzone_free(void) > > { > > - const struct rte_memzone *mz[RTE_MAX_MEMZONE + 1]; > > + const struct rte_m

RE: [RFC] lib: set/get max memzone segments

2023-04-25 Thread Ophir Munk
Thank you Morten Brorup and Thomas Monjalon for the fruitful discussion. I am sending a V2 version that meets the understandings in the RFC so far. If confirmed I will send PATCH V1.

[RFC V2] lib: set/get max memzone segments

2023-04-25 Thread Ophir Munk
In current DPDK the RTE_MAX_MEMZONE definition is unconditionally hard coded as 2560. For applications requiring different values of this parameter – it is more convenient to set the max value via an rte API - rather than changing the dpdk source code per application. In many organizations, the p

[PATCH v2 1/3] event/cnxk: use LMTST for enqueue new burst

2023-04-25 Thread pbhagavatula
From: Pavan Nikhilesh Use LMTST when all events in the burst are enqueue with rte_event:op as RTE_EVENT_OP_NEW i.e. events are enqueued with the `rte_event_enqueue_new_burst` API. Signed-off-by: Pavan Nikhilesh --- v2 Changes: - Fix spell check. drivers/common/cnxk/hw/sso.h| 1 + dr

[PATCH v2 2/3] app/eventdev: use enqueue new event burst routine

2023-04-25 Thread pbhagavatula
From: Pavan Nikhilesh Use the `rte_event_enqueue_new_burst` routine to enqueue events with rte_event::op as RTE_EVENT_OP_NEW. This allows PMDs to use optimized enqueue routines. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/evt_options.c | 2 +- app/test-eventdev/test_perf_common.

[PATCH v2 3/3] app/eventdev: prevent mempool exhaustion

2023-04-25 Thread pbhagavatula
From: Pavan Nikhilesh Prevent mempool exhaustion due to elements being stuck in lcore local caches. Signed-off-by: Pavan Nikhilesh --- app/test-eventdev/test_perf_common.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/app/test-eventdev/test_perf_common.c b/ap

[PATCH v3 2/4] build: determine execution environment at config time

2023-04-25 Thread Tyler Retzlaff
Move execution environment determination and definitions to config. The RTE_EXEC_ENV macros are actually used by libraries built before EAL. Currently it does not matter that this is determined in lib/eal since the definitions are consumed before anything is built including libs built before lib/e

[PATCH v3 1/4] build: unblock the use of the MSVC compiler

2023-04-25 Thread Tyler Retzlaff
Detect when MSVC toolset is available and tweak toolchain arguments where the meson build system offers no abstraction. Signed-off-by: Tyler Retzlaff Acked-by: Bruce Richardson --- buildtools/meson.build | 10 +++--- config/meson.build | 21 ++--- config/x86/meson.build

[PATCH v3 0/4] enable use of the MSVC compiler

2023-04-25 Thread Tyler Retzlaff
Introduce minimum changes to the build system to allow use of the MSVC compiler. This change is intended to enable a phased approach to allowing DPDK to built with MSVC. Building with MSVC removes barriers to enterprise customers use of DPDK who have constraints around security policy, compliance

[PATCH v3 3/4] build: limit what is built when using MSVC compiler

2023-04-25 Thread Tyler Retzlaff
Build only kvargs and telemetry when is_ms_compiler. Signed-off-by: Tyler Retzlaff Acked-by: Bruce Richardson --- app/meson.build | 5 + drivers/meson.build | 4 lib/meson.build | 7 +++ usertools/meson.build | 4 4 files changed, 20 insertions(+) diff --git a/a

[PATCH v3 4/4] build: enable MSVC specific compiler options

2023-04-25 Thread Tyler Retzlaff
* Enable optional use of C11 atomics support. * Enable use of C23 typeof operator. * Explicitly force intrinsics when building with MSVC. * Disable MSVC C runtime checks. Signed-off-by: Tyler Retzlaff --- config/meson.build | 8 1 file changed, 8 insertions(+) diff --git a/config/meson

[PATCH] net/tap: Set locally administered bit with a fixed MAC address

2023-04-25 Thread David Christensen
When the tap driver is loaded and the user selects the optional "mac=fixed" setting, the tap driver incorrectly uses a globally unique EUI-48 identifier (as documented in RFC 7042) of 00:64:74:61:70:. Since this is a locally generated ID, the Local bit in the MAC address should be set to 1, resulti

Re: [PATCH] ci: switch to Fedora 37

2023-04-25 Thread Stephen Hemminger
On Tue, 25 Apr 2023 15:13:50 +0200 David Marchand wrote: > Hello Aaron, > > On Fri, Apr 21, 2023 at 11:06 PM Aaron Conole wrote: > > David Marchand writes: > > > Fedora 35 has been declared EOL in 2022/12 (see [1]). > > > Fedora 36 will soon be EOL too. > > > > > > Move to Fedora 37. > > > F

Re: [PATCH] net/tap: Set locally administered bit with a fixed MAC address

2023-04-25 Thread Stephen Hemminger
On Tue, 25 Apr 2023 16:58:06 -0400 David Christensen wrote: > When the tap driver is loaded and the user selects the optional > "mac=fixed" setting, the tap driver incorrectly uses a globally > unique EUI-48 identifier (as documented in RFC 7042) of > 00:64:74:61:70:. Since this is a locally gene

RE: [PATCH v2 0/5] fix Rx data buffer size

2023-04-25 Thread Zhang, Qi Z
> -Original Message- > From: Wu, Wenjun1 > Sent: Friday, April 14, 2023 1:48 PM > To: dev@dpdk.org; Zhang, Yuying ; Xing, Beilei > ; Wu, Jingjing ; Yang, > Qiming ; Zhang, Qi Z > Cc: Wu, Wenjun1 > Subject: [PATCH v2 0/5] fix Rx data buffer size > > This patch set fixes RX data buffer

RE: [PATCH v4] net/idpf: add VF support

2023-04-25 Thread Zhang, Qi Z
> -Original Message- > From: Wu, Jingjing > Sent: Tuesday, April 25, 2023 5:11 PM > To: Xing, Beilei > Cc: dev@dpdk.org > Subject: RE: [PATCH v4] net/idpf: add VF support > > > > > -Original Message- > > From: Xing, Beilei > > Sent: Monday, April 24, 2023 8:45 PM > > To: Wu

RE: [PATCH v5] common/idpf: refine capability get

2023-04-25 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Monday, April 24, 2023 4:08 PM > To: Wu, Jingjing > Cc: dev@dpdk.org; Xing, Beilei > Subject: [PATCH v5] common/idpf: refine capability get > > From: Beilei Xing > > Initialize required capability in PMD, and refine > idpf_vc_caps_g

Re: [PATCH] ci: switch to Fedora 37

2023-04-25 Thread David Marchand
On Wed, Apr 26, 2023 at 1:20 AM Stephen Hemminger wrote: > > > FYI, Fedora 38 also just got released. Perhaps that can be a candidate > > > as well, but I didn't try it out. > > > > At a first glance, gcc 13 raises some new warnings, at least for > > examples (ip-pipeline and ntb). > > We can swi

Re: [PATCH] usertools: enhance CPU layout

2023-04-25 Thread Brice Goglin
Le 21/04/2023 à 17:15, Stephen Hemminger a écrit : Better to understand more about our opinion of this script before send a v2 patch. I've used 'lstopo'. It's a great tool. To my opinion, considering there're Linux tools to show all kinds of information, the reason that DPDK has its own tool

RE: [PATCH] common/idpf: refine header file include

2023-04-25 Thread Xing, Beilei
> -Original Message- > From: Zhang, Qi Z > Sent: Tuesday, April 25, 2023 6:40 AM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH] common/idpf: refine header file include > > Replace #include with #include "filename" for local header file. > > Signed-off-by: Qi

RE: [PATCH] common/idpf: remove device stop flag

2023-04-25 Thread Xing, Beilei
> -Original Message- > From: Zhang, Qi Z > Sent: Thursday, April 20, 2023 11:57 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z ; sta...@dpdk.org > Subject: [PATCH] common/idpf: remove device stop flag > > Remove device stop flag, as we already have dev->data-dev_started. > This

RE: [PATCH] common/idpf: remove unnecessary field in vport

2023-04-25 Thread Xing, Beilei
> -Original Message- > From: Zhang, Qi Z > Sent: Friday, April 21, 2023 12:21 AM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, Qi Z > Subject: [PATCH] common/idpf: remove unnecessary field in vport > > Remove the pointer to rte_eth_dev instance, as 1. there is already a pointer > to

RE: [PATCH] common/idpf: remove unnecessary field in vport

2023-04-25 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Wednesday, April 26, 2023 2:46 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org > Subject: RE: [PATCH] common/idpf: remove unnecessary field in vport > > > > > -Original Message- > > From: Zhang, Qi Z > > Sent: Friday, April 21, 2023

RE: [PATCH] common/idpf: refine header file include

2023-04-25 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Wednesday, April 26, 2023 2:41 PM > To: Zhang, Qi Z > Cc: dev@dpdk.org > Subject: RE: [PATCH] common/idpf: refine header file include > > > > > -Original Message- > > From: Zhang, Qi Z > > Sent: Tuesday, April 25, 2023 6:40