Re: [PATCH] maintainers: update email address

2023-09-20 Thread Maxime Coquelin
On 9/19/23 05:44, Chenbo Xia wrote: I am leaving Intel, so replace my Intel email with personal one temporarily. Signed-off-by: Chenbo Xia --- .mailmap| 2 +- MAINTAINERS | 12 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) Acked-by: Maxime Coquelin Thanks, Maxim

Re: [RFC PATCH v4 3/4] dts: add doc generation

2023-09-20 Thread Juraj Linkeš
> diff --git a/doc/guides/conf.py b/doc/guides/conf.py > index 0f7ff5282d..737e5a5688 100644 > --- a/doc/guides/conf.py > +++ b/doc/guides/conf.py > @@ -7,10 +7,9 @@ > from sphinx import __version__ as sphinx_version > from os import listdir > from os import environ > -from os.path import base

[PATCH v2 1/1] app/mldev: fix check for filelist and models count

2023-09-20 Thread Srikanth Yalavarthi
Fix incorrect check for filelist and models count. Fixes: bbd272edcb14 ("app/mldev: add ordered inferences") Fixes: f6661e6d9a3a ("app/mldev: validate model operations") Cc: sta...@dpdk.org Signed-off-by: Srikanth Yalavarthi --- app/test-mldev/ml_options.c | 7 --- 1 file changed, 4 inserti

[PATCH v1 1/1] app/mldev: fix file and buffer handling

2023-09-20 Thread Srikanth Yalavarthi
Addressed issues reported by klocwork static analysis tool. Fixes: fccf444cfe05 ("app/mldev: add function for file read") Cc: sta...@dpdk.org Signed-off-by: Srikanth Yalavarthi --- app/test-mldev/test_common.c | 1 + app/test-mldev/test_inference_common.c | 4 ++-- 2 files changed, 3

[PATCH v2 0/3] Spec changes to support multi I/O models

2023-09-20 Thread Srikanth Yalavarthi
This series implements changes to mldev spec to extend support for ML models with multiple inputs and outputs. Changes include introduction of I/O layout to support packed and split buffers for model input and output. Extended the rte_ml_model_info structure to support multiple inputs and outputs.

[PATCH v2 3/3] mldev: drop input and output size get APIs

2023-09-20 Thread Srikanth Yalavarthi
Drop support and use of ML input and output size get functions, rte_ml_io_input_size_get and rte_ml_io_output_size_get. These functions are not required, as the model buffer size can be computed from the fields of updated rte_ml_io_info structure. Signed-off-by: Srikanth Yalavarthi --- drivers/

[PATCH v2 1/3] mldev: add support for arbitrary shape dimensions

2023-09-20 Thread Srikanth Yalavarthi
Updated rte_ml_io_info to support shape of arbitrary number of dimensions. Dropped use of rte_ml_io_shape and rte_ml_io_format. Introduced new fields nb_elements and size in rte_ml_io_info. Updated drivers and app/mldev to support the changes. Signed-off-by: Srikanth Yalavarthi --- app/test-mld

[PATCH v2 2/3] mldev: introduce support for IO layout

2023-09-20 Thread Srikanth Yalavarthi
Introduce IO layout in ML device specification. IO layout defines the expected arrangement of model input and output buffers in the memory. Packed and Split layout support is added in the specification. Updated rte_ml_op to support array of rte_ml_buff_seg pointers to support packed and split I/O

[PATCH v3] app/test: add external mbuf IPsec tests

2023-09-20 Thread Tejasree Kondoj
Adding IPsec tests using external mbuf API. Signed-off-by: Tejasree Kondoj --- v3: - Rebased and fixed Intel compilation failure. v2: - Fixed compilation with ubuntu-20.04-gcc-static-i386. app/test/test_cryptodev.c| 191 ++- app/test/test_cryptodev_secur

[PATCH v2 00/34] Implemenation of revised ml/cnxk driver

2023-09-20 Thread Srikanth Yalavarthi
This patch series is an implementation of revised ml/cnxk driver to support models compiled with TVM compiler framework. TVM models use a hybrid mode for execution, with regions of the model executing on the ML accelerator and the rest executing on CPU cores. This series of commits reorganizes the

[PATCH v2 01/34] ml/cnxk: drop support for register polling

2023-09-20 Thread Srikanth Yalavarthi
Dropped support for device argument "poll_mem" for cnxk ML driver. Support to use registers for polling is removed and DDR addresses would be used for polling. Signed-off-by: Srikanth Yalavarthi --- Depends-on: series-29565 ("Spec changes to support multi I/O models") doc/guides/mldevs/cnxk.rst

[PATCH v2 02/34] ml/cnxk: drop use of RTE API for firmware read

2023-09-20 Thread Srikanth Yalavarthi
Dropped use of rte_firmware_read API to read ML firmware binary. When DPDK is built with libarchive aaupport, the the RTE API assumes the binary file as a compressed archive. This causes the ML firmware binary to be parsed incorrectly. Fixes: c29da752ffa8 ("ml/cnxk: support firmware load and devic

[PATCH v2 04/34] ml/cnxk: add generic model and layer structures

2023-09-20 Thread Srikanth Yalavarthi
Introduce generic cnxk model and layer structure. These structures would enable supporting models with multiple layers. A model is a collection of multiple independent layers with flow dependencies between the layers. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.h | 9

[PATCH v2 03/34] ml/cnxk: add generic cnxk device structure

2023-09-20 Thread Srikanth Yalavarthi
Introduce generic cnxk device structure. This structure is a top level device structure for the driver, which would encapsulate the target / platform specific device structure. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.c | 315 ++-- drivers/ml/cnxk/cn1

[PATCH v2 07/34] ml/cnxk: rename cnxk ops function pointers struct

2023-09-20 Thread Srikanth Yalavarthi
Renamed cn10k ML ops structure with cnxk prefix. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.c | 2 +- drivers/ml/cnxk/cn10k_ml_ops.c | 73 +- drivers/ml/cnxk/cn10k_ml_ops.h | 34 +++- drivers/ml/cnxk/cnxk_ml_ops.c | 38 ++

[PATCH v2 08/34] ml/cnxk: update device handling functions

2023-09-20 Thread Srikanth Yalavarthi
Implement CNXK wrapper functions for dev_info_get, dev_configure, dev_close, dev_start and dev_stop. The wrapper functions allocate / release common resources for the ML driver and invoke device specific functions. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 230 ++---

[PATCH v2 05/34] ml/cnxk: add generic cnxk request structure

2023-09-20 Thread Srikanth Yalavarthi
Added generic cnxk request structure. Moved common fields from cn10k structures to cnxk structure. Moved job related structures and enumerations to ops headers. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.c | 70 --- drivers/ml/cnxk/cn10k_ml_dev.h | 269 +

[PATCH v2 06/34] ml/cnxk: add generic cnxk xstats structures

2023-09-20 Thread Srikanth Yalavarthi
Introduced generic xstats structures and renamed cn10k xstats enumerations with cnxk prefix. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.h | 86 +--- drivers/ml/cnxk/cn10k_ml_model.h | 6 +- drivers/ml/cnxk/cn10k_ml_ops.c | 169 ++---

[PATCH v2 10/34] ml/cnxk: update model load and unload functions

2023-09-20 Thread Srikanth Yalavarthi
Implemented cnxk wrapper functions to load and unload ML models. Wrapper functions would invoke the cn10k model load and unload functions. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_model.c | 239 - drivers/ml/cnxk/cn10k_ml_model.h | 25 +-- drivers/

[PATCH v2 11/34] ml/cnxk: update model start and stop functions

2023-09-20 Thread Srikanth Yalavarthi
Implemented cnxk wrapper functions to start and stop ML models. Wrapper functions would invoke the cn10k model start and stop functions. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ocm.c | 28 ++-- drivers/ml/cnxk/cn10k_ml_ocm.h | 12 +- drivers/ml/cnxk/cn10k_ml_ops.c | 282

[PATCH v2 09/34] ml/cnxk: update queue-pair handling functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper function to handle ML device queue-pairs. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 135 + drivers/ml/cnxk/cn10k_ml_ops.h | 7 +- drivers/ml/cnxk/cnxk_ml_ops.c | 153 - drivers/ml/cnxk

[PATCH v2 14/34] ml/cnxk: update device debug functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper for device dump and selftest debug functions. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_model.c | 118 + drivers/ml/cnxk/cn10k_ml_model.h | 1 + drivers/ml/cnxk/cn10k_ml_ocm.c | 11 +- drivers/ml/cnxk/cn10k_ml_ocm.h | 2 +- dr

[PATCH v2 12/34] ml/cnxk: update model utility functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper function to update model params and fetch model info. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 38 ++- drivers/ml/cnxk/cn10k_ml_ops.h | 5 ++-- drivers/ml/cnxk/cnxk_ml_ops.c | 48 -- 3 fil

[PATCH v2 15/34] ml/cnxk: update device stats functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper function to handle ML device stats Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 32 -- drivers/ml/cnxk/cn10k_ml_ops.h | 2 -- drivers/ml/cnxk/cnxk_ml_ops.c | 36 -- 3 files changed, 34 ins

[PATCH v2 13/34] ml/cnxk: update data quantization functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper functions to quantize input data and dequantize output data. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 164 - drivers/ml/cnxk/cn10k_ml_ops.h | 7 -- drivers/ml/cnxk/cnxk_ml_io.c | 95 +++ driver

[PATCH v2 16/34] ml/cnxk: update device and model xstats functions

2023-09-20 Thread Srikanth Yalavarthi
Added cnxk wrapper function to handle ML device and model extended stats. Handling resources for the xstats is done in the cnxk layer. Introduced internal xstats group. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.h | 4 - drivers/ml/cnxk/cn10k_ml_ops.c | 542 +--

[PATCH v2 17/34] ml/cnxk: update fast path functions

2023-09-20 Thread Srikanth Yalavarthi
Implemented cnxk layer fast-path functions and added support for model specific fast-path functions. CNXK layer functions would invoke model specific fast-path functions. Added support for model specific poll handling functions and updated internal inference sync function. Drop use of rte_ml_op as

[PATCH v2 19/34] ml/cnxk: support config and close of tvmdp library

2023-09-20 Thread Srikanth Yalavarthi
Added support to configure and close TVMDP library based on ML device configuration options. Updated meson build to enable Jansson, TVM runtime, TVMDP library as build dependencies. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cnxk_ml_ops.c | 15 ++ drivers/ml/cnxk/meson.buil

[PATCH v2 18/34] ml/cnxk: move error handling to cnxk layer

2023-09-20 Thread Srikanth Yalavarthi
Move error type structures to cnxk layer. cn10k layer to handle fw and hw error sub-types only. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.h | 41 ++- drivers/ml/cnxk/cn10k_ml_ops.c | 93 +- drivers/ml/cnxk/cnxk_ml_dev.c | 8

[PATCH v2 21/34] ml/cnxk: add support for identify model type

2023-09-20 Thread Srikanth Yalavarthi
Enable support to parse model buffer to identify the model type and model sub-type. Enabled basic checks for Glow model type buffer. Signed-off-by: Srikanth Yalavarthi Signed-off-by: Anup Prabhu --- drivers/ml/cnxk/cnxk_ml_model.c | 96 drivers/ml/cnxk/cnxk_ml_

[PATCH v2 20/34] ml/cnxk: add structures to support TVM model type

2023-09-20 Thread Srikanth Yalavarthi
Introduced model type, sub-type and layer type. Added internal structures for TVM model objects. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ocm.c | 3 ++ drivers/ml/cnxk/cn10k_ml_ops.c | 6 ++- drivers/ml/cnxk/cnxk_ml_model.h | 63 +++- dri

[PATCH v2 22/34] ml/cnxk: add support to parse TVM model objects

2023-09-20 Thread Srikanth Yalavarthi
Added support to parse TVM model objects from the model archive buffer. Added support to check for all expected objects and copy TVM model objects to internal buffers. Signed-off-by: Srikanth Yalavarthi Signed-off-by: Anup Prabhu --- drivers/ml/cnxk/cnxk_ml_ops.c| 14 +-- drivers/ml/cnx

[PATCH v2 25/34] ml/cnxk: enable model unload in tvmdp library

2023-09-20 Thread Srikanth Yalavarthi
Enable unloading model using external tvmdp library. Updated layer unload callback to support multiple layers. Signed-off-by: Srikanth Yalavarthi Signed-off-by: Anup Prabhu --- drivers/ml/cnxk/cn10k_ml_ops.c | 20 drivers/ml/cnxk/cnxk_ml_ops.c | 9 +++-- drivers/ml/cn

[PATCH v2 23/34] ml/cnxk: fetch layer info and load TVM model

2023-09-20 Thread Srikanth Yalavarthi
Added support to fetch TVM model layer information and update internal structures based on the layer information Set callback functions for layer load and unload and enable model loading using TVMDP library. Added support to fetch full metadata after model load. Signed-off-by: Srikanth Yalavarthi

[PATCH v2 26/34] ml/cnxk: support start and stop for TVM models

2023-09-20 Thread Srikanth Yalavarthi
Added support to start and stop TVM models. TVM model start would invoke layer start for all Glow layers part of the model. TVM model stop would invoke layer stop for all Glow layers part of the model. Signed-off-by: Srikanth Yalavarthi Signed-off-by: Anup Prabhu --- drivers/ml/cnxk/cn10k_ml_op

[PATCH v2 24/34] ml/cnxk: update internal info for TVM model

2023-09-20 Thread Srikanth Yalavarthi
Enabled updating internal IO info structures for TVM model. Compute static fields related to the model I/O. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/mvtvm_ml_model.c | 105 +++ drivers/ml/cnxk/mvtvm_ml_model.h | 1 + drivers/ml/cnxk/mvtvm_ml_ops.c |

[PATCH v2 27/34] ml/cnxk: update internal TVM model info structure

2023-09-20 Thread Srikanth Yalavarthi
From: Prince Takkar Added support to update internal model info structure for TVM models. Signed-off-by: Prince Takkar Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/mvtvm_ml_model.c | 65 drivers/ml/cnxk/mvtvm_ml_model.h | 2 + drivers/ml/cnxk/mvtvm_

[PATCH v2 28/34] ml/cnxk: support device dump for TVM models

2023-09-20 Thread Srikanth Yalavarthi
Enabled support to print TVM model layer info. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cnxk_ml_model.c | 9 - drivers/ml/cnxk/cnxk_ml_ops.c| 1 + drivers/ml/cnxk/mvtvm_ml_model.c | 59 drivers/ml/cnxk/mvtvm_ml_model.h | 2 ++ 4 files ch

[PATCH v2 29/34] ml/cnxk: enable reporting model runtime as xstats

2023-09-20 Thread Srikanth Yalavarthi
Added model xstats entries to compute runtime latency. Allocated internal resources for TVM model xstats. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cnxk_ml_ops.c| 200 --- drivers/ml/cnxk/cnxk_ml_ops.h| 1 + drivers/ml/cnxk/cnxk_ml_xstats.h |

[PATCH v2 30/34] ml/cnxk: implement I/O alloc and free callbacks

2023-09-20 Thread Srikanth Yalavarthi
Implemented callback functions for IO allocation and free for Glow layers. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 123 + drivers/ml/cnxk/cn10k_ml_ops.h | 3 + drivers/ml/cnxk/mvtvm_ml_ops.c | 2 + 3 files changed, 128 insertion

[PATCH v2 31/34] ml/cnxk: add generic ML malloc and free callback

2023-09-20 Thread Srikanth Yalavarthi
Implemented generic ML malloc and free callbacks Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_ops.c | 30 ++ drivers/ml/cnxk/cn10k_ml_ops.h | 3 +++ drivers/ml/cnxk/mvtvm_ml_ops.c | 2 ++ 3 files changed, 35 insertions(+) diff --git a/drivers/ml/

[PATCH v2 32/34] ml/cnxk: support quantize and dequantize callback

2023-09-20 Thread Srikanth Yalavarthi
From: Prince Takkar Added support for quantize and dequantize callback functions for TVM models. Signed-off-by: Prince Takkar --- drivers/ml/cnxk/mvtvm_ml_model.h | 2 + drivers/ml/cnxk/mvtvm_ml_ops.c | 127 +++ drivers/ml/cnxk/mvtvm_ml_ops.h | 4 + 3 files

[PATCH v2 33/34] ml/cnxk: enable fast-path ops for TVM models

2023-09-20 Thread Srikanth Yalavarthi
From: Anup Prabhu Enable fast-path ops support for TVM models. Models would use TVMDP library function calls to execute inference operations for Hybrid and LLVM model sub-types. For TVM MRVL model subtypes that have a single MRVL layer, the inference requests are directly enqueued to hardware by

[PATCH v2 34/34] ml/cnxk: enable creation of mvtvm virtual device

2023-09-20 Thread Srikanth Yalavarthi
Enable support to create a mvtvm virtual device on system's without a PCI based ML HW accelerator. Signed-off-by: Srikanth Yalavarthi --- drivers/ml/cnxk/cn10k_ml_dev.c | 8 ++ drivers/ml/cnxk/cn10k_ml_dev.h | 3 + drivers/ml/cnxk/cnxk_ml_dev.c | 3 + drivers/ml/cnxk/cnxk_ml_dev.h | 21

Re: [PATCH v2 2/2] eal: remove NUMFLAGS enumeration

2023-09-20 Thread David Marchand
On Wed, Sep 20, 2023 at 8:01 AM Stanisław Kardach wrote: > > On Tue, Sep 19, 2023 at 4:47 PM David Marchand > wrote: > > > > Also I see you're still removing the RTE_CPUFLAG_NUMFLAGS (what I call a > > > last element canary). Why? If you're concerned with ABI, then we're > > > talking about a

Re: Commit broke 32-bit testpmd app

2023-09-20 Thread Maxime Coquelin
Hi, I tried to reproduce without success(see attached log). I fail to reproduce because buf_iova fits into 32 bits in my case: (gdb) p /x *tx_pkts[0] $4 = { cacheline0 = 0x77b19ec0, buf_addr = 0x77b19f40, buf_iova = 0x49519f40, rearm_data = 0x77b19ed0, However, looking at your report,

Re:Re: [PATCH v1] examples/l3fwd: relax the RSS/Offload requirement

2023-09-20 Thread Konstantin Ananyev
Hi Trevor, At 2023-09-18 02:04:19, "Konstantin Ananyev" wrote: 03/09/2023 05:01, Trevor Tao пишет: Now the port Rx mq_mode had been set to RTE_ETH_MQ_RX_RSS, and offload mode set to RTE_ETH_RX_OFFLOAD_CHECKSUM by default, but some hardware and/or virtual interface does not support the RS

RE: [PATCH 1/1] net/mana: add 32 bit short doorbell

2023-09-20 Thread Wei Hu
> -Original Message- > From: Long Li > Sent: Wednesday, September 20, 2023 3:24 AM > To: Wei Hu ; dev@dpdk.org > Cc: sta...@dpdk.org; Ferruh Yigit ; Luca Boccassi > ; Kevin Traynor > Subject: RE: [PATCH 1/1] net/mana: add 32 bit short doorbell > > > > > +#ifdef RTE_ARCH_32 > > > > +

Re: [PATCH v4 02/14] app/graph: add telnet connectivity framework

2023-09-20 Thread Bruce Richardson
On Wed, Sep 20, 2023 at 10:04:55AM +0530, Jerin Jacob wrote: > On Tue, Sep 19, 2023 at 9:35 PM wrote: > > > > From: Sunil Kumar Kori > > > > It adds framework to initate a telnet session with application. > > > > Some configurations and debug commands are exposed as runtime APIs. > > Those comman

Re: [PATCH v5 00/26] refact the nfpcore module

2023-09-20 Thread Ferruh Yigit
On 9/20/2023 2:55 AM, Chaoyong He wrote: >> On 9/19/2023 10:54 AM, Chaoyong He wrote: >>> This patch series aims to: >>> - Make the coding style satisfy with DPDK. >>> - Sync the logic with kernel driver. >>> - Make the sub-module more modular. >>> - Extend the nfp configure BAR from 8 to 24. >>> >

RE: [PATCH v3 1/3] lib: introduce dispatcher library

2023-09-20 Thread Naga Harish K, S V
> -Original Message- > From: Mattias Rönnblom > Sent: Tuesday, September 19, 2023 2:51 PM > To: Naga Harish K, S V ; mattias.ronnblom > ; dev@dpdk.org > Cc: Jerin Jacob ; techbo...@dpdk.org; Van Haaren, > Harry ; Nilsson, Peter > ; Heng Wang ; > Pavan Nikhilesh ; Gujjar, Abhinandan S > ;

RE: [RFC PATCH 0/3] add TLS record processing security offload

2023-09-20 Thread Van Haaren, Harry
> -Original Message- > From: Anoob Joseph > Sent: Friday, August 11, 2023 8:17 AM > To: Thomas Monjalon ; Akhil Goyal > ; Jerin Jacob ; Konstantin Ananyev > > Cc: Hemant Agrawal ; dev@dpdk.org; Matz, > Olivier ; Vidya Sagar Velumuri > > Subject: [RFC PATCH 0/3] add TLS record processing

RE: [RFC PATCH 1/3] net: add headers for TLS/DTLS packets

2023-09-20 Thread Van Haaren, Harry
> -Original Message- > From: Anoob Joseph > Sent: Friday, August 11, 2023 8:17 AM > To: Thomas Monjalon ; Akhil Goyal > ; Jerin Jacob ; Konstantin Ananyev > > Cc: Hemant Agrawal ; dev@dpdk.org; Matz, > Olivier ; Vidya Sagar Velumuri > > Subject: [RFC PATCH 1/3] net: add headers for TLS/D

RE: [RFC PATCH 2/3] security: add TLS record processing

2023-09-20 Thread Van Haaren, Harry
> -Original Message- > From: Anoob Joseph > Sent: Friday, August 11, 2023 8:17 AM > To: Thomas Monjalon ; Akhil Goyal > ; Jerin Jacob ; Konstantin Ananyev > > Cc: Hemant Agrawal ; dev@dpdk.org; Matz, > Olivier ; Vidya Sagar Velumuri > > Subject: [RFC PATCH 2/3] security: add TLS record p

RE: [RFC PATCH 3/3] cryptodev: add details of datapath handling of TLS records

2023-09-20 Thread Van Haaren, Harry
> -Original Message- > From: Anoob Joseph > Sent: Friday, August 11, 2023 8:17 AM > To: Thomas Monjalon ; Akhil Goyal > ; Jerin Jacob ; Konstantin Ananyev > > Cc: Hemant Agrawal ; dev@dpdk.org; Matz, > Olivier ; Vidya Sagar Velumuri > > Subject: [RFC PATCH 3/3] cryptodev: add details of

Re: [PATCH v3 1/3] lib: introduce dispatcher library

2023-09-20 Thread Jerin Jacob
On Mon, Sep 18, 2023 at 5:26 AM Naga Harish K, S V wrote: > > > > > -Original Message- > > From: Mattias Rönnblom > > Sent: Monday, September 4, 2023 6:33 PM > > To: dev@dpdk.org > > Cc: Jerin Jacob ; techbo...@dpdk.org; Van Haaren, > > Harry ; hof...@lysator.liu.se; Nilsson, Peter > > ;

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-20 Thread Ferruh Yigit
On 9/19/2023 10:06 AM, Christian Koue Muf wrote: > On 9/18/23 10:34 AM, Ferruh Yigit wrote: >> On 9/15/2023 7:37 PM, Morten Brørup wrote: From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] Sent: Friday, 15 September 2023 17.55 On 9/8/2023 5:07 PM, Mykola Kostenok wrote: > From

Re: [ADDENDUM] Technical board meeting agenda for 2023-09-20

2023-09-20 Thread Ferruh Yigit
On 9/19/2023 2:53 PM, Morten Brørup wrote: >> From: Maxime Coquelin [mailto:maxime.coque...@redhat.com] >> Sent: Tuesday, 19 September 2023 11.51 >> >> Dear community, >> >> One topic was missed to be added to tomorrow's meeting agenda: >> >> On 9/18/23 22:20, Maxime Coquelin wrote: >>> Dear DPDK c

Re: [PATCH v5 00/26] refact the nfpcore module

2023-09-20 Thread Ferruh Yigit
On 9/19/2023 10:54 AM, Chaoyong He wrote: > This patch series aims to: > - Make the coding style satisfy with DPDK. > - Sync the logic with kernel driver. > - Make the sub-module more modular. > - Extend the nfp configure BAR from 8 to 24. > > --- > v5: > * Fix one bug in the logic of VF using dev

Re: [PATCH 0/1] make file prefix unit test more resilient

2023-09-20 Thread David Marchand
On Thu, Sep 14, 2023 at 12:42 PM Bruce Richardson wrote: > > When examining the IOL testing failures for patch series [1], I observed > that the failures reported were in the eal_flags_file_prefix unit test. > I was able to reproduce this on my system by passing an additional > "--on-pci" flag to

Re: [PATCH v3] mbuf: add ESP packet type

2023-09-20 Thread Nithin Dabilpuram
On Mon, Aug 28, 2023 at 11:53 PM Alexander Kozyrev wrote: > > Support the IP Encapsulating Security Payload (ESP) in transport mode. As per IPSEC ESP RFC 4303, for both tunnel mode or transport mode, next proto 50, so we cannot identify a packet is for tunnel mode or transport mode by just packet

Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-20 Thread Ferruh Yigit
On 9/20/2023 4:06 AM, Wei Hu wrote: >> -Original Message- >> From: Ferruh Yigit >> Sent: Tuesday, September 19, 2023 7:05 PM >> To: Wei Hu ; dev@dpdk.org; Long Li >> >> Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi >> >> Subject: Re: [PATCH v2 1/1] net/mana: enable 32 bit build for

Re: [PATCH 0/1] make file prefix unit test more resilient

2023-09-20 Thread Bruce Richardson
On Wed, Sep 20, 2023 at 12:00:08PM +0200, David Marchand wrote: > On Thu, Sep 14, 2023 at 12:42 PM Bruce Richardson > wrote: > > > > When examining the IOL testing failures for patch series [1], I observed > > that the failures reported were in the eal_flags_file_prefix unit test. > > I was able t

[PATCH 1/2] common/cnxk: reserve last LMT line for control ops

2023-09-20 Thread Rahul Bhansali
As rte_eth_dev_configure() can be called from any EAL or non-EAL cores. And in case of non-EAL core, LMT address will not be a valid. So, reserving last LMT line 2047 for control path specific functionality. Signed-off-by: Rahul Bhansali --- drivers/common/cnxk/roc_dev.c | 5 + drivers

[PATCH 2/2] net/cnxk: separate callback for Rx flush on CN10k

2023-09-20 Thread Rahul Bhansali
In dev stop case, Rx packet flush callback uses LMT lines to bulk free of the meta buffers. If dev stop is called from non EAL core then LMT address will not be valid. To avoid this, A separate callback for Rx packets flush is added, which will use NPA aura free API on individual meta packets. Sig

[PATCH v2] security: hide security context

2023-09-20 Thread Akhil Goyal
rte_security_ctx is used by all security APIs to identify which device security_op it need to call and hence it should be opaque to the application. Hence, it is now moved to internal header file and all APIs will now take an opaque pointer for it. The fast path inline APIs like set metadata need t

RE: [PATCH 1/4] security: remove redundant cast

2023-09-20 Thread Akhil Goyal
> Subject: [PATCH 1/4] security: remove redundant cast > > The API 'rte_cryptodev_get_sec_ctx' returns void *. Type cast is not > required. > > Signed-off-by: Anoob Joseph > --- The changes in the series are part of https://patches.dpdk.org/project/dpdk/patch/20230920104000.2868230-1-gak...@mar

Re: [PATCH v2 1/1] net/mana: enable 32 bit build for mana driver

2023-09-20 Thread Kevin Traynor
On 20/09/2023 11:03, Ferruh Yigit wrote: On 9/20/2023 4:06 AM, Wei Hu wrote: -Original Message- From: Ferruh Yigit Sent: Tuesday, September 19, 2023 7:05 PM To: Wei Hu ; dev@dpdk.org; Long Li Cc: sta...@dpdk.org; Kevin Traynor ; Luca Boccassi Subject: Re: [PATCH v2 1/1] net/mana: enab

[PATCH 01/13] net/nfp: make sure header file is self-containing

2023-09-20 Thread Chaoyong He
Make sure the header file 'nfp_ctrl.h' is self-containing by including 'stdint.h' header files to access the size specific integer types. Signed-off-by: Chaoyong He --- drivers/net/nfp/nfp_ctrl.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/net/nfp/nfp_ctrl.h b/drivers/net/nfp/n

[PATCH 00/13] improve the modularization of NFP PMD

2023-09-20 Thread Chaoyong He
This patch series aims to improve the modularization of NFP PMD through: * Make the header files self-containing by adding the correct include statement. * Try to keep the interface of modules as small as possible. * Remove the unneeded include statements to make sure a clean dependent relation

[PATCH 03/13] net/nfp: improve modularazation of nfd3 module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/

[PATCH 04/13] net/nfp: improve modularazation of nfdk module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/

[PATCH 05/13] net/nfp: improve modularazation of common module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim and remove the unused macro. Also remove the unneeded header file include statement of source file. Signed-off-by

[PATCH 06/13] net/nfp: improve modularazation of flower module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower.c | 24 ++-- drivers/net/nfp/flower/nfp_flower.h | 2 ++ 2 fi

[PATCH 02/13] net/nfp: improve modularazation of rxtx module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim and move the macro to the right header file. Also remove the unneeded header file include statement of source file

[PATCH 07/13] net/nfp: improve modularazation of flower representor module

2023-09-20 Thread Chaoyong He
Try to keep the API small by move the logic which need not expose from header file to source file verbatim. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- .../net/nfp/flower/nfp_flower_representor.c | 29 --- .../net/nfp/fl

[PATCH 08/13] net/nfp: improve modularazation of flower ctrl module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_ctrl.c | 13 + drivers/net/nfp/flower/nfp_flower_ctrl.h | 2 ++ 2 fil

[PATCH 09/13] net/nfp: improve modularazation of flower cmsg module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim and remove the unused macro. Also remove the unneeded header file include statement of source file. Signed-off-by

[PATCH 11/13] net/nfp: improve modularazation of meter module

2023-09-20 Thread Chaoyong He
Try to keep the API small by move the logic which need not expose from header file to source file verbatim. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/net/nfp/nfp_mtr.c | 16 drivers/net/nfp/nfp_mtr.h | 2 -- 2

[PATCH 10/13] net/nfp: improve modularazation of flow module

2023-09-20 Thread Chaoyong He
Make the header file self-containing by adding the correct include statement. Try to keep the API small by move the logic which need not expose from header file to source file verbatim and remove the unused macro. Also remove the unneeded header file include statement of source file. Signed-off-by

[PATCH 12/13] net/nfp: improve modularazation of CPP bridge module

2023-09-20 Thread Chaoyong He
Try to keep the API small by move the logic which need not expose from header file to source file verbatim. Also remove the unneeded header file include statement of source file. Signed-off-by: Chaoyong He --- drivers/net/nfp/nfp_cpp_bridge.c | 14 ++ drivers/net/nfp/nfp_cpp_bridge.h

[PATCH 13/13] net/nfp: cleanup the include statement of PMD

2023-09-20 Thread Chaoyong He
Remove the unneeded header file include statement of PMD source files, also adjust the include statement of 'nfp_rxtx' and 'nfp_flower_cmsg' module. Signed-off-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower.c | 2 -- drivers/net/nfp/flower/nfp_flower_cmsg.c | 1 - drivers

RE: [RFC PATCH 2/3] security: add TLS record processing

2023-09-20 Thread Anoob Joseph
Hi Harry, Thanks for the review. Please see inline. Thanks, Anoob > -Original Message- > From: Van Haaren, Harry > Sent: Wednesday, September 20, 2023 2:53 PM > To: Anoob Joseph ; Thomas Monjalon > ; Akhil Goyal ; Jerin Jacob > Kollanukkaran ; Konstantin Ananyev > > Cc: Hemant Agrawal

Re:Re:Re: [PATCH v1] examples/l3fwd: relax the RSS/Offload requirement

2023-09-20 Thread taozj888
Hi Konstantin, Please see my comments inline Thanks. Trevor At 2023-09-20 16:04:41, "Konstantin Ananyev" wrote: > >Hi Trevor, > > >> >> At 2023-09-18 02:04:19, "Konstantin Ananyev" >> wrote: >>>03/09/2023 05:01, Trevor Tao пишет: Now the port Rx mq_mode had been set to RTE_ETH_MQ

[PATCH v2] testpmd: add hairpin-map parameter

2023-09-20 Thread Gregory Etelson
Testpmd hairpin implementation always sets the next valid port to complete hairpin binding. That limits hairpin configuration options. The new parameter allows explicit selection of Rx and Tx ports and queues in hairpin configuration. The new `hairpin-map` parameter is provided with 5 parameters,

RE: [PATCH] eventdev/eth_rx: fix timestamp field register in mbuf

2023-09-20 Thread Naga Harish K, S V
> -Original Message- > From: Rahul Bhansali > Sent: Monday, September 18, 2023 1:56 PM > To: dev@dpdk.org; Naga Harish K, S V ; Jerin > Jacob ; Kundapura, Ganapati > > Cc: Rahul Bhansali ; sta...@dpdk.org > Subject: [PATCH] eventdev/eth_rx: fix timestamp field register in mbuf > > For

Re: [PATCH] net/nfp: fix invalid control message packets

2023-09-20 Thread Ferruh Yigit
On 7/13/2023 4:02 AM, Chaoyong He wrote: > From: Long Wu > > If we add two cards that uses flower firmware into one dpdk-testpmd, > NFP PMD will printf error log. The reason is that the second card > uses the control VNIC Rx queue of the first card. > > Because rte_eth_dma_zone_reserve() will re

[PATCH 0/2] ethdev: add group set miss actions API

2023-09-20 Thread Tomer Shmilovich
Introduce new group set miss actions API: rte_flow_group_set_miss_actions(). A group's miss actions are a set of actions to be performed in case of a miss on a group, i.e. when a packet didn't hit any flow rules in the group. Currently, the expected behavior in this case is undefined. In order to

[PATCH 2/2] app/testpmd: add group set miss actions CLI commands

2023-09-20 Thread Tomer Shmilovich
Add testpmd CLI interface for the group set miss actions API: flow group 0 group_id 1 ingress set_miss_actions jump group 3 / end flow group 0 group_id 1 ingress set_miss_actions end Signed-off-by: Tomer Shmilovich Acked-by: Ori Kam --- app/test-pmd/cmdline_flow.c | 112 +++

[PATCH 1/2] ethdev: add group set miss actions API

2023-09-20 Thread Tomer Shmilovich
Introduce new group set miss actions API: rte_flow_group_set_miss_actions(). A group's miss actions are a set of actions to be performed in case of a miss on a group, meaning a packet didn't hit any rules in the group. This API function allows a user to set a group's miss actions. Signed-off-by:

[PATCH] net/virtio: fix descriptors buffer addresses on 32 bits builds

2023-09-20 Thread Maxime Coquelin
With Virtio-user, the Virtio descriptor buffer address is the virtual address of the mbuf's buffer. On 32 bits builds, it is expected to be 32 bits. With Virtio-PCI, the Virtio descriptor buffer address is the physical address of the mbuf's buffer. On 32 bits builds running on 64 bits kernel, it i

Re: Commit broke 32-bit testpmd app

2023-09-20 Thread Maxime Coquelin
On 9/20/23 09:35, Maxime Coquelin wrote: Hi, I tried to reproduce without success(see attached log). I fail to reproduce because buf_iova fits into 32 bits in my case: (gdb) p /x *tx_pkts[0] $4 = {   cacheline0 = 0x77b19ec0,   buf_addr = 0x77b19f40,   buf_iova = 0x49519f40,   rearm_data

Re: [PATCH v12 1/4] ethdev: add API for mbufs recycle mode

2023-09-20 Thread Ferruh Yigit
On 8/24/2023 8:36 AM, Feifei Wang wrote: > Add 'rte_eth_recycle_rx_queue_info_get' and 'rte_eth_recycle_mbufs' > APIs to recycle used mbufs from a transmit queue of an Ethernet device, > and move these mbufs into a mbuf ring for a receive queue of an Ethernet > device. This can bypass mempool 'put/

Re: [PATCH v12 4/4] app/testpmd: add recycle mbufs engine

2023-09-20 Thread Ferruh Yigit
On 8/24/2023 8:36 AM, Feifei Wang wrote: > Add recycle mbufs engine for testpmd. This engine forward pkts with > I/O forward mode. But enable mbufs recycle feature to recycle used > txq mbufs for rxq mbuf ring, which can bypass mempool path and save > CPU cycles. > > Suggested-by: Jerin Jacob >

Re: [PATCH v12 0/4] Recycle mbufs from Tx queue into Rx queue

2023-09-20 Thread Ferruh Yigit
On 8/24/2023 8:36 AM, Feifei Wang wrote: > Currently, the transmit side frees the buffers into the lcore cache and > the receive side allocates buffers from the lcore cache. The transmit > side typically frees 32 buffers resulting in 32*8=256B of stores to > lcore cache. The receive side allocates

Re: [PATCH v16 1/8] net/ntnic: initial commit which adds register defines

2023-09-20 Thread Thomas Monjalon
Hello, 19/09/2023 11:06, Christian Koue Muf: > On 9/18/23 10:34 AM, Ferruh Yigit wrote: > >On 9/15/2023 7:37 PM, Morten Brørup wrote: > >>> From: Ferruh Yigit [mailto:ferruh.yi...@amd.com] > >>> Sent: Friday, 15 September 2023 17.55 > >>> > >>> On 9/8/2023 5:07 PM, Mykola Kostenok wrote: > Fr

[PATCH v2 00/13] crypto/dpaax_sec: misc enhancements

2023-09-20 Thread Hemant Agrawal
v2: compilation fixes This series include misc enhancements in dpaax_sec drivers. - improving the IPsec protocol offload features - enhancing PDCP protocol processing - code optimization and cleanup Apeksha Gupta (1): crypto/dpaa2_sec: enhance dpaa FD FL FMT offset set Gagandeep Singh (3):

[PATCH v2 01/13] common/dpaax: update IPsec base descriptor length

2023-09-20 Thread Hemant Agrawal
From: Gagandeep Singh If all the keys are inlined, the descriptor would be 32 + 20 = 52 which is the size of the CURRENT shared descriptor created. So 32 * CAAM_CMD_SZ is the value that must be passed to rta_inline_query() for its "sd_base_len" parameter and drivers are using IPSEC_AUTH_VAR_AES_

[PATCH v2 03/13] crypto/dpaa2_sec: initialize the pdcp alg to null

2023-09-20 Thread Hemant Agrawal
From: Vanshika Shukla This patch initializes the pdcp alg to null. Signed-off-by: Vanshika Shukla --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c b/drivers/crypto/dpaa2_sec/dpaa2_

[PATCH v2 02/13] common/dpaax: change mode to wait in shared desc

2023-09-20 Thread Hemant Agrawal
From: Gagandeep Singh In case of protocol based offload, it is better to wait before the share descriptor complete the execution. Simultaneous sharing may cause issues. Signed-off-by: Gagandeep Singh --- drivers/common/dpaax/caamflib/desc/pdcp.h | 82 +++ 1 file changed, 41

  1   2   >