RE: [PATCH v2 1/4] net/i40e: fix buffer leak on Rx reconfiguration

2023-09-01 Thread Zhang, Qi Z
> -Original Message- > From: Richardson, Bruce > Sent: Thursday, August 31, 2023 8:34 PM > To: dev@dpdk.org > Cc: Richardson, Bruce ; Zhang, Qi Z > ; sta...@dpdk.org > Subject: [PATCH v2 1/4] net/i40e: fix buffer leak on Rx reconfiguration > > When reconfiguring a single queue on a dev

Re: [EXT] Re: [PATCH v5 1/1] devtools: add tracepoint check in checkpatch

2023-09-01 Thread Thomas Monjalon
Let's decide in a techboard meeting whether traces are mandatory or not. 01/09/2023 04:32, Jerin Jacob: > On Thu, Aug 31, 2023 at 12:08 AM Morten Brørup > wrote: > > > > > From: Thomas Monjalon [mailto:tho...@monjalon.net] > > > Sent: Wednesday, 30 August 2023 18.24 > > > > > > 21/08/2023 16:46

Re: [PATCH v3 0/3] Release ethdev shared memory on port cleanup

2023-09-01 Thread David Marchand
On Thu, Aug 31, 2023 at 6:14 PM Thomas Monjalon wrote: > > 21/08/2023 10:58, David Marchand: > > This series was triggered after investigating why the > > eal_flags_file_prefix_autotest unit test was failing in the case of > > statically built binaries [1]). > > > > For now, I went with a simple (

[PATCH] bus/vdev: fix devargs memory leak

2023-09-01 Thread Mingjin Ye
When a device is created by a secondary process, an empty devargs is temporarily generated and bound to it. This causes the device to not be associated with the correct devargs, and the empty devargs are not released when the resource is freed. This patch fixes the issue by matching the devargs wh

RE: [PATCH 3/4] net/cpfl: introduce CPF common library

2023-09-01 Thread Qiao, Wenjing
Although it appears that 'hw' is being used, it is not actually being used. Look at the following macros which use 'hw': #define idpf_calloc(h, c, s)rte_zmalloc(NULL, (c) * (s), 0) #define idpf_free(h, m) rte_free(m) If I remove '__rte_unused', it will show -Wunused-parameter warning

[PATCH v4 01/32] net/sssnic: add build and doc infrastructure

2023-09-01 Thread wanry
From: Renyong Wan Adding minimum PMD code, doc and build infrastructure for sssnic. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed 'Title underline too short' in doc/guides/nics/sssnic.rst. * Removed error.h from including files. --- .mailmap

[PATCH v4 02/32] net/sssnic: add log type and log macros

2023-09-01 Thread wanry
From: Renyong Wan Adding log macros to print runtime messages and trace functions. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/sssnic_ethdev.c | 13 drivers/net/sssnic/sssnic_log.h| 51 ++ 2 files changed, 64 insertions

[PATCH v4 04/32] net/sssnic: initialize hardware base

2023-09-01 Thread wanry
From: Renyong Wan Initializing hardware base make hardware ready to be access. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/meson.build | 13 ++ drivers/net/sssnic/base/sssnic_hw.c | 207 +++ drivers/net/sssnic/base/sssnic_hw.h

[PATCH v4 03/32] net/sssnic: support probe and remove

2023-09-01 Thread wanry
From: Renyong Wan Register device ID for 3SNIC ethernet adapter to support PCI ethdev probe and remove. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/sssnic_hw.h | 11 + drivers/net/sssnic/sssnic_ethdev.c | 37 + 2 files

[PATCH v4 06/32] net/sssnic/base: add message definition and utility

2023-09-01 Thread wanry
From: Renyong Wan sssnic message is used to encapsulate sssnic command for transmission between driver and firmware. sssnic message is sent by driver via mail box and is received by driver via event queue. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from inc

[PATCH v4 05/32] net/sssnic: add event queue

2023-09-01 Thread wanry
From: Renyong Wan Event queue is intended for receiving event from hardware as well as mailbox response message. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v4: * Fixed dereferencing type-punned pointer. * Fixed coding style issue of COMPLEX_MACRO. --- drivers/net/sssnic/base/me

[PATCH v4 08/32] net/sssnic/base: add work queue

2023-09-01 Thread wanry
From: Renyong Wan Work queue is used to maintain hardware queue information by driver, it is usually used in control queue, rx queue and tx queue. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. --- drivers/net/sssnic/base/meson.build|

[PATCH v4 07/32] net/sssnic/base: add mailbox support

2023-09-01 Thread wanry
From: Renyong Wan Mailbox is a message channel used to communicate between PF and VF as well as driver and hardware functions. Mailbox messages are received by driver through event queue, and sent by driver through registers of mailbox. There are two transfer modes for sending mailbox message, on

[PATCH v4 10/32] net/sssnic: add dev configure and infos get

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/sssnic_api.c | 33 drivers/net/sssnic/base/sssnic_api.h | 8 +++ drivers/net/sssnic/base/sssnic_cmd.h | 14 + drivers/net/sssnic/base/sssnic_hw.c | 33 +++- drivers/ne

[PATCH v4 09/32] net/sssnic/base: add control queue

2023-09-01 Thread wanry
From: Renyong Wan Control queue is used for communication between driver and datapath code of firmware. Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed variable 'cmd_len' is uninitialized when used. --- drivers/net/sssnic/base/meson.build| 2 + drivers/net/sssnic/b

[PATCH v4 15/32] net/sssnic: support Tx queue setup and release

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. v4: * Fixed coding style issue of REPEATED_WORD. --- drivers/net/sssnic/meson.build| 1 + drivers/net/sssnic/sssnic_ethdev.c| 4 + drivers/net/sssnic/sssnic_

[PATCH v4 12/32] net/sssnic: support dev link status

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. --- doc/guides/nics/features/sssnic.ini | 1 + drivers/net/sssnic/base/sssnic_api.c| 127 drivers/net/sssnic/base/sssnic_api.h| 14 +++

[PATCH v4 11/32] net/sssnic: add dev MAC ops

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 2 + drivers/net/sssnic/base/sssnic_api.c | 174 + drivers/net/sssnic/base/sssnic_api.h | 4 + drivers/net/sssnic/base/sssnic_cmd.h | 25 +++ drivers/net/sssn

[PATCH v4 16/32] net/sssnic: support Rx queue start and stop

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/sssnic_api.c | 63 + drivers/net/sssnic/base/sssnic_api.h | 2 + drivers/net/sssnic/base/sssnic_cmd.h | 49 drivers/net/sssnic/sssnic_ethdev.c| 2 + drivers/net/sssnic/sssn

[PATCH v4 13/32] net/sssnic: support link status event

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed 'EINVAL' undeclared. --- doc/guides/nics/features/sssnic.ini| 1 + drivers/net/sssnic/base/meson.build| 1 + drivers/net/sssnic/base/sssnic_exception.c | 116 + drive

[PATCH v4 17/32] net/sssnic: support Tx queue start and stop

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 1 + drivers/net/sssnic/sssnic_ethdev.c| 2 + drivers/net/sssnic/sssnic_ethdev_tx.c | 155 ++ drivers/net/sssnic/sssnic_ethdev_tx.h | 4 + 4 fil

[PATCH v4 14/32] net/sssnic: support Rx queue setup and release

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. --- drivers/net/sssnic/meson.build| 1 + drivers/net/sssnic/sssnic_ethdev.c| 4 + drivers/net/sssnic/sssnic_ethdev.h| 2 + drivers/net/sssnic/sssnic_eth

[PATCH v4 18/32] net/sssnic: add Rx interrupt support

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 1 + drivers/net/sssnic/base/sssnic_hw.c | 14 +++ drivers/net/sssnic/base/sssnic_hw.h | 2 + drivers/net/sssnic/sssnic_ethdev.c| 2 + drivers/net/sssnic/sssnic_et

[PATCH v4 20/32] net/sssnic: support dev close and reset

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/sssnic_ethdev.c | 32 ++ 1 file changed, 32 insertions(+) diff --git a/drivers/net/sssnic/sssnic_ethdev.c b/drivers/net/sssnic/sssnic_ethdev.c index 8201a1e3c4..b59c4fd3

[PATCH v4 19/32] net/sssnic: support dev start and stop

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/sssnic_api.c | 508 ++ drivers/net/sssnic/base/sssnic_api.h | 257 + drivers/net/sssnic/base/sssnic_cmd.h | 100 + drivers/net/sssnic/base/sssnic_misc.

[PATCH v4 23/32] net/sssnic: support Rx packet burst

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed wrong format of printing uint64_t. --- doc/guides/nics/features/sssnic.ini | 2 + drivers/net/sssnic/sssnic_ethdev.c| 2 + drivers/net/sssnic/sssnic_ethdev_rx.c | 167 ++ d

[PATCH v4 22/32] net/sssnic: add basic and extended stats ops

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. --- doc/guides/nics/features/sssnic.ini | 3 + drivers/net/sssnic/base/sssnic_api.c | 154 + drivers/net/sssnic/base/sssnic_api.h | 116 +++ driver

[PATCH v4 21/32] net/sssnic: add allmulticast and promiscuous ops

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 2 + drivers/net/sssnic/sssnic_ethdev.c | 72 + 2 files changed, 74 insertions(+) diff --git a/doc/guides/nics/features/sssnic.ini b/doc/guides/nics

[PATCH v4 24/32] net/sssnic: support Tx packet burst

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed wrong format of printing uint64_t. --- doc/guides/nics/features/sssnic.ini | 5 + drivers/net/sssnic/sssnic_ethdev.c| 1 + drivers/net/sssnic/sssnic_ethdev_tx.c | 404 ++ d

[PATCH v4 26/32] net/sssnic: support dev MTU set

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/sssnic_ethdev.c | 7 +++ 1 file changed, 7 insertions(+) diff --git a/drivers/net/sssnic/sssnic_ethdev.c b/drivers/net/sssnic/sssnic_ethdev.c index a00e96bebe..b086e91d2d 100644 --- a/drivers/n

[PATCH v4 25/32] net/sssnic: add RSS support

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Removed error.h from including files. --- doc/guides/nics/features/sssnic.ini| 4 + drivers/net/sssnic/base/sssnic_api.c | 338 ++ drivers/net/sssnic/base/sssnic_api.h | 36 +++ dri

[PATCH v4 27/32] net/sssnic: support dev queue info get

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/sssnic_ethdev.c| 2 ++ drivers/net/sssnic/sssnic_ethdev_rx.c | 13 + drivers/net/sssnic/sssnic_ethdev_rx.h | 2 ++ drivers/net/sssnic/sssnic_ethdev_tx.c | 11 +++ drivers/ne

[PATCH v4 29/32] net/sssnic: add dev flow control ops

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 1 + drivers/net/sssnic/base/sssnic_api.c | 68 drivers/net/sssnic/base/sssnic_api.h | 4 ++ drivers/net/sssnic/base/sssnic_cmd.h | 11 + driver

[PATCH v4 28/32] net/sssnic: support dev firmware version get

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 1 + drivers/net/sssnic/base/sssnic_api.c | 36 drivers/net/sssnic/base/sssnic_api.h | 9 +++ drivers/net/sssnic/base/sssnic_cmd.h | 8 +++

[PATCH v4 30/32] net/sssnic: support VLAN offload and filter

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 2 + drivers/net/sssnic/base/sssnic_api.c | 34 +++ drivers/net/sssnic/base/sssnic_api.h | 1 + drivers/net/sssnic/base/sssnic_cmd.h | 9 +++ drivers/net/sssnic/sssnic_

[PATCH v4 31/32] net/sssnic: add generic flow ops

2023-09-01 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- v2: * Fixed 'mask->hdr.src_addr' will always evaluate to 'true'. * Removed error.h from including files. --- doc/guides/nics/features/sssnic.ini | 12 + drivers/net/sssnic/base/sssnic_api.c| 264 ++ driv

[PATCH v4 32/32] net/sssnic: add VF dev support

2023-09-01 Thread wanry
From: Renyong Wan In comparison to PF, VF PMD does not support the following features: 1. link up and link down set 2. promiscuous enable and disable 3. MAC stats in extend xstats Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/base/sssnic_api.c | 42

Re: DPDK community: RTE_FLOW support for P4-programmable devices

2023-09-01 Thread Jerin Jacob
On Fri, Sep 1, 2023 at 12:27 PM Ori Kam wrote: > > > > > -Original Message- > > From: Jerin Jacob > > Sent: Friday, September 1, 2023 5:07 AM > > > > On Thu, Aug 31, 2023 at 4:02 PM Ori Kam wrote: > > > > > > Hi > > > > > > >> > > > > >> 3. Everybody on the call agreed that the P4-progra

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-09-01 Thread Mattias Rönnblom
On 2023-08-18 08:09, Jerin Jacob wrote: 2) Have new library lib/event_dispatcher Should the library be named event_dispatcher, or simply dispatcher? Underscore in library isn't exactly aesthetically pleasing, and shorter is better. Also, the rte_event_* namespace is avoided altogether.

Re: [PATCH v2 1/3] eventdev: introduce event dispatcher

2023-09-01 Thread Jerin Jacob
On Fri, Sep 1, 2023 at 4:23 PM Mattias Rönnblom wrote: > > On 2023-08-18 08:09, Jerin Jacob wrote: > > > > > 2) Have new library lib/event_dispatcher > > > > Should the library be named event_dispatcher, or simply dispatcher? Looks good to me. > > Underscore in library isn't exactly aesthetical

[PATCH v2 0/8] add rte flow support for cpfl

2023-09-01 Thread Yuying Zhang
This patchset add rte_flow support for cpfl driver. It depends on the following patch set: http://patchwork.dpdk.org/project/dpdk/cover/20230816150541.144532-1-beilei.x...@intel.com/ Wenjing Qiao (4): net/cpfl: parse flow parser file in devargs net/cpfl: add flow json parser net/cpfl: add FX

[PATCH v2 1/8] net/cpfl: parse flow parser file in devargs

2023-09-01 Thread Yuying Zhang
From: Wenjing Qiao Add devargs "flow_parser" for rte_flow json parser. Signed-off-by: Wenjing Qiao --- doc/guides/nics/cpfl.rst | 32 drivers/net/cpfl/cpfl_ethdev.c | 38 +- drivers/net/cpfl/cpfl_ethdev.h | 3 +++ drivers/net/

[PATCH v2 2/8] net/cpfl: add flow json parser

2023-09-01 Thread Yuying Zhang
From: Wenjing Qiao A JSON file will be used to direct DPDK CPF PMD to parse rte_flow tokens into low level hardware resources defined in a DDP package file. Signed-off-by: Wenjing Qiao --- drivers/net/cpfl/cpfl_flow_parser.c | 1769 +++ drivers/net/cpfl/cpfl_flow_parser

[PATCH v2 3/8] net/cpfl: add FXP low level implementation

2023-09-01 Thread Yuying Zhang
From: Wenjing Qiao Add FXP low level implementation for CPFL rte_flow to create/delete rules. Signed-off-by: Wenjing Qiao --- drivers/net/cpfl/cpfl_actions.h | 858 +++ drivers/net/cpfl/cpfl_controlq.c | 379 ++ drivers/net/cpfl/cpfl_controlq.h | 51 ++

[PATCH v2 4/8] net/cpfl: setup ctrl path

2023-09-01 Thread Yuying Zhang
From: Wenjing Qiao Setup the control vport and control queue for flow offloading. Signed-off-by: Yuying Zhang Signed-off-by: Beilei Xing Signed-off-by: Qi Zhang Signed-off-by: Wenjing Qiao --- drivers/net/cpfl/cpfl_ethdev.c | 267 + drivers/net/cpfl/cpfl_ethd

[PATCH v2 5/8] net/cpfl: set up rte flow skeleton

2023-09-01 Thread Yuying Zhang
Set up the rte_flow backend skeleton. Introduce the framework to support different engines as rte_flow backend. Bridge rte_flow driver API to flow engines. Signed-off-by: Yuying Zhang --- drivers/net/cpfl/cpfl_ethdev.c | 54 ++ drivers/net/cpfl/cpfl_ethdev.h | 5 + drivers/net/cpfl/cpfl_f

[PATCH v2 6/8] net/cpfl: add fxp rule module

2023-09-01 Thread Yuying Zhang
Added low level fxp module for rule packing / creation / destroying. Signed-off-by: Yuying Zhang --- drivers/net/cpfl/cpfl_controlq.c | 424 +++ drivers/net/cpfl/cpfl_controlq.h | 24 ++ drivers/net/cpfl/cpfl_ethdev.c | 31 +++ drivers/net/cpfl/cpfl_ethdev.h |

[PATCH v2 7/8] net/cpfl: add fxp flow engine

2023-09-01 Thread Yuying Zhang
Adapt fxp low level as a flow engine. Signed-off-by: Yuying Zhang --- drivers/net/cpfl/cpfl_ethdev.h | 81 drivers/net/cpfl/cpfl_flow_engine_fxp.c | 583 drivers/net/cpfl/meson.build| 1 + 3 files changed, 665 insertions(+) create mode 10064

[PATCH v2 8/8] net/cpfl: add flow support for representor

2023-09-01 Thread Yuying Zhang
Add flow support for representor, so representor can create, destroy, validate and flush rules. Signed-off-by: Yuying Zhang --- doc/guides/nics/cpfl.rst| 13 +++ doc/guides/rel_notes/release_23_11.rst | 1 + drivers/net/cpfl/cpfl_flow_engine_fxp.c | 24 +

Re: [PATCH v8 0/3] Split logging functionality out of EAL

2023-09-01 Thread Thomas Monjalon
11/08/2023 14:59, Bruce Richardson: > On Fri, Aug 11, 2023 at 02:46:13PM +0200, David Marchand wrote: > > On Wed, Aug 9, 2023 at 3:36 PM Bruce Richardson > > wrote: > > > > > > There is a general desire to reduce the size and scope of EAL. To this > > > end, this patchset makes a (very) small step

Re: [PATCH v4 01/32] net/sssnic: add build and doc infrastructure

2023-09-01 Thread David Marchand
On Fri, Sep 1, 2023 at 11:35 AM wrote: > > From: Renyong Wan > > Adding minimum PMD code, doc and build infrastructure for sssnic. > > Signed-off-by: Steven Song > Signed-off-by: Renyong Wan > --- > v2: > * Fixed 'Title underline too short' in doc/guides/nics/sssnic.rst. > * Removed error.h fro

[PATCH] maintainers: assign meson.build for drivers with subtrees

2023-09-01 Thread David Marchand
When a new (for example, net) driver gets submitted, the CI scripts can't determine which subtree (here, dpdk-next-net) this series is associated to because the MAINTAINERS update for the new driver is part of the series. Put meson.build of the drivers classes under the responsibility of subtree m

Re: [PATCH v1] maintainers: update maintainer for DLB Driver

2023-09-01 Thread Thomas Monjalon
31/08/2023 09:51, Bruce Richardson: > On Mon, Jun 26, 2023 at 03:04:11AM -0500, Abdullah Sevincer wrote: > > Abdullah Sevincer is now maintainer for DLB Driver. > > > > Signed-off-by: Abdullah Sevincer > > --- > > MAINTAINERS | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > dif

Re: [PATCH] app/testpmd: add support for MPLS TTL

2023-09-01 Thread Singh, Aman Deep
On 8/22/2023 7:47 PM, Michael Baum wrote: Add support for matching "ttl" field in MPLS item. Signed-off-by: Michael Baum Acked-by: Aman Singh --- app/test-pmd/cmdline_flow.c | 9 + 1 file changed, 9 insertions(+) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-01 Thread Feifei Wang
> -Original Message- > From: Konstantin Ananyev > Sent: Friday, September 1, 2023 1:25 AM > To: Feifei Wang ; Konstantin Ananyev > > Cc: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > ; Yuying Zhang ; Beilei > Xing ; nd > Subject: RE: [PATCH v11 2/4] net/i40e: implement mb

Re: [RFC] cache guard

2023-09-01 Thread Thomas Monjalon
27/08/2023 10:34, Morten Brørup: > +CC Honnappa and Konstantin, Ring lib maintainers > +CC Mattias, PRNG lib maintainer > > > From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > Sent: Friday, 25 August 2023 11.24 > > > > On Fri, Aug 25, 2023 at 11:06:01AM +0200, Morten Brørup wrote: >

RE: [PATCH v8 0/3] Split logging functionality out of EAL

2023-09-01 Thread Morten Brørup
> From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Friday, 1 September 2023 13.25 > > 11/08/2023 14:59, Bruce Richardson: > > On Fri, Aug 11, 2023 at 02:46:13PM +0200, David Marchand wrote: > > > On Wed, Aug 9, 2023 at 3:36 PM Bruce Richardson > > > wrote: > > > > > > > > There is a gen

Re: [PATCH] maintainers: assign meson.build for drivers with subtrees

2023-09-01 Thread Thomas Monjalon
01/09/2023 14:03, David Marchand: > When a new (for example, net) driver gets submitted, the CI scripts > can't determine which subtree (here, dpdk-next-net) this series is > associated to because the MAINTAINERS update for the new driver is > part of the series. > > Put meson.build of the drivers

Re: [PATCH] maintainers: assign meson.build for drivers with subtrees

2023-09-01 Thread David Marchand
On Fri, Sep 1, 2023 at 2:28 PM Thomas Monjalon wrote: > > 01/09/2023 14:03, David Marchand: > > When a new (for example, net) driver gets submitted, the CI scripts > > can't determine which subtree (here, dpdk-next-net) this series is > > associated to because the MAINTAINERS update for the new dr

Re: [PATCH v1] maintainers: take maintainership of AMD axgbe driver

2023-09-01 Thread Thomas Monjalon
> Chandu is not working on dpdk axgbe driver anymore. > > Signed-off-by: Selwin Sebastian > --- > AMD axgbe > -M: Chandubabu Namburu > +M: Selwin Sebastian > > Acked-by: Chandubabu Namburu Applied, thanks.

[PATCH v2] maintainers: assign meson.build for drivers with subtrees

2023-09-01 Thread David Marchand
When a new (for example, net) driver gets submitted, the CI scripts can't determine which subtree (here, dpdk-next-net) this series is associated to because the MAINTAINERS update for the new driver is part of the series. Put meson.build of the drivers classes under the responsibility of subtree m

Re: [PATCH v2] maintainers: assign meson.build for drivers with subtrees

2023-09-01 Thread Thomas Monjalon
01/09/2023 14:41, David Marchand: > When a new (for example, net) driver gets submitted, the CI scripts > can't determine which subtree (here, dpdk-next-net) this series is > associated to because the MAINTAINERS update for the new driver is > part of the series. > > Put meson.build of the drivers

quick thread in DLB2

2023-09-01 Thread Thomas Monjalon
Hello Abdullah, In the DLB2 code, I see a thread is created for a single operation: In drivers/event/dlb2/pf/base/dlb2_resource.c pthread_create(&pthread, NULL, &dlb2_pp_profile_func, &dlb2_thread_data[i]); and just after: pthread_join(pthread, NULL); Can we avoid creating this thread? I guess no

RE: [PATCH v11 2/4] net/i40e: implement mbufs recycle mode

2023-09-01 Thread Konstantin Ananyev
> > > > > > > > Define specific function implementation for i40e driver. > > > > Currently, mbufs recycle mode can support 128bit vector path and avx2 > > path. > > > > And can be enabled both in fast free and no fast free mode. > > > > > > > > Suggested-by: Honnappa Nagarahalli > > > > Signed-

[PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-01 Thread Bruce Richardson
When the user passes a list of desired libraries to build via the "enable_libs" option, the expectation is that those libraries should be part of the build. However, if those libs have either external or internal dependencies, they still may be silently disabled, for example: running "meson setup -

[PATCH 2/2] build: fail if explicitly requested driver is unbuildable

2023-09-01 Thread Bruce Richardson
When the user passes a list of desired drivers to build via the "enable_drivers" option, the expectation is that those drivers should be part of the build. However, if those drivers have either external or internal dependencies, they still may be silently disabled, for example: running "meson setup

Re: [PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-01 Thread David Marchand
On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson wrote: > > When the user passes a list of desired libraries to build via the > "enable_libs" option, the expectation is that those libraries should be > part of the build. However, if those libs have either external or > internal dependencies, they s

Re: [PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-01 Thread David Marchand
On Fri, Sep 1, 2023 at 4:29 PM David Marchand wrote: > > On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson > wrote: > > > > When the user passes a list of desired libraries to build via the > > "enable_libs" option, the expectation is that those libraries should be > > part of the build. However, i

Re: [PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-01 Thread Bruce Richardson
On Fri, Sep 01, 2023 at 04:30:56PM +0200, David Marchand wrote: > On Fri, Sep 1, 2023 at 4:29 PM David Marchand > wrote: > > > > On Fri, Sep 1, 2023 at 4:23 PM Bruce Richardson > > wrote: > > > > > > When the user passes a list of desired libraries to build via the > > > "enable_libs" option, th

Re: [PATCH 1/3] vhost: fix build for powerpc

2023-09-01 Thread Bruce Richardson
+PPC maintainer On Thu, Aug 31, 2023 at 01:10:56PM +0100, Bruce Richardson wrote: > When building on Ubuntu using the packaged powerpc compiler[1], a > warning is issued about the print format of the __u64 values. > > ../../lib/vhost/vduse.c: In function ‘vduse_vring_setup’: > ../../lib/vhost/vho

RE: [PATCH 1/2] build: fail if explicitly requested lib is unbuildable

2023-09-01 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Friday, 1 September 2023 16.24 > > When the user passes a list of desired libraries to build via the > "enable_libs" option, the expectation is that those libraries should be > part of the build. However, if those libs have eithe

RE: [PATCH 2/2] build: fail if explicitly requested driver is unbuildable

2023-09-01 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > Sent: Friday, 1 September 2023 16.24 > > When the user passes a list of desired drivers to build via the > "enable_drivers" option, the expectation is that those drivers should be > part of the build. However, if those drivers have eit

Re: [PATCH v2 3/6] baseband/fpga_5gnr_fec: renaming for consistency

2023-09-01 Thread Maxime Coquelin
On 5/25/23 20:28, Hernan Vargas wrote: Rename generic functions and constants using the FPGA 5GNR prefix naming to prepare for code reuse for new FPGA implementation variant. No functional impact. Signed-off-by: Hernan Vargas --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 117 +++--

Re: [PATCH v2 4/6] baseband/fpga_5gnr_fec: add Vista Creek variant

2023-09-01 Thread Maxime Coquelin
On 5/25/23 20:28, Hernan Vargas wrote: Create a new file vc_5gnr_pmd.h to store structures and macros specific to Vista Creek 5G FPGA implementation and rename functions specific to the Vista Creek variant. Signed-off-by: Hernan Vargas --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 18

Re: [RFC] cache guard

2023-09-01 Thread Mattias Rönnblom
On 2023-09-01 14:26, Thomas Monjalon wrote: 27/08/2023 10:34, Morten Brørup: +CC Honnappa and Konstantin, Ring lib maintainers +CC Mattias, PRNG lib maintainer From: Bruce Richardson [mailto:bruce.richard...@intel.com] Sent: Friday, 25 August 2023 11.24 On Fri, Aug 25, 2023 at 11:06:01AM +020

Re: [RFC PATCH v4 4/4] dts: format docstrigs to google format

2023-09-01 Thread Jeremy Spewock
On Thu, Aug 31, 2023 at 6:04 AM Juraj Linkeš wrote: > WIP: only one module is reformatted to serve as a demonstration. > > The google format is documented here [0]. > > [0]: https://google.github.io/styleguide/pyguide.html > > Signed-off-by: Juraj Linkeš > --- > dts/framework/testbed_model/node

Re: [PATCH v2 5/6] baseband/fpga_5gnr_fec: add AGX100 support

2023-09-01 Thread Maxime Coquelin
On 5/25/23 20:28, Hernan Vargas wrote: Add support for new FPGA variant AGX100 (on Arrow Creek N6000). Signed-off-by: Hernan Vargas --- doc/guides/bbdevs/fpga_5gnr_fec.rst | 72 +- drivers/baseband/fpga_5gnr_fec/agx100_pmd.h | 273 .../baseband/fpga_5gnr_fec/fpga_5gnr

Re: [PATCH v2 6/6] baseband/fpga_5gnr_fec: cosmetic comment changes

2023-09-01 Thread Maxime Coquelin
On 5/25/23 20:28, Hernan Vargas wrote: Cosmetic changes for comments. No functional impact. Signed-off-by: Hernan Vargas --- .../baseband/fpga_5gnr_fec/fpga_5gnr_fec.h| 93 ++-- .../fpga_5gnr_fec/rte_fpga_5gnr_fec.c | 398 +- .../fpga_5gnr_fec/rte_pmd_fpga_5g

RE: [RFC] cache guard

2023-09-01 Thread Morten Brørup
> From: Mattias Rönnblom [mailto:hof...@lysator.liu.se] > Sent: Friday, 1 September 2023 18.58 > > On 2023-09-01 14:26, Thomas Monjalon wrote: > > 27/08/2023 10:34, Morten Brørup: > >> +CC Honnappa and Konstantin, Ring lib maintainers > >> +CC Mattias, PRNG lib maintainer > >> > >>> From: Bruce Ri