Re: [PATCH] drivers/bus: set device NUMA node to unknown by default

2022-09-30 Thread David Marchand
On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote: > > The dev->device.numa_node field is set by each bus driver for > every device it manages to indicate on which NUMA node this device lies. > > When this information is unknown, the assigned value is not consistent > across the bus drivers. > >

RE: [PATCH v6 4/4] net/ice: support buffer split in Rx path

2022-09-30 Thread Tang, Yaqi
> -Original Message- > From: Wang, YuanX > Sent: Friday, September 30, 2022 2:59 AM > To: dev@dpdk.org; Yang, Qiming ; Zhang, Qi Z > > Cc: tho...@monjalon.net; andrew.rybche...@oktetlabs.ru; > ferruh.yi...@xilinx.com; m...@ashroe.eu; Li, Xiaoyun ; > Singh, Aman Deep ; Zhang, Yuying > ;

Re: [PATCH] event/cnxk: fix missing xstats ops registration

2022-09-30 Thread Jerin Jacob
On Tue, Sep 27, 2022 at 9:02 PM wrote: > > From: Pavan Nikhilesh > > Fix missing xstats ops registration when initializing event device. > > Fixes: b5a52c9d97e2 ("event/cnxk: add event port and queue xstats") > > Signed-off-by: Pavan Nikhilesh Applied to dpdk-next-net-eventdev/for-main. Thanks

Re: [PATCH] eal: remove panic on remote launch failure

2022-09-30 Thread David Marchand
On Thu, Sep 29, 2022 at 12:51 PM Bruce Richardson wrote: > > Library functions should not cause the app to exit or panic. Replace the > existing panic call in the EAL remote launch functions with an error > code return instead. > > Signed-off-by: Bruce Richardson LGTM with an update of the relea

Re: [PATCH] raw/dpaa2_cmdif: remove driver

2022-09-30 Thread David Marchand
On Wed, Sep 28, 2022 at 8:26 AM Gagandeep Singh wrote: > > Hi Thomas, > > One of the customer has objected this patch as they are going to use it in > future so please discard it. This needs an update for the deprecation notices wrt 10f0e51554b4 ("doc: announce removal of DPAA2 cmdif raw driver"

[PATCH 02/19] net/hns3: fix RSS filter restore

2022-09-30 Thread Dongdong Liu
From: Huisong Li Currently, driver sets RSS function to 'RTE_ETH_HASH_FUNCTION_MAX' when user flush all rules in order to judge whether driver needs to restore RSS rules. In fact, all rules are saved in flow RSS list. So there is no need to modify RSS function to this macro. And this list can be

[PATCH 00/19] some bugfixes and clean code for hns3 - part2

2022-09-30 Thread Dongdong Liu
This patchset include some bugfixes and clean code for hns3. This patchset is based on the patchset [1] that have been sent out before. Depend on [1] applied first. [1]: [PATCH RESEND 00/13] some bugfixes and clean code for hns3 https://patches.dpdk.org/project/dpdk/list/?series=24533 Chengwen Fe

[PATCH 01/19] net/hns3: fix have no valid RSS rule

2022-09-30 Thread Dongdong Liu
From: Huisong Li The 'hns3_restore_rss_filter' function is used to restore RSS rule. But this function calls the 'hns3_config_rss_filter' which sets the last to invalid in flow RSS list. This causes the flow RSS list has no valid rule. Fixes: ec674cb742e5 ("net/hns3: fix flushing RSS rule") Cc:

[PATCH 03/19] net/hns3: fix the lock protection of RSS flow rule

2022-09-30 Thread Dongdong Liu
From: Huisong Li RSS flow rules are saved in RSS filter linked list. The linked list is modified by rte_flow API and is used to restore RSS rules during reset process. So this patch uses 'hw->flows_lock' to protect the configuration and recovery of RSS rule. Fixes: c37ca66f2b27 ("net/hns3: suppo

[PATCH 04/19] net/hns3: fix RSS flow rule restore failed

2022-09-30 Thread Dongdong Liu
From: Huisong Li After reset process, types of RSS flow rule cannot be restored when load driver without RTE_ETH_MQ_RX_RSS_FLAG flag. This is because the restoration for RSS flow rule is done in the 'hns3_config_rss()'. But this function is also used to configure and restore RSS configuration fro

[PATCH 07/19] net/hns3: fix gcov compile warning

2022-09-30 Thread Dongdong Liu
meson build -Db_coverage=true ninja -C build ../drivers/net/hns3/hns3_ethdev.c:2856:22: warning: ‘cfg.umv_space’ may be used uninitialized in this function [-Wmaybe-uninitialized] 2856 | pf->wanted_umv_size = cfg.umv_space; This patch fix compiling warnings using gcc10.3.1 version. Signed-off-

[PATCH 09/19] net/hns3: fix magic numbers

2022-09-30 Thread Dongdong Liu
From: Jie Hai Removing magic numbers with macros. Signed-off-by: Jie Hai Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_ethdev.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/net/hns3/hns3_ethdev.c b/drivers/net/hns3/hns3_ethdev.c index bbc086f21d..a

[PATCH 08/19] net/hns3: fix incorrect packet type report for GENEVE

2022-09-30 Thread Dongdong Liu
From: Huisong Li Currently, hns3 reports VXLAN tunnel packet type for GENEVE, which is misleading to user. In fact, hns3 hardware cannot distinguish between VXLAN and GENEVE packet. So this patch uses RTE_PTYPE_TUNNEL_GRENAT packet type to report. Fixes: 7d6df32cf742 ("net/hns3: fix missing oute

[PATCH 06/19] net/hns3: fix hns3 restore filter function input

2022-09-30 Thread Dongdong Liu
From: Huisong Li This 'hns3_restore_filter' is an internal interface of driver. Currently, it uses 'struct rte_eth_dev *dev' as input parameter, This is inconvenient for the function to call in driver because caller has to obtain its device address by global variable 'rte_eth_devices[]'. So this

[PATCH 05/19] net/hns3: move flow direction rule recovery position

2022-09-30 Thread Dongdong Liu
From: Huisong Li The 'hns3_restore_filter' is used to restore flow rules from rte_flow API during the reset process. This patch moves the recovery of flow direction rule to this function to improve code maintainability. Fixes: fcba820d9b9e ("net/hns3: support flow director") Cc: sta...@dpdk.org

[PATCH 11/19] net/hns3: remove unused structure definition

2022-09-30 Thread Dongdong Liu
From: Chengwen Feng This patch removes unused structure definition. Signed-off-by: Chengwen Feng Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_cmd.h | 19 --- drivers/net/hns3/hns3_rss.h | 4 2 files changed, 23 deletions(-) diff --git a/drivers/net/hns3/hns3_cm

[PATCH 10/19] net/hns3: fix header file self contained

2022-09-30 Thread Dongdong Liu
From: Chengwen Feng Header files should be self contained and should not be cyclically dependent. This patch fixed it. Signed-off-by: Chengwen Feng Signed-off-by: Min Hu Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_cmd.h| 3 +++ drivers/net/hns3/hns3_common.c | 2 +- drivers/net

[PATCH 12/19] net/hns3: do not use reserved identifier macro

2022-09-30 Thread Dongdong Liu
From: Chengwen Feng Currently, the hns3 driver uses _HNS3_XXX conditional compilation macros to prevent duplicate header files. But in the C11 standard, all identifiers starting with an underscore plus an uppercase letter are always reserved. So this patch fixes it. Signed-off-by: Chengwen Feng

[PATCH 13/19] net/hns3: fix fail to enable IPV4 or IPV6 packet RSS

2022-09-30 Thread Dongdong Liu
From: Huisong Li Currently, hns3 driver use 'ipv4-other' and 'ipv6-other' as the flag of IP packets to judge if enable RSS tuple field. But user may use 'RTE_ETH_RSS_IPV4' or 'RTE_ETH_RSS_IPV6' as the flag. So this patch adds the processing of these macros. Fixes: 806f1d5ab0e3 ("net/hns3: set RS

[PATCH 14/19] net/hns3: fix some spelling errors

2022-09-30 Thread Dongdong Liu
From: Huisong Li This patch fixes spelling errors about IPV6-SCTP macro. Fixes: 1bc633c34008 ("net/hns3: enable RSS for IPv6-SCTP dst/src port fields") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_rss.c | 12 ++-- 1 file changed,

[PATCH 16/19] net/hns3: add check for L3 and L4 type

2022-09-30 Thread Dongdong Liu
From: Huisong Li When user set 'L3_SRC/DST_ONLY' or 'L4_SRC/DST_ONLY' to 'rss_hf' and do not specify the packet type, these types will be set to hardware. So this patch adds a check for them. Fixes: 806f1d5ab0e3 ("net/hns3: set RSS hash type input configuration") Cc: sta...@dpdk.org Signed-off-

[PATCH 15/19] net/hns3: fix inconsistent RSS behavior

2022-09-30 Thread Dongdong Liu
From: Huisong Li When user only use 'ipv4' to set 'rss_hf', hns3 will enable all tuple fields for 'ipv4' flow. But if user use 'ipv4-tcp' , 'ipv4' and 'l4-src-only' to set 'rss_hf', driver does not enable all tuple fields for 'ipv4' flow. So this patch fixes this problem. Fixes: 806f1d5ab0e3 ("n

[PATCH 17/19] net/hns3: revert fix mailbox communication with HW

2022-09-30 Thread Dongdong Liu
From: Chengwen Feng VF's command receive queue was mainly used to receive mailbox messages from PF. There are two type mailbox messages: request response message and message pushed by PF. There are two types of threads that can handle these messages: 1) the interrupt thread of the main process:

[PATCH 19/19] net/hns3: fix the obtaination of minimum Tx frame length

2022-09-30 Thread Dongdong Liu
From: Jie Hai When packet length in Tx is less than length hardware supported, the minimum frame length in hns3 is used to do padding to avoid hardware error. Currently, this length is fixed by macro, which is very unfavorable for subsequent hardware evolution. So fix it as firmware report. Fixe

[PATCH 18/19] net/hns3: fix VF mark wrong message processed

2022-09-30 Thread Dongdong Liu
From: Chengwen Feng VF's command receive queue was mainly used to receive mailbox messages from PF. There are two type mailbox messages: request response message and message pushed by PF. There are two types of threads that can handle these messages: 1) the interrupt thread of the main process:

Re: [PATCH v2] cryptodev: add trace points

2022-09-30 Thread Jerin Jacob
On Thu, Sep 29, 2022 at 6:08 PM Amit Prakash Shukla wrote: > > Add trace points for cryptodev functions. > > Signed-off-by: Amit Prakash Shukla Looks good from tracing PoV. Reviewed-by: Jerin Jacob > --- > v2: > - Removed trace changes for non-public API > - Code changes to include API result

Re: [EXT] [PATCH v7 6/7] bbdev: add queue related warning and status information

2022-09-30 Thread Maxime Coquelin
Hi Nic, On 9/29/22 21:48, Chautru, Nicolas wrote: Hi Thomas, In absence of Ray (I did not see email from him for a some time) can you please advise on best option so that as to move on. I can either keep as is based on initial review with Ray, or replace _PADDED_MAX to _SIZE_MAX macro as sugge

[PATCH v7 1/7] eal/loongarch: support LoongArch architecture

2022-09-30 Thread Min Zhou
Add all necessary elements for DPDK to compile and run EAL on LoongArch64 Soc. This includes: - EAL library implementation for LoongArch ISA. - meson build structure for 'loongarch' architecture. RTE_ARCH_LOONGARCH define is added for architecture identification. - xmm_t structure operation stu

[PATCH v7 7/7] ci: add LOONGARCH64 cross compilation job

2022-09-30 Thread Min Zhou
Checks cross-compilation using Ubuntu 20.04 x86 for LoongArch. Signed-off-by: Min Zhou --- .ci/linux-build.sh | 10 ++ .github/workflows/build.yml | 10 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index 06104e

[PATCH v7 0/7] Introduce support for LoongArch architecture

2022-09-30 Thread Min Zhou
Dear team, The following patch set is intended to support DPDK running on LoongArch architecture. LoongArch is the general processor architecture of Loongson Corporation and is a new RISC ISA, which is a bit like MIPS or RISC-V. The online documents of LoongArch architecture are here: https:

[PATCH v7 2/7] net/ixgbe: add vector stubs for LoongArch

2022-09-30 Thread Min Zhou
Similar to RISC-V, the current version for LoongArch do not support vector. Re-use vector processing stubs in ixgbe PMD defined for PPC for LoongArch. This enables ixgbe PMD usage in scalar mode on LoongArch. The ixgbe PMD driver was validated with Intel X520-DA2 NIC and the test-pmd application,

[PATCH v7 5/7] examples/l3fwd: enable LoongArch operation

2022-09-30 Thread Min Zhou
Add missing em_mask_key() implementation to enable the l3fwd to be run on LoongArch. Signed-off-by: Min Zhou --- examples/l3fwd/l3fwd_em.c | 8 examples/l3fwd/meson.build | 6 -- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/examples/l3fwd/l3fwd_em.c b/examples/l3f

[PATCH v7 4/7] net/tap: set BPF syscall ID for LoongArch

2022-09-30 Thread Min Zhou
Define the missing __NR_bpf syscall id to enable the tap PMD on LoongArch. Signed-off-by: Min Zhou --- drivers/net/tap/meson.build | 6 -- drivers/net/tap/tap_bpf.h | 2 ++ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/net/tap/meson.build b/drivers/net/tap/meson.bu

[PATCH v7 6/7] test/cpuflags: add test for LoongArch cpu flag

2022-09-30 Thread Min Zhou
Add checks for all flag values defined in the LoongArch cpu feature table. Signed-off-by: Min Zhou --- app/test/test_cpuflags.c | 41 1 file changed, 41 insertions(+) diff --git a/app/test/test_cpuflags.c b/app/test/test_cpuflags.c index 98a99c2c7d..a0e3

[PATCH v7 3/7] net/memif: set memfd syscall ID on LoongArch

2022-09-30 Thread Min Zhou
Define the missing __NR_memfd_create syscall id to enable the memif PMD on LoongArch. Signed-off-by: Min Zhou --- drivers/net/memif/meson.build | 6 -- drivers/net/memif/rte_eth_memif.h | 2 ++ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/drivers/net/memif/meson.build b

RE: [PATCH v5 06/10] dts: add ssh connection module

2022-09-30 Thread Juraj Linkeš
> -Original Message- > From: Stanislaw Kardach > Sent: Tuesday, September 27, 2022 12:12 PM > To: Juraj Linkeš > Cc: tho...@monjalon.net; david.march...@redhat.com; > honnappa.nagaraha...@arm.com; ohily...@iol.unh.edu; lijuan...@intel.com; > bruce.richard...@intel.com; dev@dpdk.org > Su

Re: [PATCH] drivers/bus: set device NUMA node to unknown by default

2022-09-30 Thread Olivier Matz
On Fri, Sep 30, 2022 at 09:10:55AM +0200, David Marchand wrote: > On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote: > > > > The dev->device.numa_node field is set by each bus driver for > > every device it manages to indicate on which NUMA node this device lies. > > > > When this information is

Re: [PATCH v7 0/7] Introduce support for LoongArch architecture

2022-09-30 Thread David Marchand
Hello, On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote: > > Dear team, > > The following patch set is intended to support DPDK running on LoongArch > architecture. > > LoongArch is the general processor architecture of Loongson Corporation > and is a new RISC ISA, which is a bit like MIPS or RISC

Re: [PATCH v12 1/3] event/dlb2: add producer port probing optimization

2022-09-30 Thread Jerin Jacob
On Fri, Sep 30, 2022 at 5:29 AM Abdullah Sevincer wrote: > > For best performance, applications running on certain cores should use > the DLB device locally available on the same tile along with other > resources. To allocate optimal resources, probing is done for each > producer port (PP) for a g

Re: [PATCH] x86: rte_mov256 was missing for AVX2

2022-09-30 Thread David Marchand
On Sat, Aug 20, 2022 at 12:30 PM Morten Brørup wrote: > > The rte_mov256 function was missing for AVX2. Afaiu: Fixes: 9144d6bcdefd ("eal/x86: optimize memcpy for SSE and AVX") This has been missing for a long time, so I guess nobody actually uses it. > > Signed-off-by: Morten Brørup Acked-by:

RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms

2022-09-30 Thread Kusztal, ArkadiuszX
> -Original Message- > From: Akhil Goyal > Sent: Thursday, September 29, 2022 9:25 PM > To: Kusztal, ArkadiuszX ; dev@dpdk.org > Cc: Ji, Kai > Subject: RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms > > > ShangMi 4 (SM4) is a block cipher used in the Chinese National >

Re: [PATCH v2] eal: Pointer alignment check improvements

2022-09-30 Thread David Marchand
On Fri, Sep 23, 2022 at 10:25 AM Bruce Richardson wrote: > On Thu, Sep 22, 2022 at 01:44:13PM +0200, Morten Brørup wrote: > > Checking a const pointer for alignment would emit a warning about the > > const qualifier being discarded. > > > > No need to calculate the aligned pointer; just check the

RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms

2022-09-30 Thread Akhil Goyal
> > > ShangMi 4 (SM4) is a block cipher used in the Chinese National > > > Standard for Wireless LAN WAPI and also used with Transport Layer > > > Security. > > > ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese > > > National Standard. > > > > > > This patcheset adds both to t

[PATCH v4] examples/fips_validation: add parsing for AES CTR

2022-09-30 Thread Brian Dooley
Added functionality to parse algorithm for AES CTR test Signed-off-by: Brian Dooley Acked-by: Kai Ji Acked-by: Gowrishankar Muthukrishnan --- v2: fix clang warning for int-in-bool-context --- v3: in reply to fix and patchwork CI --- v4: missing acks --- examples/fips_validation/fips_validation

Re: [PATCH v5] eal: fix thread names for high order lcores

2022-09-30 Thread David Marchand
On Mon, Sep 26, 2022 at 12:03 PM Abdullah Ömer Yamaç wrote: > > In this patch we suggest a new name for lcore-worker. > In case of higher order (greater than 99) logical cores, name is truncated > (length is restricted to 16 characters, including the > terminating null byte ('\0')) and it makes ha

Re: [PATCH v5] event/dlb2: fix max enqueue and dequeue cli override

2022-09-30 Thread Jerin Jacob
On Thu, Sep 29, 2022 at 12:14 AM Abdullah Sevincer wrote: > > This patch addresses an issue of enqueuing more than > max_enq_depth and not able to dequeuing events equal > to max_cq_depth in a single call of rte_event_enqueue_burst > and rte_event_dequeue_burst. > > Apply fix for restricting enque

Re: [PATCH v4] net/iavf: fix TSO offload for tunnel case

2022-09-30 Thread Nicolau, Radu
On 9/29/2022 6:27 AM, Zhichao Zeng wrote: This patch is to fix the tunnel TSO not enabling issue, simplify the logic of calculating 'Tx Buffer Size' of data descriptor with IPSec, and fix handling that the mbuf size exceeds the TX descriptor hardware limit(1B-16KB) which causes malicious behavi

[PATCH] ethdev: forbid the use of direction attr in transfer flows

2022-09-30 Thread Ivan Malov
As part of DPDK 21.11 release, it was announced that the use of attributes 'ingress' and 'egress' in 'transfer' rules was deprecated. The transition period is over. Starting from DPDK 22.11, the use of direction attributes with attribute 'transfer' is not allowed. To enforce that, a generic check

[Bug 1088] [20.11] meson compatibility regression

2022-09-30 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1088 Bug ID: 1088 Summary: [20.11] meson compatibility regression Product: DPDK Version: 20.11 Hardware: All OS: All Status: UNCONFIRMED Severity: normal Pri

RE: [PATCH v3] ethdev: queue rate parameter changed from 16b to 32b

2022-09-30 Thread Satha Koteswara Rao Kottidi
Hi All, Could you please review and provide suggestions if any. Thanks, Satha. -Original Message- From: skotesh...@marvell.com Sent: Wednesday, September 28, 2022 11:22 AM To: Aman Singh ; Yuying Zhang ; Ray Kinsella ; Ajit Khaparde ; Somnath Kotur ; Nithin Kumar Dabilpuram ; Kiran

Re: [PATCH v7 0/7] Introduce support for LoongArch architecture

2022-09-30 Thread zhoumin
Hi, David, Thanks a lot for your kind reply. On Fri, Sep 30, 2022 at 16:13, David Marchand wrote: Hello, On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote: Dear team, The following patch set is intended to support DPDK running on LoongArch architecture. LoongArch is the general processor arc

Re: [PATCH 3/3] doc: remove deprecation notices for event vector

2022-09-30 Thread Jerin Jacob
On Thu, Sep 29, 2022 at 3:30 PM wrote: > > From: Pavan Nikhilesh > > Deprecation notice targeted for v22.11 of event vector has been > merged in the following commits, remove deprecation notices. > > Fixes: 7b12f13ce3ee ("eventdev: add element offset to event vector") > > Signed-off-by: Pavan Nik

Re: [PATCH v3 1/2] vhost: check for nr_vec == 0 in desc_to_mbuf, mbuf_to_desc

2022-09-30 Thread Maxime Coquelin
On 9/28/22 18:03, Thomas Monjalon wrote: 28/09/2022 17:21, Claudio Fontana: On 9/28/22 16:37, Maxime Coquelin wrote: The title should be reworded, maybe something like below? "vhost: fix possible out of bound access in buffer vectors" possible, I leave it to you and other maintainers here

RE: [PATCH] ethdev: forbid the use of direction attr in transfer flows

2022-09-30 Thread Ori Kam
Hi Ivan, > -Original Message- > From: Ivan Malov > Sent: Friday, 30 September 2022 12:43 > > As part of DPDK 21.11 release, it was announced that the > use of attributes 'ingress' and 'egress' in 'transfer' > rules was deprecated. The transition period is over. > > Starting from DPDK 22

[PATCH v2 0/2] crypto/qat: add sm3 and sm4 algorithms

2022-09-30 Thread Arek Kusztal
ShangMi 4 (SM4) is a block cipher used in the Chinese National Standard for Wireless LAN WAPI and also used with Transport Layer Security. ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese National Standard. This patcheset adds both to the Intel QuickAssist Technology PMD. De

[PATCH v2 1/2] crypto/qat: add SM4 encryption algorithm

2022-09-30 Thread Arek Kusztal
- Added ShangMi 4 (SM4) encryption algorithms. Supported modes: ECB, CBC, CTR. Signed-off-by: Arek Kusztal --- doc/guides/cryptodevs/features/qat.ini | 3 +++ doc/guides/rel_notes/release_22_11.rst | 4 drivers/crypto/qat/dev/qat_crypto_pmd_gen3.c | 9 + drivers/crypt

[PATCH v2 2/2] crypto/qat : add SM3 hash algorithm

2022-09-30 Thread Arek Kusztal
- Added ShangMi 3 (SM3) hash algorithm. Signed-off-by: Arek Kusztal --- doc/guides/cryptodevs/features/qat.ini | 1 + doc/guides/rel_notes/release_22_11.rst | 3 +++ drivers/common/qat/qat_adf/icp_qat_hw.h | 4 +++- drivers/crypto/qat/qat_sym_session.c| 25 + 4 f

[PATCH] app/testpmd: fix incorrect flow arguments name

2022-09-30 Thread Suanming Mou
There should be no spaces in flow command arguments name. This commit removes incorrect arguments name in queue based table template. Fixes: ecdc927b99f2 ("app/testpmd: add async flow create/destroy operations") Cc: akozy...@nvidia.com Signed-off-by: Suanming Mou --- app/test-pmd/cmdline_flow.c

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

2022-09-30 Thread Jerin Jacob
On Tue, Sep 27, 2022 at 8:18 AM Feifei Wang wrote: > > Enable direct rearm mode in l3fwd. Users can use parameters: > '--direct-rearm=(rx_portid,rx_queueid,tx_portid,tx_queueid)' > to enable direct rearm. > > Suggested-by: Honnappa Nagarahalli > Signed-off-by: Feifei Wang > Reviewed-by: Ruifeng

Re: [PATCH v7 1/4] eal: add lcore poll busyness telemetry

2022-09-30 Thread Jerin Jacob
On Thu, Sep 29, 2022 at 6:11 PM Kevin Laatz wrote: > > > > >> 2. Ring does not have callback support, meaning pipelined applications > >> could not report lcore poll busyness telemetry with this approach. > > That's another big concern that I have: > > Why you consider that all rings will be used

[PATCH] examples/ipsec-secgw: fix Tx checksum offload flag

2022-09-30 Thread Radu Nicolau
Fix a typo in computing port mask for Tx checksum offload capability. Fixes: 4edcee19fc20 ("examples/ipsec-secgw: use Tx checksum offload conditionally") Cc: ndabilpu...@marvell.com Signed-off-by: Radu Nicolau --- examples/ipsec-secgw/ipsec-secgw.c | 2 +- 1 file changed, 1 insertion(+), 1 del

[PATCH v3 00/17] net/mlx5: HW steering PMD update

2022-09-30 Thread Suanming Mou
The skeleton of mlx5 HW steering(HWS) has been updated into upstream for pretty a long time, but not updated anymore due to missing of the low-level steering layer code. Luckily, better late than never, the steering layer finnaly comes[1]. This series will add more features to the existing PMD cod

[PATCH v3 01/17] net/mlx5: fix invalid flow attributes

2022-09-30 Thread Suanming Mou
In the function flow_get_drv_type(), attr will be read in non-HWS mode. In case user call the HWS API in SWS mode, attr should be placed in HWS functions, or it will cause crash. Fixes: 572801ab860f ("ethdev: backport upstream rte_flow_async codes") Signed-off-by: Suanming Mou --- drivers/net/m

[PATCH v3 02/17] net/mlx5: fix IPv6 and TCP RSS hash fields

2022-09-30 Thread Suanming Mou
In the flow_dv_hashfields_set() function, while item_flags was 0, the code went directly to the first if and the else case would never have chance be checked. This caused the IPv6 and TCP hash fileds in the else case would never be set. This commit adds the dedicate HW steering hash field set func

[PATCH v3 03/17] net/mlx5: add shared header reformat support

2022-09-30 Thread Suanming Mou
As the rte_flow_async API defines, the action mask with field value not be 0 means the action will be used as shared in all the flows in the table. The header reformat action with action mask field not be 0 will be created as constant shared action. For encapsulation header reformat action, there

[PATCH v3 04/17] net/mlx5: add modify field hws support

2022-09-30 Thread Suanming Mou
This patch introduces support for modify_field rte_flow actions in HWS mode. Support includes: - Ingress and egress domains, - SET and ADD operations, - usage of arbitrary bit offsets and widths for packet and metadata fields. Support is implemented in two phases:

[PATCH v3 05/17] net/mlx5: add HW steering port action

2022-09-30 Thread Suanming Mou
From: Dariusz Sosnowski This patch implements creating and caching of port actions for use with HW Steering FDB flows. Actions are created on flow template API configuration and created only on the port designated as master. Attaching and detaching of ports in the same switching domain causes an

[PATCH v3 06/17] net/mlx5: add extended metadata mode for hardware steering

2022-09-30 Thread Suanming Mou
From: Bing Zhao The new mode 4 of devarg "dv_xmeta_en" is added for HWS only. In this mode, the Rx / Tx metadata with 32b width copy between FDB and NIC is supported. The mark is only supported in NIC and there is no copy supported. Signed-off-by: Bing Zhao --- drivers/net/mlx5/linux/mlx5_os.c

[PATCH v3 08/17] net/mlx5: add HW steering counter action

2022-09-30 Thread Suanming Mou
From: Xiaoyu Min This commit adds HW steering counter action support. Pool mechanism is the basic data structure for the HW steering counter. The HW steering's counter pool is based on the rte_ring of zero-copy variation. There are two global rte_rings: 1. free_list: Store the counters ind

[PATCH v3 09/17] net/mlx5: support DR action template API

2022-09-30 Thread Suanming Mou
From: Dariusz Sosnowski This patch adapts mlx5 PMD to changes in mlx5dr API regarding action templates. It changes the following: 1. Actions template creation: - Flow actions types are translated to mlx5dr action types in order to create mlx5dr_action_template object. - An offset

[PATCH v3 07/17] net/mlx5: add HW steering meter action

2022-09-30 Thread Suanming Mou
From: Alexander Kozyrev This commit adds meter action for HWS steering. HW steering meter is based on ASO. The number of meters will be used by flows should be specified in advanced in the flow configure API. Signed-off-by: Alexander Kozyrev --- drivers/net/mlx5/mlx5.h| 61 ++- d

[PATCH v3 10/17] net/mlx5: add HW steering connection tracking support

2022-09-30 Thread Suanming Mou
This commit adds the support of connection tracking to HW steering as SW steering did before. Different with SW steering implementation, take advantage of HW steering bulk action allocation support, in HW steering only one single CT pool is needed. An indexed pool is introduced to record allocate

[PATCH v3 11/17] net/mlx5: add HW steering VLAN push, pop and VID modify flow actions

2022-09-30 Thread Suanming Mou
From: Gregory Etelson Add PMD implementation for HW steering VLAN push, pop and modify flow actions. HWS VLAN push flow action is triggered by a sequence of mandatory OF_PUSH_VLAN, OF_SET_VLAN_VID and optional OF_SET_VLAN_PCP flow actions commands. The commands must be arranged in the exact orde

[PATCH v3 12/17] net/mlx5: implement METER MARK indirect action for HWS

2022-09-30 Thread Suanming Mou
From: Alexander Kozyrev Add ability to create an indirect action handle for METER_MARK. It allows to share one Meter between several different actions. Signed-off-by: Alexander Kozyrev --- drivers/net/mlx5/mlx5.c| 4 +- drivers/net/mlx5/mlx5.h| 33 ++- drivers/net/ml

[PATCH v3 13/17] net/mlx5: add HWS AGE action support

2022-09-30 Thread Suanming Mou
From: Michael Baum Add support for AGE action for HW steering. This patch includes: 1. Add new structures to manage the aging. 2. Initialize all them in configure function. 3. Implement per second aging check using CNT background thread. 4. Enable AGE action in flow create/destroy operations

[PATCH v3 14/17] net/mlx5: add async action push and pull support

2022-09-30 Thread Suanming Mou
The queue based rte_flow_async_action_* functions work same as queue based async flow functions. The operations can be pushed asynchronously, so is the pull. This commit adds the async action missing push and pull support. Signed-off-by: Suanming Mou --- drivers/net/mlx5/mlx5.h| 62

[PATCH v3 15/17] net/mlx5: support flow integrity in HWS group 0

2022-09-30 Thread Suanming Mou
From: Gregory Etelson - Reformat flow integrity item translation for HWS code. - Support flow integrity bits in HWS group 0. - Update integrity item translation to match positive semantics only. Positive flow semantics was described in patch [ae37c0f60c]. Signed-off-by: Gregory Etelson --- dri

[PATCH v3 16/17] net/mlx5: support device control for E-Switch default rule

2022-09-30 Thread Suanming Mou
From: Dariusz Sosnowski This patch introduces This patch adds support for fdb_def_rule_en device argument to HW Steering, which controls: - creation of default FDB jump flow rule, - ability of the user to create transfer flow rules in root table. A new PMD API to allow user application to enabl

[PATCH v3 17/17] net/mlx5: support device control of representor matching

2022-09-30 Thread Suanming Mou
From: Dariusz Sosnowski In some E-Switch use cases applications want to receive all traffic on a single port. Since currently flow API does not provide a way to match traffic forwarded to any port representor, this patch adds support for controlling representor matching on ingress flow rules. Re

RE: [PATCH] mem: fix API doc about allocation on secondary processes

2022-09-30 Thread Honnappa Nagarahalli
> Subject: [PATCH] mem: fix API doc about allocation on secondary processes > > Since 10 years, memzone allocation is allowed on secondary processes. Now > it's time to update the documentation accordingly. > > At the same time, fix mempool, mbuf and ring documentation which rely on > memzones

Re: [PATCH v7 0/7] Introduce support for LoongArch architecture

2022-09-30 Thread David Marchand
On Fri, Sep 30, 2022 at 12:05 PM zhoumin wrote: > On Fri, Sep 30, 2022 at 16:13, David Marchand wrote: > > On Fri, Sep 30, 2022 at 10:02 AM Min Zhou wrote: > >> > >> The online documents of LoongArch architecture are here: > >> https://loongson.github.io/LoongArch-Documentation/README-EN.htm

RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms

2022-09-30 Thread Akhil Goyal
> -Original Message- > From: Kusztal, ArkadiuszX > Sent: Friday, September 30, 2022 2:06 PM > To: Akhil Goyal ; dev@dpdk.org > Cc: Ji, Kai > Subject: RE: [EXT] [PATCH v2 0/2] cryptodev: add SM3 and SM4 algorithms > > > > > -Original Message- > > From: Akhil Goyal > > Sent:

RE: [EXT] [PATCH v2 0/2] crypto/qat: add sm3 and sm4 algorithms

2022-09-30 Thread Akhil Goyal
> ShangMi 4 (SM4) is a block cipher used in the Chinese National Standard for > Wireless LAN WAPI and also used with Transport Layer Security. > ShangMi 3 (SM3) is a cryptographic hash function used in the Chinese National > Standard. > > This patcheset adds both to the Intel QuickAssist Technolog

RE: [EXT] [PATCH 1/2] cryptodev: add option to use ec base point in ecpm

2022-09-30 Thread Akhil Goyal
> Add option to use elliptic curve generator point instead > of setting it manually. It corresponds to the public point > generation in EC Diffie-Hellman key exchange. > The title talks about adding an option to use EC base point in ECPM But the description and code changes does not match. Can

RE: [v1 1/2] cryptodev: add enumeration in EC xform for FPM

2022-09-30 Thread Akhil Goyal
> Acked-by: Kai Ji > > > Add enumeration in EC xform for FPM. Crypto driver would need this to > > xform point multiplication based on given type of EC curve. > > > > Signed-off-by: Kiran Kumar K > > Signed-off-by: Gowrishankar Muthukrishnan > > --- This patch is applied to dpdk-next-crypto a

RE: [EXT] Re: [PATCH v2] cryptodev: add trace points

2022-09-30 Thread Akhil Goyal
> On Thu, Sep 29, 2022 at 6:08 PM Amit Prakash Shukla > wrote: > > > > Add trace points for cryptodev functions. > > > > Signed-off-by: Amit Prakash Shukla > > Looks good from tracing PoV. > > Reviewed-by: Jerin Jacob Acked-by: Akhil Goyal Applied to dpdk-next-crypto Thanks.

[PATCH v10 0/7] bbdev changes for 22.11

2022-09-30 Thread Nicolas Chautru
v10: replacing the _PADDED_MAX enum to _SIZE_MAX macro based on suggestion from Ferruh/Maxime/Akhil. Thanks v9: removing code snippet from documentation in 5/7 requested by Akhil. Thanks. v8: edit based on review by Akhil : typos, coding guidelines. No functional change. Thanks v7: couple of typ

[PATCH v10 1/7] bbdev: allow operation type enum for growth

2022-09-30 Thread Nicolas Chautru
Updating the enum for rte_bbdev_op_type to allow to keep ABI compatible for enum insertion while adding padded maximum value for array need. Removing RTE_BBDEV_OP_TYPE_COUNT and instead exposing RTE_BBDEV_OP_TYPE_SIZE_MAX. Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin --- app/test-bb

[PATCH v10 2/7] bbdev: add device status info

2022-09-30 Thread Nicolas Chautru
Added device status information, so that the PMD can expose information related to the underlying accelerator device status. Minor order change in structure to fit into padding hole. Signed-off-by: Nicolas Chautru Acked-by: Mingshan Zhang Acked-by: Hemant Agrawal --- drivers/baseband/acc100/rt

[PATCH v10 3/7] bbdev: add device info on queue topology

2022-09-30 Thread Nicolas Chautru
Adding more options in the API to expose the number of queues exposed and related priority. Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin --- lib/bbdev/rte_bbdev.h | 4 1 file changed, 4 insertions(+) diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 5ba7a61ded..

[PATCH v10 4/7] drivers/baseband: update PMDs to expose queue per operation

2022-09-30 Thread Nicolas Chautru
Add support in existing bbdev PMDs for the explicit number of queues and priority for each operation type configured on the device. Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin Acked-by: Hemant Agrawal --- drivers/baseband/acc100/rte_acc100_pmd.c | 29 +++ .../

[PATCH v10 5/7] bbdev: add new operation for FFT processing

2022-09-30 Thread Nicolas Chautru
Extension of bbdev operation to support FFT based operations. Signed-off-by: Nicolas Chautru Acked-by: Hemant Agrawal Acked-by: Maxime Coquelin --- doc/guides/prog_guide/bbdev.rst | 103 ++ lib/bbdev/rte_bbdev.c | 10 ++- lib/bbdev/rte_bbdev.h | 76 +++

[PATCH v10 6/7] bbdev: add queue related warning and status information

2022-09-30 Thread Nicolas Chautru
This allows to expose more information with regards to any queue related failure and warning which cannot be supported in existing API. Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin --- app/test-bbdev/test_bbdev_perf.c | 2 ++ lib/bbdev/rte_bbdev.c| 19 +++ l

[PATCH v10 7/7] bbdev: remove unnecessary if-check

2022-09-30 Thread Nicolas Chautru
Code clean up due to if-check not required Signed-off-by: Nicolas Chautru Acked-by: Maxime Coquelin --- lib/bbdev/rte_bbdev_op.h | 24 1 file changed, 4 insertions(+), 20 deletions(-) diff --git a/lib/bbdev/rte_bbdev_op.h b/lib/bbdev/rte_bbdev_op.h index 73677188ab..c0

RE: [EXT] Re: [PATCH] cryptodev: fix unduly newlines in logs

2022-09-30 Thread Akhil Goyal
> On Thu, Sep 29, 2022 at 2:05 PM Olivier Matz wrote: > > > > The CDEV_LOG_* macros already add a '\n' at the end of > > the line. Remove it from format strings to avoid duplicated > > newlines. > > > > Signed-off-by: Olivier Matz > > I had the exact same patch in store :-). > We may want to bac

RE: [EXT] Re: [RFC PATCH] cryptodev: add return parameter to callback process API

2022-09-30 Thread Akhil Goyal
> > 24/06/2022 14:12, Srujana Challa: > > > Adds a return parameter "uint16_t qp_id" to the functions > > > rte_cryptodev_pmd_callback_process and rte_cryptodev_cb_fn. > > > The new parameter is used to return queue pair ID to the application > > > when it gets error interrupt, so that application

RE: [EXT] [PATCH v10 0/7] bbdev changes for 22.11

2022-09-30 Thread Akhil Goyal
> v10: replacing the _PADDED_MAX enum to _SIZE_MAX macro based on > suggestion from Ferruh/Maxime/Akhil. Thanks Since we have a consensus. Series Acked-by: Akhil Goyal Applied to dpdk-next-crypto Added release notes and removed deprecation notices. Please fix the documentation as recommended as

Re: EAL threads

2022-09-30 Thread Mattias Rönnblom
On 2022-09-21 11:05, Bruce Richardson wrote: On Wed, Sep 21, 2022 at 10:39:15AM +0200, Mattias Rönnblom wrote: I have some lcore-related questions: The documentation make use of the term "non-EAL thread". Is a non-EAL thread the same thing as a non-lcore thread? I.e., are there EAL threads that

Re: [PATCH v7 1/4] eal: add lcore poll busyness telemetry

2022-09-30 Thread Mattias Rönnblom
On 2022-09-14 11:29, Kevin Laatz wrote: From: Anatoly Burakov Currently, there is no way to measure lcore poll busyness in a passive way, without any modifications to the application. This patch adds a new EAL API that will be able to passively track core polling busyness. I think it's more f

Re: [PATCH v7 3/4] app/test: add unit tests for lcore poll busyness

2022-09-30 Thread Mattias Rönnblom
On 2022-09-14 11:29, Kevin Laatz wrote: Add API unit tests and perf unit tests for the newly added lcore poll busyness feature. Signed-off-by: Kevin Laatz --- app/test/meson.build | 4 + app/test/test_lcore_poll_busyness_api.c | 134 +++ app/tes

  1   2   >