[dpdk-dev] [RFC 00/16] crypto: add raw vector support in DPAAx

2021-08-12 Thread Hemant Agrawal
This patch series adds support for raw vector API in dpaax_sec drivers This also enhances the raw vector APIs to support OOP and security protocol support. Gagandeep Singh (12): crypto: add total raw buffer length crypto: enhance raw process for protocol offload crypto/dpaa2_sec: support raw

[dpdk-dev] [RFC 01/16] crypto: change sgl to src_sgl in vector

2021-08-12 Thread Hemant Agrawal
This patch renames the sgl to src_sgl to help differentiating between source and destination sgl. Signed-off-by: Hemant Agrawal --- app/test/test_cryptodev.c | 6 +++--- drivers/crypto/qat/qat_sym_hw_dp.c | 27 --- lib/cryptodev/rte_crypto_sym.h | 2 +- lib

[dpdk-dev] [RFC 02/16] crypto: add total raw buffer length

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh The current crypto raw data vectors is extended to support rte_security usecases, where we need total data length to know how much additional memory space is available in buffer other than data length so that driver/HW can write expanded size data after encryption. Signed-o

[dpdk-dev] [RFC 03/16] crypto: add dest_sgl in raw vector APIs

2021-08-12 Thread Hemant Agrawal
The structure rte_crypto_sym_vec is updated to add dest_sgl to support out of place processing. Signed-off-by: Hemant Agrawal --- lib/cryptodev/rte_crypto_sym.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/cryptodev/rte_crypto_sym.h b/lib/cryptodev/rte_crypto_sym.h index e5cef1fb72.

[dpdk-dev] [RFC 04/16] crypto: enhance raw process for protocol offload

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This patch improves the raw vector processing for security protocol with OOP processing. Signed-off-by: Gagandeep Singh --- lib/cryptodev/rte_crypto_sym.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/cryptodev/rte_crypto_sym.h b/lib/cryptodev/

[dpdk-dev] [RFC 05/16] crypto/dpaa2_sec: support raw datapath APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This path add framework for raw API support. The initial patch only test cipher only part. Signed-off-by: Hemant Agrawal Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 13 +- drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 60 +- drivers

[dpdk-dev] [RFC 06/16] crypto/dpaa2_sec: support AUTH only with raw buffer APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh Auth only with raw buffer APIs has been supported in this patch. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 21 drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 114 ++-- 2 files changed, 108 insertions(+), 27 delet

[dpdk-dev] [RFC 07/16] crypto/dpaa2_sec: support AUTHENC with raw buffer APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This patch supports AUTHENC with raw buufer APIs Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 128 ++-- 1 file changed, 121 insertions(+), 7 deletions(-) diff --git a/drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c b/drive

[dpdk-dev] [RFC 08/16] crypto/dpaa2_sec: support AEAD with raw buffer APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh add raw vector API support for AEAD algos. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 249 +--- 1 file changed, 214 insertions(+), 35 deletions(-) diff --git a/drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c b/drivers/cr

[dpdk-dev] [RFC 09/16] crypto/dpaa2_sec: support OOP with raw buffer API

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh add support for out of order processing with raw vector APIs. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_priv.h | 1 + drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 156 +++- 2 files changed, 116 insertions(+), 41 deletions(-

[dpdk-dev] [RFC 10/16] crypto/dpaa2_sec: fix ctx memset size

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh Driver is doing memset on memory more than its allocation. This patch fixes the size of memset. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/drivers/crypto/dpaa2_sec/dp

[dpdk-dev] [RFC 11/16] crypto/dpaa2_sec: enhance error checks with raw buffer APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This patch improves error conditions and support of Wireless algos with raw buffers. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa2_sec/dpaa2_sec_raw_dp.c | 31 - 1 file changed, 6 insertions(+), 25 deletions(-) diff --git a/drivers/crypto/dp

[dpdk-dev] [RFC 12/16] crypto/dpaa_sec: support raw datapath APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This patch add raw vector API framework for dpaa_sec driver. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa_sec/dpaa_sec.c| 23 +- drivers/crypto/dpaa_sec/dpaa_sec.h| 39 +- drivers/crypto/dpaa_sec/dpaa_sec_raw_dp.c | 485 ++

[dpdk-dev] [RFC 13/16] crypto/dpaa_sec: support authonly and chain with raw APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This patch improves the raw vector support in dpaa_sec driver for authonly and chain usecase. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa_sec/dpaa_sec.h| 3 +- drivers/crypto/dpaa_sec/dpaa_sec_raw_dp.c | 296 +- 2 files changed, 28

[dpdk-dev] [RFC 14/16] crypto/dpaa_sec: support AEAD and proto with raw APIs

2021-08-12 Thread Hemant Agrawal
From: Gagandeep Singh This add support for AEAD and proto offload with raw APIs for dpaa_sec driver. Signed-off-by: Gagandeep Singh --- drivers/crypto/dpaa_sec/dpaa_sec_raw_dp.c | 293 ++ 1 file changed, 293 insertions(+) diff --git a/drivers/crypto/dpaa_sec/dpaa_sec_raw_d

[dpdk-dev] [RFC 15/16] test/crypto: add raw API test for dpaax

2021-08-12 Thread Hemant Agrawal
This patch add support for raw API tests for dpaa_sec and dpaa2_sec platforms. Signed-off-by: Gagandeep Singh Signed-off-by: Hemant Agrawal --- app/test/test_cryptodev.c | 116 +++--- 1 file changed, 109 insertions(+), 7 deletions(-) diff --git a/app/test/test_c

[dpdk-dev] [RFC 16/16] test/crypto: enabling raw API support in 5G algos

2021-08-12 Thread Hemant Agrawal
This patch add support for RAW API testing with ZUC and SNOW test cases. Signed-off-by: Gagandeep Singh Signed-off-by: Hemant Agrawal --- app/test/test_cryptodev.c | 57 ++- 1 file changed, 51 insertions(+), 6 deletions(-) diff --git a/app/test/test_cryptode

Re: [dpdk-dev] [PATCH] net/iavf: remove interrupt handler

2021-08-12 Thread Wu, Jingjing
> > -Original Message- > > From: Zhang, RobinX > > Sent: Friday, July 23, 2021 3:47 PM > > To: dev@dpdk.org > > Cc: Wu, Jingjing ; Xing, Beilei > > ; Zhang, Qi Z ; Guo, > > Junfeng ; Yang, SteveX > ; > > Zhang, RobinX > > Subject: [PATCH] net/iavf: remove interrupt handler > > As you are

Re: [dpdk-dev] [EXT] [RFC 04/16] crypto: enhance raw process for protocol offload

2021-08-12 Thread Akhil Goyal
> From: Gagandeep Singh > > This patch improves the raw vector processing for security > protocol with OOP processing. > > Signed-off-by: Gagandeep Singh > --- Can you explain the reasoning for this change in commit message. Is this a bug? Do we need to backport it? ++Fan/Konstantin > lib/

Re: [dpdk-dev] [EXT] [RFC 01/16] crypto: change sgl to src_sgl in vector

2021-08-12 Thread Akhil Goyal
> This patch renames the sgl to src_sgl to help differentiating > between source and destination sgl. > > Signed-off-by: Hemant Agrawal > --- ++Fan/Konstantin

[dpdk-dev] [Bug 789] [build]ICC 32bit build failed on Ubuntu 20.04.2 LTS when has "--werror".

2021-08-12 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=789 Bug ID: 789 Summary: [build]ICC 32bit build failed on Ubuntu 20.04.2 LTS when has "--werror". Product: DPDK Version: 21.08 Hardware: All OS: All Status:

Re: [dpdk-dev] [External] Re: [PATCH v2] app/testpmd: flowgen support ip and udp fields

2021-08-12 Thread 王志宏
On Wed, Aug 11, 2021 at 6:31 PM Ferruh Yigit wrote: > > On 8/11/2021 3:48 AM, 王志宏 wrote: > > On Tue, Aug 10, 2021 at 5:12 PM Ferruh Yigit wrote: > >> > >> On 8/10/2021 8:57 AM, 王志宏 wrote: > >>> Thanks for the review Ferruh :) > >>> > >>> On Mon, Aug 9, 2021 at 11:18 PM Ferruh Yigit > >>> wrote:

[dpdk-dev] [PATCH 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS | 6 - doc/

[dpdk-dev] [PATCH 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- MAINTAINERS | 6 - doc/guid

[dpdk-dev] [PATCH v3 0/4] app/testpmd: flowgen fixes and improvements

2021-08-12 Thread Zhihong Wang
This series fixes a tx retry defect and improves multi-core performance by using per-core variable for flow indexing. v3: split changes and keep original flow generation logic v2: fix assigning ip header cksum Zhihong Wang (4): app/testpmd: fix tx retry in flowgen app/testpmd: use rte_ipv4_ck

[dpdk-dev] [PATCH v3 1/4] app/testpmd: fix tx retry in flowgen

2021-08-12 Thread Zhihong Wang
Fix tx_pkt number in tx retry logic. Fixes: bf56fce1fb4 ("app/testpmd: add retry option") Cc: sta...@dpdk.org Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index 3b

[dpdk-dev] [PATCH v3 2/4] app/testpmd: use rte_ipv4_cksum in flowgen

2021-08-12 Thread Zhihong Wang
Use the rte_ipv4_cksum API to replace local ip_sum implementation. Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 25 + 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index f2e6255c36..96d0cc79df 100

[dpdk-dev] [PATCH v3 3/4] app/testpmd: record rx_burst and fwd_dropped in flowgen

2021-08-12 Thread Zhihong Wang
Call inc_rx_burst_stats for rx operation, and record fwd_dropped. Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index 96d0cc79df..229794ee9c 100644 --- a/app/test-pmd/flowgen.c +++ b/ap

[dpdk-dev] [PATCH v3 4/4] app/testpmd: use per-core variable in flowgen

2021-08-12 Thread Zhihong Wang
Use per-core variable for flow indexing to solve cache contention in multi-core scenarios. Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 14 -- 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index 229794ee9c..f

[dpdk-dev] [PATCH v4 0/4] security: Improve inline fast path routines

2021-08-12 Thread Nithin Dabilpuram
Improvements to Inline inbound and outbound processing fast path routines rte_security_set_pkt_metadata() and rte_security_get_userdata() to make them inline functions and also provide mechanism for drivers to support fast userdata and metadata access instead of driver specific per-pkt function cal

[dpdk-dev] [PATCH v4 1/4] security: enforce semantics for Tx inline processing

2021-08-12 Thread Nithin Dabilpuram
Not all net PMD's/HW can parse packet and identify L2 header and L3 header locations on Tx. This is inline with other Tx offloads requirements such as L3 checksum, L4 checksum offload, etc, where mbuf.l2_len, mbuf.l3_len etc, needs to be set for HW to be able to generate checksum. Since Inline IPSe

[dpdk-dev] [PATCH v4 2/4] security: add option for faster udata or mdata access

2021-08-12 Thread Nithin Dabilpuram
Currently rte_security_set_pkt_metadata() and rte_security_get_userdata() methods to set pkt metadata on Inline outbound and get userdata after Inline inbound processing is always driver specific callbacks. For drivers that do not have much to do in the callbacks but just to update metadata in rte

[dpdk-dev] [PATCH v4 3/4] examples/ipsec-secgw: update event mode inline path

2021-08-12 Thread Nithin Dabilpuram
Update mbuf.l2_len with L2 header size for outbound inline processing. This patch also fixes a bug in arg parsing. Signed-off-by: Nithin Dabilpuram --- examples/ipsec-secgw/ipsec-secgw.c | 2 ++ examples/ipsec-secgw/ipsec_worker.c | 41 - 2 files changed, 2

[dpdk-dev] [PATCH v4 4/4] doc: remove deprecation notice for security fast path change

2021-08-12 Thread Nithin Dabilpuram
Remove deprecation notice for security fast path change. Signed-off-by: Nithin Dabilpuram --- doc/guides/rel_notes/deprecation.rst | 4 1 file changed, 4 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 76a4abf..2e38a36 100644 ---

[dpdk-dev] [PATCH v2 1/2] drivers/raw: remove octeontx2-dma driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-dma driver as the dependent common/octeontx2 will be soon be going away. Also a new DMA driver will be coming in this place once the rte_dmadev library is in. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: Fixed compilation issues in documentation

[dpdk-dev] [PATCH v2 2/2] drivers/raw: remove octeontx2-ep driver

2021-08-12 Thread Radha Mohan Chintakuntla
Removing the rawdev based octeontx2-ep driver as the dependent common/octeontx2 will soon be going away. Moreover this driver is no longer required as the net/octeontx_ep driver is sufficient. Signed-off-by: Radha Mohan Chintakuntla --- Changes from v1: Fixed compilation issues in documentation

[dpdk-dev] [PATCH v4 0/4] app/testpmd: flowgen fixes and improvements

2021-08-12 Thread Zhihong Wang
This series fixes a tx retry defect and improves multi-core performance by using per-core variable for flow indexing. v4: use loop local variable to improve performance v3: split changes and keep original flow generation logic v2: fix assigning ip header cksum Zhihong Wang (4): app/testpmd: fix

[dpdk-dev] [PATCH v4 1/4] app/testpmd: fix tx retry in flowgen

2021-08-12 Thread Zhihong Wang
Fix tx_pkt number in tx retry logic. Fixes: bf56fce1fb4 ("app/testpmd: add retry option") Cc: sta...@dpdk.org Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index 3b

[dpdk-dev] [PATCH v4 2/4] app/testpmd: use rte_ipv4_cksum in flowgen

2021-08-12 Thread Zhihong Wang
Use the rte_ipv4_cksum API to replace local ip_sum implementation. Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 25 + 1 file changed, 1 insertion(+), 24 deletions(-) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index f2e6255c36..96d0cc79df 100

[dpdk-dev] [PATCH v4 3/4] app/testpmd: record rx_burst and fwd_dropped in flowgen

2021-08-12 Thread Zhihong Wang
Call inc_rx_burst_stats for rx operation, and record fwd_dropped. Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/test-pmd/flowgen.c b/app/test-pmd/flowgen.c index 96d0cc79df..229794ee9c 100644 --- a/app/test-pmd/flowgen.c +++ b/ap

[dpdk-dev] [PATCH v4 4/4] app/testpmd: use per-core variable in flowgen

2021-08-12 Thread Zhihong Wang
Use per-core variable for flow indexing to solve cache contention in multi-core scenarios. v4: use loop local variable to improve performance Signed-off-by: Zhihong Wang --- app/test-pmd/flowgen.c | 6 +- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/test-pmd/flowgen.c b/

[dpdk-dev] [PATCH v2 00/10] new features for ipsec and security libraries

2021-08-12 Thread Radu Nicolau
Add support for: TSO, NAT-T/UDP encapsulation, ESN AES_CCM, CHACHA20_POLY1305 and AES_GMAC SA telemetry mbuf offload flags Initial SQN value Radu Nicolau (10): security: add support for TSO on IPsec session security: add UDP params for IPsec NAT-T security: add ESN field to ipsec_xform mb

[dpdk-dev] [PATCH v2 01/10] security: add support for TSO on IPsec session

2021-08-12 Thread Radu Nicolau
Allow user to provision a per security session maximum segment size (MSS) for use when Transmit Segmentation Offload (TSO) is supported. The MSS value will be used when PKT_TX_TCP_SEG or PKT_TX_UDP_SEG ol_flags are specified in mbuf. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Sign

[dpdk-dev] [PATCH v2 02/10] security: add UDP params for IPsec NAT-T

2021-08-12 Thread Radu Nicolau
Add support for specifying UDP port params for UDP encapsulation option. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/security/rte_security.h | 8 1 file changed, 8 insertions(+) diff --git a/lib/

[dpdk-dev] [PATCH v2 03/10] security: add ESN field to ipsec_xform

2021-08-12 Thread Radu Nicolau
Update ipsec_xform definition to include ESN field. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/security/rte_security.h | 8 1 file changed, 8 insertions(+) diff --git a/lib/security/rte_security

[dpdk-dev] [PATCH v2 04/10] mbuf: add IPsec ESP tunnel type

2021-08-12 Thread Radu Nicolau
Add tunnel type for IPsec ESP tunnels Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/mbuf/rte_mbuf_core.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/mbuf/rte_mbuf_core.h b/lib/mbuf/rte_mbuf_core.

[dpdk-dev] [PATCH v2 05/10] ipsec: add support for AEAD algorithms

2021-08-12 Thread Radu Nicolau
Add support for AES_CCM, CHACHA20_POLY1305 and AES_GMAC. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/ipsec/crypto.h | 137 +++ lib/ipsec/esp_inb.c | 66 +

[dpdk-dev] [PATCH v2 06/10] ipsec: add transmit segmentation offload support

2021-08-12 Thread Radu Nicolau
Add support for transmit segmentation offload to inline crypto processing mode. This offload is not supported by other offload modes, as at a minimum it requires inline crypto for IPsec to be supported on the network interface. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off

[dpdk-dev] [PATCH v2 07/10] ipsec: add support for NAT-T

2021-08-12 Thread Radu Nicolau
Add support for the IPsec NAT-Traversal use case for Tunnel mode packets. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/ipsec/iph.h | 13 + lib/ipsec/rte_ipsec_sa.h | 8 +++- lib/ip

[dpdk-dev] [PATCH v2 08/10] ipsec: add support for SA telemetry

2021-08-12 Thread Radu Nicolau
Add telemetry support for ipsec SAs Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/ipsec/esp_inb.c | 1 + lib/ipsec/esp_outb.c | 12 +- lib/ipsec/meson.build | 2 +- lib/ipsec/rte_ipsec.h | 11 ++ li

[dpdk-dev] [PATCH v2 09/10] ipsec: add support for initial SQN value

2021-08-12 Thread Radu Nicolau
Update IPsec library to support initial SQN value. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/ipsec/esp_outb.c | 19 --- lib/ipsec/sa.c | 29 ++--- 2 files ch

[dpdk-dev] [PATCH v2 10/10] ipsec: add ol_flags support

2021-08-12 Thread Radu Nicolau
Set mbuff->ol_flags for IPsec packets. Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley --- lib/ipsec/esp_inb.c | 17 -- lib/ipsec/esp_outb.c | 48 ++- lib/ipsec

[dpdk-dev] [PATCH v1 0/2] fips validation app fixes

2021-08-12 Thread Ciara Power
Included are patches with small fixes for unnecessary memory allocation, and incomplete resetting of a pointer. Ciara Power (2): examples/fips_validation: fix unused malloc examples/fips_validation: fix resetting pointer examples/fips_validation/main.c | 5 +++-- 1 file changed, 3 insertions

[dpdk-dev] [PATCH v1 1/2] examples/fips_validation: fix unused malloc

2021-08-12 Thread Ciara Power
The val.val pointer is allocated memory, however this memory is then freed in get_writeback_data() without being used beforehand. The pointer is then allocated memory again before use, so the very first allocation is removed as it was unnecessary. Fixes: f4797bae0050 ("examples/fips_validation: su

[dpdk-dev] [PATCH v1 2/2] examples/fips_validation: fix resetting pointer

2021-08-12 Thread Ciara Power
The env.digest memory was freed, but the pointer was not set to NULL afterwards. This caused an "Invalid Memory" error, as the pointer tries to free twice. Fixes: 952e10cdad5e ("examples/fips_validation: support scatter gather list") Cc: roy.fan.zh...@intel.com Cc: sta...@dpdk.org Signed-off-by:

Re: [dpdk-dev] [PATCH] version: 21.11-rc0

2021-08-12 Thread Ferruh Yigit
On 8/8/2021 8:26 PM, Thomas Monjalon wrote: > Start a new release cycle with empty release notes. > > The ABI version becomes 22.0. > The map files are updated to the new ABI major number (22). > The ABI exceptions are dropped > and CI ABI checks are disabled > because compatibility is not preserv

Re: [dpdk-dev] [PATCH v3 1/2] net: macro for MAC address print

2021-08-12 Thread Ferruh Yigit
On 8/10/2021 8:35 AM, Aman Singh wrote: > Added macro to print six bytes of MAC address. > The MAC addresses will be printed in lower case > hexdecimal format. s/hexdecimal/hexadecimal > In case there is a specific check for upper case > MAC address, the user may need to make a change in > such t

Re: [dpdk-dev] [PATCH v3 2/2] net: macro to extract MAC address bytes

2021-08-12 Thread Ferruh Yigit
On 8/10/2021 8:35 AM, Aman Singh wrote: > Added macros to simplyfy print of MAC address. s/simplyfy/simplify > The other method of first formatting mac address > into a string and string printed, is avoided. > There are some cases that 'rte_ether_format_addr()' API is used to convert MAC addres

[dpdk-dev] Q on rte hash table

2021-08-12 Thread Ravi Kerur
Hello, Using dpdk 19.11 and trying to understand the index returned by 'rte_hash_add_key', API says ... * - A positive value that can be used by the caller as an offset into an * array of user data. This value is unique for this key. */ int32_t rte_hash_add_key(const struct rte_hash *h, co

[dpdk-dev] [RFC] mempool: add non-IO flag

2021-08-12 Thread Dmitry Kozlyuk
We propose to add a mempool flag MEMPOOL_F_NON_IO to mark pools of objects that will not be used with device IO and their memory for DMA. This will allow saving IOMMU entries by not mapping the memory used by such pools. Immediate use case is MLX5 PMD. The hardware has its internal IOMMU where P

Re: [dpdk-dev] [RFC] ethdev: change queue release callback

2021-08-12 Thread Xueming(Steven) Li
> -Original Message- > From: dev On Behalf Of Xueming(Steven) Li > Sent: Wednesday, August 11, 2021 8:13 PM > To: Ferruh Yigit ; Singh, Aman Deep > ; Andrew Rybchenko > > Cc: dev@dpdk.org; Slava Ovsiienko ; > NBU-Contact-Thomas Monjalon ; > jer...@marvell.com > Subject: Re: [dpdk-dev]

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-08-12 Thread Xueming(Steven) Li
> -Original Message- > From: dev On Behalf Of Xueming(Steven) Li > Sent: Wednesday, August 11, 2021 8:59 PM > To: Ferruh Yigit ; Jerin Jacob > Cc: dpdk-dev ; NBU-Contact-Thomas Monjalon > ; Andrew Rybchenko > > Subject: Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue > >

Re: [dpdk-dev] [EXT] Re: [PATCH] version: 21.11-rc0

2021-08-12 Thread Akhil Goyal
> On 8/8/2021 8:26 PM, Thomas Monjalon wrote: > > Start a new release cycle with empty release notes. > > > > The ABI version becomes 22.0. > > The map files are updated to the new ABI major number (22). > > The ABI exceptions are dropped > > and CI ABI checks are disabled > > because compatibility

[dpdk-dev] [PATCHv3] include: fix sys/queue.h.

2021-08-12 Thread William Tu
Currently there are a couple of public header files include 'sys/queue.h', which is a POSIX functionality. When compiling DPDK with OVS on Windows, we encountered issues such as, found the missing header. In file included from ../lib/dpdk.c:27: C:\temp\dpdk\include\rte_log.h:24:10: fatal error: 's

Re: [dpdk-dev] [PATCHv3] include: fix sys/queue.h.

2021-08-12 Thread Dmitry Kozlyuk
2021-08-12 20:05 (UTC+), William Tu: > Currently there are a couple of public header files include Suggested subject: "eal: remove sys/queue.h from public headers". 1. The state before the patch should be described in the past tense. 2. Really ten times more than "a couple", suggesting "some"

[dpdk-dev] [PATCHv4] eal: remove sys/queue.h from public headers.

2021-08-12 Thread William Tu
Currently there are some public headers that include 'sys/queue.h', which is not POSIX, but usually provided by Linux/BSD system library. (Not in POSIX.1, POSIX.1-2001, or POSIX.1-2008. Present on the BSDs.) The file is missing on Windows. During the windows build, DPDK uses a bundled copy, so buil

Re: [dpdk-dev] [PATCHv4] eal: remove sys/queue.h from public headers.

2021-08-12 Thread Stephen Hemminger
On Fri, 13 Aug 2021 01:02:50 + William Tu wrote: > Currently there are some public headers that include 'sys/queue.h', which > is not POSIX, but usually provided by Linux/BSD system library. > (Not in POSIX.1, POSIX.1-2001, or POSIX.1-2008. Present on the BSDs.) > The file is missing on Windo

Re: [dpdk-dev] [PATCH v4 1/4] app/testpmd: fix tx retry in flowgen

2021-08-12 Thread Li, Xiaoyun
Hi > -Original Message- > From: Zhihong Wang > Sent: Thursday, August 12, 2021 21:19 > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > ; Singh, Aman Deep ; > irussk...@marvell.com; cchempara...@tilera.com > Cc: Zhihong Wang ; sta...@dpdk.org > Subject: [PATCH v4 1/4] app/testpmd: fix tx r

Re: [dpdk-dev] [PATCHv4] eal: remove sys/queue.h from public headers.

2021-08-12 Thread William Tu
On Thu, Aug 12, 2021 at 6:11 PM Stephen Hemminger wrote: > > On Fri, 13 Aug 2021 01:02:50 + > William Tu wrote: > > > Currently there are some public headers that include 'sys/queue.h', which > > is not POSIX, but usually provided by Linux/BSD system library. > > (Not in POSIX.1, POSIX.1-2001

Re: [dpdk-dev] [PATCH v4 2/4] app/testpmd: use rte_ipv4_cksum in flowgen

2021-08-12 Thread Li, Xiaoyun
Hi > -Original Message- > From: Zhihong Wang > Sent: Thursday, August 12, 2021 21:19 > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > ; Singh, Aman Deep ; > irussk...@marvell.com; cchempara...@tilera.com > Cc: Zhihong Wang > Subject: [PATCH v4 2/4] app/testpmd: use rte_ipv4_cksum in flo

Re: [dpdk-dev] [PATCH v4 3/4] app/testpmd: record rx_burst and fwd_dropped in flowgen

2021-08-12 Thread Li, Xiaoyun
> -Original Message- > From: Zhihong Wang > Sent: Thursday, August 12, 2021 21:19 > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > ; Singh, Aman Deep ; > irussk...@marvell.com; cchempara...@tilera.com > Cc: Zhihong Wang > Subject: [PATCH v4 3/4] app/testpmd: record rx_burst and fwd_dropp

Re: [dpdk-dev] [PATCH v4 4/4] app/testpmd: use per-core variable in flowgen

2021-08-12 Thread Li, Xiaoyun
> -Original Message- > From: Zhihong Wang > Sent: Thursday, August 12, 2021 21:19 > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > ; Singh, Aman Deep ; > irussk...@marvell.com; cchempara...@tilera.com > Cc: Zhihong Wang > Subject: [PATCH v4 4/4] app/testpmd: use per-core variable in fl

Re: [dpdk-dev] [RFC V2] ethdev: fix issue that dev close in PMD calls twice

2021-08-12 Thread Huisong Li
Hi, all This patch can enhance the security of device uninstallation to eliminate dependency on user usage methods. Can you check this patch? 在 2021/8/3 10:30, Huisong Li 写道: Ethernet devices in DPDK can be released by rte_eth_dev_close() and rte_dev_remove(). These APIs both call xxx_dev_c

Re: [dpdk-dev] [External] RE: [PATCH v4 1/4] app/testpmd: fix tx retry in flowgen

2021-08-12 Thread 王志宏
On Fri, Aug 13, 2021 at 9:33 AM Li, Xiaoyun wrote: > > Hi > > > -Original Message- > > From: Zhihong Wang > > Sent: Thursday, August 12, 2021 21:19 > > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > > ; Singh, Aman Deep ; > > irussk...@marvell.com; cchempara...@tilera.com > > Cc: Zhihong

Re: [dpdk-dev] [External] RE: [PATCH v4 4/4] app/testpmd: use per-core variable in flowgen

2021-08-12 Thread 王志宏
On Fri, Aug 13, 2021 at 9:56 AM Li, Xiaoyun wrote: > > > > -Original Message- > > From: Zhihong Wang > > Sent: Thursday, August 12, 2021 21:19 > > To: dev@dpdk.org; Yigit, Ferruh ; Li, Xiaoyun > > ; Singh, Aman Deep ; > > irussk...@marvell.com; cchempara...@tilera.com > > Cc: Zhihong Wang

[dpdk-dev] [PATCHv5] eal: remove sys/queue.h from public headers.

2021-08-12 Thread William Tu
Currently there are some public headers that include 'sys/queue.h', which is not POSIX, but usually provided by the Linux/BSD system library. (Not in POSIX.1, POSIX.1-2001, or POSIX.1-2008. Present on the BSDs.) The file is missing on Windows. During the windows build, DPDK uses a bundled copy, s

[dpdk-dev] [PATCH] app/crypto-perf: add throughput test for asymmetric crypto

2021-08-12 Thread kirankumark
From: Kiran Kumar K Adding support for asymmetric crypto perf test. Only modex is supported for now. Signed-off-by: Kiran Kumar K --- app/test-crypto-perf/cperf_ops.c | 59 ++- app/test-crypto-perf/cperf_options.h | 3 +- app/test-crypto-perf/cperf_options_parsin

Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop issue

2021-08-12 Thread Rohit Raj
> -Original Message- > From: Ferruh Yigit > Sent: Wednesday, August 11, 2021 5:01 PM > To: Rohit Raj > Cc: dev@dpdk.org; Nipun Gupta ; Hemant Agrawal > ; Sachin Saxena ; > Vanshika Shukla > Subject: Re: [dpdk-dev] [PATCH v1] examples/l3fwd: fix jumbo packet drop > issue > > On 7/27/20

Re: [dpdk-dev] [RFC V2] ethdev: fix issue that dev close in PMD calls twice

2021-08-12 Thread Thomas Monjalon
13/08/2021 04:11, Huisong Li: > Hi, all > > This patch can enhance the security of device uninstallation to > eliminate dependency on user usage methods. > > Can you check this patch? > > > 在 2021/8/3 10:30, Huisong Li 写道: > > Ethernet devices in DPDK can be released by rte_eth_dev_close() and

[dpdk-dev] [PATCH v1] net/ice: fix memzone leak when device init failed

2021-08-12 Thread Haiyue Wang
When flow engine initialization or FXP resource reset failed, it needs to free the memory zone and unregister the interrupt callback. Bugzilla ID: 752 Fixes: 84dc7a95a2d3 ("net/ice: enable flow director engine") Fixes: 7615a6895009 ("net/ice: rework for generic flow enabling") Fixes: 7edc7158d771