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

2023-08-29 Thread Jerin Jacob
On Mon, Aug 28, 2023 at 9:43 PM Dumitrescu, Cristian wrote: > > > > We just set up a community call for next week to discuss in more details > > > the > > > proposal for RTE_FLOW extensions to support P4-programmable devices > > > https://mails.dpdk.org/archives/dev/2023-August/273703.html and lo

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

2023-08-29 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 --- .mailmap| 5 +- MAINTAINERS | 8 doc/guides/nics/features/sssnic.ini | 9 doc/guides/n

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

2023-08-29 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 03/32] net/sssnic: support probe and remove

2023-08-29 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 05/32] net/sssnic: add event queue

2023-08-29 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 --- drivers/net/sssnic/base/meson.build | 1 + drivers/net/sssnic/base/sssnic_eventq.c | 426 d

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

2023-08-29 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 --- drivers/net/sssnic/base/meson

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

2023-08-29 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 --- drivers/net/sssnic/base/meson.build| 2 + drivers/net/sssnic/base/sssnic_api.c | 102 + drivers/net/sssnic/base/sssnic_

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

2023-08-29 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 12/32] net/sssnic: support dev link status

2023-08-29 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| 127 drivers/net/sssnic/base/sssnic_api.h| 14 +++ drivers/net/sssnic/base/sssnic_cmd.h| 37

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

2023-08-29 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/meson.build| 1 + drivers/net/sssnic/base/sssnic_exception.c | 115 + drivers/net/sssnic/base/sssnic_exception.h

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

2023-08-29 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/meson.build| 1 + drivers/net/sssnic/sssnic_ethdev.c| 4 + drivers/net/sssnic/sssnic_ethdev.h| 2 + drivers/net/sssnic/sssnic_ethdev_rx.c | 421 ++ drive

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

2023-08-29 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 18/32] net/sssnic: add Rx interrupt support

2023-08-29 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 19/32] net/sssnic: support dev start and stop

2023-08-29 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 20/32] net/sssnic: support dev close and reset

2023-08-29 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 f8a0a1b602..d1dfaeec

RE: [PATCH v3] bus/pci: fix legacy device IO port map in secondary process

2023-08-29 Thread Ma, WenwuX
> -Original Message- > From: Gupta, Nipun > Sent: 2023年8月28日 14:07 > To: Ma, WenwuX ; dev@dpdk.org > Cc: david.march...@redhat.com; maxime.coque...@redhat.com; Xia, > Chenbo ; Li, Miao ; Ling, WeiX > ; sta...@dpdk.org > Subject: Re: [PATCH v3] bus/pci: fix legacy device IO port map in se

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

2023-08-29 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| 2 + drivers/net/sssnic/sssnic_ethdev_rx.c | 167 ++ drivers/net/sssnic/sssnic_ethdev_rx.h | 2 + 4 fil

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

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

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

2023-08-29 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini| 4 + drivers/net/sssnic/base/sssnic_api.c | 338 ++ drivers/net/sssnic/base/sssnic_api.h | 36 +++ drivers/net/sssnic/base/sssnic_cmd.h | 58

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

2023-08-29 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 26/32] net/sssnic: support dev MTU set

2023-08-29 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 c12747f35e..4ff9d30f1f 100644 --- a/drivers/n

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

2023-08-29 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 28/32] net/sssnic: support dev firmware version get

2023-08-29 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 29/32] net/sssnic: add dev flow control ops

2023-08-29 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 31/32] net/sssnic: add generic flow ops

2023-08-29 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 12 + drivers/net/sssnic/base/sssnic_api.c| 264 ++ drivers/net/sssnic/base/sssnic_api.h| 22 + drivers/net/sssnic/base/sssnic_cmd.h| 71 ++ drivers/net/

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

2023-08-29 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

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

2023-08-29 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- drivers/net/sssnic/meson.build| 1 + drivers/net/sssnic/sssnic_ethdev.c| 4 + drivers/net/sssnic/sssnic_ethdev.h| 1 + drivers/net/sssnic/sssnic_ethdev_tx.c | 355 ++ drive

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

2023-08-29 Thread wanry
From: Renyong Wan Signed-off-by: Steven Song Signed-off-by: Renyong Wan --- doc/guides/nics/features/sssnic.ini | 3 + drivers/net/sssnic/base/sssnic_api.c | 154 + drivers/net/sssnic/base/sssnic_api.h | 116 +++ drivers/net/sssnic/base/sssnic_cmd.h | 12 + driv

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

2023-08-29 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 08/32] net/sssnic/base: add work queue

2023-08-29 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 --- drivers/net/sssnic/base/meson.build| 1 + drivers/net/sssnic/base/sssnic_workq.c |

Re: [PATCH] build: add pdcp to optional libs

2023-08-29 Thread David Marchand
On Fri, Aug 25, 2023 at 4:19 PM Bruce Richardson wrote: > > The pdcp library is disabled when its dependent library "reorder" is not > being built. > > ../lib/meson.build:179: WARNING: Cannot disable mandatory library "pdcp" > Message: Disabling pdcp [lib/pdcp]: missing internal dependency "reorde

Re: [PATCH] build: make crypto libraries optional

2023-08-29 Thread David Marchand
On Fri, Aug 25, 2023 at 5:10 PM Bruce Richardson wrote: > > Cryptodev and the libraries which depend on it can be made optional, > as they can be disabled without breaking the build. > > Signed-off-by: Bruce Richardson Applied, thanks. -- David Marchand

Re: [PATCH] drivers: add dependencies for some classes

2023-08-29 Thread David Marchand
On Fri, Aug 25, 2023 at 7:03 PM David Marchand wrote: > > A few classes meson.build were not expressing dependencies to the > associated device library. Define std_deps for baseband, gpu and regex > drivers. > > Signed-off-by: David Marchand Applied, with updated commitlog. Thanks. -- David M

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

2023-08-29 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 11/32] net/sssnic: add dev MAC ops

2023-08-29 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 16/32] net/sssnic: support Rx queue start and stop

2023-08-29 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 30/32] net/sssnic: support VLAN offload and filter

2023-08-29 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_

Re: [PATCH v7 7/8] net/ntnic: adds ethdev and makes PMD available

2023-08-29 Thread David Marchand
On Tue, Aug 22, 2023 at 5:42 PM Mykola Kostenok wrote: > > From: Christian Koue Muf > > Hooks into the DPDK API, and make the PMD available to use. > Also adds documentation as .rst and .ini files. > > Signed-off-by: Christian Koue Muf > Reviewed-by: Mykola Kostenok *Disclaimer* I did not revi

RE: 22.11.3 patches review and test

2023-08-29 Thread Xu, HailinX
> -Original Message- > From: Xueming Li > Sent: Thursday, August 17, 2023 2:14 PM > To: sta...@dpdk.org > Cc: xuemi...@nvdia.com; dev@dpdk.org; Abhishek Marathe > ; Ali Alnubani ; > Walker, Benjamin ; David Christensen > ; Hemant Agrawal ; > Stokes, Ian ; Jerin Jacob ; > Mcnamara, John ; J

RE: 22.11.3 patches review and test

2023-08-29 Thread Xueming(Steven) Li
> -Original Message- > From: Xu, HailinX > Sent: 8/29/2023 16:22 > To: Xueming(Steven) Li ; sta...@dpdk.org > Cc: xuemi...@nvdia.com; dev@dpdk.org; Abhishek Marathe > ; Ali Alnubani ; > Walker, Benjamin ; David Christensen > ; Hemant Agrawal ; > Stokes, Ian ; Jerin Jacob ; > Mcnamara, Jo

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-29 Thread Thomas Monjalon
3/08/2023, Bruce Richardson: > +#set up common doxygen configuration A space is missing here > +man_cdata.set('FULL_PATH_NAMES', 'NO') Why it has to be disabled? Maybe add a comment? > +meson.add_install_script(mandb) When is it executed exactly? Will it update the database in case we inst

Re: [PATCH] build: deprecate enable_kmods option

2023-08-29 Thread Thomas Monjalon
jeudi 10 août 2023, Bruce Richardson: > With the removal of the kni kernel driver, there are no longer any > Linux kernel modules in our repository, leaving only modules for FreeBSD > present. Since: > > * BSD has no issues with out-of-tree modules and > * There are no in-tree equivalents for thos

Re: [RFC PATCH] app/test: add support for skipping tests

2023-08-29 Thread Thomas Monjalon
jeudi 17 août 2023, Bruce Richardson: > When called from automated tools, like meson test, it is often useful to > skip tests in a test suite, without having to alter the test build. To > do so, we add support for DPDK_TEST_SKIP environment variable, where one > can provide a comma-separated list o

Re: [PATCH v3] doc: build manpages as well as html output

2023-08-29 Thread Bruce Richardson
On Tue, Aug 29, 2023 at 11:28:01AM +0200, Thomas Monjalon wrote: > 3/08/2023, Bruce Richardson: > > +#set up common doxygen configuration > > A space is missing here > Ack > > +man_cdata.set('FULL_PATH_NAMES', 'NO') > > Why it has to be disabled? Maybe add a comment? > Sure, will add comment.

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

2023-08-29 Thread Ferruh Yigit
On 8/29/2023 8:38 AM, Jerin Jacob wrote: > On Mon, Aug 28, 2023 at 9:43 PM Dumitrescu, Cristian > wrote: >> We just set up a community call for next week to discuss in more details the proposal for RTE_FLOW extensions to support P4-programmable devices https://mails.dpdk.org/a

Re: [RFC PATCH] app/test: add support for skipping tests

2023-08-29 Thread Aaron Conole
Bruce Richardson writes: > When called from automated tools, like meson test, it is often useful to > skip tests in a test suite, without having to alter the test build. To > do so, we add support for DPDK_TEST_SKIP environment variable, where one > can provide a comma-separated list of tests. Wh

Re: [RFC PATCH] app/test: add support for skipping tests

2023-08-29 Thread Bruce Richardson
On Tue, Aug 29, 2023 at 09:27:23AM -0400, Aaron Conole wrote: > Bruce Richardson writes: > > > When called from automated tools, like meson test, it is often useful to > > skip tests in a test suite, without having to alter the test build. To > > do so, we add support for DPDK_TEST_SKIP environme

Re: [PATCH v6 0/6] rte atomics API for optional stdatomic

2023-08-29 Thread Tyler Retzlaff
ping for additional reviewers. thanks! On Tue, Aug 22, 2023 at 02:00:39PM -0700, Tyler Retzlaff wrote: > This series introduces API additions prefixed in the rte namespace that allow > the optional use of stdatomics.h from C11 using enable_stdatomics=true for > targets where enable_stdatomics=f

Re: 22.11.3 patches review and test

2023-08-29 Thread YangHang Liu
Hi, Xueming RedHat QE did not find any new issues about 22.11.3 rc1 dpdk during the tests. I tested below 18 scenarios and all got PASS on RHEL9: - Guest with device assignment(PF) throughput testing(1G hugepage size): PASS - Guest with device assignment(PF) throughput testing(2M hugepa

Re: [PATCH v11 01/16] eal: use rdtsc intrinsic

2023-08-29 Thread Tyler Retzlaff
On Sat, Aug 26, 2023 at 02:38:26PM +, Ali Alnubani wrote: > > -Original Message- > > From: Tyler Retzlaff > > Sent: Friday, August 11, 2023 10:21 PM > > To: dev@dpdk.org > > Cc: Bruce Richardson ; Konstantin Ananyev > > ; Ciara Power ; > > NBU-Contact-Thomas Monjalon (EXTERNAL) ; > > d

RE: [PATCH v2 0/6] changes for 23.07

2023-08-29 Thread Vargas, Hernan
Hi Maxime, Kind reminder to review these series for 23.11: https://patches.dpdk.org/project/dpdk/list/?series=28544 https://patches.dpdk.org/project/dpdk/list/?series=28189 Thanks, Hernan > -Original Message- > From: Vargas, Hernan > Sent: Thursday, May 25, 2023 1:28 PM > To: dev@dpdk.o

[PATCH] event/cnxk: add event port flow context APIs

2023-08-29 Thread pbhagavatula
From: Pavan Nikhilesh Add event port flow context status APIs. - rte_pmd_cnxk_eventdev_wait_head() - Allows application to wait for the flow context currently held by the event port to become the HEAD of the flow chain. - rte_pmd_cnxk_eventdev_is_head() - Allows application to test if the f

[Patch v2] net/netvsc: set the correct queue state

2023-08-29 Thread longli
From: Long Li Set the queue state when queue is started/stopped. Signed-off-by: Long Li Acked-by: Stephen Hemminger --- Change since v1: Fixed the following building error error: 'for' loop initial declarations are only allowed in C99 mode drivers/net/netvsc/hn_ethdev.c | 17 +++-

[PATCH v2 00/27] refact the nfpcore module

2023-08-29 Thread Chaoyong He
This patch series aims to: - Make the coding style satisfy with DPDK. - Sync the logic with kernel driver. - Make the sub-module more modular. - Extend the nfp configure BAR from 8 to 24. --- v2: * Fix the compile error in Fodora 37 environment. --- Chaoyong He (27): net/nfp: explicitly compare

[PATCH v2 01/27] net/nfp: explicitly compare to null and 0

2023-08-29 Thread Chaoyong He
To compliance with the coding standard, make the pointer variable explicitly comparing to 'NULL' and the integer variable explicitly comparing to '0'. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 12 ++-- drivers/net/nfp/nfpco

[PATCH v2 02/27] net/nfp: unify the indent coding style

2023-08-29 Thread Chaoyong He
Each parameter of function should occupy one line, and indent two TAB character. All the statement which span multi line should indent two TAB character. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 80 +- drivers/net/nfp/nfp

[PATCH v2 03/27] net/nfp: unify the type of integer variable

2023-08-29 Thread Chaoyong He
Unify the type of integer variable to the DPDK prefer style. Also change the return type of 'nfp_eth_speed2rate()' to the corresponding enum, which make it more readable. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 53 ++-

[PATCH v2 04/27] net/nfp: remove the unneeded logic

2023-08-29 Thread Chaoyong He
Remove the unneeded logic. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 107 drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 12 - drivers/net/nfp/nfpcore/nfp_cppcore.c | 162 -- drivers/net/nfp/nfpcore/nfp_mutex.c

[PATCH v2 05/27] net/nfp: standard the local variable coding style

2023-08-29 Thread Chaoyong He
There should only declare one local variable in each line, and the local variable should be arranged from short to long in the function. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 58 -- drivers/net/nfp/nfpcore/n

[PATCH v2 06/27] net/nfp: adjust the log statement

2023-08-29 Thread Chaoyong He
Add log statement to the important control logic, which means more strict check of the return value of function call. Also remove some verbose info log statement. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 37 ++

[PATCH v2 08/27] net/nfp: using the DPDK memory management API

2023-08-29 Thread Chaoyong He
Revise the logic, using the DPDK memory management API to replace the malloc()/free(). Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/flower/nfp_flower.c| 2 +- drivers/net/nfp/nfp_ethdev.c | 8 drivers/net/nfp/nfpcore/nfp_cppcore.c | 10 +

[PATCH v2 07/27] net/nfp: standard the comment style

2023-08-29 Thread Chaoyong He
Follow the DPDK coding style, use the kdoc comment style. Also add some comment to help understand logic. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 504 - drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 39 +- dri

[PATCH v2 09/27] net/nfp: standard the blank character

2023-08-29 Thread Chaoyong He
Use space character to align instead of TAB character. There should one blank line to split the block of logic, no more no less. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp6000/nfp6000.h | 4 +- drivers/net/nfp/nfpcore/nfp_cpp.h | 18 +--

[PATCH v2 10/27] net/nfp: unify the guide line of header file

2023-08-29 Thread Chaoyong He
Unify the guide line of header file, we choose '__FOO_BAR_H__' style. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 2 +- drivers/net/nfp/nfpcore/nfp_hwinfo.h | 2 +- drivers/net/nfp/nfpcore/nfp_mip.h | 2 +- drivers/net/nfp/nfpcore

[PATCH v2 11/27] net/nfp: rename some parameter and variable

2023-08-29 Thread Chaoyong He
Rename some parameter and variable to make the logic easier to understand. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 10 ++--- drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 42 - drivers/net/nfp/nfpcore/nfp_cppcore.c

[PATCH v2 12/27] net/nfp: refact the hwinfo module

2023-08-29 Thread Chaoyong He
Move the definition of data structure and macro into the implement file. Also remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_hwinfo.c | 84 +--- drivers/net/nfp/nfpcore/nfp_hwin

[PATCH v2 13/27] net/nfp: refact the nffw module

2023-08-29 Thread Chaoyong He
Move the definition of data structure and macro into the implement file. Also sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_mip.h | 4 +- drivers/net/nfp/nfpco

[PATCH v2 14/27] net/nfp: refact the mip module

2023-08-29 Thread Chaoyong He
Remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_mip.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/drivers/net/nfp/nfpcore/nfp_mip.c b/drivers/net/nfp/nfpcore/nfp_mip.c inde

[PATCH v2 15/27] net/nfp: refact the rtsym module

2023-08-29 Thread Chaoyong He
Add several read/write APIs and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_rtsym.c | 305 +--- drivers/net/nfp/nfpcore/nfp_rtsym.h | 53 ++--- 2 files changed, 299 insertio

[PATCH v2 16/27] net/nfp: refact the resource module

2023-08-29 Thread Chaoyong He
Sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_resource.c | 21 - 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/drivers/net/nf

[PATCH v2 17/27] net/nfp: refact the target module

2023-08-29 Thread Chaoyong He
Move the function declaration into the header file, and sync some logic from kernel driver. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp6000/nfp6000.h | 20 drivers/net/nfp/nfpcore/nfp_cpp_pcie_ops.c | 1 + drivers/net/nfp/nfpco

[PATCH v2 18/27] net/nfp: add a new header file

2023-08-29 Thread Chaoyong He
Split out the macro which are not easily find a DPDK substitute into a new header file. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_nsp.c | 1 + drivers/net/nfp/nfpcore/nfp_nsp.h | 23 -- drivers/net/nfp/nfpcore/nfp_nsp_eth.c

[PATCH v2 19/27] net/nfp: refact the nsp module

2023-08-29 Thread Chaoyong He
Move the definition of data structure into the implement file. Also sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfp_ethdev.c | 2 +- drivers/net/nfp/nfpcore/nfp

[PATCH v2 20/27] net/nfp: refact the mutex module

2023-08-29 Thread Chaoyong He
Add a header file to holds the API declarations of this module. Also sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_cpp.h | 16 -- drivers/net/nfp/nfpcore/nf

[PATCH v2 21/27] net/nfp: rename data field to sync with kernel driver

2023-08-29 Thread Chaoyong He
Rename the data fields to sync with the logic in kernel driver. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/flower/nfp_flower.c | 6 +++--- drivers/net/nfp/nfp_common.h| 4 ++-- drivers/net/nfp/nfp_ethdev.c| 16 3 files changed

[PATCH v2 22/27] net/nfp: add the dev module

2023-08-29 Thread Chaoyong He
Add the nfp_dev module to simplify the logic. The data structure we import can gather and replace several macro which scatter everywhere. Which also make the logic of choose value for different devices unnecessary and so eliminate such logic. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderl

[PATCH v2 23/27] net/nfp: add header file for PCIe module

2023-08-29 Thread Chaoyong He
Add a new header file for the PCIe module. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/meson.build | 2 +- .../nfpcore/{nfp_cpp_pcie_ops.c => nfp6000_pcie.c} | 2 ++ drivers/net/nfp/nfpcore/nfp6000_pcie.h | 13

[PATCH v2 24/27] net/nfp: refact the cppcore module

2023-08-29 Thread Chaoyong He
Modify the comment and standard the coding style. Move the definition of data structure into the implement file to make the API small. Also sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- driv

[PATCH v2 25/27] net/nfp: refact the PCIe module

2023-08-29 Thread Chaoyong He
Sync the logic from kernel driver and remove the unneeded header file include statements. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp6000_pcie.c | 211 + drivers/net/nfp/nfpcore/nfp_cpp.h | 9 ++ 2 files changed, 150 in

[PATCH v2 26/27] net/nfp: refact the cppcore and PCIe module

2023-08-29 Thread Chaoyong He
Sync the logic from kernel driver, use the new entry function from the PCIe module instead of the cppcore module. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfp_ethdev.c | 9 +- drivers/net/nfp/nfpcore/nfp6000_pcie.c | 197 ++---

[PATCH v2 27/27] net/nfp: extend the usage of nfp BAR from 8 to 24

2023-08-29 Thread Chaoyong He
Sync the logic from kernel driver, adjust the definition of structure, and extend the usage of nfp BAR from 8 to 24. This will greatly enhance the scalability of nfp PMD. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfp_ethdev.c | 8 +- drivers/net/n

[PATCH v4] bus/pci: fix legacy device IO port map in secondary process

2023-08-29 Thread Wenwu Ma
When doing IO port mapping for legacy device in secondary process, the region information is missing, so, we need to refill it. Fixes: 4b741542ecde ("bus/pci: avoid depending on private kernel value") Cc: sta...@dpdk.org Signed-off-by: Wenwu Ma --- v4: - adjusting commit log v3: - adjusting va

RE: 22.11.3 patches review and test

2023-08-29 Thread Xueming(Steven) Li
Hi Yanghang, Thanks for the verification and report, will include in release notes. Regards, Xueming Li From: YangHang Liu Sent: 8/30/2023 0:03 To: Xueming(Steven) Li Cc: sta...@dpdk.org; xuemi...@nvdia.com; dev@dpdk.org; Abhishek Marathe ; Ali Alnubani ; benjamin.wal...@intel.com; David Ch

[PATCH] net/iavf: fix port stats not cleared

2023-08-29 Thread Yiding Zhou
Call 'iavf_dev_stats_reset' during the initialization of the VF in order to clear any statistics that may exist from the last use of the VF and to avoid statistics errors. Fixes: 22b123a36d07 ("net/avf: initialize PMD") Cc: sta...@dpdk.org Signed-off-by: Kuan Xu Signed-off-by: Yiding Zhou ---

RE: [PATCH v2 1/2] ethdev: add new symmetric hash function

2023-08-29 Thread Ori Kam
Hi Xueming, > -Original Message- > From: Xueming(Steven) Li > Sent: Sunday, August 27, 2023 11:18 AM > > The new symmetric hash function swap src/dst L3 address and > L4 ports automatically by sorting. > > Signed-off-by: Xueming Li > --- > lib/ethdev/rte_flow.h | 7 +++ > 1 file c