Re: [PATCH] service: fix getting service lcore attributes

2024-12-20 Thread Van Haaren, Harry
> From: Piotr Krzewinski > Sent: Friday, December 20, 2024 2:29 PM > To: Van Haaren, Harry > Cc: dev@dpdk.org ; Krzewinski, Piotr > ; mattias.ronnb...@ericsson.com > ; sta...@dpdk.org > Subject: [PATCH] service: fix getting service lcore attributes > > Perf test service_perf_autotest was faili

Re: [PATCH 1/1] vhost: fix a double fetch when dequeue offloading

2024-12-20 Thread Stephen Hemminger
On Thu, 19 Dec 2024 14:38:28 +0800 Yunjian Wang wrote: > diff --git a/lib/vhost/virtio_net.c b/lib/vhost/virtio_net.c > index 69901ab3b5..5c40ae7069 100644 > --- a/lib/vhost/virtio_net.c > +++ b/lib/vhost/virtio_net.c > @@ -2914,10 +2914,12 @@ desc_to_mbuf(struct virtio_net *dev, struct > vhost_

Re: [PATCH v1 1/1] dts: add EAL sanity check suite

2024-12-20 Thread Stephen Hemminger
On Fri, 20 Dec 2024 15:49:10 + Paul Szczepanek wrote: > On 09/12/2024 21:54, Dean Marx wrote: > > Add a test suite to replace hello_world which simply > > starts and stops a testpmd session. The user can use > > this as a sanity check to verify their configuration. > > > > Signed-off-by: Dea

Re: [PATCH v1 1/1] dts: add EAL sanity check suite

2024-12-20 Thread Paul Szczepanek
On 09/12/2024 21:54, Dean Marx wrote: > Add a test suite to replace hello_world which simply > starts and stops a testpmd session. The user can use > this as a sanity check to verify their configuration. > > Signed-off-by: Dean Marx > --- > dts/tests/TestSuite_eal.py | 28

Re: [RFC 0/8] ioring: network driver

2024-12-20 Thread Stephen Hemminger
On Fri, 20 Dec 2024 14:34:27 + Konstantin Ananyev wrote: > > > From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > > > > > > > This is first draft of new simplified TAP device that uses > > > > > > the Linux kernel ioring API to provide a read/write ring > > > > > > with k

net/mlx5: wrong Rx/Tx descriptor limits when DevX is off

2024-12-20 Thread Edwin Brossette
Hello, I have run into a regression following an update to stable dpdk-24.11 with a number of my Mellanox cx4/5/6 nics. This regression occurs with all nics in my lab which have DevX disabled: using mstconfig utility, I can see the flag UCTX_EN is not set. Mainly, the issue is that the ports cann

Re: [PATCH v2 1/1] vhost: fix a double fetch when dequeue offloading

2024-12-20 Thread Stephen Hemminger
On Fri, 20 Dec 2024 11:49:55 +0800 Yunjian Wang wrote: > The hdr->csum_start does two successive reads from user space to read a > variable length data structure. The result overflow if the data structure > changes between the two reads. > > To fix this, we can prevent double fetch issue by copy

Re: [PATCH v2 5/5] vhost: use strlcpy instead of strncpy

2024-12-20 Thread Bruce Richardson
On Thu, Dec 19, 2024 at 02:49:55PM -0800, Stephen Hemminger wrote: > Some tools such as gcc address sanitizer will complain if strncpy > is used to completely fill a string since it will not be null > terminated. Since the previous code forced as null at end, > use strlcpy() to get the same effect.

[RFC PATCH 1/2] dts: add scoping and shell registration to Node

2024-12-20 Thread Luca Vizzarro
Add a basic scoping mechanism to Nodes, to improve the control over test suite led environmental changes. Moreover, keep a pool of active shells based on scope, therefore allowing shells to register themselves. Signed-off-by: Luca Vizzarro --- .../single_active_interactive_shell.py| 2

[RFC PATCH 2/2] dts: revert back shell split

2024-12-20 Thread Luca Vizzarro
The InteractiveShell was previously renamed to SingleActiveInteractiveShell to represent a shell that can only be run once. The mechanism used to enforce this was a context manager, which turned out to be more constrictive on test suite development. Shell closure is now handled by the scoping mech

[RFC PATCH 0/2] dts: add basic scope to improve shell handling

2024-12-20 Thread Luca Vizzarro
Hi there, To try to improve the ease of use of the framework for the test developer, I have been trying to come up with a decent solution to improve shell handling and consistency. At the moment we have 2 patterns to do this, which could be confusing to the user. It probably is that a good approa

Re: [PATCH v4 13/15] net/zxdh: rss hash config/update, reta update/get

2024-12-20 Thread Stephen Hemminger
On Wed, 18 Dec 2024 17:26:00 +0800 Junlong Wang wrote: > provided rss hash config/update, reta update/get ops. > > Signed-off-by: Junlong Wang > --- > doc/guides/nics/features/zxdh.ini | 3 + > doc/guides/nics/zxdh.rst | 1 + > drivers/net/zxdh/zxdh_ethdev.c | 52 > dr

Re: [PATCH v4 06/15] net/zxdh: dev start/stop ops implementations

2024-12-20 Thread Stephen Hemminger
On Wed, 18 Dec 2024 17:25:53 +0800 Junlong Wang wrote: > +static void > +zxdh_notify_queue(struct zxdh_hw *hw, struct zxdh_virtqueue *vq) > +{ > + uint32_t notify_data = 0; > + > + if (!zxdh_pci_with_feature(hw, ZXDH_F_NOTIFICATION_DATA)) { > + rte_write16(vq->vq_queue_index,

Re: [PATCH v2 0/7] dts: add Ruff and docstring linting

2024-12-20 Thread Patrick Robb
Series-reviewed-by: Patrick Robb Tested-by: Patrick Robb Paul I will merge to next-dts now instead of waiting until after Winter holidays if that is okay with you. On Thu, Dec 12, 2024 at 9:02 AM Luca Vizzarro wrote: > v2: > - updated the doc page > > Luca Vizzarro (7): > dts: add Ruff as l

Re: [PATCH v4 15/15] net/zxdh: mtu update ops implementations

2024-12-20 Thread Stephen Hemminger
On Wed, 18 Dec 2024 17:26:02 +0800 Junlong Wang wrote: > +int zxdh_dev_mtu_set(struct rte_eth_dev *dev, uint16_t new_mtu) > +{ > + struct zxdh_hw *hw = dev->data->dev_private; > + struct zxdh_panel_table panel = {0}; > + struct zxdh_port_attr_table vport_att = {0}; > + uint16_t vf

[PATCH] service: fix getting service lcore attributes

2024-12-20 Thread Piotr Krzewinski
Perf test service_perf_autotest was failing after introduction of lcore variables. Fixed getting of idle_ and error_ service call statistics. Fixes: b24bbaedbba2 ("service: keep per-lcore state in lcore variable") Cc: mattias.ronnb...@ericsson.com Cc: sta...@dpdk.org Signed-off-by: Piotr Krzewins

RE: [RFC 0/8] ioring: network driver

2024-12-20 Thread Konstantin Ananyev
> > From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] > > > > > > > This is first draft of new simplified TAP device that uses > > > > > the Linux kernel ioring API to provide a read/write ring > > > > > with kernel. > > > > > > > > > > This is split from tap device because there a

[PATCH v4 02/24] net/_common_intel: provide common Tx entry structures

2024-12-20 Thread Bruce Richardson
The Tx entry structures, both vector and scalar, are common across Intel drivers, so provide a single definition to be used everywhere. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h| 27 +++ .../net/i40e/i40e_recycle_mbufs_vec_common.c | 2 +

[PATCH v4 01/24] net/_common_intel: add pkt reassembly fn for intel drivers

2024-12-20 Thread Bruce Richardson
The code for reassembling a single, multi-mbuf packet from multiple buffers received from the NIC is duplicated across many drivers. Rather than having multiple copies of this function, we can create an "_common_intel" directory to hold such functions and consolidate multiple functions down to a si

[PATCH v4 00/24] Reduce code duplication across Intel NIC drivers

2024-12-20 Thread Bruce Richardson
This RFC attempts to reduce the amount of code duplication across a number of Intel NIC drivers, specifically: ixgbe, i40e, iavf, and ice. The first patch extract a function from the Rx side, otherwise the majority of the changes are on the Tx side, leading to a converged Tx queue structure across

[PATCH v4 03/24] net/_common_intel: add Tx mbuf ring replenish fn

2024-12-20 Thread Bruce Richardson
Move the short function used to place mbufs on the SW Tx ring to common code to avoid duplication. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h | 7 +++ drivers/net/i40e/i40e_rxtx_vec_altivec.c | 4 ++-- drivers/net/i40e/i40e_rxtx_vec_avx2.c| 4 ++-- dr

[PATCH v4 05/24] drivers/net: add prefix for driver-specific structs

2024-12-20 Thread Bruce Richardson
In preparation for merging the Tx structs for multiple drivers into a single struct, rename the driver-specific pointers in each struct to have a prefix on it, to avoid conflicts. Signed-off-by: Bruce Richardson --- drivers/net/i40e/i40e_fdir.c | 6 +-- .../net/i40e/i40e_recycl

[PATCH v4 06/24] net/_common_intel: merge ice and i40e Tx queue struct

2024-12-20 Thread Bruce Richardson
The queue structures of i40e and ice drivers are virtually identical, so merge them into a common struct. This should allow easier function merging in future using that common struct. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h| 55 + driver

[PATCH v4 09/24] net/ixgbe: use common Tx queue structure

2024-12-20 Thread Bruce Richardson
Merge in additional fields used by the ixgbe driver and then convert it over to using the common Tx queue structure. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h| 14 +++- drivers/net/ixgbe/ixgbe_ethdev.c | 4 +- .../ixgbe/ixgbe_recycle_mbufs_v

[PATCH v4 07/24] net/iavf: use common Tx queue structure

2024-12-20 Thread Bruce Richardson
Merge in the few additional fields used by iavf driver and convert it to using the common Tx queue structure also. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h | 15 +++- drivers/net/iavf/iavf.h | 2 +- drivers/net/iavf/iavf_ethdev.c |

[PATCH v4 04/24] drivers/net: align Tx queue struct field names

2024-12-20 Thread Bruce Richardson
Across the various Intel drivers sometimes different names are given to fields in the Tx queue structure which have the same function. Do some renaming to align things better for future merging. Signed-off-by: Bruce Richardson --- drivers/net/i40e/i40e_rxtx.c| 6 +-- drivers/net/i40

[PATCH v4 08/24] net/ixgbe: convert Tx queue context cache field to ptr

2024-12-20 Thread Bruce Richardson
Rather than having a two element array of context cache values inside the Tx queue structure, convert it to a pointer to a cache at the end of the structure. This makes future merging of the structure easier as we don't need the "ixgbe_advctx_info" struct defined when defining a combined queue stru

[PATCH v4 14/24] net/ice: move Tx queue mbuf cleanup fn to common

2024-12-20 Thread Bruce Richardson
The functions to loop over the Tx queue and clean up all the mbufs on it, e.g. for queue shutdown, is not device specific and so can move into the common_intel headers. Only complication is ensuring that the correct ring format, either minimal vector or full structure, is used. Ice driver currently

[PATCH v4 11/24] net/_common_intel: add post-Tx buffer free function

2024-12-20 Thread Bruce Richardson
The actions taken for post-Tx buffer free for the SSE and AVX drivers for i40e, iavf and ice drivers are all common, so centralize those in common/intel_eth driver. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h | 71 drivers/net/i40e/i40e_rx

[PATCH v4 15/24] net/i40e: use common Tx queue mbuf cleanup fn

2024-12-20 Thread Bruce Richardson
Update driver to be similar to the "ice" driver and use the common mbuf ring cleanup code on shutdown of a Tx queue. Signed-off-by: Bruce Richardson --- drivers/net/i40e/i40e_ethdev.h | 4 +- drivers/net/i40e/i40e_rxtx.c | 70 -- drivers/net/i40e/i40e_rxtx.h

[PATCH v4 12/24] net/_common_intel: add Tx buffer free fn for AVX-512

2024-12-20 Thread Bruce Richardson
AVX-512 code paths for ice and i40e drivers are common, and differ from the regular post-Tx free function in that the SW ring from which the buffers are freed does not contain anything other than the mbuf pointer. Merge these into a common function in intel_common to reduce duplication. Signed-off

[PATCH v4 10/24] net/_common_intel: pack Tx queue structure

2024-12-20 Thread Bruce Richardson
Move some fields about to better pack the Tx queue structure and make sure all data used by the vector codepaths is on the first cacheline of the structure. Checking with "pahole" on 64-bit build, only one 6-byte hole is left in the structure - on second cacheline - after this patch. As part of th

[PATCH v4 13/24] net/iavf: use common Tx free fn for AVX-512

2024-12-20 Thread Bruce Richardson
Switch the iavf driver to use the common Tx free function. This requires one additional parameter to that function, since iavf sometimes uses context descriptors which means that we have double the descriptors per SW ring slot. Signed-off-by: Bruce Richardson --- drivers/net/_common_intel/tx.h

[PATCH v4 18/24] net/ice: use vector SW ring for all vector paths

2024-12-20 Thread Bruce Richardson
The AVX-512 code path used a smaller SW ring structure only containing the mbuf pointer, but no other fields. The other fields are only used in the scalar code path, so update all vector driver code paths to use the smaller, faster structure. Signed-off-by: Bruce Richardson --- drivers/net/_comm

[PATCH v4 19/24] net/i40e: use vector SW ring for all vector paths

2024-12-20 Thread Bruce Richardson
The AVX-512 code path used a smaller SW ring structure only containing the mbuf pointer, but no other fields. The other fields are only used in the scalar code path, so update all vector driver code paths (AVX2, SSE, Neon, Altivec) to use the smaller, faster structure. Signed-off-by: Bruce Richard

[PATCH v4 16/24] net/ixgbe: use common Tx queue mbuf cleanup fn

2024-12-20 Thread Bruce Richardson
Update driver to use the common cleanup function. Signed-off-by: Bruce Richardson --- drivers/net/ixgbe/ixgbe_rxtx.c| 22 +++--- drivers/net/ixgbe/ixgbe_rxtx.h| 1 - drivers/net/ixgbe/ixgbe_rxtx_vec_common.h | 28 ++- drivers/net/ixgbe/ixg

[PATCH v4 17/24] net/iavf: use common Tx queue mbuf cleanup fn

2024-12-20 Thread Bruce Richardson
Adjust iavf driver to also use the common mbuf freeing functions on Tx queue release/cleanup. The implementation is complicated a little by the need to integrate the additional "has_ctx" parameter for the iavf code, but changes in other drivers are minimal - just a constant "false" parameter. Sign

[PATCH v4 20/24] net/iavf: use vector SW ring for all vector paths

2024-12-20 Thread Bruce Richardson
The AVX-512 code path used a smaller SW ring structure only containing the mbuf pointer, but no other fields. The other fields are only used in the scalar code path, so update all vector driver code paths (AVX2, SSE) to use the smaller, faster structure. Signed-off-by: Bruce Richardson --- drive

[PATCH v4 23/24] net/_common_intel: create common mbuf initializer fn

2024-12-20 Thread Bruce Richardson
Across a number of drivers, the same code is used for initializing the "mbuf_initializer" value inside the rx queue structure for use with the vector drivers. Since the rx queue structures are (currently) different across the drivers, we cannot just move a single copy of the function to a common lo

[PATCH v4 21/24] net/_common_intel: remove unneeded code

2024-12-20 Thread Bruce Richardson
With all drivers using the common Tx structure updated so that their vector paths all use the simplified Tx mbuf ring format, it's no longer necessary to have a separate flag for the ring format and for use of a vector driver. Remove the former flag and base all decisions off the vector flag. With

[PATCH v4 22/24] net/ixgbe: use common Tx backlog entry fn

2024-12-20 Thread Bruce Richardson
Remove the custom vector Tx backlog entry function and use the standard intel_common one, now that all vector drivers are using the same, smaller ring structure. Signed-off-by: Bruce Richardson --- drivers/net/ixgbe/ixgbe_rxtx_vec_common.h | 10 -- drivers/net/ixgbe/ixgbe_rxtx_vec_neon.c

[PATCH v4 24/24] net/_common_intel: extract common Rx vector criteria

2024-12-20 Thread Bruce Richardson
While some drivers have specific criteria for when a vector driver can be enabled on the Rx path, there are a number of basic criteria which apply across all drivers. Centralize those in the _common_intel folder, and then update drivers to use the common conditional checks. This adds some additiona

[PATCH] net/vhost: improve devargs documentation

2024-12-20 Thread Maxime Coquelin
This patch adds missing 'client' devarg documentation and improve other devargs. Bugzilla ID: 1603 Signed-off-by: Maxime Coquelin --- doc/guides/nics/vhost.rst | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/doc/guides/nics/vhost.rst b/doc/guides/nics/vhost.rst inde