RE: [EXT] Re: [PATCH] test/crypto: add cryptodev reconfig test

2023-04-10 Thread Anoob Joseph
Hi Fan, Please see inline. Thanks, Anoob > -Original Message- > From: Zhang, Fan > Sent: Thursday, April 6, 2023 7:51 PM > To: Aakash Sasidharan ; Akhil Goyal > > Cc: Jerin Jacob Kollanukkaran ; Anoob Joseph > ; dev@dpdk.org > Subject: [EXT] Re: [PATCH] test/crypto: add cryptodev recon

RE: [PATCH] dma/dpaa2: set the vfa bit for rbp with vf

2023-04-10 Thread Gagandeep Singh
++Jun > -Original Message- > From: Alvaro Karsz > Sent: Sunday, April 9, 2023 5:40 PM > To: Gagandeep Singh ; Hemant Agrawal > > Cc: dev@dpdk.org; David Marchand > Subject: Re: [PATCH] dma/dpaa2: set the vfa bit for rbp with vf > > Hi, > Any comments on the patch? > > Thanks

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

2023-04-10 Thread Zhichao Zeng
Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Zhichao Zeng (3): net/iavf: support Rx timestamp offload on AVX512 net/iavf: support Rx timestamp offload on AVX2 net/iavf: support Rx timestamp offlo

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

2023-04-10 Thread Zhichao Zeng
This patch enables Rx timestamp offload on AVX512 data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Zhichao Zeng --- drivers/net/iavf/iavf_rxtx.h| 3 +- drivers/ne

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

2023-04-10 Thread Zhichao Zeng
This patch enables Rx timestamp offload on AVX2 data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Zhichao Zeng --- drivers/net/iavf/iavf_rxtx_vec_avx2.c | 201 ++

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

2023-04-10 Thread Zhichao Zeng
This patch enables Rx timestamp offload on SSE data path. Enable timestamp offload with the command '--enable-rx-timestamp', pay attention that getting Rx timestamp offload will drop the performance. Signed-off-by: Zhichao Zeng --- drivers/net/iavf/iavf_rxtx_vec_sse.c | 163

[PATCH v1] power: amd power monitor support

2023-04-10 Thread Sivaprasad Tummala
mwaitx allows epyc processors to enter a implementation dependent power/performance optimized state (C1 state) for a specific period or until a store to the monitored address range. Signed-off-by: Sivaprasad Tummala --- lib/eal/include/generic/rte_cpuflags.h | 2 + lib/eal/x86/include/rte_cpufl

[PATCH 00/13] Sync the kernel driver logic

2023-04-10 Thread Chaoyong He
The DPDK NFP PMD share the same underlying data structure and API with the NFP kernel driver, because they use the same firmware. The DPDK NFP PMD only has a very initial version and not changed for a long time, but the NFP kernel driver keeps evolve at the same time, so the differece between them

[PATCH 01/13] net/nfp: define correct size for configuration BAR

2023-04-10 Thread Chaoyong He
For NFP6000, the size of configuration BAR is always 32kB. Remove the out of date value of macro and replace the hard code value with this constant macro. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/flower/nfp_flower.c | 4 ++-- drivers/net/nfp/nfp_ctrl.h

[PATCH 02/13] net/nfp: move shared target logic to own source file

2023-04-10 Thread Chaoyong He
Move the needed logic of nfp_target.h and nfp_cppat.h to a new source file nfp_target.c, and delete the logic which are not used at all. The code is moved verbatim from the header file to the source file, no functional change. This mainly to mimic the source file structure in the kernel driver, a

[PATCH 03/13] net/nfp: remove the redundant macro about CPP target

2023-04-10 Thread Chaoyong He
Remove the redundancy define NFP6000_CPPTGT_ in nfp_resid.h, the same define NFP_CPP_TARGET_ are exist in nfp6000.h, we choose to keep them to sync with the kernel driver. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- .../net/nfp/nfpcore/nfp-common/nfp_resid.h| 11 - driv

[PATCH 04/13] net/nfp: drop usage of return error helpers

2023-04-10 Thread Chaoyong He
Drop the usage of complex return error helpers. These helpers was used to return either NULL or -1 from a function while communicating the error using errno. However erron was seldom checked and the error path was taken only depending on the functions return value. Remove the macros and convert th

[PATCH 05/13] net/nfp: use generic macros for array size and to set bits

2023-04-10 Thread Chaoyong He
Instead of using NFP specific macros for array size and to set bits use the generic ones provided by DPDK. By moving some include directives for system header files directly to the source files that depend on them, the header file nfp_platform.h defining the NFP specific macros can be removed. Si

[PATCH 06/13] net/nfp: remove dead code related to CPP

2023-04-10 Thread Chaoyong He
The header file bpf_resid.h contains function prototypes that are not implemented anywhere, as well as a few defines and macros that are not used anywhere. Move the few inline functions, defines and macros that are used into nfp_cpp.h and remove bpf_resid.h. Signed-off-by: Chaoyong He Reviewed-by

[PATCH 07/13] net/nfp: remove duplicated nffw defines

2023-04-10 Thread Chaoyong He
The defines NFFW_FWID_EXT, NFFW_FWID_BASE and NFFW_FWID_ALL are defined two times, with the same values, in nfp_nffw.h. Drop one instance of the definitions. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfpcore/nfp_nffw.h | 9 - 1 file changed, 9 deletion

[PATCH 08/13] net/nfp: move NFD3 logic to own source file

2023-04-10 Thread Chaoyong He
Split out the data struct and logics of NFD3 into new file. The code is moved verbatim, no functional change. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/flower/nfp_flower.c | 1 + drivers/net/nfp/flower/nfp_flower_ctrl.c | 1 + .../net/nfp/fl

[PATCH 09/13] net/nfp: adjust the coding style for NFD3

2023-04-10 Thread Chaoyong He
Adjust the coding style for NDF3 struct and logics. Sync the macro name for the NFD3 descriptor. Remove the ASSERT macro and delete some unneeded comment messages. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfd3/nfp_nfd3.h| 79 - drivers/ne

[PATCH 10/13] net/nfp: rename macro name of NFD3 Tx descriptor

2023-04-10 Thread Chaoyong He
Rename the name of the macro of NFD3 TX descriptor from PCIE to NFD3, keep it same with the kernel driver. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/flower/nfp_flower.c | 4 +-- drivers/net/nfp/flower/nfp_flower_ctrl.c | 2 +- drivers/net/nfp/nfd3/nfp_n

[PATCH 11/13] net/nfp: move NFDk logic to own source file

2023-04-10 Thread Chaoyong He
Split out the data structure and logics of NFDk into new file. The code is moved verbatim, no functional change. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/meson.build| 1 + drivers/net/nfp/nfdk/nfp_nfdk.h| 179 ++ drivers/net/nfp/nfdk/nfp

[PATCH 12/13] net/nfp: adjust the coding style for NFDk

2023-04-10 Thread Chaoyong He
Adjust the coding style for NFDk struct and logics. Delete some unneeded comment messages. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfdk/nfp_nfdk.h| 69 +++--- drivers/net/nfp/nfdk/nfp_nfdk_dp.c | 140 +++-- 2 files change

[PATCH 13/13] net/nfp: modify the logic of some NFDk function

2023-04-10 Thread Chaoyong He
Split one function into two functions and change the data type of parameter and return value. Also add some comment message to help understand. Signed-off-by: Chaoyong He Reviewed-by: Niklas Söderlund --- drivers/net/nfp/nfdk/nfp_nfdk.h| 75 -- drivers/net/nfp/nf

Re: [dpdk-web] [RFC PATCH] process: new library approval in principle

2023-04-10 Thread Konstantin Ananyev
rom: Jerin Jacob Based on TB meeting[1] action item, defining the process for new library approval in principle. [1] https://mails.dpdk.org/archives/dev/2023-January/260035.html Signed-off-by: Jerin Jacob --- content/process/_index.md | 33 + 1 file changed, 3

Re: [PATCH 3/9] eal: use barrier intrinsics when compiling with msvc

2023-04-10 Thread Konstantin Ananyev
05/04/2023 16:38, Tyler Retzlaff пишет: On Wed, Apr 05, 2023 at 02:35:47PM +0200, Morten Brørup wrote: From: Konstantin Ananyev [mailto:konstantin.anan...@huawei.com] Sent: Wednesday, 5 April 2023 12.57 Another ore generic comment - do we really need to pollute all that code with RTE_TOOLCHAI

Dpaa2 driver using system("echo...")

2023-04-10 Thread Stephen Hemminger
When the CodeQl (https://codeql.github.com/) is run against DPDK, one of the issues it reports is the unsafe usage of system() in code. I reported and fixed one of these issues in the dpaa2 driver https://patchwork.dpdk.org/project/dpdk/patch/20220602214957.150071-1-step...@networkplumber.org/ but

Re: [PATCH v3 06/11] eal: typedef cpu flag enum as int for msvc

2023-04-10 Thread Konstantin Ananyev
06/04/2023 01:45, Tyler Retzlaff пишет: Forward declaration of a typedef is a non-standard extension and is not supported by msvc. Use an int instead. Abstract the use of the int/enum rte_cpu_flag_t in function parameter lists by re-typdefing the enum rte_cpu_flag_t to the rte_cpu_flag_t identif

Re: [PATCH 3/9] eal: use barrier intrinsics when compiling with msvc

2023-04-10 Thread Konstantin Ananyev
06/04/2023 01:07, Tyler Retzlaff пишет: On Wed, Apr 05, 2023 at 10:57:02AM +, Konstantin Ananyev wrote: Inline assembly is not supported for msvc x64 instead use _{Read,Write,ReadWrite}Barrier() intrinsics. Signed-off-by: Tyler Retzlaff --- lib/eal/include/generic/rte_atomic.h | 4 +++

Re: [PATCH v3 06/11] eal: typedef cpu flag enum as int for msvc

2023-04-10 Thread Tyler Retzlaff
On Mon, Apr 10, 2023 at 08:59:33PM +0100, Konstantin Ananyev wrote: > 06/04/2023 01:45, Tyler Retzlaff пишет: > >Forward declaration of a typedef is a non-standard extension and is not > >supported by msvc. Use an int instead. > > > >Abstract the use of the int/enum rte_cpu_flag_t in function param

Re: [PATCH 3/9] eal: use barrier intrinsics when compiling with msvc

2023-04-10 Thread Tyler Retzlaff
On Mon, Apr 10, 2023 at 09:02:00PM +0100, Konstantin Ananyev wrote: > 06/04/2023 01:07, Tyler Retzlaff пишет: > >On Wed, Apr 05, 2023 at 10:57:02AM +, Konstantin Ananyev wrote: > >> > >>>Inline assembly is not supported for msvc x64 instead use > >>>_{Read,Write,ReadWrite}Barrier() intr

[PATCH v7] net/ice: fix ice dcf control thread crash

2023-04-10 Thread Mingjin Ye
The control thread accesses the hardware resources after the resources were released, which results in a segment error. The 'ice-reset' threads are detached, so thread resources cannot be reclaimed by `pthread_join` calls. This commit synchronizes the number of "ice-reset" threads by adding a var

Re: [PATCH v3 16/16] enable lock check

2023-04-10 Thread Sachin Saxena (OSS)
On 4/4/2023 6:18 PM, David Marchand wrote: Now that a lot of components can be compiled with the lock checks, invert the logic and opt out for components not ready yet: - drivers/bus/dpaa, - drivers/common/cnxk, - drivers/common/mlx5, - drivers/event/cnxk, - drivers/net/bnx2x, - drivers/net/bnxt,

[PATCH 0/1] *** Update drivers/net/gve/base code for DQO ***

2023-04-10 Thread Rushil Gupta
This patch is dependent on https://patchwork.dpdk.org/project/dpdk/patch/20230410064724.2094392-1-junfeng@intel.com/ Rushil Gupta (1): net/gve: update base code for DQO drivers/net/gve/base/gve.h | 1 + drivers/net/gve/base/gve_adminq.c | 10 +- drivers/net/gve/base/gv

[PATCH 1/1] net/gve: update base code for DQO

2023-04-10 Thread Rushil Gupta
Update gve base code to support DQO. This patch is based on this: https://patchwork.dpdk.org/project/dpdk/list/?series=27647&state=* Signed-off-by: Rushil Gupta Signed-off-by: Junfeng Guo --- drivers/net/gve/base/gve.h | 1 + drivers/net/gve/base/gve_adminq.c | 10 +- drive

RE: 20.11.8 patches review and test

2023-04-10 Thread Xu, HailinX
> -Original Message- > From: Xu, HailinX > Sent: Thursday, April 6, 2023 3:19 PM > To: luca.bocca...@gmail.com; sta...@dpdk.org > Cc: dev@dpdk.org; Abhishek Marathe ; > Ali Alnubani ; Walker, Benjamin > ; David Christensen ; > Hemant Agrawal ; Stokes, Ian > ; Jerin Jacob ; Mcnamara, John >

[PATCH] mempool: optimize get objects with constant n

2023-04-10 Thread Morten Brørup
When getting objects from the mempool, the number of objects to get is often constant at build time. This patch adds another code path for this case, so the compiler can optimize more, e.g. unroll the copy loop when the entire request is satisfied from the cache. On an Intel(R) Xeon(R) E5-2620 v4

RE: [PATCH 1/1] net/gve: update base code for DQO

2023-04-10 Thread Guo, Junfeng
Hi Ferruh & Bruce, This patch contains few lines change for the MIT licensed gve base code. Note that there is no new files added, just some minor code update. Do we need to ask for special approval from the Tech Board for this? Please help give some advice and also help review this patch. Thanks