Re: [PATCH v2 01/10] net/ngbe: fix Rx buffer size in configure register

2023-02-15 Thread Ferruh Yigit
On 2/14/2023 9:55 AM, Ferruh Yigit wrote: > On 2/14/2023 8:15 AM, Jiawen Wu wrote: >> On Thursday, February 9, 2023 5:00 PM, Jiawen Wu wrote: >>> On Wednesday, February 8, 2023 6:28 PM, Ferruh Yigit wrote: On 2/2/2023 9:21 AM, Jiawen Wu wrote: > When buffer size is less than 1K, round down

[PATCH v3 0/5] remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The internal tracepoints of a library are not needed to be exported in version.map file, as they will not be called from outside the library. This patch removes the internal tracepoints from version.map for mempool, cryptodev, eal, ethdev and eventdev library. v3: - Updated the trace document in

[PATCH v3 1/5] mempool: remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The file rte_mempool_trace.h contains tracepoints which are internal to the mempool library. This file is renamed to mempool_trace.h, and is made an internal header. The tracepoints in this file are removed from the experimental section in version.map file. Signed-off-by: Ankur Dwivedi Acked-by:

[PATCH v3 2/5] cryptodev: remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The file rte_cryptodev_trace.h contains tracepoints which are internal to the cryptodev library. This file is renamed to cryptodev_trace.h, and is made an internal header. The tracepoints in this file are removed from the experimental and internal section in version.map file. Signed-off-by: Ankur

[PATCH v3 3/5] eal: remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The file rte_eal_trace.h contains some tracepoints which are internal to the eal library. Those tracepoints are moved to a new file eal_trace_internal.h. The internal tracepoints are removed from the version.map file. Signed-off-by: Ankur Dwivedi Acked-by: Jerin Jacob --- doc/guides/prog_guide/

[PATCH v3 4/5] ethdev: remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The internal tracepoints are removed from the version.map file. Also, removed ethdev_trace.h from meson.build. Signed-off-by: Ankur Dwivedi Acked-by: Ferruh Yigit Acked-by: Jerin Jacob --- lib/ethdev/ethdev_trace.h | 6 +++--- lib/ethdev/meson.build| 1 - lib/ethdev/version.map| 6

[PATCH v3 5/5] eventdev: remove internal tracepoints from version map

2023-02-15 Thread Ankur Dwivedi
The internal tracepoints are removed from the version.map file. Also, removed eventdev_trace.h from meson.build. Signed-off-by: Ankur Dwivedi Acked-by: Jerin Jacob --- lib/eventdev/eventdev_trace.h | 6 +++--- lib/eventdev/meson.build | 1 - lib/eventdev/version.map | 30 ---

Re: [PATCH v9 1/3] ethdev: skip congestion management configuration

2023-02-15 Thread Ferruh Yigit
On 2/15/2023 6:25 AM, Rakesh Kudurumalla wrote: > Introduce new flow action to skip congestion management configuration > This feature helps to skip the congestion management processing > based on per flow or the packet color identified by > rte_flow meter object. For example, If one Rx queue confi

Re: [PATCH v9 3/3] net/cnxk: skip red drop for ingress policer

2023-02-15 Thread Ferruh Yigit
On 2/15/2023 6:25 AM, Rakesh Kudurumalla wrote: > Dropping of packets is based on action configured > to meter.If both skip_red and drop actions are configured > then tail dropping in invoked else if only drop action is > configured then RED drop is invoked.This action is supported > only when RED

RE: [PATCH v9 3/3] net/cnxk: skip red drop for ingress policer

2023-02-15 Thread Nithin Kumar Dabilpuram
Acked-by: Nithin Dabilpuram > -Original Message- > From: Rakesh Kudurumalla > Sent: Wednesday, February 15, 2023 11:56 AM > To: Nithin Kumar Dabilpuram ; Kiran Kumar > Kokkilagadda > ; Sunil Kumar Kori ; Satha > Koteswara Rao > Kottidi > Cc: Jerin Jacob Kollanukkaran ; dev@dpdk.org; R

Re: [PATCH] net/sfc: enforce fate action in transfer flow rules

2023-02-15 Thread Ferruh Yigit
On 2/14/2023 1:40 PM, Andrew Rybchenko wrote: > On 2/14/23 16:12, Ivan Malov wrote: >> According to DPDK documentation, not specifying a >> fate action in a flow rule results in undefined >> behaviour. Define right behaviour in the driver. >> >> Fixes: 0839236d0391 ("net/sfc: support flow action dr

RE: [PATCH v2 01/10] net/ngbe: fix Rx buffer size in configure register

2023-02-15 Thread Jiawen Wu
On Wednesday, February 15, 2023 5:36 PM, Ferruh Yigit wrote: > On 2/14/2023 9:55 AM, Ferruh Yigit wrote: > > On 2/14/2023 8:15 AM, Jiawen Wu wrote: > >> On Thursday, February 9, 2023 5:00 PM, Jiawen Wu wrote: > >>> On Wednesday, February 8, 2023 6:28 PM, Ferruh Yigit wrote: > On 2/2/2023 9:21

Re: [PATCH] malloc: fix malloc performance may becomes worse as the number of malloc increases

2023-02-15 Thread Thomas Monjalon
Looking for reviewers please. 10/02/2023 07:30, Fengnan Chang: > Here is a simple test case: > " > uint64_t entry_time, time; > size_t size = 4096; > unsigned align = 4096; > for (int j = 0; j < 10; j++) { > entry_time = rte_get_timer_cycles(); > for (int i = 0; i < 2000; i++) { >

[PATCH 3/3] net/gve: add standard and extended statistics

2023-02-15 Thread Levend Sayar
TX side statistics is updated Signed-off-by: Levend Sayar --- drivers/net/gve/gve_tx.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/net/gve/gve_tx.c b/drivers/net/gve/gve_tx.c index d4e52e3ea5..5c8a3b4379 100644 --- a/drivers/net/gve/gve_tx.c +++ b/drivers/

RE: [PATCH v3 0/5] add IPv6 routing extension implementation

2023-02-15 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Rongwei Liu > Sent: Tuesday, February 14, 2023 2:57 PM > To: dev@dpdk.org; Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) > Cc: Raslan Darawsheh > Subject: [PATCH v3 0/5] add IPv6 routing extension implementation >

Re: [PATCH v3] net/txgbe: fix Rx buffer size in configure register

2023-02-15 Thread Ferruh Yigit
On 2/15/2023 2:00 AM, Jiawen Wu wrote: > When round up buffer size to 1K, to configure the register, hardware will > receive packets exceeding the buffer size in LRO mode. It will cause a > segment fault in the receive function. > > Fixes: be797cbf4582 ("net/txgbe: add Rx and Tx init") > Cc: sta..

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

2023-02-15 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 2/2] drivers: replace printf with fprintf for debug functions

2023-02-15 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 | 20 drivers/crypto/caam_jr/caam_jr.c| 4 +- drivers/crypto/caam_jr/caam_jr_

[PATCH] hash: add XOR32 hash function

2023-02-15 Thread Bili Dong
An XOR32 hash is needed in the Software Switch (SWX) Pipeline for its use case in P4. We implement it in this patch so it could be easily registered in the pipeline later. Signed-off-by: Bili Dong --- .mailmap | 1 + app/test/test_hash_functions.c | 33 +++-- l

[PATCH v2] hash: add XOR32 hash function

2023-02-15 Thread Bili Dong
An XOR32 hash is needed in the Software Switch (SWX) Pipeline for its use case in P4. We implement it in this patch so it could be easily registered in the pipeline later. Signed-off-by: Bili Dong --- .mailmap | 1 + app/test/test_hash_functions.c | 33 --

[PATCH v3] hash: add XOR32 hash function

2023-02-15 Thread Bili Dong
An XOR32 hash is needed in the Software Switch (SWX) Pipeline for its use case in P4. We implement it in this patch so it could be easily registered in the pipeline later. Signed-off-by: Bili Dong --- .mailmap | 1 + app/test/test_hash_functions.c | 33 +++-- l

RE: [PATCH] malloc: fix malloc performance may becomes worse as the number of malloc increases

2023-02-15 Thread Morten Brørup
+CC: Fidaullah Noonari , your name also shows up in the git log; perhaps you can help review this patch. > From: Thomas Monjalon [mailto:tho...@monjalon.net] > Sent: Wednesday, 15 February 2023 11.10 > > Looking for reviewers please. > > 10/02/2023 07:30, Fengnan Chang: > > Here is a simple tes

[PATCH v3] bus: add platform bus

2023-02-15 Thread Tomasz Duszynski
Platform bus is a software bus under Linux that manages devices which generally do not have built-in discovery mechanisms. Linux normally learns about platform devices directly from device-tree during boot-up phase. Up to this point, whenever some userspace app needed control over platform device

RE: [PATCH v3] hash: add XOR32 hash function

2023-02-15 Thread Morten Brørup
> From: Bili Dong [mailto:qobili...@gmail.com] > Sent: Wednesday, 15 February 2023 12.07 > > An XOR32 hash is needed in the Software Switch (SWX) Pipeline for its > use case in P4. We implement it in this patch so it could be easily > registered in the pipeline later. > > Signed-off-by: Bili Dong

RE: [PATCH v5 1/2] ethdev: introduce the Tx map API for aggregated ports

2023-02-15 Thread Jiawei(Jonny) Wang
Hi Ori, Thomas and Ferruh, Could you please help to review it? Thanks. > -Original Message- > From: Jiawei Wang > Sent: Tuesday, February 14, 2023 11:49 PM > To: Slava Ovsiienko ; Ori Kam ; > NBU-Contact-Thomas Monjalon (EXTERNAL) ; > andrew.rybche...@oktetlabs.ru; Aman Singh ; > Yuying

[PATCH v1 0/6] add flex item implementation

2023-02-15 Thread Rongwei Liu
Implement the flex item matching and modify field in HWS. Rongwei Liu (6): net/mlx5: enable hws flex item create net/mlx5: add IPv6 protocol as flex item input net/mlx5/hws: add hws flex item matching support net/mlx5: add flex item modify field implementation net/mlx5: return error for

[PATCH v1 1/6] net/mlx5: enable hws flex item create

2023-02-15 Thread Rongwei Liu
Enable flex item create and destroy with dv_flow_en=2 Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/linux/mlx5_os.c | 27 +++ drivers/net/mlx5/mlx5_flow_hw.c | 2 ++ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/drive

[PATCH v1 2/6] net/mlx5: add IPv6 protocol as flex item input

2023-02-15 Thread Rongwei Liu
Support IPv6 protocol as new flex item input link. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5_flow_flex.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/net/mlx5/mlx5_flow_flex.c b/drivers/net/mlx5/mlx5_flow_flex.c inde

[PATCH v1 4/6] net/mlx5: add flex item modify field implementation

2023-02-15 Thread Rongwei Liu
Add flex item modify field HWS implementation. The minimum modify boundary is one byte. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/common/mlx5/mlx5_prm.h | 1 + drivers/net/mlx5/mlx5_flow.h| 3 + drivers/net/mlx5/mlx5_flow_dv.c | 165 +

[PATCH v1 6/6] doc/mlx5: update mlx5 doc

2023-02-15 Thread Rongwei Liu
Add flex item matching and modify field feature into mlx5 documents. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- doc/guides/nics/mlx5.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst index ee2df66e77

[PATCH v1 3/6] net/mlx5/hws: add hws flex item matching support

2023-02-15 Thread Rongwei Liu
Support flex item matching in hws and syntax follows sws exactly. Flex item should be created in advance and follow current json mapping logic. Signed-off-by: Rongwei Liu Reviewed-by: Alex Vesker Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/hws/mlx5dr_definer.c | 83 ++

[PATCH v1 5/6] net/mlx5: return error for sws modify field

2023-02-15 Thread Rongwei Liu
Return unsupported error message when application tries to modify flex item field. Validation of packet modifications actions for SW Steering checked if either source or destination field of MODIFY_FIELD action was a flex item. When DEC_TTL action is used, DEC_TTL action does not have any action c

[PATCH v1] net/mlx5: support live migration

2023-02-15 Thread Rongwei Liu
When a DPDK application must be upgraded, the traffic downtime should be shortened as much as possible. During the migration time, the old application may stay alive while the new application is starting and being configured. In order to optimize the switch to the new application, the old applicat

Re: [PATCH v2 6/6] test/dmadev: add tests for stopping and restarting dev

2023-02-15 Thread Bruce Richardson
On Wed, Feb 15, 2023 at 09:59:06AM +0800, fengchengwen wrote: > On 2023/1/17 1:37, Bruce Richardson wrote: > > Validate device operation when a device is stopped or restarted. > > > > The only complication - and gap in the dmadev ABI specification - is > > what happens to the job ids on restart. S

Re: [PATCH v2 4/6] test/dmadev: check result for device stop

2023-02-15 Thread Bruce Richardson
On Wed, Feb 15, 2023 at 09:26:01AM +0800, fengchengwen wrote: > Sorry late to see. > > On 2023/1/17 1:37, Bruce Richardson wrote: > > The DMA device stop API can return an error value so check that return > > value when running dmadev unit tests. > > > > Signed-off-by: Bruce Richardson > > --- >

[PATCH v2] net/mlx5: support live migration

2023-02-15 Thread Rongwei Liu
When a DPDK application must be upgraded, the traffic downtime should be shortened as much as possible. During the migration time, the old application may stay alive while the new application is starting and being configured. In order to optimize the switch to the new application, the old applicat

[PATCH v3] net/mlx5: support live migration

2023-02-15 Thread Rongwei Liu
When a DPDK application must be upgraded, the traffic downtime should be shortened as much as possible. During the migration time, the old application may stay alive while the new application is starting and being configured. In order to optimize the switch to the new application, the old applicat

RE: [PATCH v4 12/12] app/mldev: add documentation for mldev test cases

2023-02-15 Thread Shivah Shankar Shankar Narayan Rao
> -Original Message- > From: Srikanth Yalavarthi > Sent: Tuesday, February 7, 2023 9:20 PM > To: Thomas Monjalon ; Srikanth Yalavarthi > > Cc: dev@dpdk.org; Shivah Shankar Shankar Narayan Rao > ; Jerin Jacob Kollanukkaran > ; Anup Prabhu ; Prince Takkar > ; Parijat Shukla > Subject: [PAT

RE: [PATCH v5 39/39] ml/cnxk: enable support for configurable ocm page

2023-02-15 Thread Shivah Shankar Shankar Narayan Rao
> -Original Message- > From: Srikanth Yalavarthi > Sent: Tuesday, February 7, 2023 9:37 PM > To: Srikanth Yalavarthi > Cc: dev@dpdk.org; Shivah Shankar Shankar Narayan Rao > ; Jerin Jacob Kollanukkaran > ; Anup Prabhu ; Prince Takkar > ; Parijat Shukla > Subject: [PATCH v5 39/39] ml/cnxk

RE: [PATCH v5 32/39] ml/cnxk: enable support to get xstats in cycles

2023-02-15 Thread Shivah Shankar Shankar Narayan Rao
> -Original Message- > From: Srikanth Yalavarthi > Sent: Tuesday, February 7, 2023 9:37 PM > To: Srikanth Yalavarthi > Cc: dev@dpdk.org; Shivah Shankar Shankar Narayan Rao > ; Jerin Jacob Kollanukkaran > ; Anup Prabhu ; Prince Takkar > ; Parijat Shukla > Subject: [PATCH v5 32/39] ml/cnxk

RE: [PATCH v5 38/39] ml/cnxk: add user guide for marvell cnxk ml driver

2023-02-15 Thread Shivah Shankar Shankar Narayan Rao
> -Original Message- > From: Srikanth Yalavarthi > Sent: Tuesday, February 7, 2023 9:37 PM > To: Thomas Monjalon ; Srikanth Yalavarthi > > Cc: dev@dpdk.org; Shivah Shankar Shankar Narayan Rao > ; Jerin Jacob Kollanukkaran > ; Anup Prabhu ; Prince Takkar > ; Parijat Shukla > Subject: [PAT

Re: [dpdk-dev] [PATCH v3 00/12] mldev: introduce machine learning device library

2023-02-15 Thread Ferruh Yigit
On 2/7/2023 3:13 PM, jer...@marvell.com wrote: > From: Jerin Jacob > Hi Jerin, Please find some comments/questions gathered with the help of some collegues. > Machine learning inference library > == > > Definition of machine learning inference > ---

RE: [PATCH v4 0/5] net/mlx5: sharing indirect actions between port

2023-02-15 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Slava Ovsiienko > Sent: Monday, February 13, 2023 3:38 PM > To: dev@dpdk.org > Cc: Ori Kam ; Raslan Darawsheh ; > Matan Azrad > Subject: [PATCH v4 0/5] net/mlx5: sharing indirect actions between port > > Adds shared indirect action support to mlx5 PMD. >

Re: [PATCH] doc: update NFP documentation with Corigine information

2023-02-15 Thread Ferruh Yigit
On 2/3/2023 8:08 AM, Chaoyong He wrote: > From: Walter Heymans > > The NFP PMD documentation is updated to include information about > Corigine and their new vendor device ID. > > Outdated information regarding the use of the PMD is also updated. > > While making major changes to the document,

Re: [PATCH] net/nfp: support 48-bit DMA address for firmware with NFDk

2023-02-15 Thread Ferruh Yigit
On 2/8/2023 9:15 AM, Chaoyong He wrote: > From: Peng Zhang > > 48-bit DMA address is supported in the firmware with NFDk, so enable > this feature in PMD now. But the firmware with NFD3 still just > support 40-bit DMA address. > > RX free list descriptor, used by both NFD3 and NFDk, is also modi

Re: [PATCH] net/nfp: fix the incorrect vni of VXLAN encap action

2023-02-15 Thread Ferruh Yigit
On 2/8/2023 9:23 AM, Chaoyong He wrote: > The helper function which send the tunnel configuration to > firmware requires the vni with CPU endian. > The original VXLAN encap logic wrongly invoke it with the > big-endian value. > > Fixes: 724662b4ce5b ("net/nfp: support IPv4 VXLAN encap flow action"

Re: [PATCH v6 00/21] add support for cpfl PMD in DPDK

2023-02-15 Thread Ferruh Yigit
On 2/13/2023 2:19 AM, Mingxia Liu wrote: > The patchset introduced the cpfl (Control Plane Function Library) PMD > for Intel® IPU E2100’s Configure Physical Function (Device ID: 0x1453) > > The cpfl PMD inherits all the features from idpf PMD which will follow > an ongoing standard data plan funct

Re: [PATCH v5] enhance NUMA affinity heuristic

2023-02-15 Thread Burakov, Anatoly
On 2/1/2023 12:20 PM, Kaisen You wrote: Trying to allocate memory on the first detected numa node has less chance to find some memory actually available rather than on the main lcore numa node (especially when the DPDK application is started only on one numa node). Fixes: 705356f0811f ("eal: sim

Re: [PATCH v5] enhance NUMA affinity heuristic

2023-02-15 Thread Burakov, Anatoly
On 2/15/2023 2:22 PM, Burakov, Anatoly wrote: On 2/1/2023 12:20 PM, Kaisen You wrote: Trying to allocate memory on the first detected numa node has less chance to find some memory actually available rather than on the main lcore numa node (especially when the DPDK application is started only on

RE: DPDK rte flow raw encap & decap actions

2023-02-15 Thread Vamsi Krishna Attunuru
Ping From: Vamsi Krishna Attunuru Sent: Tuesday, February 14, 2023 2:22 PM To: or...@nvidia.com; dev@dpdk.org Subject: DPDK rte flow raw encap & decap actions Hi Ori Kam & dpdk dev team, For the below rte flow action types, the description sounds a bit confusing to me. Description says the

Re: [PATCH v2] eal: cleanup alarm and multiprocess hotplug before memory detach

2023-02-15 Thread Thomas Monjalon
21/12/2022 04:41, Fengnan Chang: > Alarm and multiprocess hotplug still need access hugepage memory, > if alarm event processed after memory detach, it may cause SEGV. > So cleanup alarm and multiprocess hotplug before memory detach. > > Fixes: 90b13ab8d4f7 ("alarm: remove direct access to interru

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

2023-02-15 Thread Thomas Monjalon
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 replacing with fprintf(stdout)? Would it be better to provide a FILE* parameter to the functions?

Re: [PATCH V4 1/5] drivers/bus: restore driver assignment at front of probing

2023-02-15 Thread Ferruh Yigit
On 1/12/2023 2:44 AM, lihuisong (C) wrote: > > 在 2023/1/11 20:51, Ferruh Yigit 写道: >> On 12/6/2022 9:26 AM, Huisong Li wrote: >>> The driver assignment was moved back at the end of the device probing >>> because there is no something to use rte_driver during the phase of >>> probing. See commit 39

[PATCH v6] net/af_xdp: support CNI Integration

2023-02-15 Thread Shibin Koikkara Reeny
Integrate support for the AF_XDP CNI and device plugin [1] so that the DPDK AF_XDP PMD can work in an unprivileged container environment. Part of the AF_XDP PMD initialization process involves loading an eBPF program onto the given netdev. This operation requires privileges, which prevents the PMD

Re: [dpdk-dev] [PATCH v3 00/12] mldev: introduce machine learning device library

2023-02-15 Thread Jerin Jacob
On Wed, Feb 15, 2023 at 6:25 PM Ferruh Yigit wrote: > > On 2/7/2023 3:13 PM, jer...@marvell.com wrote: > > From: Jerin Jacob > > > > Hi Jerin, > > Please find some comments/questions gathered with the help of some > collegues. Thanks Ferruh for the review. > > > Machine learning inference lib

Re: [PATCH v6 01/22] gso: don't log message on non TCP/UDP

2023-02-15 Thread Stephen Hemminger
On Wed, 15 Feb 2023 07:26:22 + "Hu, Jiayu" wrote: > > -Original Message- > > From: Stephen Hemminger > > Sent: Wednesday, February 15, 2023 6:47 AM > > To: dev@dpdk.org > > Cc: Stephen Hemminger ; Hu, Jiayu > > ; Konstantin Ananyev > > ; Mark Kavanagh > > > > Subject: [PATCH v6 01/2

[PATCH v2 00/16] test/bbdev: changes for 23.03

2023-02-15 Thread Hernan Vargas
v2: Made changes requested during review. Added 3 commits. v1: Upstreaming bbdev-test changes for 23.03. Hernan Vargas (16): test/bbdev: fix seg fault for non supported HARQ len test/bbdev: extend HARQ tolerance test/bbdev: refactor TB throughput report test/bbdev: add timeout for latency

[PATCH v2 02/16] test/bbdev: extend HARQ tolerance

2023-02-15 Thread Hernan Vargas
HARQ memory implementation could have different size assumptions. Extending HARQ tolerance to cover different implementations. Fixes: 335c11fd276 ("app/bbdev: support HARQ validation") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 11 --- 1 file

[PATCH v2 01/16] test/bbdev: fix seg fault for non supported HARQ len

2023-02-15 Thread Hernan Vargas
Fix segmentation fault happening in corner case in test-bbdev. This fault could happen when running some specific vectors which size are not supported by the PMD. Fixes: 335c11fd276 ("app/bbdev: support HARQ validation") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- app/test-bbdev/test_b

[PATCH v2 03/16] test/bbdev: refactor TB throughput report

2023-02-15 Thread Hernan Vargas
Refactor calculation for tb_size. No functional impact. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 38 ++-- 1 file changed, 16 insertions(+), 22 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c ind

[PATCH v2 05/16] test/bbdev: enable early termination for validation

2023-02-15 Thread Hernan Vargas
Enhancement to enable early termination for validation tests if the device supports it. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 30 +++--- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/te

[PATCH v2 04/16] test/bbdev: add timeout for latency tests

2023-02-15 Thread Hernan Vargas
Add a timeout to force exit the latency tests in case dequeue never happens. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 24 +++- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbde

[PATCH v2 06/16] test/bbdev: report device status in test-bbdev

2023-02-15 Thread Hernan Vargas
No functional impact. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index 8c4b82efca..057fb5ac9e 100644 --- a/app/test-bbdev/test_bbdev_perf.c +++ b/app/t

[PATCH v2 11/16] test/bbdev: expose warning counters

2023-02-15 Thread Hernan Vargas
Print warnings reported on queues for offload test. No functional impact. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index 00090f863f..a19eda2de8 1006

[PATCH v2 07/16] test/bbdev: test start/stop bbdev API

2023-02-15 Thread Hernan Vargas
Add a call to queue start and queue stop specifically for testing the bbdev API. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index 0

[PATCH v2 09/16] test/bbdev: extend support for large TB

2023-02-15 Thread Hernan Vargas
Add support for large TB when it cannot fit into a true mbuf. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 21 - 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index acf

[PATCH v2 10/16] test/bbdev: adjustment for soft output

2023-02-15 Thread Hernan Vargas
Extend test-bbdev for soft output check, notably due to the logic in test-bbdev to enable termination changing. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 26 +- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/app/test-bbdev/test_b

[PATCH v2 08/16] test/bbdev: add support for BLER for 4G

2023-02-15 Thread Hernan Vargas
New feature to add BLER support for 4G in test-bbdev. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 183 ++- 1 file changed, 182 insertions(+), 1 deletion(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index

[PATCH v2 12/16] test/bbdev: remove check for invalid opaque data

2023-02-15 Thread Hernan Vargas
Assert also if the opaque data is invalid. Fixes: 335c11fd276 ("app/bbdev: support HARQ validation") Cc: sta...@dpdk.org Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 8 +++- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c

[PATCH v2 14/16] test/bbdev: use mbuf reset function

2023-02-15 Thread Hernan Vargas
Use mbuf_reset function for code consistency. No functional impact. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 14 +++--- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c index 52594

[PATCH v2 13/16] test/bbdev: remove iteration count check

2023-02-15 Thread Hernan Vargas
To make the test compatible with devices that do not support early termination, the iteration count assert can be removed. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 24 1 file changed, 8 insertions(+), 16 deletions(-) diff --git a/app/test-bbde

[PATCH v2 16/16] test/bbdev: remove iter count from bler test

2023-02-15 Thread Hernan Vargas
iter_count doesn't need to be set equal to iter_max for bler tests. This is only needed in throughput and latency tests because early termination is disabled for those tests. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 16 ++-- 1 file changed, 6 insertions(+),

[PATCH v2 15/16] test/bbdev: remove max iteration from vectors

2023-02-15 Thread Hernan Vargas
Remove iter_max from test vectors as this value is passed as an argument to the test. No functional impact. Signed-off-by: Hernan Vargas --- app/test-bbdev/test_bbdev_perf.c | 4 app/test-bbdev/test_bbdev_vector.c | 14 -- app/test-bbdev/test_b

Re: [PATCH] malloc: fix malloc performance may becomes worse as the number of malloc increases

2023-02-15 Thread Stephen Hemminger
On Wed, 15 Feb 2023 12:10:23 +0100 Morten Brørup wrote: > Looking isolated at the patch itself... > > I agree with the way the patch modifies the ranges of the free list, and the > consequential removal of the "- 1" from the calculation of log2. > > Intuitively, the lists should cover ranges s

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

2023-02-15 Thread Stephen Hemminger
On Wed, 15 Feb 2023 15:59:05 +0530 Hemant Agrawal wrote: > diff --git a/drivers/bus/dpaa/base/fman/netcfg_layer.c > b/drivers/bus/dpaa/base/fman/netcfg_layer.c > index 6a405c984d..69cee08fb9 100644 > --- a/drivers/bus/dpaa/base/fman/netcfg_layer.c > +++ b/drivers/bus/dpaa/base/fman/netcfg_layer.

[PATCH v7 00/22] Replace use of static logtypes in libraries

2023-02-15 Thread Stephen Hemminger
This patchset removes the main uses of static LOGTYPE's in DPDK libraries. It starts with the easy one and goes on to the more complex ones. Note: there is one patch in this series that will get flagged incorrectly as an ABI change. v7 - fix commit message typ add error to gso_segment functi

[PATCH v7 01/22] gso: don't log message on non TCP/UDP

2023-02-15 Thread Stephen Hemminger
If a large packet is passed into GSO routines of unknown protocol then library would log a message. Better to tell the application instead of logging. Fixes: 119583797b6a ("gso: support TCP/IPv4 GSO") Cc: jiayu...@intel.com Signed-off-by: Stephen Hemminger --- lib/gso/rte_gso.c | 5 ++--- lib/gs

[PATCH v7 03/22] log: drop unused RTE_LOGTYPE_TIMER

2023-02-15 Thread Stephen Hemminger
The timer code does not use rte_log. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common_log.c index 894701e8c

[PATCH v7 02/22] eal: drop no longer used GSO logtype

2023-02-15 Thread Stephen Hemminger
The message that used this was replaced in previous patch. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common

[PATCH v7 04/22] efd: replace RTE_LOGTYPE_EFD with dynamic type

2023-02-15 Thread Stephen Hemminger
Replace all uses of the global logtype with a dynamic log type. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/efd/rte_efd.c | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/eal/comm

[PATCH v7 05/22] mbuf: replace RTE_LOGTYPE_MBUF with dynamic type

2023-02-15 Thread Stephen Hemminger
Introduce a new dynamic logtype for mbuf related messages. Since this is used in multiple files put one macro in mbuf_log.h Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/mbuf/mbuf_log.h | 4 lib/mbuf/rte_m

[PATCH v7 06/22] acl: replace LOGTYPE_ACL with dynamic type

2023-02-15 Thread Stephen Hemminger
Get rid of RTE_LOGTYPE_ACL and RTE_LOGTYPE_MALLOC. For ACL library use a dynamic type. The one message using RTE_LOGTYPE_MALLOC should have been under the ACL logtype anyway. The test code should not have been using fixed log type so just change that to stderr. Signed-off-by: Stephen Hemminger -

[PATCH v7 07/22] examples/power: replace use of RTE_LOGTYPE_POWER

2023-02-15 Thread Stephen Hemminger
Don't use static logtype in sample application. Signed-off-by: Stephen Hemminger --- examples/distributor/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/distributor/main.c b/examples/distributor/main.c index 21304d661873..542f76cf9664 100644 --- a/examples/di

[PATCH v7 08/22] examples/l3fwd-power: replace use of RTE_LOGTYPE_POWER

2023-02-15 Thread Stephen Hemminger
Convert to using a dynamic logtype for the application. Signed-off-by: Stephen Hemminger --- examples/l3fwd-power/main.c | 15 --- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c index caf26b373e8d..8e094c1bdda5

[PATCH v7 09/22] power: replace RTE_LOGTYPE_POWER with dynamic type

2023-02-15 Thread Stephen Hemminger
Use dynamic log type for power library. Also replace use of RTE_LOGTYPE_USER1 with lib.power.guest. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h| 2 +- lib/power/guest_channel.c| 3 ++- lib/power/power_common.c | 2

[PATCH v7 10/22] ring: replace RTE_LOGTYPE_RING with dynamic type

2023-02-15 Thread Stephen Hemminger
The logtype for ring only used in library. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/ring/rte_ring.c | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b

[PATCH v7 11/22] mempool: replace RTE_LOGTYPE_MEMPOOL with dynamic type

2023-02-15 Thread Stephen Hemminger
Convert from RTE_LOGTYPE_MEMPOOL to logtype_mempool. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/mempool/rte_mempool.c | 3 +++ lib/mempool/rte_mempool_log.h | 4 lib/mempool/rte_mempool_ops.c | 1 + 5 fil

[PATCH v7 12/22] lpm: replace RTE_LOGTYPE_LPM with dynamic types

2023-02-15 Thread Stephen Hemminger
Split lpm and lpm6 into separate log types since they are in different files and user may want to change log levels for IPv4 vs IPv6. For rib and fib libraries give them own types as well. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h

[PATCH v7 13/22] kni: replace RTE_LOGTYPE_KNI with dynamic type

2023-02-15 Thread Stephen Hemminger
Even though KNI will eventually disappear, fix the logtype now. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/kni/rte_kni.c | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/eal/comm

[PATCH v7 14/22] sched: replace RTE_LOGTYPE_SCHED with dynamic type

2023-02-15 Thread Stephen Hemminger
Also can remove unused RTE_LOGTYPE_METER Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 2 -- lib/eal/include/rte_log.h | 4 ++-- lib/sched/rte_pie.c | 1 + lib/sched/rte_sched.c | 5 + lib/sched/rte_sched_log.h | 4 5 files chan

[PATCH v7 15/22] examples/ipsecgw: replace RTE_LOGTYPE_PORT

2023-02-15 Thread Stephen Hemminger
Looks like some code got copy/paste in to the IPSEC gateway example from another place. Shouldn't be using RTE_LOGTYPE_PORT here. Fixes: ec17993a145a ("examples/ipsec-secgw: support security offload") Cc: akhil.go...@nxp.com Signed-off-by: Stephen Hemminger --- examples/ipsec-secgw/sa.c | 6 +++-

[PATCH v7 17/22] table: convert RTE_LOGTYPE_TABLE to dynamic logtype

2023-02-15 Thread Stephen Hemminger
Use logtype suffixes for various components of this library. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/table/rte_table_acl.c | 3 +++ lib/table/rte_table_array.c | 3 +++ lib/table/rte_table_hash_cuck

[PATCH v7 18/22] app/test: remove use of RTE_LOGTYPE_PIPELINE

2023-02-15 Thread Stephen Hemminger
Instead of using static type PIPELINE for logging in test application use stderr instead. If not testing RTE_LOG() better to not use it since log also goes to syslog. Signed-off-by: Stephen Hemminger --- app/test/test_table_acl.c | 50 -- app/test/test_table

[PATCH v7 16/22] port: replace RTE_LOGTYPE_PORT with dynamic type

2023-02-15 Thread Stephen Hemminger
Split up the single static RTE_LOGTYPE_PORT into separate sub types for each component: port.ethdev, port.evendev, ... Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/port/rte_port_ethdev.c | 3 +++ lib/port/rte_port_ev

[PATCH v7 19/22] pipeline: replace RTE_LOGTYPE_PIPELINE with dynamic type

2023-02-15 Thread Stephen Hemminger
Use a dynamically allocated logtype. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/pipeline/rte_pipeline.c | 3 +++ 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/eal/common/eal_common_log.c b/lib/e

[PATCH v7 20/22] hash: move rte_thash_gfni stubs out of header file

2023-02-15 Thread Stephen Hemminger
Having stubs in header file makes it harder to update RTE_LOG(). Also modify to only print warning once. Signed-off-by: Stephen Hemminger --- lib/hash/meson.build | 8 +++- lib/hash/rte_thash_gfni.c | 43 +++ lib/hash/rte_thash_gfni.h | 28 +-

[PATCH v7 21/22] hash: move rte_hash_set_alg out header

2023-02-15 Thread Stephen Hemminger
The code for setting algorithm for hash is not at all perf sensitive, and doing it inline has a couple of problems. First, it means that if multiple files include the header, then the initialization gets done multiple times. But also, it makes it harder to fix usage of RTE_LOG(). Despite what the

[PATCH v7 22/22] hash: convert RTE_LOGTYPE_HASH to dynamic type

2023-02-15 Thread Stephen Hemminger
Use dynamic type for hash and add subtypes for crc and gfni. Signed-off-by: Stephen Hemminger --- lib/eal/common/eal_common_log.c | 1 - lib/eal/include/rte_log.h | 2 +- lib/hash/rte_cuckoo_hash.c | 5 + lib/hash/rte_fbk_hash.c | 5 + lib/hash/rte_hash_crc.c |

[PATCH v10 1/3] ethdev: skip congestion management configuration

2023-02-15 Thread Rakesh Kudurumalla
Introduce new flow action to skip congestion management configuration This feature helps to skip the congestion management processing based on per flow or the packet color identified by rte_flow meter object. For example, If one Rx queue configured as RED congestion and application wants tobypass t

[PATCH v10 2/3] app/testpmd: add skip cman support for testpmd

2023-02-15 Thread Rakesh Kudurumalla
added support for testpmd application to accept skip_cman action while configuring policy action Signed-off-by: Rakesh Kudurumalla --- app/test-pmd/cmdline_flow.c | 9 + 1 file changed, 9 insertions(+) diff --git a/app/test-pmd/cmdline_flow.c b/app/test-pmd/cmdline_flow.c index 63a0b366

  1   2   >