RE: [EXT] Re: [PATCH v5 2/2] mem: telemetry support for system memory information

2022-10-11 Thread Amit Prakash Shukla
Thanks David for the feedback. Please find the proposed fixed inline. > -Original Message- > From: David Marchand > Sent: Saturday, October 8, 2022 1:17 AM > To: Amit Prakash Shukla ; Thomas Monjalon > ; Anatoly Burakov ; > dmitry.kozl...@gmail.com > Cc: dev@dpdk.org; Jerin Jacob Kollanuk

RE: [PATCH 3/4] eventdev: have ethernet Tx adapter appropriately report idle

2022-10-11 Thread Jayatheerthan, Jay
@Harish, could you review the patch ? -Jay > -Original Message- > From: Mattias Rönnblom > Sent: Monday, October 10, 2022 8:24 PM > To: Jayatheerthan, Jay ; Carrillo, Erik G > ; Gujjar, Abhinandan S > ; Jerin Jacob > Cc: dev@dpdk.org; Van Haaren, Harry ; > hof...@lysator.liu.se; mat

RE: [PATCH 2/4] eventdev: have ethernet Rx adapter appropriately report idle

2022-10-11 Thread Jayatheerthan, Jay
@Harish, Could you review the patch ? -Jay > -Original Message- > From: Mattias Rönnblom > Sent: Monday, October 10, 2022 8:24 PM > To: Jayatheerthan, Jay ; Carrillo, Erik G > ; Gujjar, Abhinandan S > ; Jerin Jacob > Cc: dev@dpdk.org; Van Haaren, Harry ; > hof...@lysator.liu.se; matti

回复: [PATCH v2 1/3] ethdev: add API for direct rearm mode

2022-10-11 Thread Feifei Wang
> -邮件原件- > 发件人: Konstantin Ananyev > 发送时间: Monday, October 3, 2022 4:58 PM > 收件人: Feifei Wang ; tho...@monjalon.net; > Ferruh Yigit ; Andrew Rybchenko > ; Ray Kinsella > 抄送: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > > 主题: Re: [PATCH v2 1/3] ethdev: add API for direct re

RE: [EXT] Re: [PATCH v5 1/2] mem: telemetry support for memseg and element information

2022-10-11 Thread Amit Prakash Shukla
Thanks David for the feedback. > -Original Message- > From: David Marchand > Sent: Saturday, October 8, 2022 1:19 AM > To: Amit Prakash Shukla ; Anatoly Burakov > ; dmitry.kozl...@gmail.com > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; > bruce.richard...@intel.com; ciara.po...@intel.com

回复: [PATCH v2 3/3] examples/l3fwd: enable direct rearm mode

2022-10-11 Thread Feifei Wang
> -邮件原件- > 发件人: Jerin Jacob > 发送时间: Friday, September 30, 2022 7:56 PM > 收件人: Feifei Wang > 抄送: dev@dpdk.org; nd ; Honnappa Nagarahalli > ; Ruifeng Wang > > 主题: Re: [PATCH v2 3/3] examples/l3fwd: enable direct rearm mode > > On Tue, Sep 27, 2022 at 8:18 AM Feifei Wang > wrote: > > >

回复: [PATCH v1 3/3] examples/l3fwd-power: enable PMD power mgmt on Arm

2022-10-11 Thread Feifei Wang
> -邮件原件- > 发件人: David Marchand > 发送时间: Monday, October 3, 2022 3:12 PM > 收件人: Hunt, David ; Feifei Wang > ; Ruifeng Wang > 抄送: dev@dpdk.org; nd ; tho...@monjalon.net > 主题: Re: [PATCH v1 3/3] examples/l3fwd-power: enable PMD power mgmt > on Arm > > On Mon, Aug 29, 2022 at 2:48 PM Hunt,

[PATCH v1] net/iavf: fix taninted scalar

2022-10-11 Thread Steve Yang
Passing tainted expression "rss_meta->proto_hdrs.count" to "iavf_refine_proto_hdrs", wich uses it as a loop boundary. Replace tainted expression with a temp variable to avoid the trainted scalar coverity warning. Coverity issue: 381131 Fixes: f30157d988cf ("net/iavf: support PPPoL2TPv2oUDP RSS Ha

[PATCH v4 1/5] examples/l3fwd: fix port group mask generation

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Fix port group mask generation in altivec, vec_any_eq returns 0 or 1 while port_groupx4 expects comparison mask result. Fixes: 2193b7467f7a ("examples/l3fwd: optimize packet processing on powerpc") Cc: sta...@dpdk.org Signed-off-by: Pavan Nikhilesh --- v4 Changes: - Fix

[PATCH v4 2/5] examples/l3fwd: split processing and send stages

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Split packet processing from packet send stage, as send stage is not common for poll and event mode. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_em_hlm.h | 39 +++--- examples/l3fwd/l3fwd_lpm_altivec.h | 25 --- exa

[PATCH v4 4/5] examples/l3fwd: fix event vector processing in fib

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Fix stack overflow when event vector size is greater than MAX_BURST_SIZE. Add missing mac swap and rfc1812 stage. Fixes: e8adca1951d4 ("examples/l3fwd: support event vector") Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_fib.c | 130 ++--

[PATCH v4 5/5] examples/l3fwd: use em vector path for event vector

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Use em vector path to process event vector. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_em.c| 13 +++-- examples/l3fwd/l3fwd_em.h| 29 +-- examples/l3fwd/l3fwd_em_hlm.h| 72 +--- examples/l3fwd/l3

[PATCH v4 3/5] examples/l3fwd: use lpm vector path for event vector

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Use lpm vector path to process event vector. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_altivec.h | 29 ++ examples/l3fwd/l3fwd_event.h | 71 ++ examples/l3fwd/l3fwd_lpm.c | 39 +++ examples/l3

RE: [EXT] [PATCH resend v3 0/6] crypto/uadk: introduce uadk crypto driver

2022-10-11 Thread Akhil Goyal
> > > gakhil@cavium-SR1-T640:/home/gakhil/up/uadk$ make > > > make all-recursive > > > make[1]: Entering directory '/home/gakhil/up/uadk' > > > Making all in . > > > make[2]: Entering directory '/home/gakhil/up/uadk' > > > depbase=`echo wd.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;\ > > > /bin/bash

RE: [PATCH] eal: non-temporal memcpy

2022-10-11 Thread Konstantin Ananyev
Hi Morten, > Mattias, Konstantin, Honnappa, Stephen, > > In my patch for non-temporal memcpy, I have been aiming for using as much > non-temporal store as possible. E.g. copying 16 byte to a > 16 byte aligned address will be done using non-temporal store instructions. > > Now, I am seriously

[v3 0/3] FIPS asymmetric validation

2022-10-11 Thread Gowrishankar Muthukrishnan
This patch series adds support in fips_validation app to perform asymmetric validation. To start with, RSA algorithm is used in the evaluation. For the key value pairs which is multiprecision in arithmetic, openssl library is used. Changes: v3: - patches 5,6 and 7 in v2 are rebased and submitte

[v3 1/3] examples/fips_validation: add asymmetric validation

2022-10-11 Thread Gowrishankar Muthukrishnan
Add support for asymmetric crypto validation starting with RSA. For the generation of crypto values which is multiprecision in math, openssl library is used only for this purpose. Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Brian Dooley -- v3: - rebased according to cryptodev session r

[v3 2/3] examples/fips_validation: encode digest with hash OID

2022-10-11 Thread Gowrishankar Muthukrishnan
FIPS RSA validation requires hash digest be encoded with ASN.1 value for digest info. Signed-off-by: Gowrishankar Muthukrishnan --- examples/fips_validation/main.c | 78 + 1 file changed, 78 insertions(+) diff --git a/examples/fips_validation/main.c b/examples/fi

[v3 3/3] examples/fips_validation: randomize message for conformance test

2022-10-11 Thread Gowrishankar Muthukrishnan
FIPS conformance tests require randomizing message based on SP 800-106. Signed-off-by: Gowrishankar Muthukrishnan --- examples/fips_validation/fips_validation.h| 4 + .../fips_validation/fips_validation_rsa.c | 112 +- 2 files changed, 115 insertions(+), 1 deletion(-)

Re: [PATCH v2 3/3] examples/l3fwd: enable direct rearm mode

2022-10-11 Thread Jerin Jacob
On Tue, Oct 11, 2022 at 12:58 PM Feifei Wang wrote: > > > > > -邮件原件- > > 发件人: Jerin Jacob > > 发送时间: Friday, September 30, 2022 7:56 PM > > 收件人: Feifei Wang > > 抄送: dev@dpdk.org; nd ; Honnappa Nagarahalli > > ; Ruifeng Wang > > > > 主题: Re: [PATCH v2 3/3] examples/l3fwd: enable direct rea

[Bug 1097] i40e: TSO breaks when MSS spans more than 8 data fragments

2022-10-11 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1097 Bug ID: 1097 Summary: i40e: TSO breaks when MSS spans more than 8 data fragments Product: DPDK Version: unspecified Hardware: All OS: All Status: UNCONF

[PATCH] net/iavf: fix IPsec flow create error check

2022-10-11 Thread Radu Nicolau
Fix an error check where the return code was assigned to a unsigned integer which can hide negative error codes. Fixes: 6bc987ecb860 ("net/iavf: support IPsec inline crypto") Cc: sta...@dpdk.org Signed-off-by: Radu Nicolau --- drivers/net/iavf/iavf_ipsec_crypto.c | 10 +- 1 file changed

Re: [EXT] [PATCH resend v3 0/6] crypto/uadk: introduce uadk crypto driver

2022-10-11 Thread Zhangfei Gao
Hi, Akhil On 2022/10/11 下午5:22, Akhil Goyal wrote: gakhil@cavium-SR1-T640:/home/gakhil/up/uadk$ make make all-recursive make[1]: Entering directory '/home/gakhil/up/uadk' Making all in . make[2]: Entering directory '/home/gakhil/up/uadk' depbase=`echo wd.lo | sed 's|[^/]*$|.deps/&|;s|\.lo$||'`;

[PATCH v5 1/5] examples/l3fwd: fix port group mask generation

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Fix port group mask generation in altivec, vec_any_eq returns 0 or 1 while port_groupx4 expects comparison mask result. Fixes: 2193b7467f7a ("examples/l3fwd: optimize packet processing on powerpc") Cc: sta...@dpdk.org Signed-off-by: Pavan Nikhilesh --- v5 Changes: - Fix

[PATCH v5 4/5] examples/l3fwd: fix event vector processing in fib

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Fix stack overflow when event vector size is greater than MAX_BURST_SIZE. Add missing mac swap and rfc1812 stage. Fixes: e8adca1951d4 ("examples/l3fwd: support event vector") Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_fib.c | 130 ++--

[PATCH v5 3/5] examples/l3fwd: use lpm vector path for event vector

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Use lpm vector path to process event vector. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_altivec.h | 29 ++ examples/l3fwd/l3fwd_event.h | 71 ++ examples/l3fwd/l3fwd_lpm.c | 39 +++ examples/l3

[PATCH v5 2/5] examples/l3fwd: split processing and send stages

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Split packet processing from packet send stage, as send stage is not common for poll and event mode. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_em_hlm.h | 39 +++--- examples/l3fwd/l3fwd_lpm_altivec.h | 25 --- exa

[PATCH v5 5/5] examples/l3fwd: use em vector path for event vector

2022-10-11 Thread pbhagavatula
From: Pavan Nikhilesh Use em vector path to process event vector. Signed-off-by: Pavan Nikhilesh --- examples/l3fwd/l3fwd_em.c| 13 +++-- examples/l3fwd/l3fwd_em.h| 29 +-- examples/l3fwd/l3fwd_em_hlm.h| 72 +--- examples/l3fwd/l3

CRC offload from application's POV

2022-10-11 Thread Viacheslav Galaktionov
Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application's point of view. If we enable the KEEP_CRC offload, then the NIC is supposed to preserve the CRC in the packet, that much is clear. But we checked

Re: [PATCH v2] IGC: Remove I225_I_PHY_ID checking

2022-10-11 Thread Kevin Traynor
On 31/08/2022 23:51, iotg.dpdk.ref@intel.com wrote: From: NSWE SWS DPDK Dev i225 devices have only one PHY vendor. There is unnecessary to check _I_PHY_ID during the link establishment and auto-negotiation process, the checking also caused devices like i225-IT failed. This patch is to remov

[PATCH v2 2/2] drivers: remove the unnecessary version.map

2022-10-11 Thread Abdullah Ömer Yamaç
With the previous patch, some version.map files are not necessary. In this patch, we removed them. Signed-off-by: Abdullah Ömer Yamaç Suggested-by: Ferruh Yigit --- Depends on: patch-116222 ("build: increase minimum meson version to 0.53") --- drivers/baseband/la12xx/version.map | 3 --- dri

[PATCH v2 1/2] build: make version file optional for drivers

2022-10-11 Thread Abdullah Ömer Yamaç
In this patch, we removed the necessity of the version files and you don't need to update these files for each release, you can just remove them. Signed-off-by: Abdullah Ömer Yamaç Suggested-by: Ferruh Yigit --- Depends on: patch-116222 ("build: increase minimum meson version to 0.53") --- dri

[PATCH v3] config/arm: add PHYTIUM tys2500

2022-10-11 Thread luzhipeng
From: Zhipeng Lu Here adds configs for PHYTIUM server. Signed-off-by: Zhipeng Lu --- v3: * fix typos * fix signed-off-by format v2: * add ccache for cross build * rename fts2500 to tys2500 and modify the corresponding code config/arm/arm64_tys2500_linux_gcc | 16 config/arm/m

[v2] crypto/cnxk: support exponent type private key

2022-10-11 Thread Gowrishankar Muthukrishnan
This patch adds support for RTE_RSA_KEY_TYPE_EXP in cnxk crypto driver. Signed-off-by: Gowrishankar Muthukrishnan -- v2: - new function to handle exp type priv key. --- drivers/crypto/cnxk/cnxk_ae.h| 112 ++- drivers/crypto/cnxk/cnxk_cryptodev.c | 1 + 2 files

[PATCH v10 1/8] app/procinfo: add dpdk version dump

2022-10-11 Thread Dongdong Liu
From: "Min Hu (Connor)" Add support for dump dpdk version. The command is like: dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --version Signed-off-by: Min Hu (Connor) Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 19 ++- 1 file changed,

[PATCH v10 0/8] app/procinfo: add some extended features

2022-10-11 Thread Dongdong Liu
This patchset is to add some extended features for dpdk-proc-info. Thanks to Reshma and Stephen help to review the patchset. v9->v10: - Fix some comments for Rx/Tx descriptor dump. v8->v9: - Fixed some checkpatch warnings. v7(v4)->v8: - Add Acked-by: Reshma Pattan for PATCH 4,6. - Add Rx/Tx des

[PATCH v10 2/8] app/procinfo: add firmware version dump

2022-10-11 Thread Dongdong Liu
Add support for dump ethdev firmware version. The command is like: dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --firmware-version Signed-off-by: Min Hu (Connor) Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 35 +++ 1 fil

[PATCH v10 4/8] app/procinfo: add module eeprom info dump

2022-10-11 Thread Dongdong Liu
From: "Min Hu (Connor)" This patch add support for module eeprom info dump. The command is like: dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --show-module-eeprom Signed-off-by: Min Hu (Connor) Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 52

[PATCH v10 3/8] app/procinfo: add RSS RETA dump

2022-10-11 Thread Dongdong Liu
From: "Min Hu (Connor)" This patch add support for RSS reta dump. The command is like: dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --show-rss-reta Signed-off-by: Min Hu (Connor) Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 57 +++

[PATCH v10 5/8] app/procinfo: add dump of Rx/Tx burst mode

2022-10-11 Thread Dongdong Liu
From: Jie Hai Add dump of Rx/Tx burst mode in --show-port. Sample output changes: - rx queue - -- 0 descriptors 0/1024 drop_en rx buffer size 2048 \ mempool mb_pool_0 socket 0 + -- 0 descriptors 0/1024 drop_en rx buffer size 2048 \ mempool mb_po

[PATCH v10 6/8] app/procinfo: fix some wrong doxygen syntax

2022-10-11 Thread Dongdong Liu
This code is to do cleanup for the wrong doxygen syntax comments The DPDK API is documented using doxygen comment annotations in the header files. The procinfo code seems no need to use doxygen comment. Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- app/proc-info/main.c | 40 ++

[PATCH v10 7/8] app/procinfo: support descriptor dump

2022-10-11 Thread Dongdong Liu
This patch support Rx/Tx descriptor dump The command is like: dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --show-rx-descriptor queue_id:offset:num dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --show-tx-descriptor queue_id:offset:num queue_id: A queue identifier on this port. offse

[PATCH v10 8/8] doc: add some extended features in procinfo guide

2022-10-11 Thread Dongdong Liu
Add the below extended features in procinfo guide. --show-port-private --version --firmware-version --show-rss-reta --show-module-eeprom --show-rx-descriptor --show-tx-descriptor Signed-off-by: Dongdong Liu Acked-by: Reshma Pattan --- doc/guides/tools/proc_info.rst | 36 +++

Re: CRC offload from application's POV

2022-10-11 Thread Ferruh Yigit
On 10/11/2022 11:48 AM, Viacheslav Galaktionov wrote: Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application's point of view. If we enable the KEEP_CRC offload, then the NIC is supposed to preserve the

RE: [PATCH v2 0/4] crypto/ccp cleanup

2022-10-11 Thread Uttarwar, Sunil Prakashrao
[Public] -Original Message- From: David Marchand Sent: Tuesday, October 4, 2022 3:21 PM To: dev@dpdk.org Cc: gak...@marvell.com; Uttarwar, Sunil Prakashrao Subject: [PATCH v2 0/4] crypto/ccp cleanup For this series Below shared patches seems fine, verified on AMD platform works fin

Re: CRC offload from application's POV

2022-10-11 Thread Viacheslav Galaktionov
On 10/11/22 15:36, Ferruh Yigit wrote: On 10/11/2022 11:48 AM, Viacheslav Galaktionov wrote: Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application's point of view. If we enable the KEEP_CRC offload, t

Re: [PATCH] vhost: use try_lock in rte_vhost_vring_call

2022-10-11 Thread Maxime Coquelin
Hi Changpeng, On 9/21/22 11:52, Liu, Changpeng wrote: -Original Message- From: Maxime Coquelin Sent: Wednesday, September 21, 2022 5:41 PM To: Liu, Changpeng ; dev@dpdk.org Cc: Xia, Chenbo Subject: Re: [PATCH] vhost: use try_lock in rte_vhost_vring_call On 9/20/22 10:43, Liu, Cha

Re: [PATCH v2 1/2] build: make version file optional for drivers

2022-10-11 Thread Bruce Richardson
On Tue, Oct 11, 2022 at 02:08:49PM +0300, Abdullah Ömer Yamaç wrote: > In this patch, we removed the necessity of the version files and > you don't need to update these files for each release, you can just > remove them. > > Signed-off-by: Abdullah Ömer Yamaç > Suggested-by: Ferruh Yigit > > --

[PATCH 01/13] common/cnxk: set MTU size on SDP based on SoC type

2022-10-11 Thread Nithin Dabilpuram
From: Sathesh Edara Set maximum frame size on SDP NIX side to 16KB for T93 A0-B0, F95N A0 and F95O A0 SOC type. Rest of the SoCs SDP NIX to 64KB. Signed-off-by: Sathesh Edara --- drivers/common/cnxk/hw/nix.h | 1 + drivers/common/cnxk/roc_errata.h | 8 drivers/common/cnxk/roc_mo

[PATCH 03/13] net/cnxk: fix later skip to include mbuf priv

2022-10-11 Thread Nithin Dabilpuram
Fix later skip to include mbuf priv data as mbuf->buf_addr is populated based on calculation including per-mbuf priv area. Fixes: 706eeae60757 ("net/cnxk: add multi-segment Rx for CN10K") cc: sta...@dpdk.org Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_rx.h| 4 +++- drivers/n

[PATCH 04/13] net/cnxk: add use nixtx offset for cn10kb

2022-10-11 Thread Nithin Dabilpuram
In outbound inline case, use NIX Tx offset instead of NIX Tx address for CN103XX as per new instruction format. Signed-off-by: Nithin Dabilpuram --- drivers/common/cnxk/roc_constants.h | 1 + drivers/event/cnxk/cn10k_worker.h | 3 +++ drivers/net/cnxk/cn10k_ethdev.c | 6 ++ drivers/net

[PATCH 05/13] common/cnxk: fix RQ mask config for cn10kb chip

2022-10-11 Thread Nithin Dabilpuram
RQ mask config needs to enable SPB_ENA in order for Zero for being able to override it with Meta aura. Also fix flow control config to catch invalid rxchan config errors. Fixes: ddf955d3917e ("common/cnxk: support CPT second pass") Fixes: da57d4589a6f ("common/cnxk: support NIX flow control") Si

[PATCH 06/13] common/cnxk: fix schedule weight update

2022-10-11 Thread Nithin Dabilpuram
From: Satha Rao Each TX schedule config mail box supports maximum 20 register updates. This patch will send node weight updates in multiple mailbox when TM created with more than 20 scheduler nodes. Fixes: 464c9f919321 ("common/cnxk: support NIX TM dynamic update") Cc: ndabilpu...@marvell.com S

[PATCH 07/13] common/cnxk: sync NIX HW info mbox structure with kernel

2022-10-11 Thread Nithin Dabilpuram
From: Satha Rao Sync nix_hw_info structure with kernel. Maintain default RR_QUANTUM for VF TL2 same as kernel to make equal distribution among all VFs. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_mbox.h | 8 +- drivers/common/cnxk/roc_nix.c | 9 ++- drivers

[PATCH 08/13] common/cnxk: revert VF root weight

2022-10-11 Thread Nithin Dabilpuram
From: Satha Rao With kernel RR_QUANTUM some of the DPDK perf test (ipsec reassembly) was failing, so reverting this change. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_tm.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/drivers/common/cnxk/roc_nix_tm.c b/

[PATCH 09/13] common/cnxk: set hysteresis bit to one

2022-10-11 Thread Nithin Dabilpuram
From: Satha Rao Setting non zero FC_HYST_BITS to reduce mesh traffic on HW. Signed-off-by: Satha Rao --- drivers/common/cnxk/roc_nix_queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/common/cnxk/roc_nix_queue.c b/drivers/common/cnxk/roc_nix_queue.c index 7f00

[PATCH 11/13] common/cnxk: sync mailbox for channel and bpid map

2022-10-11 Thread Nithin Dabilpuram
From: Sunil Kumar Kori As per recent change in Linux-5.4.x, mailbox is updated to configure mapping between channel and BPID. Due to mbox mismatch, PFC was broken. Patch syncs mailbox definition for the same. Also fixes the PFC configuration issues. Signed-off-by: Sunil Kumar Kori --- drivers/

[PATCH 10/13] net/cnxk: handle SA soft packet and byte expiry events

2022-10-11 Thread Nithin Dabilpuram
From: Vamsi Attunuru Handle SA soft packet and byte expiry event for Inline outbound SA. Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_ethdev_sec.c | 7 ++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/net/cnxk/cn10k_ethdev_sec.c b/drivers/net/cnxk/cn

[PATCH 12/13] net/cnxk: remove unnecessary dptr update

2022-10-11 Thread Nithin Dabilpuram
Also remove ESN update from ucode command word 0 based on latest ucode. Signed-off-by: Nithin Dabilpuram Signed-off-by: Vidya Sagar Velumuri --- drivers/event/cnxk/cn9k_worker.h | 1 - drivers/net/cnxk/cn10k_tx.h | 4 2 files changed, 5 deletions(-) diff --git a/drivers/event/cnxk/cn

[PATCH 13/13] net/cnxk: remove duplicate mempool debug checks

2022-10-11 Thread Nithin Dabilpuram
Remove duplicate mempool debug checks for mbufs received. Fixes: 592642c494b1 ("net/cnxk: align prefetches to CN10K cache model") Signed-off-by: Nithin Dabilpuram --- drivers/net/cnxk/cn10k_rx.h | 6 -- 1 file changed, 6 deletions(-) diff --git a/drivers/net/cnxk/cn10k_rx.h b/drivers/net/cn

[PATCH 02/13] common/cnxk: add devargs for soft expiry poll frequency

2022-10-11 Thread Nithin Dabilpuram
Add support to override soft expiry poll frequency via devargs. Also provide helper API to indicate reassembly support on a chip and documentation for devargs that are already present. Signed-off-by: Nithin Dabilpuram --- doc/guides/nics/cnxk.rst | 39 +++ dr

[PATCH v8 6/9] test/memarea: support dump test

2022-10-11 Thread Chengwen Feng
This patch supports rte_memarea_dump() test. Signed-off-by: Chengwen Feng --- app/test/test_memarea.c | 33 + 1 file changed, 33 insertions(+) diff --git a/app/test/test_memarea.c b/app/test/test_memarea.c index 5f7868f8f6..50b92db9b3 100644 --- a/app/test/test_m

[PATCH v8 2/9] test/memarea: support memarea test

2022-10-11 Thread Chengwen Feng
This patch supports memarea test about API rte_memarea_create and rte_memarea_destroy. Signed-off-by: Chengwen Feng --- MAINTAINERS | 1 + app/test/meson.build| 2 + app/test/test_memarea.c | 168 3 files changed, 171 insertions(+) cr

[PATCH v8 4/9] test/memarea: support alloc/free/update-refcnt test

2022-10-11 Thread Chengwen Feng
This patch supports rte_memarea_alloc()/rte_memarea_free()/ rte_memarea_update_refcnt() test. Signed-off-by: Chengwen Feng --- app/test/test_memarea.c | 150 +++- 1 file changed, 149 insertions(+), 1 deletion(-) diff --git a/app/test/test_memarea.c b/app/test

[PATCH v8 1/9] memarea: introduce memarea library

2022-10-11 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. This patch provides create/destroy API. Signed-off-by: Chengwen Feng --- MAINTAINERS| 5 + doc/api/doxy-api-index.md | 3 +- doc/api/doxy-api.conf.in

[PATCH v8 0/9] introduce memarea library

2022-10-11 Thread Chengwen Feng
The memarea library is an allocator of variable-size object which based on a memory region. The main features are as follows: - The allocated object aligned at RTE_CACHE_LINE_SIZE default. - The memory region can be initialized from the following memory sources: 1. HEAP: e.g. invoke rte_mallo

[PATCH v8 5/9] memarea: support dump API

2022-10-11 Thread Chengwen Feng
This patch supports rte_memarea_dump() API which could be used for debug. Signed-off-by: Chengwen Feng --- doc/guides/prog_guide/memarea_lib.rst | 3 + lib/memarea/rte_memarea.c | 98 +++ lib/memarea/rte_memarea.h | 21 ++ lib/memarea/version.

[PATCH v8 7/9] memarea: support backup memory mechanism

2022-10-11 Thread Chengwen Feng
This patch adds a memarea backup mechanism, where an allocation request which cannot be met by the current memarea is deferred to its backup memarea. Signed-off-by: Chengwen Feng --- doc/guides/prog_guide/memarea_lib.rst | 4 ++ lib/memarea/memarea_private.h | 3 ++ lib/memarea/rte_mem

[PATCH v8 3/9] memarea: support alloc/free/update-refcnt API

2022-10-11 Thread Chengwen Feng
This patch supports rte_memarea_alloc()/rte_memarea_free()/ rte_memarea_update_refcnt() API. Signed-off-by: Chengwen Feng --- doc/guides/prog_guide/memarea_lib.rst | 10 ++ lib/memarea/memarea_private.h | 3 + lib/memarea/rte_memarea.c | 155 ++ lib

[PATCH v8 8/9] test/memarea: support backup memory test

2022-10-11 Thread Chengwen Feng
This patch supports backup memory mechanism test. Signed-off-by: Chengwen Feng --- app/test/test_memarea.c | 93 + 1 file changed, 93 insertions(+) diff --git a/app/test/test_memarea.c b/app/test/test_memarea.c index 50b92db9b3..c12af6338e 100644 --- a/ap

[PATCH v8 9/9] app/test: add memarea to malloc-perf-autotest

2022-10-11 Thread Chengwen Feng
This patch adds memarea to malloc_perf_autotest. Test platform: Kunpeng920 Test command: dpdk-test -a :7d:00.3 -l 10-12 Test result: USER1: Performance: rte_memarea USER1:Size (B) Runs Alloc (us) Free (us) Total (us) memset (us) USER1: 64 10.03 0.03 0.0

RE: [PATCH 3/3] sched: support for 100G+ rates in subport/pipe config

2022-10-11 Thread Dumitrescu, Cristian
> -Original Message- > From: Ajmera, Megha > Sent: Thursday, October 6, 2022 8:01 PM > To: dev@dpdk.org; Singh, Jasvinder ; > Dumitrescu, Cristian > Cc: sta...@dpdk.org > Subject: [PATCH 3/3] sched: support for 100G+ rates in subport/pipe config > > Config load functions updated to su

Re: [PATCH v2 2/2] drivers: remove the unnecessary version.map

2022-10-11 Thread David Marchand
On Tue, Oct 11, 2022 at 1:09 PM Abdullah Ömer Yamaç wrote: > > With the previous patch, some version.map files are not necessary. > In this patch, we removed them. > > Signed-off-by: Abdullah Ömer Yamaç > Suggested-by: Ferruh Yigit I'd like some check added as part of this series. Something lik

[Bug 1098] net/iavf: check_rx_vec_allow() result is ignored

2022-10-11 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1098 Bug ID: 1098 Summary: net/iavf: check_rx_vec_allow() result is ignored Product: DPDK Version: 22.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal

[PATCH v5] net/bonding: call Tx prepare before Tx burst

2022-10-11 Thread Chengwen Feng
Normally, to use the HW offloads capability (e.g. checksum and TSO) in the Tx direction, the application needs to call rte_eth_tx_prepare() to do some adjustment with the packets before sending them. But the tx_prepare callback of the bonding driver is not implemented. Therefore, the sent packets m

Re: [PATCH v4] net/bonding: call Tx prepare before Tx burst

2022-10-11 Thread fengchengwen
Hi Chas, On 2022/10/11 3:42, Chas Williams wrote: > > > On 10/8/22 23:36, Chengwen Feng wrote: >>   uint16_t slaves[RTE_MAX_ETHPORTS]; >>   uint8_t tx_failed_flag = 0; >>   uint16_t num_of_slaves; >> +    uint16_t num_tx_prep; >>     uint16_t max_nb_of_tx_pkts = 0; >>   @@ -1320,

RE: [PATCH v10 7/8] app/procinfo: support descriptor dump

2022-10-11 Thread Pattan, Reshma
> -Original Message- > From: Dongdong Liu > Subject: [PATCH v10 7/8] app/procinfo: support descriptor dump > > This patch support Rx/Tx descriptor dump > > The command is like: > dpdk-proc-info -a :xx:xx.x --file-prefix=xxx -- --show-rx-descriptor > queue_id:offset:num > > dpdk-p

Re: CRC offload from application's POV

2022-10-11 Thread Ferruh Yigit
On 10/11/2022 12:54 PM, Viacheslav Galaktionov wrote: On 10/11/22 15:36, Ferruh Yigit wrote: On 10/11/2022 11:48 AM, Viacheslav Galaktionov wrote: Hi! We're looking to implement CRC offload in our driver and we're having difficulties understanding what the feature changes from the application

Re: [PATCH v6] lib/eal: fix segfaults in exiting

2022-10-11 Thread Stephen Hemminger
On Tue, 11 Oct 2022 13:25:14 +0800 Zhichao Zeng wrote: > This patch closes the 'eal-intr-thread' before memory cleanup in > 'rte_eal_cleanup' to avoid segfaults, and adds a flag to avoid executing > 'rte_eal_cleanup' in the child process which is forked to execute some > test cases(e.g. debug_aut

Re: [RFC] net: add experimental UDP encapsulation PMD

2022-10-11 Thread Stephen Hemminger
On Tue, 11 Oct 2022 08:47:30 +0200 Morten Brørup wrote: > > From: Stephen Hemminger [mailto:step...@networkplumber.org] > > Sent: Tuesday, 11 October 2022 02.10 > > > > This is a new PMD which can be useful to test a DPDK application > > from another test program. The PMD binds to a connected UD

Re: [PATCH v2 1/9] trace: fix mode for new trace point

2022-10-11 Thread Jerin Jacob
On Tue, Oct 4, 2022 at 3:14 PM David Marchand wrote: > > If an application registers trace points later than rte_eal_init(), > changes in the trace point mode were not applied. > > Fixes: 84c4fae4628f ("trace: implement operation APIs") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand Ack

Re: [PATCH v2 2/9] trace: fix mode change

2022-10-11 Thread Jerin Jacob
On Tue, Oct 4, 2022 at 3:15 PM David Marchand wrote: > > The API does not state that changing mode should be refused if no trace > point is enabled. Remove this limitation. > > Fixes: 84c4fae4628f ("trace: implement operation APIs") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand > --- >

Re: [PATCH v2 3/9] trace: fix leak with regexp

2022-10-11 Thread Jerin Jacob
On Tue, Oct 4, 2022 at 3:14 PM David Marchand wrote: > > The precompiled buffer initialised in regcomp must be freed before > leaving rte_trace_regexp. > > Fixes: 84c4fae4628f ("trace: implement operation APIs") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand Acked-by: Jerin Jacob > -

Re: [PATCH v2 4/9] trace: rework loop on trace points

2022-10-11 Thread Jerin Jacob
On Tue, Oct 4, 2022 at 3:15 PM David Marchand wrote: > > Directly skip the block when a trace point does not match the user > criteria. > > Signed-off-by: David Marchand Acked-by: Jerin Jacob > --- > lib/eal/common/eal_common_trace.c | 34 +-- > 1 file changed, 19

RE: [PATCH 1/3] sched: fix subport profile id not set correctly

2022-10-11 Thread Dumitrescu, Cristian
> -Original Message- > From: Ajmera, Megha > Sent: Thursday, October 6, 2022 8:01 PM > To: dev@dpdk.org; Singh, Jasvinder ; > Dumitrescu, Cristian > Cc: sta...@dpdk.org > Subject: [PATCH 1/3] sched: fix subport profile id not set correctly > > In rte_sched_subport_config() API, subpor

RE: [PATCH 2/3] sched: removed unused subport field in hqos profile

2022-10-11 Thread Dumitrescu, Cristian
> -Original Message- > From: Ajmera, Megha > Sent: Thursday, October 6, 2022 8:01 PM > To: dev@dpdk.org; Singh, Jasvinder ; > Dumitrescu, Cristian > Cc: sta...@dpdk.org > Subject: [PATCH 2/3] sched: removed unused subport field in hqos profile > > Removed unused subport field from pro

Re: [PATCH 5/8] trace: fix race in debug dump

2022-10-11 Thread Jerin Jacob
On Wed, Sep 21, 2022 at 5:35 PM David Marchand wrote: > > trace->nb_trace_mem_list access must be under trace->lock to avoid > races with threads allocating/freeing their trace buffers. > > Fixes: f6b2d65dcd5d ("trace: implement debug dump") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand

Re: [PATCH v11 2/5] ethdev: support proactive error handling mode

2022-10-11 Thread fengchengwen
Hi Andrew, On 2022/10/10 16:47, Andrew Rybchenko wrote: On 10/9/22 12:10, Chengwen Feng wrote: From: Kalesh AP Some PMDs (e.g. hns3) could detect hardware or firmware errors, and try to recover from the errors. In this process, the PMD sets the data path pointers to dummy functions (which wil

Re: [PATCH 7/8] trace: remove limitation on trace point name

2022-10-11 Thread Jerin Jacob
On Wed, Sep 21, 2022 at 5:35 PM David Marchand wrote: > > The name of a trace point is provided as a constant string via the > RTE_TRACE_POINT_REGISTER macro. > We can rely on the constant string in the binary and simply point at it. I am not sure about this. If we compile with -Os (optimized for

Re: [PATCH 8/8] trace: remove limitation on directory

2022-10-11 Thread Jerin Jacob
On Wed, Sep 21, 2022 at 5:35 PM David Marchand wrote: > > Remove arbitrary limit on 12 characters of the file prefix used for the > directory where to store the traces. > Simplify the code by relying on dynamic allocations. Nice one. > > Signed-off-by: David Marchand Acked-by: Jerin Jacob >

Re: [PATCH v5 01/10] memarea: introduce memarea library

2022-10-11 Thread Mattias Rönnblom
On 2022-10-11 01:33, fengchengwen wrote: On 2022/10/11 0:53, Mattias Rönnblom wrote: On 2022-10-08 09:53, fengchengwen wrote: Hi Mattias, Thanks for your review, most will fix in v6. On 2022/10/7 4:15, Mattias Rönnblom wrote: On 2022-10-05 06:09, datshan wrote: From: Chengwen Feng The mema

RE: [v3 0/3] FIPS asymmetric validation

2022-10-11 Thread Akhil Goyal
> Subject: [v3 0/3] FIPS asymmetric validation > > This patch series adds support in fips_validation app to perform > asymmetric validation. To start with, RSA algorithm is used in > the evaluation. For the key value pairs which is multiprecision > in arithmetic, openssl library is used. > > Chan

Re: [PATCH v5 00/10] dts: ssh connection to a node

2022-10-11 Thread Owen Hilyard
On Mon, Sep 26, 2022 at 10:17 AM Juraj Linkeš wrote: > All the necessary code needed to connect to a node in a topology with > a bit more, such as basic logging and some extra useful methods. > > To run the code, modify the config file, conf.yaml and execute ./main.py > from the root dts folder.

Re: [PATCH v8 1/9] memarea: introduce memarea library

2022-10-11 Thread Dmitry Kozlyuk
2022-10-11 12:17 (UTC+), Chengwen Feng: [...] > diff --git a/doc/guides/prog_guide/memarea_lib.rst > b/doc/guides/prog_guide/memarea_lib.rst > new file mode 100644 > index 00..85ad57145f > --- /dev/null > +++ b/doc/guides/prog_guide/memarea_lib.rst > @@ -0,0 +1,39 @@ > +.. SPDX-Licens

Re: [PATCH v8 3/9] memarea: support alloc/free/update-refcnt API

2022-10-11 Thread Dmitry Kozlyuk
2022-10-11 12:17 (UTC+), Chengwen Feng: > This patch supports rte_memarea_alloc()/rte_memarea_free()/ > rte_memarea_update_refcnt() API. > > Signed-off-by: Chengwen Feng > --- > doc/guides/prog_guide/memarea_lib.rst | 10 ++ > lib/memarea/memarea_private.h | 3 + > lib/memarea/rte

Re: [PATCH v8 7/9] memarea: support backup memory mechanism

2022-10-11 Thread Dmitry Kozlyuk
2022-10-11 12:17 (UTC+), Chengwen Feng: > This patch adds a memarea backup mechanism, where an allocation request > which cannot be met by the current memarea is deferred to its backup > memarea. This is a controversial feature. 1. It violates memarea property of freeing all allocated objects

Re: [PATCH v8 9/9] app/test: add memarea to malloc-perf-autotest

2022-10-11 Thread Dmitry Kozlyuk
2022-10-11 12:17 (UTC+), Chengwen Feng: > This patch adds memarea to malloc_perf_autotest. > > Test platform: Kunpeng920 > Test command: dpdk-test -a :7d:00.3 -l 10-12 > Test result: > USER1: Performance: rte_memarea > USER1:Size (B) Runs Alloc (us) Free (us) Total (us) memset (us)

[v4 0/3] FIPS asymmetric validation

2022-10-11 Thread Gowrishankar Muthukrishnan
This patch series adds support in fips_validation app to perform asymmetric validation. To start with, RSA algorithm is used in the evaluation. For the key value pairs which is multiprecision in arithmetic, openssl library is used. Changes: v4: - AES GMAC callback fixes. v3: - patches 5,6 an

[v4 1/3] examples/fips_validation: add asymmetric validation

2022-10-11 Thread Gowrishankar Muthukrishnan
Add support for asymmetric crypto validation starting with RSA. For the generation of crypto values which is multiprecision in math, openssl library is used only for this purpose. Signed-off-by: Gowrishankar Muthukrishnan Acked-by: Brian Dooley -- v4: - AES GMAC callback fix. v3: - rebased ac

[v4 3/3] examples/fips_validation: randomize message for conformance test

2022-10-11 Thread Gowrishankar Muthukrishnan
FIPS conformance tests require randomizing message based on SP 800-106. Signed-off-by: Gowrishankar Muthukrishnan --- examples/fips_validation/fips_validation.h| 4 + .../fips_validation/fips_validation_rsa.c | 112 +- 2 files changed, 115 insertions(+), 1 deletion(-)

  1   2   3   >