Re: [PATCH v1 7/9] test/bbdev: check assumptions on fft window

2024-06-24 Thread Maxime Coquelin
Hi Nicolas, On 6/20/24 20:11, Chautru, Nicolas wrote: Hi Maxime, -Original Message- From: Maxime Coquelin Sent: Wednesday, June 12, 2024 4:11 AM To: Vargas, Hernan ; dev@dpdk.org; gak...@marvell.com; t...@redhat.com Cc: Chautru, Nicolas ; Zhang, Qi Z Subject: Re: [PATCH v1 7/9] test/

[PATCH 1/6] net/cnxk: stale offload flag reset

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla mbuf buffer is not reset on tx and hence few fields has stale data from previous packets. Due to stale offload flags, in one of the scenarios with OVS, VxLAN offload flag was set while packet did not have the VxLAN header. In the OVS packet path, the flag was read and ac

[PATCH 2/6] net/cnxk: add MTU set ops

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Implement mtu set ops for representor ports Signed-off-by: Ankur Dwivedi --- drivers/net/cnxk/cnxk_rep.h | 1 + drivers/net/cnxk/cnxk_rep_ops.c | 34 - 2 files changed, 34 insertions(+), 1 deletion(-) diff --git a/drivers/net/cnxk/cnxk_

[PATCH 3/6] net/cnxk: add multi seg support in eswitch

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Introducing multi segment support in eswitch driver to handle packets of varying sizes. Signed-off-by: Ankur Dwivedi --- drivers/net/cnxk/cnxk_eswitch.c | 2 +- drivers/net/cnxk/cnxk_eswitch_rxtx.c | 167 --- 2 files changed, 149 insertions(+)

[PATCH 4/6] net/cnxk: increment number of flow pattern

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla Increment nb_pattern count to include RTE_FLOW_ITEM_TYPE_END. Signed-off-by: Amit Prakash Shukla --- drivers/net/cnxk/cnxk_rep_flow.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/net/cnxk/cnxk_rep_flow.c b/drivers/net/cnxk/cnxk_rep_flow.c index d26f5

[PATCH 5/6] net/cnxk: update processing ready message

2024-06-24 Thread Harman Kalra
From: Hanumanth Pothula Now, dpu offload application sends READY measage with only MAC port's hw_funcs. Hence, process the READY message accordingly. Signed-off-by: Hanumanth Pothula --- drivers/net/cnxk/cnxk_rep_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers

[PATCH 6/6] common/cnxk: flow aginig delaying app shutdown

2024-06-24 Thread Harman Kalra
If flow aging is enabled application termination may take time equivalent to aging timeout. This is because on termination flow thread uses a sleep call which is uninterruptible. Signed-off-by: Harman Kalra Signed-off-by: Kiran Kumar K --- drivers/common/cnxk/roc_npc_aging.c | 17 ++

Re: [PATCH] meson: use built-in 'modules' helper for python dependencies

2024-06-24 Thread Bruce Richardson
On Sun, Jun 23, 2024 at 01:30:23PM +0100, luca.bocca...@gmail.com wrote: > From: Luca Boccassi > > We now require Meson 0.53 or later, so we can use this feature introduced > in 0.51. This also fixes a build failure on SUSE Leap 15.6. > > Cc: sta...@dpdk.org > > Signed-off-by: Luca Boccassi A

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Akhil Goyal
> > > > > > > > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize > > > > > > > > AES-GCM IPsec operation > > > > > > > > > > > > > > > > > To optimize AES-GCM IPsec operation within crypto/mlx5, > > > > > > > > > the DPDK API typically supplies AES_GCM AAD/Payload/Digest > > > > > > > >

Re: [PATCH v3 2/2] eventdev: add support for enqueue reorder

2024-06-24 Thread Jerin Jacob
On Sat, Jun 22, 2024 at 4:02 AM Abdullah Sevincer wrote: > > This commit adds support flag to enable enqueue reorder > feature. > > When this flag is enabled in the port configuration PMD > restores dequeue order on enqueue if applications happen to > change it. > > Signed-off-by: Abdullah Sevince

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Suanming Mou
> -Original Message- > From: Akhil Goyal > Sent: Monday, June 24, 2024 4:28 PM > To: Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > IPsec operation > > > Just to be more accurate, in fact our current PMD has supp

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Akhil Goyal
> > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > > IPsec operation > > > > > Just to be more accurate, in fact our current PMD has supported IPsec > > > already via UMR's way. This series is an optimization, not newly > > > supporting IPsec, but to optimize the IPsec input

RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Suanming Mou
> -Original Message- > From: Akhil Goyal > Sent: Monday, June 24, 2024 4:45 PM > To: Suanming Mou ; Matan Azrad > > Cc: dev@dpdk.org > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: optimize AES-GCM > IPsec operation > > > > Subject: RE: [EXTERNAL] [PATCH v2 1/2] crypto/mlx5: opti

Re: [PATCH 1/6] net/cnxk: stale offload flag reset

2024-06-24 Thread Jerin Jacob
On Mon, Jun 24, 2024 at 1:19 PM Harman Kalra wrote: > > From: Amit Prakash Shukla > > mbuf buffer is not reset on tx and hence few fields has stale data from > previous packets. Due to stale offload flags, in one of the scenarios > with OVS, VxLAN offload flag was set while packet did not have th

Re: [PATCH 4/6] net/cnxk: increment number of flow pattern

2024-06-24 Thread Jerin Jacob
On Mon, Jun 24, 2024 at 1:20 PM Harman Kalra wrote: > > From: Amit Prakash Shukla > > Increment nb_pattern count to include RTE_FLOW_ITEM_TYPE_END. Is n't fix? If so, Fixes tag > Signed-off-by: Amit Prakash Shukla > --- > drivers/net/cnxk/cnxk_rep_flow.c | 3 +++ > 1 file changed, 3 insertion

Re: [PATCH] meson: use built-in 'modules' helper for python dependencies

2024-06-24 Thread David Marchand
On Sun, Jun 23, 2024 at 2:30 PM wrote: > > From: Luca Boccassi > > We now require Meson 0.53 or later, so we can use this feature introduced > in 0.51. This also fixes a build failure on SUSE Leap 15.6. @Luca The patch lgtm, but could you develop on what was wrong with SUSE? > Cc: sta...@dpdk.

[PATCH v3 0/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Suanming Mou
To optimize AES-GCM IPsec operation within crypto/mlx5, the DPDK API typically supplies AES_GCM AAD/Payload/Digest in separate locations, potentially disrupting their contiguous layout. In cases where the memory layout fails to meet hardware (HW) requirements, an UMR WQE is initiated ahead of the G

[PATCH v3 1/2] crypto/mlx5: optimize AES-GCM IPsec operation

2024-06-24 Thread Suanming Mou
To optimize AES-GCM IPsec operation within crypto/mlx5, the DPDK API typically supplies AES_GCM AAD/Payload/Digest in separate locations, potentially disrupting their contiguous layout. In cases where the memory layout fails to meet hardware (HW) requirements, an UMR WQE is initiated ahead of the G

[PATCH v3 2/2] crypto/mlx5: add out of place mode for IPsec operation

2024-06-24 Thread Suanming Mou
The IPsec operation shrinks AAD directly before payload in enqueue burst and restores the memory in dequeue burst. This commit adds the support of OOP mode follows the similar strategy. Signed-off-by: Suanming Mou Acked-by: Matan Azrad --- doc/guides/cryptodevs/mlx5.rst| 3 ++ drivers

Re: [PATCH] vhost: Fix the crash caused by accessing the released memory

2024-06-24 Thread Maxime Coquelin
Hi, On 6/19/24 14:27, zhaoxinxin wrote: The rte_vhost_driver_unregister() vhost_user_read_cb() vhost_user_client_reconnect() can be called at the same time by 3 threads. when memory of vsocket is freed in rte_vhost_driver_unregister(), then vhost_user_read_cb() maybe add vsocket to reconn_list,

Re: [PATCH] meson: use built-in 'modules' helper for python dependencies

2024-06-24 Thread Kevin Traynor
On 24/06/2024 10:15, David Marchand wrote: > On Sun, Jun 23, 2024 at 2:30 PM wrote: >> >> From: Luca Boccassi >> >> We now require Meson 0.53 or later, so we can use this feature introduced >> in 0.51. This also fixes a build failure on SUSE Leap 15.6. > > @Luca > The patch lgtm, but could you d

[PATCH] eventdev/dma: fix missing response info in forward mode

2024-06-24 Thread pbhagavatula
From: Pavan Nikhilesh When in OP_FWD mode the DMA completion response should use the `rte_event_dma_adapter_op::event_meta` to inject the completion event. Bugzilla ID: 1469 Fixes: 588dcac23610 ("eventdev/dma: reorganize event DMA ops") Signed-off-by: Pavan Nikhilesh --- app/test/test_event_d

[PATCH v5 00/21] Update MEV TS Base Driver

2024-06-24 Thread Soumyadeep Hore
--- v5: - Removed warning from patch 6 --- v4: - Removed 1st patch as we are not using NVME_CPF flag - Addressed comments --- v3: - Removed additional whitespace changes - Fixed warnings of CI - Updated documentation relating to MEV TS FW release --- v2: - Changed implementation based on review com

[PATCH v5 01/21] common/idpf: updated IDPF VF device ID

2024-06-24 Thread Soumyadeep Hore
Update IDPF VF device id to 145C. Also added device ID for S-IOV device. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/idpf_devids.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/common/idpf/base/idpf_devids.h b/drivers/common/idpf/base/idpf_dev

[PATCH v5 02/21] common/idpf: added new virtchnl2 capability and vport flag

2024-06-24 Thread Soumyadeep Hore
Removed unused VIRTCHNL2_CAP_ADQ capability and use that bit for VIRTCHNL2_CAP_INLINE_FLOW_STEER capability. Added VIRTCHNL2_VPORT_INLINE_FLOW_STEER_ENA port flag to allow enable/disable per vport. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 7 --- 1 file chang

[PATCH v5 03/21] common/idpf: moved the idpf HW into API header file

2024-06-24 Thread Soumyadeep Hore
There is an issue of recursive header file includes in accessing the idpf_hw structure. The controlq.h has the structure definition and osdep header file needs that. The problem is the controlq.h also needs the osdep header file contents, basically both dependent on each other. Moving the definiti

[PATCH v5 04/21] common/idpf: avoid defensive programming

2024-06-24 Thread Soumyadeep Hore
Based on the upstream feedback, driver should not use any defensive programming strategy by checking for NULL pointers and other conditional checks unnecessarily in the code flow to fall back, instead fail and fix the bug in a proper way. As the control queue is freed and deleted from the list aft

[PATCH v5 05/21] common/idpf: use BIT ULL for large bitmaps

2024-06-24 Thread Soumyadeep Hore
For bitmaps greater than 32 bits, use BIT_ULL instead of BIT macro as reported by compiler. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 70 ++-- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/drivers/common/idpf/base/virtchnl

[PATCH v5 06/21] common/idpf: convert data type to 'le'

2024-06-24 Thread Soumyadeep Hore
'u32' data type is used for the struct members in 'virtchnl2_version_info' which should be '__le32'. Make the change accordingly. It is a Little Endian specific type definition. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 4 ++-- 1 file changed, 2 insertions(+), 2

[PATCH v5 07/21] common/idpf: compress RXDID mask definitions

2024-06-24 Thread Soumyadeep Hore
Instead of using the long RXDID definitions, introduce a macro which uses common part of the RXDID definitions i.e. VIRTCHNL2_RXDID_ and the bit passed to generate a mask. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2_lan_desc.h | 31 ++- 1 file changed, 1

[PATCH v5 08/21] common/idpf: refactor size check macro

2024-06-24 Thread Soumyadeep Hore
Instead of using 'divide by 0' to check the struct length, use the static_assert macro Removed redundant CHECK_UNION_LEN macro. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 13 + 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/drivers/commo

[PATCH v5 09/21] common/idpf: update mask of Rx FLEX DESC ADV FF1 M

2024-06-24 Thread Soumyadeep Hore
Mask for VIRTCHNL2_RX_FLEX_DESC_ADV_FF1_M was defined wrongly and this patch fixes it. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2_lan_desc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/idpf/base/virtchnl2_lan_desc.h b/drivers/com

[PATCH v5 12/21] common/idpf: avoid variable 0-init

2024-06-24 Thread Soumyadeep Hore
Don't initialize the variables if not needed. Also use 'err' instead of 'status', 'ret_code', 'ret' etc. for consistency and change the return label 'sq_send_command_out' to 'err_unlock'. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/idpf_controlq.c | 60 +--

[PATCH v5 13/21] common/idpf: update in PTP message validation

2024-06-24 Thread Soumyadeep Hore
When the message for getting timestamp latches is sent by the driver, number of latches is equal to 0. Current implementation of message validation function incorrectly notifies this kind of message length as invalid. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 4 ++

[PATCH v5 14/21] common/idpf: rename INLINE FLOW STEER to FLOW STEER

2024-06-24 Thread Soumyadeep Hore
This capability bit indicates both inline as well as side band flow steering capability. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/idpf/base/virtchnl2.h b/drivers/common/idpf/base/vi

[PATCH v5 15/21] common/idpf: add wmb before tail

2024-06-24 Thread Soumyadeep Hore
Introduced through customer's feedback in their attempt to address some bugs this introduces a memory barrier before posting ctlq tail. This makes sure memory writes have a chance to take place before HW starts messing with the descriptors. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/

[PATCH v5 16/21] drivers: add flex array support and fix issues

2024-06-24 Thread Soumyadeep Hore
With the internal Linux upstream feedback that is received on IDPF driver and also some references available online, it is discouraged to use 1-sized array fields in the structures, especially in the new Linux drivers that are going to be upstreamed. Instead, it is recommended to use flex array fie

[PATCH v5 17/21] common/idpf: enable flow steer capability for vports

2024-06-24 Thread Soumyadeep Hore
Added virtchnl2_flow_types to be used for flow steering. Added flow steer cap flags for vport create. Add flow steer flow types and action types for vport create. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl2.h | 60 ++-- 1 file changed, 57 inser

[PATCH v5 10/21] common/idpf: use 'pad' and 'reserved' fields appropriately

2024-06-24 Thread Soumyadeep Hore
'pad' naming is used if the field is actually a padding byte and is also used for bytes meant for future addition of new fields, whereas 'reserved' is only used if the field is reserved and cannot be used for any other purpose. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/virtchnl

[PATCH v5 11/21] common/idpf: move related defines into enums

2024-06-24 Thread Soumyadeep Hore
Changes all groups of related defines to enums. The names of the enums are chosen to follow the common part of the naming pattern as much as possible. Replaced the common labels from the comments with the enum names. While at it, modify header description based on upstream feedback. Some variabl

[PATCH v5 18/21] common/idpf: add a new Tx context descriptor structure

2024-06-24 Thread Soumyadeep Hore
Adding a new structure for the context descriptor that contains the support for timesync packets, where the index for timestamping is set. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/idpf_lan_txrx.h | 20 +++- 1 file changed, 19 insertions(+), 1 deletion(-) diff

[PATCH v5 19/21] common/idpf: remove idpf common file

2024-06-24 Thread Soumyadeep Hore
The file is redundant in our implementation and is not required further. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/base/idpf_common.c | 382 - drivers/common/idpf/base/meson.build | 1 - 2 files changed, 383 deletions(-) delete mode 100644 drivers/common

[PATCH v5 20/21] drivers: adding type to idpf vc queue switch

2024-06-24 Thread Soumyadeep Hore
Adding an argument named type to define queue type in idpf_vc_queue_switch(). This solves the issue of improper queue type in virtchnl2 message. Signed-off-by: Soumyadeep Hore --- drivers/common/idpf/idpf_common_virtchnl.c | 8 ++-- drivers/common/idpf/idpf_common_virtchnl.h | 2 +- driver

[PATCH v5 21/21] doc: updated the documentation for cpfl PMD

2024-06-24 Thread Soumyadeep Hore
Updated the latest support for cpfl pmd in MEV TS firmware version which is 1.4. Signed-off-by: Soumyadeep Hore --- doc/guides/nics/cpfl.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/guides/nics/cpfl.rst b/doc/guides/nics/cpfl.rst index 9b7a99c894..528c809819 100644 --- a/doc/gui

Re: [PATCH v4 13/13] eal: provide option to use compiler memcpy instead of RTE

2024-06-24 Thread Thomas Monjalon
20/06/2024 19:57, Mattias Rönnblom: > Provide build option to have functions in delegate to > the standard compiler/libc memcpy(), instead of using the various > custom DPDK, handcrafted, per-architecture rte_memcpy() > implementations. > > A new meson build option 'use_cc_memcpy' is added. By de

[PATCH] bus/vmbus: add device_order field to rte_vmbus_dev

2024-06-24 Thread Vladimir Ratnikov
Field can be used to have static interface naming in DPDK based applications instead of uuid. RTE_FOREACH_DEV won't return the correct order of such devices due to vmbus_ignore_device in case of blocklisting/allowlisting. So device_order field will be helpfull in that case. Signed-off-by: Vladimir

[PATCH v2] bus/vmbus: add device_order field to rte_vmbus_dev

2024-06-24 Thread Vladimir Ratnikov
Field can be used to have static interface naming in DPDK based applications instead of uuid. RTE_FOREACH_DEV won't return the correct order of such devices due to vmbus_ignore_device in case of blocklisting/allowlisting. So device_order field will be helpful in that case. Signed-off-by: Vladimir

[PATCH v2] bus/vmbus: add device_order field to rte_vmbus_dev

2024-06-24 Thread Vladimir Ratnikov
Field can be used to have static interface naming in DPDK based applications instead of uuid. RTE_FOREACH_DEV won't return the correct order of such devices due to vmbus_ignore_device in case of blocklisting/allowlisting. So device_order field will be helpful in that case. Signed-off-by: Vladimir

[PATCH v2 1/5] net/cnxk: fix stale offload flag reset

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla mbuf buffer is not reset on tx and hence few fields has stale data from previous packets. Due to stale offload flags, in one of the scenarios with OVS, VxLAN offload flag was set while packet did not have the VxLAN header. In the OVS packet path, the flag was read and ac

[PATCH v2 2/5] net/cnxk: add MTU set ops

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Adding support for changing MTU of a representor port. This is required to allow processing jumbo packets. Using this operation, MTU of representor port is only changed, no MTU change shall be propagated to the respective represented port. Signed-off-by: Ankur Dwivedi --- V2

[PATCH v2 3/5] net/cnxk: add multi seg support in eswitch

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Introducing multi segment support in eswitch driver to handle packets of varying sizes which cannot be accommodated to a mbuf. Instead, the packet data is split across numerous mbufs, each carrying a portion, or 'segment', of the packet data. Signed-off-by: Ankur Dwivedi Sig

[PATCH v2 4/5] net/cnxk: fix invalid pattern count

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla Increment nb_pattern count to include RTE_FLOW_ITEM_TYPE_END. Fixes: aebe8cf310cc ("net/cnxk: create flow on representor ports") Signed-off-by: Amit Prakash Shukla --- V2: * Added fixes tag drivers/net/cnxk/cnxk_rep_flow.c | 3 +++ 1 file changed, 3 insertions(+)

[PATCH v2 5/5] net/cnxk: fix representor port mapping

2024-06-24 Thread Harman Kalra
From: Hanumanth Pothula As part of ready and exit messages only first half of the ports were processed, i.e. represented to representor port mapping was setup and released. While later half of the ports were not processed. Fixes: 804c585658ea ("net/cnxk: add representor control plane") Signed-o

[PATCH v3 1/5] net/cnxk: fix stale offload flag reset

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla mbuf buffer is not reset on tx and hence few fields has stale data from previous packets. Due to stale offload flags, in one of the scenarios with OVS, VxLAN offload flag was set while packet did not have the VxLAN header. In the OVS packet path, the flag was read and ac

[PATCH v3 2/5] net/cnxk: add MTU set ops

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Adding support for changing MTU of a representor port. This is required to allow processing jumbo packets. Using this operation, MTU of representor port is only changed, no MTU change shall be propagated to the respective represented port. Signed-off-by: Ankur Dwivedi --- V2

[PATCH v3 3/5] net/cnxk: add multi seg support in eswitch

2024-06-24 Thread Harman Kalra
From: Ankur Dwivedi Introducing multi segment support in eswitch driver to handle packets of varying sizes which cannot be accommodated to a mbuf. Instead, the packet data is split across numerous mbufs, each carrying a portion, or 'segment', of the packet data. Signed-off-by: Ankur Dwivedi Sig

[PATCH v3 4/5] net/cnxk: fix invalid pattern count

2024-06-24 Thread Harman Kalra
From: Amit Prakash Shukla Increment nb_pattern count to include RTE_FLOW_ITEM_TYPE_END. Fixes: aebe8cf310cc ("net/cnxk: create flow on representor ports") Signed-off-by: Amit Prakash Shukla --- V2: * Added fixes tag drivers/net/cnxk/cnxk_rep_flow.c | 3 +++ 1 file changed, 3 insertions(+)

[PATCH v3 5/5] net/cnxk: fix representor port mapping

2024-06-24 Thread Harman Kalra
From: Hanumanth Pothula As part of ready and exit messages only first half of the ports were processed, i.e. represented to representor port mapping was setup and released. While later half of the ports were not processed. Fixes: 804c585658ea ("net/cnxk: add representor control plane") Signed-o

[PATCH v5 0/4] dts: API docs generation

2024-06-24 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. Dependencies are installed using Poetry from the dts directory: poetry install --with docs After installing, enter the Poetry shell: poetry shell And then ru

[PATCH v5 1/4] dts: update params and parser docstrings

2024-06-24 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 v5 2/4] dts: add doc generation dependencies

2024-06-24 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all DTS dependencies, including Python version, must be satisfied. By adding Sphinx to DTS dependencies we provide a convenient way to generate the DTS API docs which satisfies all dependencies. Signed-off-by

[PATCH v5 4/4] dts: add API doc generation

2024-06-24 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. Sphinx generates the documentation from

[PATCH v5 3/4] dts: add API doc sources

2024-06-24 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 v6 0/4] dts: API docs generation

2024-06-24 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. Dependencies are installed using Poetry from the dts directory: poetry install --with docs After installing, enter the Poetry shell: poetry shell And then ru

[PATCH v6 1/4] dts: update params and parser docstrings

2024-06-24 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 v6 2/4] dts: add doc generation dependencies

2024-06-24 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all DTS dependencies, including Python version, must be satisfied. By adding Sphinx to DTS dependencies we provide a convenient way to generate the DTS API docs which satisfies all dependencies. Signed-off-by

[PATCH v6 3/4] dts: add API doc sources

2024-06-24 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 v6 4/4] dts: add API doc generation

2024-06-24 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. Sphinx generates the documentation from

Re: [PATCH v6 4/4] dts: add API doc generation

2024-06-24 Thread Bruce Richardson
On Mon, Jun 24, 2024 at 03:46:00PM +0200, 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 s

RE: [PATCH] net/mlx5: fix memleak for resource object

2024-06-24 Thread Dariusz Sosnowski
Hi, Thank you very much for the fix. Could you please provide the commit message explaining the problem reported by Coverity and the fix? > -Original Message- > From: Mahmoud Maatuq > Sent: Sunday, June 23, 2024 12:36 > To: Dariusz Sosnowski ; Slava Ovsiienko > ; Bing Zhao ; Ori Kam >

Re: [PATCH v6 4/4] dts: add API doc generation

2024-06-24 Thread Juraj Linkeš
Hi Thomas, I believe the only open question in this patch set is the linking of DTS API docs on the main doxygen page. I've left only the parts relevant to the question so that it's easier for us to address it. diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index f9283154

Re: [PATCH v6 4/4] dts: add API doc generation

2024-06-24 Thread Thomas Monjalon
24/06/2024 15:46, 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. >

[PATCH v7 0/4] dts: API docs generation

2024-06-24 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. Dependencies are installed using Poetry from the dts directory: poetry install --with docs After installing, enter the Poetry shell: poetry shell And then ru

[PATCH v7 1/4] dts: update params and parser docstrings

2024-06-24 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 v7 2/4] dts: add doc generation dependencies

2024-06-24 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all DTS dependencies, including Python version, must be satisfied. By adding Sphinx to DTS dependencies we provide a convenient way to generate the DTS API docs which satisfies all dependencies. Signed-off-by

[PATCH v7 3/4] dts: add API doc sources

2024-06-24 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 v7 4/4] dts: add API doc generation

2024-06-24 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. Sphinx generates the documentation from

Re: [PATCH v1] crypto/ipsec_mb: use new ipad/opad calculation API

2024-06-24 Thread Ji, Kai
Acked-by: Kai Ji From: Dooley, Brian Sent: 05 June 2024 09:48 To: Ji, Kai ; De Lara Guarch, Pablo Cc: dev@dpdk.org ; gak...@marvell.com ; Dooley, Brian Subject: [PATCH v1] crypto/ipsec_mb: use new ipad/opad calculation API From: Pablo de Lara IPSec Multi-bu

[PATCH] vhost: only emit debug log with invalid FD

2024-06-24 Thread Maxime Coquelin
This patch improves the FD manager logging in case of FD removal from the epoll FD set failure. When the FD is not more valid, like for example if it has already been closed, only emit a debug log and not an error one. Fixes: 0e38b42bf61c ("vhost: manage FD with epoll") Reported-by: David Marcha

[PATCH v2 0/9] test-bbdev fixes and improvements for 24.07

2024-06-24 Thread Hernan Vargas
v2: Added defines for MLD calculation constants. v1:This series targets test-bbdev changes for 24.07. It includes test fixes, iter-max argument change (after deprecation notice in previous releases) and general test improvements. Hernan Vargas (9): test/bbdev: fix TB logic test/bbdev: fix MLD

[PATCH v2 2/9] test/bbdev: fix MLD output size computation

2024-06-24 Thread Hernan Vargas
For perf tests, the operation size for the MLD-TS was incorrect. Fixed so that the performance numbers are correct. Largely cosmetic only. Fixes: 95f192a40e35 ("test/bbdev: add MLD cases") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 12 ++-- 1

[PATCH v2 1/9] test/bbdev: fix TB logic

2024-06-24 Thread Hernan Vargas
Fix discrepancy in logic when using large fake mbuf. Fixes: fd96ef3787f1 ("test/bbdev: extend support for large TB") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff

[PATCH v2 4/9] test/bbdev: change iter-max argument

2024-06-24 Thread Hernan Vargas
-t --iter-max used for max number of iterations. -T --timeout used for test timeout value. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test-bbdev.py | 16 +--- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/app/test-bbdev/test-bbdev.p

[PATCH v2 5/9] test/bbdev: improve timeout message format

2024-06-24 Thread Hernan Vargas
Print more info and format message for test timeouts. No functional impact. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test-bbdev.py | 22 ++ 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/app/test-bbdev/test-bbdev.py b/app/t

[PATCH v2 6/9] test/bbdev: add soft output parsing capability

2024-06-24 Thread Hernan Vargas
Add vector parsing capability for soft output vectors. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_vector.c | 4 1 file changed, 4 insertions(+) diff --git a/app/test-bbdev/test_bbdev_vector.c b/app/test-bbdev/test_bbdev_vector.c index 42fa6300

[PATCH v2 7/9] test/bbdev: check assumptions on fft window

2024-06-24 Thread Hernan Vargas
Add check for FFT window width. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 26 ++ app/test-bbdev/test_bbdev_vector.c | 14 ++ app/test-bbdev/test_bbdev_vector.h | 2 ++ 3 files changed, 38 insertions(+), 4 deletions(-) diff --git a

[PATCH v2 8/9] test/bbdev: update fft measurement output

2024-06-24 Thread Hernan Vargas
Update check for FFT measurement output to better account for tolerance. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c | 52 +++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/app/test-bbdev/test_bbdev_

[PATCH v2 3/9] test/bbdev: fix interrupt tests

2024-06-24 Thread Hernan Vargas
Fix possible error with regards to setting the burst size from the enqueue thread. Fixes: b2e2aec3239e ("app/bbdev: enhance interrupt test") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c | 98

[PATCH v2 9/9] test/bbdev: remove unnecessary line

2024-06-24 Thread Hernan Vargas
Remove unnecesary line of code. No functional impact. Signed-off-by: Hernan Vargas Reviewed-by: Maxime Coquelin --- app/test-bbdev/test_bbdev.c | 1 - 1 file changed, 1 deletion(-) diff --git a/app/test-bbdev/test_bbdev.c b/app/test-bbdev/test_bbdev.c index cf224dca5d04..0bbce6ca923b 100644 --

Re: [PATCH] doc/design: minor cleanus

2024-06-24 Thread Thomas Monjalon
22/06/2024 16:47, Stephen Hemminger: > Minor fixes to previous edit: > 1. remove blank line at end of file, causes git complaint > 2. fix minor typo (UTF-8?) > 3. break long lines, although rst doesn't care it is nicer > for future editors to keep to 100 characters or less. While changing l

Re: [PATCH v7 1/4] dts: update params and parser docstrings

2024-06-24 Thread Luca Vizzarro
Reviewed-by: Luca Vizzarro

RE: [PATCH] app/testpmd: fix help string of BPF load command

2024-06-24 Thread Konstantin Ananyev
> Based on the logic of 'bpf_parse_flags()' and the 'bpf-load' section of > 'testpmd_funcs.rst' document, the 'B' flag in the help string of > bpf-load command should be '-'. > > Fixes: e977e4199a8d ("app/testpmd: add commands to load/unload BPF filters") > Cc: konstantin.anan...@intel.com > Cc:

Re: [PATCH 0/5] OpenSSL PMD Optimisations

2024-06-24 Thread Ji, Kai
Series-acked-by: Kai Ji From: Jack Bond-Preston Sent: 03 June 2024 17:01 Cc: dev@dpdk.org Subject: [PATCH 0/5] OpenSSL PMD Optimisations The current implementation of the OpenSSL PMD has numerous performance issues. These revolve around certain operations being

Re: [PATCH v4 13/13] eal: provide option to use compiler memcpy instead of RTE

2024-06-24 Thread Mattias Rönnblom
On Mon, Jun 24, 2024 at 12:05:53PM +0200, Thomas Monjalon wrote: > 20/06/2024 19:57, Mattias Rönnblom: > > Provide build option to have functions in delegate to > > the standard compiler/libc memcpy(), instead of using the various > > custom DPDK, handcrafted, per-architecture rte_memcpy() > > imp

[PATCH v6 1/3] dts: updated testpmd shell class

2024-06-24 Thread Dean Marx
Ported over the promisc and verbose mode functions from v2 of the queue start/stop suite to use for the VLAN suite. Tweaked some of the verification methods to be more concise, changed some docstrings to be more specific. Signed-off-by: Dean Marx --- dts/framework/remote_session/testpmd_shell.py

[PATCH v6 2/3] dts: refactored VLAN test suite

2024-06-24 Thread Dean Marx
Tweaked logic on sending and verifying packets for more concise code, added verbose and promisc function calls from pmd shell module. Signed-off-by: Dean Marx --- dts/tests/TestSuite_vlan.py | 167 1 file changed, 167 insertions(+) create mode 100644 dts/te

[PATCH v6 3/3] dts: config schema

2024-06-24 Thread Dean Marx
Configuration to run vlan test suite Signed-off-by: Dean Marx --- dts/framework/config/conf_yaml_schema.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dts/framework/config/conf_yaml_schema.json b/dts/framework/config/conf_yaml_schema.json index 4731f4511d..eca8244f27

Re: [PATCH] net/mlx5: fix memleak for resource object

2024-06-24 Thread Mahmoud Maatouq
On 06/24, Dariusz Sosnowski wrote: > Hi, > > Thank you very much for the fix. > > Could you please provide the commit message explaining the problem reported > by Coverity and the fix? I thought of doing that, but found Coverity report already explained it, so i was afraid it could be redundant,

[PATCH v2] net/mlx5: fix memleak for resource object

2024-06-24 Thread Mahmoud Maatuq
this makes sure that the allocated resource object is freed for all branches that return NULL Coverity issue: 426424 Fixes: 27d171b88031 ("net/mlx5: abstract flow action and enable reconfigure") Cc: mkash...@nvidia.com Signed-off-by: Mahmoud Maatuq --- drivers/net/mlx5/mlx5_flow_dv.c | 5 -

[PATCH v2] app/graph: fix destination buffer too small

2024-06-24 Thread Mahmoud Maatuq
as sizeof(config.rx.mempool_name) is < sizeof(res->mempool) we should copy at most sizeof(config.rx.mempool_name) and replace memcpy with strlcpy as mempool name is a null terminated string Coverity issue: 415430 Fixes: 3850cb06ab9c ("app/graph: add ethdev commands") Cc: sk...@marvell.com Signed-

  1   2   >