[PATCH v8] enhance NUMA affinity heuristic

2023-05-26 Thread Kaisen You
When a DPDK application is started on only one numa node, memory is allocated for only one socket. When interrupt threads use memory, memory may not be found on the socket where the interrupt thread is currently located, and memory has to be reallocated on the hugepage, this operation will lead to

RE: [EXT] [PATCH v3 1/2] cryptodev: support SM3_HMAC,SM4_CFB and SM4_OFB

2023-05-26 Thread Akhil Goyal
> Add SM3_HMAC/SM4_CFB/SM4_OFB support in DPDK. > > Signed-off-by: Sunyang Wu > --- > doc/guides/cryptodevs/features/default.ini | 3 +++ > doc/guides/rel_notes/release_23_07.rst | 5 + > lib/cryptodev/rte_crypto_sym.h | 8 +++- > lib/cryptodev/rte_cryptodev.c

RE: [v1, 2/3] test/test_cryptodev_asym: add SM2 tests

2023-05-26 Thread Gowrishankar Muthukrishnan
Hi Akhil, > > If you have the reference from where the vectors are taken it can also be > mentioned. > I generated these test vectors in online. There are no reference test vectors quoted In RFC except for recommended curve parameters, at the end. https://datatracker.ietf.org/doc/html/draft-shen

Re: [RFC v2 1/2] dts: add smoke tests

2023-05-26 Thread Juraj Linkeš
On Thu, May 25, 2023 at 8:03 PM Jeremy Spewock wrote: > > Hey Juraj, > > On Thu, May 25, 2023 at 4:33 AM Juraj Linkeš > wrote: >> >> One more point that doesn't fit elsewhere: >> >> On Wed, May 24, 2023 at 10:45 PM Jeremy Spewock wrote: >> > >> > >> > >> > On Tue, May 23, 2023 at 4:05 AM Juraj

[PATCH v4 00/13] net/cpfl: add hairpin queue support

2023-05-26 Thread beilei . xing
From: Beilei Xing This patchset adds hairpin queue support. v2 changes: - change hairpin rx queus configuration sequence. - code refine. v3 changes: - Refine the patchset based on the latest code. v4 change: - Remove hairpin rx buffer queue's sw_ring. - Change hairpin rx queus configurati

[PATCH v4 01/13] net/cpfl: refine structures

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch refines some structures to support hairpin queue, cpfl_rx_queue/cpfl_tx_queue/cpfl_vport. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 85 +++- drivers/net/cpfl/cpfl_ethdev.h | 6 +- driver

[PATCH v4 02/13] common/idpf: support queue groups add/delete

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch adds queue group add/delete virtual channel support. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 66 ++ drivers/common/idpf/idpf_common_virtchnl.h | 9 +++ drivers/common/idpf/version.

[PATCH v4 03/13] net/cpfl: add haipin queue group during vport init

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch adds haipin queue group during vport init. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 133 + drivers/net/cpfl/cpfl_ethdev.h | 18 + drivers/net/cpfl/cpfl_rxtx.h | 7 ++ 3 file

[PATCH v4 04/13] net/cpfl: support hairpin queue capbility get

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch adds hairpin_cap_get ops support. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 18 ++ drivers/net/cpfl/cpfl_rxtx.h | 3 +++ 2 files changed, 21 insertions(+) diff --git a/d

[PATCH v4 05/13] net/cpfl: support hairpin queue setup and release

2023-05-26 Thread beilei . xing
From: Beilei Xing Support hairpin Rx/Tx queue setup and release. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 6 + drivers/net/cpfl/cpfl_ethdev.h | 11 + drivers/net/cpfl/cpfl_rxtx.c| 353

[PATCH v4 06/13] common/idpf: add queue config API

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports Rx/Tx queue configuration APIs. Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 70 ++ drivers/common/idpf/idpf_common_virtchnl.h | 6 ++ drivers/common/idpf/version.map| 2 + 3 files changed, 7

[PATCH v4 08/13] common/idpf: add switch queue API

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch adds idpf_vc_ena_dis_one_queue API. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_virtchnl.c | 2 +- drivers/common/idpf/idpf_common_virtchnl.h | 3 +++ drivers/common/idpf/version.map| 1 + 3 files changed,

[PATCH v4 07/13] net/cpfl: support hairpin queue configuration

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports Rx/Tx hairpin queue configuration. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 136 +++-- drivers/net/cpfl/cpfl_rxtx.c | 80 +++ driver

[PATCH v4 09/13] net/cpfl: support hairpin queue start/stop

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports Rx/Tx hairpin queue start/stop. Signed-off-by: Xiao Wang Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 41 + drivers/net/cpfl/cpfl_rxtx.c | 151 + drivers/net/cpfl/cp

[PATCH v4 10/13] common/idpf: add irq map config API

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports idpf_vport_irq_map_config_by_qids API. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/common/idpf/idpf_common_device.c | 75 drivers/common/idpf/idpf_common_device.h | 4 ++ drivers/common/idpf/version.map

[PATCH v4 11/13] net/cpfl: enable write back based on ITR expire

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch enables write back based on ITR expire (WR_ON_ITR) for hairpin queues. Signed-off-by: Mingxia Liu Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 13 - 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/drivers/net/cpfl/cpfl_

[PATCH v4 12/13] net/cpfl: support peer ports get

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports get hairpin peer ports. Signed-off-by: Xiao Wang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 40 ++ 1 file changed, 40 insertions(+) diff --git a/drivers/net/cpfl/cpfl_ethdev.c b/drivers/net/cpfl/cpfl_e

[PATCH v4 13/13] net/cpfl: support hairpin bind/unbind

2023-05-26 Thread beilei . xing
From: Beilei Xing This patch supports hairpin_bind/unbind ops. Signed-off-by: Xiao Wang Signed-off-by: Beilei Xing --- drivers/net/cpfl/cpfl_ethdev.c | 137 + drivers/net/cpfl/cpfl_rxtx.c | 28 +++ drivers/net/cpfl/cpfl_rxtx.h | 2 + 3 files changed,

RE: [PATCH] common/mlx5: adjust fork call with the new kernel API

2023-05-26 Thread Slava Ovsiienko
> -Original Message- > From: Stephen Hemminger > Sent: Thursday, May 25, 2023 6:28 PM > To: Slava Ovsiienko > Cc: Erez Ferber ; dev@dpdk.org; Matan Azrad > ; Raslan Darawsheh ; > sta...@dpdk.org > Subject: Re: [PATCH] common/mlx5: adjust fork call with the new kernel API > > On Thu, 25 M

Re: [PATCH] ethdev: validate reserved fields

2023-05-26 Thread Bruce Richardson
On Thu, May 25, 2023 at 01:39:42PM -0700, Stephen Hemminger wrote: > The various reserved fields added to ethdev could not be > safely used for future extensions because they were never > checked on input. Therefore ABI would be broken if these > fields were added in a future DPDK release. > > Fix

RE: [PATCH v17] app/procinfo: display eventdev xstats

2023-05-26 Thread Pattan, Reshma
> -Original Message- > From: Sevincer, Abdullah > Signed-off-by: Abdullah Sevincer Acked-by: Reshma Pattan

[PATCH] net/igc: support device I225-LMVP

2023-05-26 Thread Qiming Yang
Add support for I225-LMVP device. Signed-off-by: Qiming Yang --- drivers/net/igc/base/igc_api.c | 1 + drivers/net/igc/base/igc_hw.h | 1 + drivers/net/igc/igc_ethdev.c | 1 + 3 files changed, 3 insertions(+) diff --git a/drivers/net/igc/base/igc_api.c b/drivers/net/igc/base/igc_api.c index

RE: [v1, 2/3] test/test_cryptodev_asym: add SM2 tests

2023-05-26 Thread Akhil Goyal
> Hi Akhil, > > > > If you have the reference from where the vectors are taken it can also be > > mentioned. > > > I generated these test vectors in online. There are no reference test vectors > quoted > In RFC except for recommended curve parameters, at the end. > https://datatracker.ietf.org/doc/

Re: [PATCH v3 04/28] vhost: add helper of IOTLB entries coredump

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 6:26 PM Maxime Coquelin wrote: > @@ -149,8 +177,8 @@ vhost_user_iotlb_cache_remove_all(struct virtio_net *dev, > struct vhost_virtqueue > rte_rwlock_write_lock(&vq->iotlb_lock); > > RTE_TAILQ_FOREACH_SAFE(node, &vq->iotlb_list, next, temp_node) { > -

[PATCH v4] dmadev: add tracepoints

2023-05-26 Thread Chengwen Feng
Add tracepoints at important APIs for tracing support. Signed-off-by: Chengwen Feng Acked-by: Morten Brørup --- v4: Fix asan smoke fail. v3: Address Morten's comment: Move stats_get and vchan_status and to trace_fp.h. v2: Address Morten's comment: Make stats_get as fast-path trace-point

Re: [PATCH v3 14/28] vhost: add helper for interrupt injection

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 6:26 PM Maxime Coquelin wrote: > @@ -900,6 +905,24 @@ vhost_need_event(uint16_t event_idx, uint16_t new_idx, > uint16_t old) > return (uint16_t)(new_idx - event_idx - 1) < (uint16_t)(new_idx - > old); > } > > +static __rte_always_inline void > +vhost_vring_inject

Re: [PATCH v3 32/32] common/cnxk: add check for null auth and anti-replay

2023-05-26 Thread Jerin Jacob
On Thu, May 25, 2023 at 3:41 PM Nithin Dabilpuram wrote: > > From: Srujana Challa > > As per IPsec RFC, the anti-replay service can be selected for > an SA only if the integrity service is selected for that SA. > This patch adds the validation check for the same. > > Signed-off-by: Srujana Challa

Re: [PATCH v3 15/28] vhost: add API to set max queue pairs

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 6:27 PM Maxime Coquelin wrote: > diff --git a/doc/guides/prog_guide/vhost_lib.rst > b/doc/guides/prog_guide/vhost_lib.rst > index e8bb8c9b7b..cd4b109139 100644 > --- a/doc/guides/prog_guide/vhost_lib.rst > +++ b/doc/guides/prog_guide/vhost_lib.rst > @@ -334,6 +334,10 @@ Th

[PATCH v8] enhance NUMA affinity heuristic

2023-05-26 Thread Kaisen You
When a DPDK application is started on only one numa node, memory is allocated for only one socket. When interrupt threads use memory, memory may not be found on the socket where the interrupt thread is currently located, and memory has to be reallocated on the hugepage, this operation will lead to

Re: [PATCH] net/qede: fix RSS indirection table initialization

2023-05-26 Thread Jerin Jacob
On Thu, May 25, 2023 at 7:24 PM Devendra Singh Rawat wrote: > > RSS indirection table was not updated for VF ports during RSS hash > update, this resulted in device start failure. > This fix sets update rss indirection table in VFPF channel request, > sent for updating RSS hash for VF. > > Fixes:

Re: [PATCH v3 18/28] vhost: add VDUSE device creation and destruction

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 6:27 PM Maxime Coquelin wrote: > diff --git a/lib/vhost/vduse.c b/lib/vhost/vduse.c > new file mode 100644 > index 00..d67818bfb5 > --- /dev/null > +++ b/lib/vhost/vduse.c [snip] > +#define VDUSE_NET_SUPPORTED_FEATURES ((1ULL << VIRTIO_NET_F_MRG_RXBUF) | \ > +

[PATCH v2 0/3] SM2 crypto algorithm support

2023-05-26 Thread Gowrishankar Muthukrishnan
This patch series adds SM2 crypto algorithm support, along with tests verified using Openssl. v2: - addressed suggestions in v1. Gowrishankar Muthukrishnan (3): cryptodev: add SM2 asymmetric crypto algorithm test/crypto: add asymmetric SM2 test cases crypto/openssl: add SM2 asymmetric cryp

[PATCH v2 1/3] cryptodev: add SM2 asymmetric crypto algorithm

2023-05-26 Thread Gowrishankar Muthukrishnan
ShangMi 2 (SM2) is a encryption and digital signature algorithm used in the Chinese National Standard. Added support for asymmetric SM2 in cryptodev along with prime field curve, as referenced in RFC: https://datatracker.ietf.org/doc/html/draft-shen-sm2-ecdsa-02 Signed-off-by: Gowrishankar Muthuk

[PATCH v2 2/3] test/crypto: add asymmetric SM2 test cases

2023-05-26 Thread Gowrishankar Muthukrishnan
Added test cases and test vectors for asymmetric SM2 crypto verification. Cases are added for sign/verify/encrypt/decrypt. Signed-off-by: Gowrishankar Muthukrishnan --- app/test/test_cryptodev_asym.c | 504 + app/test/test_cryptodev_sm2_test_vectors.h | 120 +

[PATCH v2 3/3] crypto/openssl: add SM2 asymmetric crypto support

2023-05-26 Thread Gowrishankar Muthukrishnan
Add SM2 asymmetric algorithm support in openssl PMD. Signed-off-by: Gowrishankar Muthukrishnan --- doc/guides/cryptodevs/features/openssl.ini | 1 + doc/guides/cryptodevs/openssl.rst| 1 + doc/guides/rel_notes/release_23_07.rst | 4 + drivers/crypto/openssl/openssl_pmd_

Re: [PATCH v3 00/28] Add VDUSE support to Vhost library

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 6:25 PM Maxime Coquelin wrote: > > Note: v2 is identical to v3, it is just a resend because > of an issue when posting v2 breaking the series in patchwork. > > This series introduces a new type of backend, VDUSE, > to the Vhost library. > > VDUSE stands for vDPA device in U

Re: [PATCH 01/15] common/cnxk: add ROC MACsec initialization

2023-05-26 Thread Jerin Jacob
On Wed, May 24, 2023 at 1:34 AM Akhil Goyal wrote: > > Added ROC init and fini APIs for supporting MACsec. > > Signed-off-by: Ankur Dwivedi > Signed-off-by: Vamsi Attunuru > Signed-off-by: Akhil Goyal > --- > + > +TAILQ_HEAD(roc_mcs_head, roc_mcs); > +/* Local mcs tailq list */ > +static struct

[PATCH v4 0/3] Enable iavf Rx Timestamp offload on vector path

2023-05-26 Thread Zhichao Zeng
Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. --- v4: rework avx2 patch based on offload path --- v3: logging with driver dedicated macro --- v2: fix compile warning and SSE path Zhichao Zeng (3): ne

[PATCH v4 1/3] net/iavf: support Rx timestamp offload on AVX512

2023-05-26 Thread Zhichao Zeng
This patch enables Rx timestamp offload on AVX512 data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Wenjun Wu Signed-off-by: Zhichao Zeng --- v4: rework avx2 patch based on off

[PATCH v4 2/3] net/iavf: support Rx timestamp offload on AVX2

2023-05-26 Thread Zhichao Zeng
This patch enables Rx timestamp offload on AVX2 data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Zhichao Zeng --- v4: rework avx2 patch based on offload path --- v3: logging wi

[PATCH v4 3/3] net/iavf: support Rx timestamp offload on SSE

2023-05-26 Thread Zhichao Zeng
This patch enables Rx timestamp offload on SSE data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Zhichao Zeng --- v4: rework avx2 patch based on offload path --- v3: logging wit

Re: [PATCH v4] lib: set/get max memzone segments

2023-05-26 Thread David Marchand
On Thu, May 25, 2023 at 12:26 AM Ophir Munk wrote: > > Currently, the max memzones count constat (RTE_MAX_MEMZONE) is used to > decide how many memzones a DPDK application can have. This value could > technically be changed by manually editing `rte_config.h` before > compilation, but if DPDK is al

RE: [PATCH v6 04/15] graph: add get/set graph worker model APIs

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 2:09 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 05/15] graph: introduce graph node core affinity API

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 2:36 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 06/15] graph: introduce graph bind unbind API

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 2:24 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 08/15] graph: add struct for stream moving between cores

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 3:25 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 07/15] graph: introduce graph clone API for other worker core

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 3:14 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 09/15] graph: introduce stream moving cross cores

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 4:00 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 13/15] graph: add stats for cross-core dispatching

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 4:09 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 15/15] doc: update multicore dispatch model in graph guides

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 4:13 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue > Subje

RE: [PATCH v6 12/15] graph: enable graph multicore dispatch scheduler model

2023-05-26 Thread Yan, Zhirun
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, May 24, 2023 4:46 PM > To: Yan, Zhirun > Cc: dev@dpdk.org; jer...@marvell.com; kirankum...@marvell.com; > ndabilpu...@marvell.com; step...@networkplumber.org; > pbhagavat...@marvell.com; Liang, Cunming ; Wang, > Haiyue ; mattia

RE: [PATCH v2] net/ice: support double vlan

2023-05-26 Thread Xu, Ke1
> From: Mingjin Ye > Sent: Saturday, May 6, 2023 6:05 PM > To: dev@dpdk.org > Cc: Yang, Qiming ; Zhou, YidingX > ; Ye, MingjinX ; Zhang, Qi Z > > Subject: [PATCH v2] net/ice: support double vlan > > Aligned with kernel driver, optimized for inner and outer VLAN handling in > DPDK, > and impleme

Re: [PATCH 02/15] common/cnxk: add MACsec SA configuration

2023-05-26 Thread Jerin Jacob
On Wed, May 24, 2023 at 1:34 AM Akhil Goyal wrote: > > Added ROC APIs to allocate/free MACsec resources > and APIs to write SA policy. > > Signed-off-by: Ankur Dwivedi > Signed-off-by: Vamsi Attunuru > Signed-off-by: Akhil Goyal > --- > index 7593c7c890..9266edd9a1 100644 > --- a/drivers/commo

Re: [PATCH 05/15] common/cnxk: add MACsec PN and LMAC mode configuration

2023-05-26 Thread Jerin Jacob
On Wed, May 24, 2023 at 1:34 AM Akhil Goyal wrote: > > Added ROC APIs for setting packet number and LMAC > related configurations. > > Signed-off-by: Ankur Dwivedi > Signed-off-by: Vamsi Attunuru > Signed-off-by: Akhil Goyal > +struct mcs_set_active_lmac { > + struct mbox_msghdr hdr; > +

Re: [PATCH 09/15] common/cnxk: add MACsec control port configuration

2023-05-26 Thread Jerin Jacob
On Wed, May 24, 2023 at 1:35 AM Akhil Goyal wrote: > > Added ROC APIs to configure MACsec control port. > > Signed-off-by: Ankur Dwivedi > Signed-off-by: Vamsi Attunuru > Signed-off-by: Akhil Goyal > --- > __roc_api int roc_mcs_flowid_stats_get(struct roc_mcs *mcs, struct > roc_mcs_stats_req

[PATCH v4] crypto/qat: default to IPsec MB for computations

2023-05-26 Thread Brian Dooley
Pre and post computations currently use the OpenSSL library by default. This patch changes the default option to Intel IPsec MB library version 1.4 for the required computations. If this version of IPsec is not met it will fallback to use OpenSSL. Added version checks for libipsecmb and libcrypto

Re: [PATCH 1/2] event/cnxk: fix ns to ticks conversion

2023-05-26 Thread Jerin Jacob
On Wed, May 24, 2023 at 2:22 PM wrote: > > From: Pavan Nikhilesh > > The number of timeout ticks is dependent on the global dequeue > timeout configured. > > Fixes: 6223ede20361 ("event/cnxk: add event port link and unlink") > > Signed-off-by: Pavan Nikhilesh Series applied to dpdk-next-net-eve

[PATCH] net/ice: init dvm mode for parser

2023-05-26 Thread Qi Zhang
Double Vlan mode need to be configured for parser Otherwise parser result will not be consistent with hardware. Fixes: 531d2555c8a6 ("net/ice: refactor parser usage") Cc: sta...@dpdk.org Signed-off-by: Qi Zhang --- drivers/net/ice/ice_generic_flow.c | 5 + 1 file changed, 5 insertions(+) d

RE: [PATCH v2] net/ice: support double vlan

2023-05-26 Thread Zhang, Qi Z
> -Original Message- > From: Xu, Ke1 > Sent: Friday, May 26, 2023 6:16 PM > To: Ye, MingjinX ; dev@dpdk.org > Cc: Yang, Qiming ; Zhou, YidingX > ; Ye, MingjinX ; Zhang, Qi > Z > Subject: RE: [PATCH v2] net/ice: support double vlan > > > From: Mingjin Ye > > Sent: Saturday, May 6, 202

"Thread safety" in rte_flow

2023-05-26 Thread David Marchand
Hello Ori, ethdev maintainers, I am a bit puzzled at the RTE_ETH_DEV_FLOW_OPS_THREAD_SAFE checks in rte_flow.c. - The rte_flow.h does not hint at what is being protected. All I can see is a somewhat vague, in lib/ethdev/rte_ethdev.h: /** PMD supports thread-safe flow operations */ #define RTE_ET

Re: [RFC v2 1/2] dts: add smoke tests

2023-05-26 Thread Jeremy Spewock
On Fri, May 26, 2023 at 3:36 AM Juraj Linkeš wrote: > On Thu, May 25, 2023 at 8:03 PM Jeremy Spewock > wrote: > > > > Hey Juraj, > > > > On Thu, May 25, 2023 at 4:33 AM Juraj Linkeš > wrote: > >> > >> One more point that doesn't fit elsewhere: > >> > >> On Wed, May 24, 2023 at 10:45 PM Jeremy S

[PATCH] common/cnxk: add new APIs for batch operations

2023-05-26 Thread Ashwin Sekhar T K
Add new APIs for counting and extracting allocated objects from a single cache line in the batch alloc memory. Signed-off-by: Ashwin Sekhar T K --- drivers/common/cnxk/roc_npa.h | 78 ++- 1 file changed, 67 insertions(+), 11 deletions(-) diff --git a/drivers/comm

[PATCH 1/2] mempool/cnxk: avoid indefinite wait

2023-05-26 Thread Ashwin Sekhar T K
Avoid waiting indefinitely when counting batch alloc pointers by adding a wait timeout. Signed-off-by: Ashwin Sekhar T K --- drivers/common/cnxk/roc_npa.h| 15 +-- drivers/mempool/cnxk/cn10k_mempool_ops.c | 3 ++- 2 files changed, 11 insertions(+), 7 deletions(-) diff -

[PATCH 2/2] common/cnxk: add new APIs for batch operations

2023-05-26 Thread Ashwin Sekhar T K
Add new APIs for counting and extracting allocated objects from a single cache line in the batch alloc memory. Signed-off-by: Ashwin Sekhar T K --- drivers/common/cnxk/roc_npa.h | 78 ++- 1 file changed, 67 insertions(+), 11 deletions(-) diff --git a/drivers/comm

RE: [PATCH 2/4] app/test: refactor mod exp test case

2023-05-26 Thread Power, Ciara
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Wednesday 17 May 2023 22:19 > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Power, Ciara > ; Kusztal, ArkadiuszX > Subject: [PATCH 2/4] app/test: refactor mod exp test case > > Refactored modular exponentiation test case.

Re: [PATCH v3] eal: fix eal init may failed when too much continuous memsegs under legacy mode

2023-05-26 Thread Burakov, Anatoly
On 5/26/2023 4:41 AM, Fengnan Chang wrote: Under legacy mode, if the number of continuous memsegs greater than RTE_MAX_MEMSEG_PER_LIST, eal init will failed even though another memseg list is empty, because only one memseg list used to check in remap_needed_hugepages. Fix this by make remap_segme

Re: [PATCH v8] enhance NUMA affinity heuristic

2023-05-26 Thread Burakov, Anatoly
On 5/26/2023 9:45 AM, Kaisen You wrote: When a DPDK application is started on only one numa node, memory is allocated for only one socket. When interrupt threads use memory, memory may not be found on the socket where the interrupt thread is currently located, and memory has to be reallocated on

RE: [PATCH 3/4] app/test: refactor mod inv tests

2023-05-26 Thread Power, Ciara
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Wednesday 17 May 2023 22:19 > To: dev@dpdk.org > Cc: gak...@marvell.com; Ji, Kai ; Power, Ciara > ; Kusztal, ArkadiuszX > Subject: [PATCH 3/4] app/test: refactor mod inv tests > > Added new modular multiplicative inverse functio

Re: [PATCH v3] eal: fix eal init may failed when too much continuous memsegs under legacy mode

2023-05-26 Thread Burakov, Anatoly
On 5/26/2023 3:41 PM, Burakov, Anatoly wrote: On 5/26/2023 4:41 AM, Fengnan Chang wrote: Under legacy mode, if the number of continuous memsegs greater than RTE_MAX_MEMSEG_PER_LIST, eal init will failed even though another memseg list is empty, because only one memseg list used to check in remap

Re: [PATCH v3] app/testpmd: expand noisy neighbour forward mode support

2023-05-26 Thread Kevin Traynor
On 17/04/2023 19:55, Mike Pattrick wrote: Previously the noisy neighbour vnf simulation would only operate in io mode, forwarding packets as is. However, this limited the usefulness of noisy neighbour simulation. This feature has now been expanded to supporting mac, macswap, and 5tswap modes. To

Re: [PATCH v1] power: support amd-pstate cpufreq driver

2023-05-26 Thread Burakov, Anatoly
On 5/24/2023 7:46 PM, Thomas Monjalon wrote: 12/04/2023 11:52, Sivaprasad Tummala: amd-pstate introduces a new CPU frequency control mechanism for AMD processors using the ACPI Collaborative Performance Power Control feature for a finer grained frequency management. Patch to add support for amd

Re: [PATCH v1] power: support amd-pstate cpufreq driver

2023-05-26 Thread Burakov, Anatoly
On 4/12/2023 10:52 AM, Sivaprasad Tummala wrote: amd-pstate introduces a new CPU frequency control mechanism for AMD processors using the ACPI Collaborative Performance Power Control feature for a finer grained frequency management. Patch to add support for amd-pstate driver. Signed-off-by: Siv

Re: [PATCH v3] app/testpmd: expand noisy neighbour forward mode support

2023-05-26 Thread Mike Pattrick
On Fri, May 26, 2023 at 11:34 AM Kevin Traynor wrote: > > On 17/04/2023 19:55, Mike Pattrick wrote: > > Previously the noisy neighbour vnf simulation would only operate in io > > mode, forwarding packets as is. However, this limited the usefulness of > > noisy neighbour simulation. > > > > This fe

[PATCH v4 00/22] lib: add pdcp protocol

2023-05-26 Thread Anoob Joseph
Add Packet Data Convergence Protocol (PDCP) processing library. The library is similar to lib_ipsec which provides IPsec processing capabilities in DPDK. PDCP would involve roughly the following operations, 1. Transfer of user plane data 2. Transfer of control plane data 3. Header compression 4.

[PATCH v4 01/22] net: add PDCP header

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add PDCP protocol header to be used for supporting PDCP protocol processing. Signed-off-by: Anoob Joseph Signed-off-by: Kiran Kumar K Signed-off-by: Volodymyr Fialko Acked-by: Akhil Goyal --- doc/api/doxy-api-index.md | 3 +- lib/net/meson.build | 1 + lib/n

[PATCH v4 02/22] lib: add pdcp protocol

2023-05-26 Thread Anoob Joseph
Add Packet Data Convergence Protocol (PDCP) processing library. The library is similar to lib_ipsec which provides IPsec processing capabilities in DPDK. PDCP would involve roughly the following options, 1. Transfer of user plane data 2. Transfer of control plane data 3. Header compression 4. Upl

[PATCH v4 03/22] pdcp: add pre and post-process

2023-05-26 Thread Anoob Joseph
PDCP process is split into 2 parts. One before crypto processing (rte_pdcp_pkt_pre_process()) and one after crypto processing (rte_pdcp_pkt_post_process()). Functionality of pre-process & post-process varies based on the type of entity. Registration of entity specific function pointer allows skippi

[PATCH v4 04/22] pdcp: add packet group

2023-05-26 Thread Anoob Joseph
Crypto processing in PDCP is performed asynchronously by rte_cryptodev_enqueue_burst() and rte_cryptodev_dequeue_burst(). Since cryptodev dequeue can return crypto operations belonging to multiple entities, rte_pdcp_pkt_crypto_group() is added to help grouping crypto operations belonging to same en

[PATCH v4 05/22] pdcp: add crypto session create and destroy

2023-05-26 Thread Anoob Joseph
Add routines to create & destroy sessions. PDCP lib would take crypto transforms as input and creates the session on the corresponding device after verifying capabilities. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko Acked-by: Akhil Goyal --- lib/pdcp/pdcp_crypto.c | 223 +++

[PATCH v4 06/22] pdcp: add pre and post process for UL

2023-05-26 Thread Anoob Joseph
Add routines to perform pre & post processing based on the type of entity. To avoid checks in datapath, there are different function pointers registered based on the following, 1. Control plane v/s user plane 2. 12 bit v/s 18 bit SN For control plane only 12 bit SN need to be supported (as per PDC

[PATCH v4 07/22] pdcp: add pre and post process for DL

2023-05-26 Thread Anoob Joseph
Add routines to perform pre & post processing for down link entities. Signed-off-by: Anoob Joseph Signed-off-by: Kiran Kumar K Signed-off-by: Volodymyr Fialko --- lib/pdcp/pdcp_entity.h | 2 + lib/pdcp/pdcp_process.c | 383 lib/pdcp/pdcp_process.h |

[PATCH v4 08/22] pdcp: add IV generation routines

2023-05-26 Thread Anoob Joseph
For PDCP, IV generated has varying formats depending on the ciphering and authentication algorithm used. Add routines to populate IV accordingly. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- lib/pdcp/pdcp_entity.h | 87 lib/pdcp/pdcp_process.c | 284 +++

[PATCH v4 09/22] app/test: add lib pdcp tests

2023-05-26 Thread Anoob Joseph
Add tests to verify lib PDCP operations. Tests leverage existing PDCP test vectors. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- app/test/meson.build | 5 + app/test/test_cryptodev.h | 3 + app/test/test_pdcp.c | 732 ++ 3 fil

[PATCH v4 10/22] test/pdcp: pdcp HFN tests in combined mode

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add tests to verify HFN/SN behaviour. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- app/test/test_pdcp.c | 302 ++- 1 file changed, 299 insertions(+), 3 deletions(-) diff --git a/app/test/test_pdcp.c b/app/test/

[PATCH v4 11/22] doc: add PDCP library guide

2023-05-26 Thread Anoob Joseph
Add guide for PDCP library. Signed-off-by: Anoob Joseph Signed-off-by: Kiran Kumar K Signed-off-by: Volodymyr Fialko --- .../img/pdcp_functional_overview.svg | 1 + doc/guides/prog_guide/index.rst | 1 + doc/guides/prog_guide/pdcp_lib.rst| 254 +++

[PATCH v4 12/22] pdcp: add control PDU handling for status report

2023-05-26 Thread Anoob Joseph
Add control PDU handling and implement status report generation. Status report generation works only when RX_DELIV = RX_NEXT. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- doc/guides/prog_guide/pdcp_lib.rst | 9 ++ lib/pdcp/meson.build | 2 ++ lib/pdcp/pdcp

[PATCH v4 13/22] pdcp: implement t-Reordering and packet buffering

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add in-order delivery of packets in PDCP. Delivery of packets in-order relies on t-Reordering timer. When 'out-of-order delivery' is disabled, PDCP will buffer all received packets that are out of order. The t-Reordering timer determines the time period these packets would

[PATCH v4 14/22] test/pdcp: add in-order delivery cases

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add test cases to verify behaviour when in-order delivery is enabled and packets arrive in out-of-order. PDCP library is expected to buffer the packets and return packets in-order when the missing packet arrives. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko

[PATCH v4 15/22] pdcp: add timer callback handlers

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko PDCP has a windowing mechanism which allows only packets that fall in a reception window. The pivot point for this window is RX_REORD which happens to be the first missing or next expected packet. If the missing packet is not received after a specified time, then the RX_REO

[PATCH v4 16/22] pdcp: add timer expiry handle

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko The PDCP protocol requires usage of timers to keep track of how long an out-of-order packet should be buffered while waiting for missing packets. Applications can register a desired timer implementation with the PDCP library. Once the timer expires, the application will be

[PATCH v4 17/22] test/pdcp: add timer expiry cases

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add test cases for handling the expiry with rte_timer and rte_event_timer. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- app/test/test_pdcp.c | 350 +++ 1 file changed, 350 insertions(+) diff --git a/app/test/te

[PATCH v4 18/22] test/pdcp: add timer restart case

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Add test to cover the case when t-reordering timer should be restarted on the same packet. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- app/test/test_pdcp.c | 68 1 file changed, 68 insertions(+) diff --gi

[PATCH v4 19/22] pdcp: add support for status report

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Implement status report generation for PDCP entity. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- lib/pdcp/pdcp_cnt.c | 158 --- lib/pdcp/pdcp_cnt.h | 11 ++- lib/pdcp/pdcp_ctrl_pdu.c | 34 - lib/

[PATCH v4 20/22] pdcp: allocate reorder buffer alongside with entity

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Instead of allocating reorder buffer separately on heap, allocate memory for it together with rest of entity, and then only initialize buffer via `rte_reorder_init()`. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- lib/pdcp/pdcp_cnt.c | 9 +++

[PATCH v4 21/22] pdcp: add thread safe processing

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko PDCP state has to be guarded for: - Uplink pre_process: - tx_next atomic increment - Downlink pre_process: - rx_deliv - read - Downlink post_process: - rx_deliv, rx_reorder, rx_next - read/write - bitmask/reorder buffer - read/write When application requ

[PATCH v4 22/22] test/pdcp: add PDCP status report cases

2023-05-26 Thread Anoob Joseph
From: Volodymyr Fialko Test PDCP status report generation. Signed-off-by: Anoob Joseph Signed-off-by: Volodymyr Fialko --- app/test/test_pdcp.c | 312 +++ 1 file changed, 312 insertions(+) diff --git a/app/test/test_pdcp.c b/app/test/test_pdcp.c index

Re: [PATCH v4 21/22] pdcp: add thread safe processing

2023-05-26 Thread Stephen Hemminger
On Sat, 27 May 2023 02:32:13 +0530 Anoob Joseph wrote: > +static inline uint32_t > +pdcp_atomic_inc(uint32_t *val, const bool mt_safe) > +{ > + if (mt_safe) > + return __atomic_fetch_add(val, 1, __ATOMIC_RELAXED); > + else > + return (*val)++; > +} This is a bad p

Re: Generic flow string parser

2023-05-26 Thread Cliff Burdick
On Sat, Apr 29, 2023 at 2:49 PM Cliff Burdick wrote: > > So the only things we need are 2 functions, if I understand well: > > > > int rte_flow_to_text(const struct rte_flow*); > > struct rte_flow *rte_flow_from_text(const char *); > > > > Here I assume the output of rte_flow_from_text() would be

Re: [PATCH v3] dmadev: add tracepoints

2023-05-26 Thread fengchengwen
Hi Thomas, On 2023/5/25 5:12, Thomas Monjalon wrote: > 15/04/2023 02:33, Chengwen Feng: >> Add tracepoints at important APIs for tracing support. >> >> Signed-off-by: Chengwen Feng >> Acked-by: Morten Brørup > > This patch triggers a failure in Intel CI: > asan_smoke | test_rxtx_with_ASan_enab

Re: [PATCH V5 2/5] ethdev: fix skip valid port in probing callback

2023-05-26 Thread lihuisong (C)
在 2023/5/22 19:04, fengchengwen 写道: On 2023/1/31 11:33, Huisong Li wrote: The event callback in application may use the macro RTE_ETH_FOREACH_DEV to iterate over all enabled ports to do something(like, verifying the port id validity) when receive a probing event. If the ethdev state of a port

  1   2   >