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
> 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
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
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
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.
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/
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
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
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
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
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
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
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
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
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 ++
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 ++---
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 +
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 ++---
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/
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
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
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
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
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
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
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 +--
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
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
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
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_
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
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
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
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
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
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 |
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_
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
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 |
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
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/
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
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
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
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
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,
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
> -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
> > > > +
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
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.
>>>
>
> -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
> ;
> -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
> -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
> -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
> -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
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
> > ;
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
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
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
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
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
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
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
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
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
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
> 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
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
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
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
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/
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/
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
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
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
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
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
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
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
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
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
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
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
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
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,
> -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
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
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
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 +++
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:
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
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
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/
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
>
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
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
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):
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_
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_
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 - 100 of 152 matches
Mail list logo