RE: [RFC PATCH v2 00/26] add meson config options for queues per port

2024-08-14 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richa...@intel.com] > > There are a number of issues with the current RTE_MAX_QUEUES_PER_PORT > setting in DPDK that are addressed by this patchset: > > * The name does not make it clear that this is intended as an > ethdev-only setting > * A number of oth

[PATCH v2] net/bnxt: fix issue reading sff8436 sfp eeproms

2024-08-14 Thread Peter Morrow
From: Peter Morrow If a SFP which supports SFF-8436 is present then currently the DDM information present in the eeprom is not read. Furthermore bnxt_get_module_eeprom() will return -EINVAL for these eeproms since the length of these eeproms is 512 bytes but we are only ever selecting 2 pages (25

[RFC PATCH v2 00/26] add meson config options for queues per port

2024-08-14 Thread Bruce Richardson
There are a number of issues with the current RTE_MAX_QUEUES_PER_PORT setting in DPDK that are addressed by this patchset: * The name does not make it clear that this is intended as an ethdev-only setting * A number of other libraries are using this define rather than having more relevant defi

[RFC PATCH v2 01/26] cryptodev: remove use of ethdev max queues definition

2024-08-14 Thread Bruce Richardson
The number of queue pairs supported by cryptodev should not be dependent on the number of ethdev Rx or Tx queues, so add a new define for cryptodev specifically. Signed-off-by: Bruce Richardson --- config/rte_config.h | 1 + lib/cryptodev/cryptodev_pmd.c | 4 ++-- 2 files changed, 3 in

[RFC PATCH v2 02/26] eventdev: remove use of ethev queues define

2024-08-14 Thread Bruce Richardson
The max queues per port definition is intended for use for ethdevs, so it's use for a dummy array in eventdev is likely wrong. Since the array is intended to be for eventdev ports, use RTE_EVENT_MAX_PORTS_PER_DEV define instead. Signed-off-by: Bruce Richardson --- lib/eventdev/eventdev_private.c

[RFC PATCH v2 03/26] app/test-bbdev: remove use of ethdev queue count value

2024-08-14 Thread Bruce Richardson
Replace the use of RTE_MAX_QUEUES_PER_PORT, which is intended as an ethdev define, with the limit from the bbdev library. Signed-off-by: Bruce Richardson --- app/test-bbdev/test_bbdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-bbdev/test_bbdev.c b/app/test

[RFC PATCH v2 04/26] config: add separate defines for max Rx and Tx queues

2024-08-14 Thread Bruce Richardson
Rather than having a single define for maximum queues per ethernet port, we can set the max values for Rx queues and Tx queue independently. This allows future memory saving for apps which only need large numbers of Rx queues or only large numbers of Tx queues. Signed-off-by: Bruce Richardson ---

[RFC PATCH v2 05/26] ethdev: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- lib/ethdev/ethdev_driver.h | 8 lib/ethdev/ethdev_private.c | 24 ++-- lib/ethdev/r

[RFC PATCH v2 06/26] bpf: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- lib/bpf/bpf_pkt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/bpf/bpf_pkt.c b/lib/bp

[RFC PATCH v2 07/26] latencystats: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- lib/latencystats/rte_latencystats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/la

[RFC PATCH v2 08/26] pdump: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- lib/pdump/rte_pdump.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/p

[RFC PATCH v2 09/26] power: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- lib/power/rte_power_pmd_mgmt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/power/r

[RFC PATCH v2 11/26] net/cnxk: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/cnxk/cnxk_ethdev_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/

[RFC PATCH v2 10/26] net/af_xdp: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/af_xdp/rte_eth_af_xdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net

[RFC PATCH v2 12/26] net/failsafe: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/failsafe/failsafe_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers

[RFC PATCH v2 13/26] net/hns3: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/hns3/hns3_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/hns3/hns

[RFC PATCH v2 15/26] net/null: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/null/rte_eth_null.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net

[RFC PATCH v2 14/26] net/mlx5: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/mlx5/mlx5_flow.c| 2 +- drivers/net/mlx5/mlx5_flow_hw.c | 2 +- 2 files changed, 2 insertions(+), 2

[RFC PATCH v2 16/26] net/sfc: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/sfc/sfc_sw_stats.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/ne

[RFC PATCH v2 17/26] net/thunderx: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/thunderx/nicvf_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net

[RFC PATCH v2 18/26] net/vhost: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- drivers/net/vhost/rte_eth_vhost.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/driver

[RFC PATCH v2 20/26] app/test-pmd: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- app/test-pmd/testpmd.c | 7 --- app/test-pmd/testpmd.h | 16 2 files changed, 12 insertions(+),

[RFC PATCH v2 19/26] app/dumpcap: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- app/dumpcap/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/dumpcap/main.c b/app/dumpca

[RFC PATCH v2 21/26] examples/ipsec-secgw: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- examples/ipsec-secgw/ipsec-secgw.c | 2 +- examples/ipsec-secgw/ipsec.c | 2 +- 2 files changed, 2 inser

[RFC PATCH v2 22/26] examples/l3fwd-power: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- examples/l3fwd-power/main.c | 2 +- examples/l3fwd-power/perf_core.c | 2 +- 2 files changed, 2 insertion

[RFC PATCH v2 23/26] examples/l3fwd: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- examples/l3fwd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/l3fwd/main.

[RFC PATCH v2 25/26] config: make queues per port a meson config option

2024-08-14 Thread Bruce Richardson
From: Bruce Richardson The default number of ethernet queues per port is currently set to 1k which is more than enough for most applications, but still is lower than the total number of queues which may be available on modern NICs. Rather than increasing the max queues further, which will increas

[RFC PATCH v2 24/26] examples/vhost: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson --- examples/vhost/main.c | 2 +- examples/vhost/main.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)

[RFC PATCH v2 26/26] config: add computed max queues define for compatibility

2024-08-14 Thread Bruce Richardson
End applications may use the RTE_MAX_QUEUES_PER_PORT define in their structure definitions, so keep a define present in DPDK for backward compatibility. Rather than having a hard-coded value, we can use the maximum of the Rx and Tx values as the overall max value. Rather than using a macro which do

RE: [RFC PATCH v2 00/26] add meson config options for queues per port

2024-08-14 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richa...@intel.com] > > There are a number of issues with the current RTE_MAX_QUEUES_PER_PORT > setting in DPDK that are addressed by this patchset: > > * The name does not make it clear that this is intended as an > ethdev-only setting > * A number of oth

test anonymous send mail

2024-08-14 Thread howard_wang
0001-net-r8169-add-PMD-driver-skeleton.patch Description: Binary data

Re: [RFC PATCH v2 00/26] add meson config options for queues per port

2024-08-14 Thread Bruce Richardson
On Wed, Aug 14, 2024 at 09:48:46AM +0200, Morten Brørup wrote: > > From: Bruce Richardson [mailto:bruce.richa...@intel.com] > > > > There are a number of issues with the current RTE_MAX_QUEUES_PER_PORT > > setting in DPDK that are addressed by this patchset: > > > > * The name does not make it cl

[no subject]

2024-08-14 Thread howard_wang
0001-net-r8169-add-PMD-driver-skeleton.patch Description: Binary data

[DPDK/other Bug 1522] RTE_LIBRTE_ prefix should be replaced by RTE_ prefix

2024-08-14 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1522 Bug ID: 1522 Summary: RTE_LIBRTE_ prefix should be replaced by RTE_ prefix Product: DPDK Version: 24.07 Hardware: All OS: All Status: UNCONFIRMED Severity: enhanc

DPDK configuration options

2024-08-14 Thread Morten Brørup
DPDK has many configuration options. There are four levels of visibility: 1. Some are changed by passing command line options to meson. 2. Some are changed by modifying their values in config/rte_config.h. 3. Some are changed by adding them to config/rte_config.h, but you have to magically know

答复: Inquiry Regarding Sending Patches to DPDK

2024-08-14 Thread 王颢
Dear Stephen, Now I have a better understanding of the anonymous sending suggested by the company's IT department. Since the second-factor authentication for the email account is Microsoft's Okta, which seems not straightforward to configure with an account and password, they have enabled anony

Re: [PATCH v2] doc: add new driver guidelines

2024-08-14 Thread David Marchand
On Wed, Aug 14, 2024 at 4:36 AM Stephen Hemminger wrote: > > From: Nandini Persad > > This document was created to assist contributors in creating DPDK drivers > and provides suggestions and guidelines on how to upstream effectively. > > Signed-off-by: Nandini Persad > --- > v2 - text should be

RE: Inquiry Regarding Sending Patches to DPDK

2024-08-14 Thread Morten Brørup
Howard, I'm using.gitconfig to configure my git send-email options. Try this in your .gitconfig: [user] name = Howard Wang email = howard_w...@realsil.com.cn [sendemail] from = Howard Wang envelopeSender = howard_w...@realsil.com.cn smtpServer = smtpsrv.

Re: Linux kernel version for DPDK 24.11

2024-08-14 Thread Bruce Richardson
On Tue, Aug 13, 2024 at 11:43:32PM +0200, Morten Brørup wrote: > Do we want to be conservative and stick with 4.19 and RHEL/CentOS 7? AFAIK We have dropped support for Centos 7 some time back, due to lack of a conformant compiler, I believe. We should definitely update the doc in that regards.

[PATCH v3 00/26] add meson config options for queues per port

2024-08-14 Thread Bruce Richardson
There are a number of issues with the current RTE_MAX_QUEUES_PER_PORT setting in DPDK that are addressed by this patchset: * The name does not make it clear that this is intended as an ethdev-only setting * A number of other libraries are using this define rather than having more relevant defi

[PATCH v3 01/26] cryptodev: remove use of ethdev max queues definition

2024-08-14 Thread Bruce Richardson
The number of queue pairs supported by cryptodev should not be dependent on the number of ethdev Rx or Tx queues, so add a new define for cryptodev specifically. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- config/rte_config.h | 1 + lib/cryptodev/cryptodev_pmd.c | 4 ++

[PATCH v3 02/26] eventdev: remove use of ethev queues define

2024-08-14 Thread Bruce Richardson
The max queues per port definition is intended for use for ethdevs, so it's use for a dummy array in eventdev is likely wrong. Since the array is intended to be for eventdev ports, use RTE_EVENT_MAX_PORTS_PER_DEV define instead. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/ev

[PATCH v3 03/26] app/test-bbdev: remove use of ethdev queue count value

2024-08-14 Thread Bruce Richardson
Replace the use of RTE_MAX_QUEUES_PER_PORT, which is intended as an ethdev define, with the limit from the bbdev library. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- app/test-bbdev/test_bbdev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test-bbde

[PATCH v3 04/26] config: add separate defines for max Rx and Tx queues

2024-08-14 Thread Bruce Richardson
Rather than having a single define for maximum queues per ethernet port, we can set the max values for Rx queues and Tx queue independently. This allows future memory saving for apps which only need large numbers of Rx queues or only large numbers of Tx queues. Signed-off-by: Bruce Richardson Ack

[PATCH v3 05/26] ethdev: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/ethdev/ethdev_driver.h | 8 lib/ethdev/ethdev_private.c | 24 +

[PATCH v3 06/26] bpf: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/bpf/bpf_pkt.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/l

[PATCH v3 07/26] latencystats: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/latencystats/rte_latencystats.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletion

[PATCH v3 08/26] pdump: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/pdump/rte_pdump.c | 18 +- 1 file changed, 9 insertions(+), 9 deletio

[PATCH v3 09/26] power: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update library to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- lib/power/rte_power_pmd_mgmt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[PATCH v3 10/26] net/af_xdp: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/af_xdp/rte_eth_af_xdp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[PATCH v3 11/26] net/cnxk: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/cnxk/cnxk_ethdev_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(

[PATCH v3 12/26] net/failsafe: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/failsafe/failsafe_ops.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions

[PATCH v3 13/26] net/hns3: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/hns3/hns3_tm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

[PATCH v3 15/26] net/null: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/null/rte_eth_null.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)

[PATCH v3 14/26] net/mlx5: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/mlx5/mlx5_flow.c| 2 +- drivers/net/mlx5/mlx5_flow_hw.c | 2 +- 2 files ch

[PATCH v3 16/26] net/sfc: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/sfc/sfc_sw_stats.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-)

[PATCH v3 17/26] net/thunderx: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/thunderx/nicvf_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[PATCH v3 18/26] net/vhost: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update driver to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- drivers/net/vhost/rte_eth_vhost.c | 7 --- 1 file changed, 4 insertions(+), 3 deletion

[PATCH v3 19/26] app/dumpcap: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- app/dumpcap/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/du

[PATCH v3 20/26] app/test-pmd: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- app/test-pmd/testpmd.c | 7 --- app/test-pmd/testpmd.h | 16 2 files ch

[PATCH v3 21/26] examples/ipsec-secgw: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- examples/ipsec-secgw/ipsec-secgw.c | 2 +- examples/ipsec-secgw/ipsec.c | 2 +-

[PATCH v3 22/26] examples/l3fwd-power: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- examples/l3fwd-power/main.c | 2 +- examples/l3fwd-power/perf_core.c | 2 +- 2 f

[PATCH v3 23/26] examples/l3fwd: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- examples/l3fwd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --g

[PATCH v3 24/26] examples/vhost: use separate Rx and Tx queue limits

2024-08-14 Thread Bruce Richardson
Update example app to use the new defines RTE_MAX_ETHPORT_TX_QUEUES and RTE_MAX_ETHPORT_RX_QUEUES rather than the old define RTE_MAX_QUEUES_PER_PORT. Signed-off-by: Bruce Richardson Acked-by: Morten Brørup --- examples/vhost/main.c | 2 +- examples/vhost/main.h | 2 +- 2 files changed, 2 insert

[PATCH v3 25/26] config: make queues per port a meson config option

2024-08-14 Thread Bruce Richardson
The default number of ethernet queues per port is currently set to 1k which is more than enough for most applications, but still is lower than the total number of queues which may be available on modern NICs. Rather than increasing the max queues further, which will increase the memory footprint (s

[PATCH v3 26/26] config: add computed max queues define for compatibility

2024-08-14 Thread Bruce Richardson
End applications may use the RTE_MAX_QUEUES_PER_PORT define in their structure definitions, so keep a define present in DPDK for backward compatibility. Rather than having a hard-coded value, we can use the maximum of the Rx and Tx values as the overall max value. Rather than using a macro which do

[PATCH v1 1/2] usertools/cpu_layout: update coding style

2024-08-14 Thread Anatoly Burakov
Update coding style: - make it PEP-484 compliant - address all flake8, mypy etc. warnings - use f-strings in place of old-style string interpolation - refactor printing to make the code more readable Signed-off-by: Anatoly Burakov --- usertools/cpu_layout.py | 162 ++

[PATCH v1 2/2] usertools/cpu_layout: print out NUMA nodes

2024-08-14 Thread Anatoly Burakov
In traditional NUMA case, NUMA nodes and physical sockets were used interchangeably, but there are cases where there can be multiple NUMA nodes per socket, as well as all CPU's being assigned NUMA node 0 even in cases of multiple sockets. Use sysfs to print out NUMA information. Signed-off-by: Ana

Re: DPDK configuration options

2024-08-14 Thread Bruce Richardson
On Wed, Aug 14, 2024 at 11:27:58AM +0200, Morten Brørup wrote: > DPDK has many configuration options. > > There are four levels of visibility: > > 1. Some are changed by passing command line options to meson. > 2. Some are changed by modifying their values in config/rte_config.h. > 3. Some are ch

Re: [RFC PATCH v2 26/26] config: add computed max queues define for compatibility

2024-08-14 Thread Stephen Hemminger
On Tue, 13 Aug 2024 17:00:03 +0100 Bruce Richardson wrote: > +.. note:: > + > + The define ``RTE_MAX_QUEUES_PER_PORT`` is kept for backward compatibility. > + Its value is no longer hard-coded, > + but is set, at configuration time, to the maximum of the configured max > Rx and Tx queue va

RE: DPDK configuration options

2024-08-14 Thread Morten Brørup
> From: Bruce Richardson [mailto:bruce.richard...@intel.com] > > On Wed, Aug 14, 2024 at 11:27:58AM +0200, Morten Brørup wrote: > > DPDK has many configuration options. > > > > There are four levels of visibility: > > > > 1. Some are changed by passing command line options to meson. > > 2. Some ar

Re:

2024-08-14 Thread Stephen Hemminger
On Wed, 14 Aug 2024 16:03:41 +0800 wrote: > iff --git a/drivers/net/r8169/r8169_base.h b/drivers/net/r8169/r8169_base.h > new file mode 100644 > index 00..5d219a7966 > --- /dev/null > +++ b/drivers/net/r8169/r8169_base.h > @@ -0,0 +1,15 @@ > +/* SPDX-License-Identifier: BSD-3-Clause > + *

[PATCH v17 0/5] API docs generation

2024-08-14 Thread Juraj Linkeš
The generation is done with Sphinx, which DPDK already uses, with slightly modified configuration of the sidebar present in an if block. DTS dependencies do not need to be installed, but there is the option to install doc build dependencies with Poetry: poetry install --with docs The build itself

[PATCH v17 1/5] dts: update params and parser docstrings

2024-08-14 Thread Juraj Linkeš
Address a few errors reported by Sphinx when generating documentation: framework/params/__init__.py:docstring of framework.params.modify_str:3: WARNING: Inline interpreted text or phrase reference start-string without end-string. framework/params/eal.py:docstring of framework.params.eal.Eal

[PATCH v17 2/5] dts: replace the or operator in third party types

2024-08-14 Thread Juraj Linkeš
When the DTS dependencies are not installed when building DTS API documentation, the or operator produces errors when used with types from those libraries: autodoc: failed to import module 'remote_session' from module 'framework'; the following exception was raised: Traceback (most recent call last

[PATCH v17 3/5] dts: add doc generation dependencies

2024-08-14 Thread Juraj Linkeš
Sphinx imports every Python module (through the autodoc extension) when generating documentation from docstrings, meaning all DTS dependencies, including Python version, should be satisfied. This is not a hard requirement, as imports from dependencies may be mocked in the autodoc_mock_imports autod

[PATCH v17 4/5] dts: add API doc sources

2024-08-14 Thread Juraj Linkeš
These sources could be generated with the sphinx-apidoc utility, but that doesn't give us enough flexibility, such as sorting the order of modules or changing the headers of the modules. The sources included in this patch were in fact generated by said utility, but modified to improve the look of

[PATCH v17 5/5] dts: add API doc generation

2024-08-14 Thread Juraj Linkeš
The tool used to generate DTS API docs is Sphinx, which is already in use in DPDK. The same configuration is used to preserve style with one DTS-specific configuration (so that the DPDK docs are unchanged) that modifies how the sidebar displays the content. There's other Sphinx configuration relate

Re: [RFC PATCH v2 26/26] config: add computed max queues define for compatibility

2024-08-14 Thread Bruce Richardson
On Wed, Aug 14, 2024 at 08:01:19AM -0700, Stephen Hemminger wrote: > On Tue, 13 Aug 2024 17:00:03 +0100 > Bruce Richardson wrote: > > > +.. note:: > > + > > + The define ``RTE_MAX_QUEUES_PER_PORT`` is kept for backward > > compatibility. > > + Its value is no longer hard-coded, > > + but i

[PATCH v1 0/2] dts: port over port_control testing suite

2024-08-14 Thread jspewock
From: Jeremy Spewock This series ports over most of the test coverage provided from the port_control testing suite in the Old DTS framework. The only functionality that is missing is testing port functions in a VM through QEMU and testing the support of resetting ports. Since we have no method of

[PATCH v1 1/2] dts: add methods for closing ports to testpmd

2024-08-14 Thread jspewock
From: Jeremy Spewock Closing ports is a standard configuration feature that is available in testpmd but the framework lacks the ability to access this command through the Testpmd API. This patch adds a method that performs this action and verifies the results of sending the command to allow devel

[PATCH v1 2/2] dts: add port control testing suite

2024-08-14 Thread jspewock
From: Jeremy Spewock This patch ports over the port_control test suite from the Old DTS framework and adapts the functionality to fit with the current testing framework. The test suite provides validation of basic port control functions such as starting, stopping, and closing ports. It should be

Re: [PATCH v17 1/5] dts: update params and parser docstrings

2024-08-14 Thread Jeremy Spewock
On Wed, Aug 14, 2024 at 11:05 AM Juraj Linkeš wrote: > > Address a few errors reported by Sphinx when generating documentation: > framework/params/__init__.py:docstring of framework.params.modify_str:3: > WARNING: Inline interpreted text or phrase reference start-string > without end-strin

Re: [PATCH v17 2/5] dts: replace the or operator in third party types

2024-08-14 Thread Jeremy Spewock
On Wed, Aug 14, 2024 at 11:05 AM Juraj Linkeš wrote: > > When the DTS dependencies are not installed when building DTS API > documentation, the or operator produces errors when used with types from > those libraries: > autodoc: failed to import module 'remote_session' from module > 'framework'; th

Re: [PATCH v17 3/5] dts: add doc generation dependencies

2024-08-14 Thread Jeremy Spewock
On Wed, Aug 14, 2024 at 11:05 AM Juraj Linkeš wrote: > > Sphinx imports every Python module (through the autodoc extension) > when generating documentation from docstrings, meaning all DTS > dependencies, including Python version, should be satisfied. This is not > a hard requirement, as imports f

Re: [PATCH v17 5/5] dts: add API doc generation

2024-08-14 Thread Jeremy Spewock
On Wed, Aug 14, 2024 at 11:05 AM Juraj Linkeš wrote: > > The tool used to generate DTS API docs is Sphinx, which is already in > use in DPDK. The same configuration is used to preserve style with one > DTS-specific configuration (so that the DPDK docs are unchanged) that > modifies how the sidebar

[PATCH v2] doc: add new driver guidelines

2024-08-14 Thread Stephen Hemminger
From: Nandini Persad This document was created to assist contributors in creating DPDK drivers and provides suggestions and guidelines on how to upstream effectively. Co-authored-by: Ferruh Yigit Co-authored-by: Thomas Monjalon Signed-off-by: Nandini Persad Reviewed-by: Stephen Hemminger ---

[PATCH] net/r8169: add PMD driver skeleton

2024-08-14 Thread Howard Wang
Meson build infrastructure, r8169_ethdev minimal skeleton, header with Realtek NIC device and vendor IDs. Signed-off-by: Howard Wang --- MAINTAINERS | 7 ++ drivers/net/meson.build | 1 + drivers/net/r8169/meson.build| 7 ++ drivers/net/r8169/r8169_base.h