Re: [PATCH] baseband/la12xx: fix issue with secondary process

2024-07-02 Thread Maxime Coquelin
On 7/2/24 08:09, Hemant Agrawal wrote: The la12xx driver do not have any checks for secondary process and it causes the system to try to initialize the driver, causing segmentation faults. LA12xx driver do not support multi-processing. Return when not called from Primary process. Fixes: f218a

[PATCH v6 0/2] fix secondary process PCI UIO resource problem

2024-07-02 Thread Chaoyong He
This patch series aims to fix some problems in secondary process PCI UIO resource map logic. --- v2: * Modify as the advice from reviewer. v3: * Modify logic as the comments of reviewers. v4: * Split the commits to make it easier to understand. v5: * Fix the unmapping UIO resources probelm found b

[PATCH v6 1/2] bus/pci: fix secondary process PCI uio resource map problem

2024-07-02 Thread Chaoyong He
From: Zerun Fu For the primary process, the logic loops all BARs and will skip the map of BAR with an invalid physical address (0), also will assign 'uio_res->nb_maps' with the real mapped BARs number. But for the secondary process, instead of loops all BARs, the logic using the 'uio_res->nb_map'

[PATCH v6 2/2] bus/pci: fix secondary process save 'FD' problem

2024-07-02 Thread Chaoyong He
From: Zerun Fu In the previous logic the 'fd' was only saved in the primary process, but for some devices this value is also used in the secondary logic. For example, the call of 'rte_pci_find_ext_capability()' will fail in the secondary process. Fix this problem by getting and saving the value

Re: [PATCH v1] vhost: fix crash caused by accessing a freed vsocket

2024-07-02 Thread Maxime Coquelin
Hi Gongming, On 5/10/24 09:28, Gongming Chen wrote: Hi Maxime and Chenbo, Do you have any suggestions for how to address this? Looking forward to hearing from you! Could you please have a try with latest DPDK main branch, and if it reproduces, rebase your series on top of it. I don't think

[PATCH v6] net/i40e: support FEC feature

2024-07-02 Thread Zhichao Zeng
This patch enabled querying Forward Error Correction(FEC) capabilities, set FEC mode and get current FEC mode functions. Signed-off-by: Zhichao Zeng --- v6: fix some judgments v5: fix some judgments v4: fix some logic v3: optimize code details v2: update NIC feature document --- doc/guides/nics

[PATCH v2] net/ice: support FEC feature

2024-07-02 Thread Mingjin Ye
This patch enable three Forward Error Correction(FEC) related ops in ice driver. As no speed information can get from HW, this patch only show FEC capability. Signed-off-by: Qiming Yang Signed-off-by: Mingjin Ye --- v2: fix some logic --- doc/guides/nics/features/ice.ini | 1 + doc/guides/nic

Re: [PATCH v2 2/2] eal: add Arm WFET in power management intrinsics

2024-07-02 Thread Thomas Monjalon
01/07/2024 23:34, Wathsala Wathawana Vithanage: > > 19/06/2024 08:45, Wathsala Vithanage: > > > rte_cpu_get_intrinsics_support(struct rte_cpu_intrinsics *intrinsics) > > > { > > > memset(intrinsics, 0, sizeof(*intrinsics)); -#ifdef RTE_ARM_USE_WFE > > > intrinsics->power_monitor = 1; > > > -#e

[PATCH v6] net/i40e: support FEC feature

2024-07-02 Thread Zhichao Zeng
This patch enabled querying Forward Error Correction(FEC) capabilities, set FEC mode and get current FEC mode functions. Signed-off-by: Zhichao Zeng --- v6: fix some judgments v5: fix some judgments v4: fix some logic v3: optimize code details v2: update NIC feature document --- doc/guides/nics

[PATCH] driver: crypto: scheduler: fix session size computation

2024-07-02 Thread jhascoet
The crypto scheduler session size computation was taking into account only the worker session sizes and not its own. Fixes: e2af4e403c1 ("crypto/scheduler: support DOCSIS security protocol") Cc: sta...@dpdk.org Signed-off-by: Julien Hascoet --- drivers/crypto/scheduler/scheduler_pmd_ops.c | 2 +

Re: [PATCH] zsda:introduce zsda drivers and examples

2024-07-02 Thread David Marchand
Hello, Thanks for the submission. On Tue, Jul 2, 2024 at 10:42 AM lhx wrote: > > From: = Hanxiao Li There is an extra = sign here, please remove. > > Introduce zsda (ZTE Storage Data Accelerator) drivers and examples, > which can help to accelerate some calculation process. It looks like thi

Re: [PATCH] net/netvsc: fix mtu_set in netvsc devices

2024-07-02 Thread Alexander Skorichenko
Hello, The failure happens when running under VPP. In terms of dpdk calls the following sequence of events occurs for a NetVSC device: Durung device probing stage of VPP 1. eth_hn_dev_init() memory for a single primary rx_queue is allocated dev->data->rx_queues[0] = 0, allocated, bu

Re: [PATCH] net/mlx5: increase max pattern templates

2024-07-02 Thread Raslan Darawsheh
Hi, From: Gregory Etelson Sent: Monday, July 1, 2024 1:26 PM To: dev@dpdk.org Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh; Ori Kam; Dariusz Sosnowski; Slava Ovsiienko; Suanming Mou; Matan Azrad Subject: [PATCH] net/mlx5: increase max pattern templates From: Ori Kam Until now the num

Re: [PATCH 0/2] Added hairpin out of buffer counters

2024-07-02 Thread Raslan Darawsheh
Hi, From: Shani Peretz Sent: Monday, July 1, 2024 9:12 PM To: dev@dpdk.org Cc: Shani Peretz; Maayan Kashani; Raslan Darawsheh; Dariusz Sosnowski Subject: [PATCH 0/2] Added hairpin out of buffer counters Added global hairpin out of buffer counter (from ethtool) Also added port-level hairpin out o

Re: [PATCH v6 0/2] fix secondary process PCI UIO resource problem

2024-07-02 Thread David Marchand
On Tue, Jul 2, 2024 at 9:40 AM Chaoyong He wrote: > > This patch series aims to fix some problems in secondary process PCI UIO > resource map logic. Chaoyong, this series touches the bus/pci driver. Please Cc: its maintainers. Chenbo, Nipun, Please review. -- David Marchand

Re: [PATCH 2/2] drivers: replace printf with fprintf for debug functions

2024-07-02 Thread David Marchand
Hello Hemant, On Thu, Feb 16, 2023 at 10:28 AM Hemant Agrawal wrote: > On 15-Feb-23 8:46 PM, Thomas Monjalon wrote: > > 15/02/2023 11:29, Hemant Agrawal: > >> This patch replaces simple printf with fprintf for debug dump > >> related functions for various NXP dpaaX related drivers. > > Why replac

Re: [PATCH 2/2] drivers: replace printf with fprintf for debug functions

2024-07-02 Thread Hemant Agrawal
On 02-07-2024 15:01, David Marchand wrote: Hello Hemant, On Thu, Feb 16, 2023 at 10:28 AM Hemant Agrawal wrote: On 15-Feb-23 8:46 PM, Thomas Monjalon wrote: 15/02/2023 11:29, Hemant Agrawal: This patch replaces simple printf with fprintf for debug dump related functions for various NXP dpa

[PATCH v2 1/2] drivers: replace printf with log macros

2024-07-02 Thread Hemant Agrawal
This patch replaces the printf with related log macros and functions at various places in NXP dpaaX drivers. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/fman.c | 8 +++ drivers/bus/dpaa/base/qbman/process.c | 29 +- drivers/bus/dpaa/base/qbman/

[PATCH v2 2/2] drivers: replace printf with fprintf for debug functions

2024-07-02 Thread Hemant Agrawal
This patch replaces simple printf with fprintf for debug dump related functions for various NXP dpaaX related drivers. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/netcfg_layer.c | 22 +++ drivers/bus/dpaa/dpaa_bus.c | 2 +- drivers/bus/dpaa/include/netcfg.

Re: [PATCH v1 1/2] bbdev: add new function to dump debug information

2024-07-02 Thread Hemant Agrawal
Hi Nicolas,     Few comments inline. On 02-07-2024 04:04, Nicolas Chautru wrote: This provides a new API to dump more debug information related to the status on a given bbdev queue. Some of this information is visible at bbdev level. This also provides a new option dev op, to print more informa

RE: [EXTERNAL] Re: [PATCH v2 1/3] net/virtio_user: avoid cq descriptor buffer address accessing

2024-07-02 Thread Srujana Challa
> On 2/29/24 14:29, Srujana Challa wrote: > > This patch makes changes to avoid descriptor buffer address accessing > > while processing shadow control queue. > > So that Virtio-user can work with having IOVA as descriptor buffer > > address. > > > > Signed-off-by: Srujana Challa > > --- > > ...

Re: [PATCH] dpdk-devbind: fix indentation

2024-07-02 Thread Robin Jarry
Stephen Hemminger, Jul 01, 2024 at 19:45: The python check tool (flake8) is picky about the indentation of continuation lines, and dpdk-devbind was not following standard. Error is: E127 continuation line over-indented for visual indent Fixes: 2ff801515e49 ("usertools/devbind: update o

Re: [PATCH] dpdk-pmdinfo: remove unneeded whitespace

2024-07-02 Thread Robin Jarry
Stephen Hemminger, Jul 01, 2024 at 19:58: Fix the warning $ flake8 --max-line-length=100 dpdk-pmdinfo.py dpdk-pmdinfo.py:217:40: E203 whitespace before ':' Signed-off-by: Stephen Hemminger Acked-by: Robin Jarry

Re: [PATCH v2 1/2] drivers: replace printf with log macros

2024-07-02 Thread David Marchand
On Tue, Jul 2, 2024 at 12:40 PM Hemant Agrawal wrote: > > This patch replaces the printf with related log macros and functions at > various places in NXP dpaaX drivers. > > Signed-off-by: Hemant Agrawal Please double check callers of DPAA_BUS_LOG to avoid log messages ending with \n\n. I see tha

[PATCH] net/ice: fix use of ice_bitmap_t in promisc functions

2024-07-02 Thread Ian Stokes
Promisc functions were modified to use ice_bitmap_t. However use of ice_bitmap_t requires specific helper functions to ensure correctness. Fix this by adding correct calls to declare, zero and set ice_bitmap_t within the promisc functions. Signed-off-by: Ian Stokes --- drivers/net/ice/ice_ethde

RE: [PATCH] net/ice: fix use of ice_bitmap_t in promisc functions

2024-07-02 Thread Stokes, Ian
> Promisc functions were modified to use ice_bitmap_t. > However use of ice_bitmap_t requires specific helper > functions to ensure correctness. > > Fix this by adding correct calls to declare, zero and set > ice_bitmap_t within the promisc functions. > > Signed-off-by: Ian Stokes Just to clari

Re: [PATCH] net/ice: fix use of ice_bitmap_t in promisc functions

2024-07-02 Thread Bruce Richardson
On Tue, Jul 02, 2024 at 01:24:03PM +0100, Stokes, Ian wrote: > > Promisc functions were modified to use ice_bitmap_t. > > However use of ice_bitmap_t requires specific helper > > functions to ensure correctness. > > > > Fix this by adding correct calls to declare, zero and set > > ice_bitmap_t wit

Re: [EXTERNAL] Re: [PATCH v2 1/3] net/virtio_user: avoid cq descriptor buffer address accessing

2024-07-02 Thread Maxime Coquelin
On 7/2/24 13:09, Srujana Challa wrote: On 2/29/24 14:29, Srujana Challa wrote: This patch makes changes to avoid descriptor buffer address accessing while processing shadow control queue. So that Virtio-user can work with having IOVA as descriptor buffer address. Signed-off-by: Srujana Chall

[PATCH v3 1/3] drivers: replace printf with log macros

2024-07-02 Thread Hemant Agrawal
This patch replaces the printf with related log macros and functions at various places in NXP dpaaX drivers. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/fman.c | 6 ++ drivers/bus/dpaa/base/qbman/process.c | 29 +- drivers/bus/dpaa/base/qbman/q

[PATCH v3 2/3] bus/dpaa: remove double newline

2024-07-02 Thread Hemant Agrawal
Remove duplicate newline `\n` from the debugging macros to avoid double `\n\n`. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/fman.c | 58 +++ drivers/bus/dpaa/dpaa_bus.c | 12 +++ 2 files changed, 34 insertions(+), 36 deletions(-) diff --git

[PATCH v3 3/3] drivers: replace printf with fprintf for debug functions

2024-07-02 Thread Hemant Agrawal
This patch replaces simple printf with fprintf for debug dump related functions for various NXP dpaaX related drivers. Signed-off-by: Hemant Agrawal --- drivers/bus/dpaa/base/fman/netcfg_layer.c | 22 +++ drivers/bus/dpaa/dpaa_bus.c | 2 +- drivers/bus/dpaa/include/netcfg.

RE: [EXTERNAL] [PATCH] zsda:introduce zsda drivers and examples

2024-07-02 Thread Akhil Goyal
> create mode 100644 examples/zsda/Makefile > create mode 100644 examples/zsda/commands.c > create mode 100644 examples/zsda/meson.build > create mode 100644 examples/zsda/test.c > create mode 100644 examples/zsda/test.h > create mode 100644 examples/zsda/test_zsda.c > create mode 100644 exa

[PATCH 1/2] app/proc-info: add memory heap dump

2024-07-02 Thread Gagandeep Singh
This patch add the heap dump support in proc-info memory dump option. Signed-off-by: Gagandeep Singh --- app/proc-info/main.c | 5 + 1 file changed, 5 insertions(+) diff --git a/app/proc-info/main.c b/app/proc-info/main.c index b672aaefbe..7137891c14 100644 --- a/app/proc-info/main.c +++ b/

[PATCH 2/2] eal: add total memory size in memory dump APIs

2024-07-02 Thread Gagandeep Singh
This patch add total memory size dump in memzone and memsegments dump APIs. Signed-off-by: Gagandeep Singh --- lib/eal/common/eal_common_memory.c | 2 ++ lib/eal/common/eal_common_memzone.c | 18 -- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/lib/eal/common/

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

2024-07-02 Thread Patrick Robb
Recheck-request: iol-unit-arm64-testing

Re: [PATCH 2/3] dts: add testpmd methods for test suite

2024-07-02 Thread Nicholas Pratte
On Wed, Jun 26, 2024 at 11:50 AM Jeremy Spewock wrote: > > I think the subject line of this commit makes sense in the context of > this series, but might be less helpful when the commit is applied to > the git tree. For this reason I might favor changing it to something > that briefly says what th

Re: [PATCH] net/ice: fix use of ice_bitmap_t in promisc functions

2024-07-02 Thread Bruce Richardson
On Tue, Jul 02, 2024 at 01:27:35PM +0100, Bruce Richardson wrote: > On Tue, Jul 02, 2024 at 01:24:03PM +0100, Stokes, Ian wrote: > > > Promisc functions were modified to use ice_bitmap_t. > > > However use of ice_bitmap_t requires specific helper > > > functions to ensure correctness. > > > > > >

Re: [PATCH 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Yeah. I vaguely remember a conversation regarding the need and validity of the 'adjust_addresses' functionality within DTS, going as far as discussing whether it is needed or not, but maybe I'm wrong? I'm honestly not sure. I'll add the argument to the doc-string. On Wed, Jun 26, 2024 at 11:49 AM

Re: [PATCH] app/eventdev: increase default queue depth for cryptodev

2024-07-02 Thread Jerin Jacob
On Thu, Jun 27, 2024 at 5:39 PM Gujjar, Abhinandan S wrote: > > Acked-by: Abhinandan Gujjar Applied to dpdk-next-eventdev/for-main. Thanks > > > -Original Message- > > From: Aakash Sasidharan > > Sent: Thursday, June 27, 2024 10:45 AM > > To: Jerin Jacob > > Cc: gak...@marvell.com;

Re: [PATCH 2/2] net/cnxk: avoid NPC Rx and MCAM entries disable

2024-07-02 Thread Jerin Jacob
On Thu, Jun 27, 2024 at 2:47 PM Rahul Bhansali wrote: > > For inline IPsec, Rx misses are observed during dev stop process. > There can be a situation of 2nd pass packets are being dropped and > can cause a buffer leak. > To handle such case, will avoid NPC Rx and MCAM entries disable in > dev sto

[DPDK/testpmd Bug 1479] mlx5: Not able to create rte_flows to match head fragments and sub fragments

2024-07-02 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1479 Bug ID: 1479 Summary: mlx5: Not able to create rte_flows to match head fragments and sub fragments Product: DPDK Version: 21.11 Hardware: All OS: All St

[PATCH v2 1/2] common/cnxk: enable second pass RQ in mask config

2024-07-02 Thread Rahul Bhansali
This will enable second pass RQ and drop interrupt by default in mask configuration to avoid buffer leak possibilities during dev stop and interrupts to indicate drops if any. Signed-off-by: Rahul Bhansali --- Changes in v2: No change. drivers/common/cnxk/roc_features.h | 6 ++ drivers/comm

[PATCH v2 2/2] net/cnxk: fix to avoid NPC Rx and MCAM disable

2024-07-02 Thread Rahul Bhansali
For inline IPsec, Rx misses are observed during dev stop process. There can be a situation of 2nd pass packets are being dropped and can cause a buffer leak. To handle such case, will avoid NPC Rx and MCAM entries disable in dev stop. These will be handled in dev close routine. Fixes: fbc0fa749919

[PATCH 01/15] net/ena/base: add descriptor dump capability

2024-07-02 Thread shaibran
From: Shai Brandes This patch adds the capability to print rx/tx descriptors. This patch introduces a new function ena_com_tx_cdesc_idx_to_ptr which is the equivalent of ena_com_rx_cdesc_idx_to_ptr but for tx cdesc. Finally, this patch moves the io_cq header incrementation in ena_com_cdesc_rx_pk

[PATCH 02/15] net/ena/base: remove unused param

2024-07-02 Thread shaibran
From: Shai Brandes Remove an unused dev_node parameter when allocating DMA memory. Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_com.c | 9 ++--- drivers/net/ena/base/ena_plat_dpdk.h | 11 +-- 2 files changed, 7 insertions(+), 13 deletions(-) diff --git a/drivers

[PATCH 00/15] net/ena: driver release 2.10.0

2024-07-02 Thread shaibran
From: Shai Brandes Hi all, This release contains: 1. HAL upgrade to latest divided into separate patches. 2. three bug fixes. 3. restructuring of the Rx checksum code for readability 4. restructuring of the device uninit flow which is also needed for adding hot un/plug support later. 5. modifi

[PATCH 04/15] net/ena/base: update memory barrier comment

2024-07-02 Thread shaibran
From: Shai Brandes Update the comment above the phase bit descriptor read in AENQ processing. Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_com.c | 16 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/drivers/net/ena/base/ena_com.c b/drivers/net/ena/ba

[PATCH 03/15] net/ena/base: remove redundant assert checks

2024-07-02 Thread shaibran
From: Shai Brandes Remove ENA_WARN checks from ena_com_wait_and_process_admin_cq_polling since once the execution flow reaches the check, it must be ENA_CMD_COMPLETED because it can't be either of the other options: 1. ENA_CMD_ABORTED - in such case it will perform "goto err" in the "if" block

[PATCH 05/15] net/ena/base: add method to check used entries

2024-07-02 Thread shaibran
From: Shai Brandes Provide a method to check the number of used entries in the send queue Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_eth_com.h | 13 ++--- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/drivers/net/ena/base/ena_eth_com.h b/drivers/net/ena/b

[PATCH 07/15] net/ena/base: update copyrights comments

2024-07-02 Thread shaibran
From: Shai Brandes copyright dates are not mandatory to be maintained, therefore the range of years was removed. In addition, the copyrights lines were separated into two comments. Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_com.c | 4 ++-- drivers/net/ena/base/en

[PATCH 08/15] net/ena/base: add macro for bitfield access

2024-07-02 Thread shaibran
From: Shai Brandes Add ENA_FIELD_GET and ENA_FIELD_PREP macro to make access to fields more readable. Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_com.c | 111 drivers/net/ena/base/ena_com.h | 10 +- drivers/net/ena/base/ena_eth_com.c | 146 +

[PATCH 09/15] net/ena: logger change to improve performance

2024-07-02 Thread shaibran
From: Shai Brandes Current implementation of ena_trc_dbg on every TX packet has a major performance impact on DPDK TX flow. Profiling revealed that these calls, which trigger rte_log usage, consume a significant amount of CPU resources. Change details: 1. Several warning prints that incorrectly

[PATCH 11/15] net/ena: fix bad checksum handling

2024-07-02 Thread shaibran
From: Shai Brandes Removed a workaround for a false L4 bad Rx csum indication from the device. The workaround was to set it as unknown so the application would check it instead. The issue was fixed in the device, thus the driver bad csum handling should be fixed in the PMD. Fixes: b2d2f1cf89a6 (

[PATCH 10/15] net/ena: rework device uninit

2024-07-02 Thread shaibran
From: Shai Brandes Rework device uninitialization flow to ensure complete resource cleanup, and lay the groundwork for hot-unplug support. With this change, `ena_destroy_device()` is removed, its functionality now incorporated into `ena_close()`. Signed-off-by: Shai Brandes --- doc/guides/rel_

[PATCH 12/15] net/ena: fix invalid return value check

2024-07-02 Thread shaibran
From: Shai Brandes Removed the sign inversion for when checking if ena_com_set_host_attributes returns ENA_COM_UNSUPPORTED. ENA_COM_UNSUPPORTED is defined as -EOPNOTSUPP, so the extra sign inversion is wrong. Fixes: 3adcba9a8987 ("net/ena: update HAL to the newer version") Cc: sta...@dpdk.org S

[PATCH 06/15] net/ena/base: add an additional reset reason

2024-07-02 Thread shaibran
From: Shai Brandes This commit adds the support for a new reset reason for `MISS_FIRST_INTERRUPT` in order to distinguish between resets where no interrupts have been received and sporadic missed interrupts. Signed-off-by: Shai Brandes --- drivers/net/ena/base/ena_defs/ena_regs_defs.h | 1 + 1

[PATCH 13/15] net/ena: fix wrong handling of checksum

2024-07-02 Thread shaibran
From: Shai Brandes This change fixes an issue where a non tcp/udp packet can be indicated to have an invalid csum. If the device erroneously tries to verify the csum on a non tcp/udp packet it will result in false indication that there is a csum error. This change make the driver ignore the indic

[PATCH 14/15] net/ena: rework Rx checksum inspection

2024-07-02 Thread shaibran
From: Shai Brandes This restructure is a simplification of the Rx checksum inspection logic in ena_rx_mbuf_prepare. Its purpose is to improve readability and maintainability by consolidating conditions. Signed-off-by: Shai Brandes --- doc/guides/rel_notes/release_24_07.rst | 2 + drivers/net/

[PATCH 15/15] net/ena: upgrade driver version to 2.10.0

2024-07-02 Thread shaibran
From: Shai Brandes upgrade driver version to 2.10.0. Signed-off-by: Shai Brandes --- drivers/net/ena/ena_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c index feb229c5ec..e0c239e88f 100644 --- a/drivers/ne

Re: i40e add UDP GENEVE tunnel

2024-07-02 Thread Bruce Richardson
On Thu, May 30, 2024 at 05:04:39PM +0300, Taras Bilous wrote: >Hi All, >I see that GENEVE tunnel type is currently not supported in >i40e_dev_udp_tunnel_port_add(). Is there any reason for this or a >roadmap for when this is planned to be done? I looked into the latest >DPDK (24

RE: [EXTERNAL] [PATCH v4 1/2] cryptodev: fix crypto callbacks on unsetting callbacks macro

2024-07-02 Thread Akhil Goyal
> Crypto callbacks APIs are available in header files but when > the macro RTE_CRYPTO_CALLBACKS unset, test application need to > put #ifdef in its code. > > The test application should be able to build and run, regardless > DPDK library is built with RTE_CRYPTO_CALLBACKS defined or not. > > Adde

RE: [EXTERNAL] [PATCH v4 1/5] crypto/openssl: fix GCM and CCM thread unsafe ctxs

2024-07-02 Thread Akhil Goyal
> Commit 67ab783b5d70 ("crypto/openssl: use local copy for session > contexts") introduced a fix for concurrency bugs which could occur when > using one OpenSSL PMD session across multiple cores simultaneously. The > solution was to clone the EVP contexts per-buffer to avoid them being > used concu

RE: [PATCH] examples/fips_validation: fix coverity issues

2024-07-02 Thread Akhil Goyal
> Hey Gowrishankar, > > > -Original Message- > > From: Gowrishankar Muthukrishnan > > Sent: Saturday, June 15, 2024 12:31 PM > > To: dev@dpdk.org; Dooley, Brian ; Gowrishankar > > Muthukrishnan > > Cc: Anoob Joseph ; sta...@dpdk.org > > Subject: [PATCH] examples/fips_validation: fix cove

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

2024-07-02 Thread Pathak, Pravin
>+ Add a device-level >+ RTE_EVENT_DEV_CAP_INDEPENDENT_ENQ >+ as well. >+ The documentation of that flag should probably house the detailed >description of this feature. So, this capability will be advertised by DSW and DLB devices with detailed documentation. >+ Here's how I would describe t

Re: [PATCH v2 2/2] drivers: replace printf with fprintf for debug functions

2024-07-02 Thread Hemant Agrawal
On 02-07-2024 20:41, Stephen Hemminger wrote: On Tue, 2 Jul 2024 16:10:13 +0530 Hemant Agrawal wrote: - printf("\n JD before conversion\n"); + fprintf(stdout, "\n JD before conversion\n"); for (i = 0; i < 12; i++) - printf("\n 0x%08x", ctx->jobdes.desc[i]); +

RE: [PATCH v1 1/2] bbdev: add new function to dump debug information

2024-07-02 Thread Chautru, Nicolas
Hi Hemant, > -Original Message- > From: Hemant Agrawal > Sent: Tuesday, July 2, 2024 3:54 AM > To: Chautru, Nicolas ; dev@dpdk.org; > maxime.coque...@redhat.com > Cc: hemant.agra...@nxp.com; Marchand, David > ; Vargas, Hernan > > Subject: Re: [PATCH v1 1/2] bbdev: add new function to du

[PATCH v2 0/3] dts: mac filter port to new dts

2024-07-02 Thread Nicholas Pratte
v2: - refactored mac filter suite and cleared out hidden bugs. - add/remove mac and multicast addresses code semantics improvements. - minor documentation changes based on suggestions. Nicholas Pratte (3): dts: add boolean to adjust addresses dts: add methods for setting mac and mu

[PATCH v2 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Various test cases in the mac filter test suite called for granular manipulation of destination mac addresses to properly test mac address filtering functionality. To compensate, there is now an adjust_addresses boolean which the user can toggle if they wish to send their own addressing; the boolea

[PATCH v2 2/3] dts: add methods for setting mac and multicast addresses

2024-07-02 Thread Nicholas Pratte
Several new methods have been added to TestPMDShell in order to produce the mac filter's individual test cases: - set_mac_addr - set_multicast_mac_addr - rx_vlan_add - rx_vlan_rm - vlan_filter_set_on - vlan_filter_set_off - set_promisc set_mac_addr and set_multicast_addr were created for th

[PATCH v2 3/3] dts: mac filter test suite refactored for new dts

2024-07-02 Thread Nicholas Pratte
The mac address filter test suite, whose test cases are based on old DTS's test cases, has been refactored to interface with the new DTS framework. In porting over this test suite into the new framework, some adjustments were made, namely in the EAL and TestPMD parameter provided before executing

[PATCH v2 0/3] dts: mac filter port to new dts

2024-07-02 Thread Nicholas Pratte
v2: - refactored mac filter suite and cleared out hidden bugs. - add/remove mac and multicast addresses code semantics improvements. - minor documentation changes based on suggestions. Nicholas Pratte (3): dts: add boolean to adjust addresses dts: add methods for setting mac and mu

[PATCH v2 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Various test cases in the mac filter test suite called for granular manipulation of destination mac addresses to properly test mac address filtering functionality. To compensate, there is now an adjust_addresses boolean which the user can toggle if they wish to send their own addressing; the boolea

[PATCH v2 2/3] dts: add methods for setting mac and multicast addresses

2024-07-02 Thread Nicholas Pratte
Several new methods have been added to TestPMDShell in order to produce the mac filter's individual test cases: - set_mac_addr - set_multicast_mac_addr - rx_vlan_add - rx_vlan_rm - vlan_filter_set_on - vlan_filter_set_off - set_promisc set_mac_addr and set_multicast_addr were created for th

[PATCH v2 0/3] Mac Filter Port to New DTS

2024-07-02 Thread Nicholas Pratte
v2: - refactored mac filter suite and cleared out hidden bugs. - add/remove mac and multicast addresses code semantics improvements. - minor documentation changes based on suggestions. Nicholas Pratte (3): dts: add boolean to adjust addresses dts: add methods for setting mac and mu

[PATCH v2 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Various test cases in the mac filter test suite called for granular manipulation of destination mac addresses to properly test mac address filtering functionality. To compensate, there is now an adjust_addresses boolean which the user can toggle if they wish to send their own addressing; the boolea

[PATCH v2 2/3] dts: add methods for setting mac and multicast addresses

2024-07-02 Thread Nicholas Pratte
Several new methods have been added to TestPMDShell in order to produce the mac filter's individual test cases: - set_mac_addr - set_multicast_mac_addr - rx_vlan_add - rx_vlan_rm - vlan_filter_set_on - vlan_filter_set_off - set_promisc set_mac_addr and set_multicast_addr were created for th

[PATCH v2 3/3] dts: mac filter test suite refactored for new dts

2024-07-02 Thread Nicholas Pratte
The mac address filter test suite, whose test cases are based on old DTS's test cases, has been refactored to interface with the new DTS framework. In porting over this test suite into the new framework, some adjustments were made, namely in the EAL and TestPMD parameter provided before executing

[PATCH v2 0/3] Mac Filter Port to New DTS

2024-07-02 Thread Nicholas Pratte
v2: - refactored mac filter suite and cleared out hidden bugs. - add/remove mac and multicast addresses code semantics improvements. - minor documentation changes based on suggestions. Nicholas Pratte (3): dts: add boolean to adjust addresses dts: add methods for setting mac and mu

[PATCH v2 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Various test cases in the mac filter test suite called for granular manipulation of destination mac addresses to properly test mac address filtering functionality. To compensate, there is now an adjust_addresses boolean which the user can toggle if they wish to send their own addressing; the boolea

[PATCH v2 2/3] dts: add testpmd methods for test suite

2024-07-02 Thread Nicholas Pratte
Several new methods have been added to TestPMDShell in order to produce the mac filter's individual test cases: - set_mac_addr - set_multicast_mac_addr - rx_vlan_add - rx_vlan_rm - vlan_filter_set_on - vlan_filter_set_off - set_promisc set_mac_addr and set_multicast_addr were created for th

[PATCH v2 3/3] dts: mac filter test suite refactored for new dts

2024-07-02 Thread Nicholas Pratte
The mac address filter test suite, whose test cases are based on old DTS's test cases, has been refactored to interface with the new DTS framework. In porting over this test suite into the new framework, some adjustments were made, namely in the EAL and TestPMD parameter provided before executing

[PATCH v2 1/3] dts: add boolean to adjust addresses

2024-07-02 Thread Nicholas Pratte
Various test cases in the mac filter test suite called for granular manipulation of destination mac addresses to properly test mac address filtering functionality. To compensate, there is now an adjust_addresses boolean which the user can toggle if they wish to send their own addressing; the boolea

[PATCH v2 0/3] Mac Filter Port to New DTS

2024-07-02 Thread Nicholas Pratte
This series incorporates the test suite itself, in addition to framwork changes needed to complete the suite's stipulated test cases. The test suite consists of three test cases: one testing basically mac filtering functionality, the other testing the PMD's mac address pool behavior within a TestPM

[PATCH v2 2/3] dts: add testpmd methods for test suite

2024-07-02 Thread Nicholas Pratte
Several new methods have been added to TestPMDShell in order to produce the mac filter's individual test cases: - set_mac_addr - set_multicast_mac_addr - rx_vlan_add - rx_vlan_rm - vlan_filter_set_on - vlan_filter_set_off - set_promisc set_mac_addr and set_multicast_addr were created for th

[PATCH v2 3/3] dts: mac filter test suite refactored for new dts

2024-07-02 Thread Nicholas Pratte
The mac address filter test suite, whose test cases are based on old DTS's test cases, has been refactored to interface with the new DTS framework. In porting over this test suite into the new framework, some adjustments were made, namely in the EAL and TestPMD parameter provided before executing

[PATCH v3] net/mlx5: fix matcher object memory leak

2024-07-02 Thread Mahmoud Maatuq
This makes sure that the allocated matcher 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 --- v3: * changed commit message. * fixed typos

RE: [PATCH] net/netvsc: fix mtu_set in netvsc devices

2024-07-02 Thread Long Li
Thank you, Alexander. The patch looks good to me. With this patch, do you see other problems with VPP? I'd like to get a review from @Sam Andrew. Acked-by: Long Li From: Alexander Skorichenko Sent: Tuesday, July 2, 2024 1:49 AM To: step...@networkplumber.org C

RE: [PATCH v2] buildtools: fix invalid symbols

2024-07-02 Thread Jiale, SongX
> -Original Message- > From: Mingjin Ye > Sent: Monday, July 1, 2024 6:33 PM > To: dev@dpdk.org > Cc: Ye, MingjinX ; sta...@dpdk.org; Dmitry Kozlyuk > > Subject: [PATCH v2] buildtools: fix invalid symbols > > Elf files generated by higher version compilers wrap multiple symbols prefixed

Re: [PATCH v5 1/2] power: introduce PM QoS API on CPU wide

2024-07-02 Thread zhoumin
Hi Huisong, I knew that this patchset was based on the *dpdk-next-net* repository in our previous communication. However, maybe it's better to rebase this pactchset on the *dpdk* repository. Because the CI system is not smart enough to recognize the patchset as a change for the *dpdk-next-net*

Re: [PATCH v5 1/2] power: introduce PM QoS API on CPU wide

2024-07-02 Thread lihuisong (C)
Hi 在 2024/7/3 9:32, zhoumin 写道: Hi Huisong, I knew that this patchset was based on the *dpdk-next-net* repository in our previous communication. However, maybe it's better to rebase this pactchset on the *dpdk* repository. Because the CI system is not smart enough to recognize the patchset a

Re: [PATCH v1 1/2] bbdev: add new function to dump debug information

2024-07-02 Thread Hemant Agrawal
On 03-07-2024 00:25, Chautru, Nicolas wrote: Hi Hemant, -Original Message- From: Hemant Agrawal Sent: Tuesday, July 2, 2024 3:54 AM To: Chautru, Nicolas ; dev@dpdk.org; maxime.coque...@redhat.com Cc: hemant.agra...@nxp.com; Marchand, David ; Vargas, Hernan Subject: Re: [PATCH v1 1/2

RE: [DPDK/testpmd Bug 1479] mlx5: Not able to create rte_flows to match head fragments and sub fragments

2024-07-02 Thread Asaf Penso
Hello Mlx5 pmd supports only these two modes: 1. fragment_offset=0x with mask 0x means MF is 0 and frag-offset is 0.​ This is an unfragmented packet.​ 2. fragment_offset spec 0x0001 and last 0x3fff with mask 0x, means MF and/or frag-offset is not 0.​ This is a fragmented packe