[dpdk-dev] [PATCH 1/2] test/ipsec: fix return values

2021-01-25 Thread Gagandeep Singh
During SA creation, if the required algorithm is not supported, drivers can return ENOTSUP. But in most of the IPsec test cases, if the SA creation does not success, it just returns TEST_FAILED. This patch fixes this issue by returning the actual return values from the driver to the application, s

[dpdk-dev] [PATCH 2/2] crypto/dpaa2_sec: fix if check on memory allocation

2021-01-25 Thread Gagandeep Singh
When key length is 0, zmalloc will return NULL pointor and in that case it should not return NOMEM. So in this patch, adding a check on key length. Fixes: 8d1f3a5d751b ("crypto/dpaa2_sec: support crypto operation") Cc: akhil.go...@nxp.com --- drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 2 +- 1

Re: [dpdk-dev] [PATCH 3/4] net/mlx5: fix secondary process attach port Tx queue

2021-01-25 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Sunday, January 24, 2021 1:02 PM > To: Slava Ovsiienko ; Matan Azrad > > Cc: Raslan Darawsheh ; dev@dpdk.org; > sta...@dpdk.org > Subject: [PATCH 3/4] net/mlx5: fix secondary process attach port Tx queue > > Currently, the secondary

Re: [dpdk-dev] [PATCH 1/4] net/mlx5: fix invalid multi-process ID

2021-01-25 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Sunday, January 24, 2021 1:02 PM > To: Slava Ovsiienko ; Matan Azrad > > Cc: Raslan Darawsheh ; dev@dpdk.org > Subject: [PATCH 1/4] net/mlx5: fix invalid multi-process ID > > The device port_id is used for inter-process communication

[dpdk-dev] [PATCH v4 0/2] fix 'max-pkt-len' errors

2021-01-25 Thread Steve Yang
Here fixed 3 issues for 'max-pkt-len': 1. When cmdline option '--max-pkt-len' set the value less then '1500 + overhead', the app/testpmd will force to resize the 'max-pkt-len' to '1500 + overhead'. However, the user really want to configure 'max-pkt-len' to a specified value (< 1500 + over

[dpdk-dev] [PATCH v4 1/2] ethdev: fix MTU doesn't update when jumbo frame disabled

2021-01-25 Thread Steve Yang
The MTU value should be updated to 'max_rx_pkt_len - overhead' no matter if the JUMBO FRAME offload enabled. If not update this MTU, use will get the wrong MTU info via some command. E.g.: 'show port info all' in testpmd tool. Actually, the 'max_rx_pkt_len' has been used for other purposes in many

[dpdk-dev] [PATCH v4 2/2] app/testpmd: fix max-pkt-len option invalid

2021-01-25 Thread Steve Yang
Moved the setting of 'DEV_RX_OFFLOAD_JUMBO_FRAME' from 'cmd_config_max_pkt_len_parsed()' to 'init_config()' caused fail the case where 'max_rx_pkt_len' is changed from the command line via "port config all max-pkt-len". The 'init_config()' function is only called when testpmd is started, but the D

Re: [dpdk-dev] [PATCH 1/1] ethdev: fix handling of close failure

2021-01-25 Thread Andrew Rybchenko
On 1/22/21 8:58 PM, Thomas Monjalon wrote: > If a failure happens when closing a port, > it was unnecessarily failing again in the function eth_err(), > because of a check against HW removal cause. > Indeed there is a big chance the port is released at this point. > Given the port is in the middle

Re: [dpdk-dev] [PATCH] examples/pipeline: fix VXLAN script permission

2021-01-25 Thread David Marchand
On Fri, Jan 22, 2021 at 1:19 PM Dumitrescu, Cristian wrote: > > This python script provides a shebang that only makes sense if the > > script has the executable bit set. > > > > Fixes: fde7a772701a ("examples/pipeline: add VXLAN encapsulation > > example") > > Cc: sta...@dpdk.org > > > > Reported-

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Kinsella, Ray
On 23/01/2021 11:38, Thomas Monjalon wrote: > 22/01/2021 23:24, Dmitry Kozlyuk: >> On Fri, 22 Jan 2021 21:57:15 +0100, Thomas Monjalon wrote: >>> 22/01/2021 21:31, Dmitry Kozlyuk: On Wed, 20 Jan 2021 11:24:21 +0100, Thomas Monjalon wrote: > 20/01/2021 08:23, Dmitry Kozlyuk: >> O

Re: [dpdk-dev] [dpdk-stable] [PATCH v11 1/4] raw/ifpga: add fpga rsu function

2021-01-25 Thread Ferruh Yigit
On 1/22/2021 2:18 AM, Huang, Wei wrote: -Original Message- From: Ferruh Yigit Sent: Friday, January 22, 2021 00:30 To: Huang, Wei ; dev@dpdk.org; Xu, Rosen ; Zhang, Qi Z Cc: sta...@dpdk.org; Zhang, Tianfei ; Ray Kinsella Subject: Re: [dpdk-stable] [PATCH v11 1/4] raw/ifpga: add f

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Kinsella, Ray
On 25/01/2021 09:25, Kinsella, Ray wrote: > > > On 23/01/2021 11:38, Thomas Monjalon wrote: >> 22/01/2021 23:24, Dmitry Kozlyuk: >>> On Fri, 22 Jan 2021 21:57:15 +0100, Thomas Monjalon wrote: 22/01/2021 21:31, Dmitry Kozlyuk: > On Wed, 20 Jan 2021 11:24:21 +0100, Thomas Monjalon wrote

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Dmitry Kozlyuk
On Mon, 25 Jan 2021 09:25:51 +, Kinsella, Ray wrote: > On 23/01/2021 11:38, Thomas Monjalon wrote: > > 22/01/2021 23:24, Dmitry Kozlyuk: > >> On Fri, 22 Jan 2021 21:57:15 +0100, Thomas Monjalon wrote: > >>> 22/01/2021 21:31, Dmitry Kozlyuk: > On Wed, 20 Jan 2021 11:24:21 +0100, Thoma

Re: [dpdk-dev] [PATCH v11 3/4] raw/ifpga: add OPAE API for OpenStack Cyborg

2021-01-25 Thread Ferruh Yigit
On 1/22/2021 2:43 AM, Huang, Wei wrote: -Original Message- From: Ferruh Yigit Sent: Friday, January 22, 2021 00:30 To: Huang, Wei ; dev@dpdk.org; Xu, Rosen ; Zhang, Qi Z Cc: sta...@dpdk.org; Zhang, Tianfei Subject: Re: [dpdk-dev] [PATCH v11 3/4] raw/ifpga: add OPAE API for OpenStac

Re: [dpdk-dev] [PATCH 0/4] net/mlx: fix secondary process bugs

2021-01-25 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Sunday, January 24, 2021 1:02 PM > To: Slava Ovsiienko ; Matan Azrad > > Cc: Raslan Darawsheh ; dev@dpdk.org > Subject: [PATCH 0/4] net/mlx: fix secondary process bugs > > This patch series fix several secondary process bugs. > > Su

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Kinsella, Ray
On 25/01/2021 10:05, Dmitry Kozlyuk wrote: > On Mon, 25 Jan 2021 09:25:51 +, Kinsella, Ray wrote: >> On 23/01/2021 11:38, Thomas Monjalon wrote: >>> 22/01/2021 23:24, Dmitry Kozlyuk: On Fri, 22 Jan 2021 21:57:15 +0100, Thomas Monjalon wrote: > 22/01/2021 21:31, Dmitry Kozlyuk:

Re: [dpdk-dev] [PATCH v10 2/3] build: use Python pmdinfogen

2021-01-25 Thread Thomas Monjalon
24/01/2021 21:51, Dmitry Kozlyuk: > --- a/devtools/libabigail.abignore > +++ b/devtools/libabigail.abignore > +; Ignore all changes in generated PMD information strings. > +[suppress_variable] > +name_regex = _pmd_info$ I will fix this rule as "name_regexp" so it works.

Re: [dpdk-dev] [PATCH v1 3/3] ring: rename and refactor ring library

2021-01-25 Thread Ananyev, Konstantin
Hi Feifei, > > > For legacy modes, rename ring_generic/c11 to ring_generic/c11_pvt. > > > Furthermore, add new file ring_elem_pvt.h which includes > > > ring_do_eq/deq and ring element copy/delete APIs. > > > > > > For other modes, rename xx_c11_mem to xx_elem_pvt. Move all private > > > APIs in

Re: [dpdk-dev] [PATCH v1 3/3] ring: rename and refactor ring library

2021-01-25 Thread Ananyev, Konstantin
> > Hi Feifei, > > > > > For legacy modes, rename ring_generic/c11 to ring_generic/c11_pvt. > > > > Furthermore, add new file ring_elem_pvt.h which includes > > > > ring_do_eq/deq and ring element copy/delete APIs. > > > > > > > > For other modes, rename xx_c11_mem to xx_elem_pvt. Move all priv

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread David Marchand
On Mon, Jan 25, 2021 at 11:01 AM Kinsella, Ray wrote: > > > > On 25/01/2021 09:25, Kinsella, Ray wrote: > > > > > > On 23/01/2021 11:38, Thomas Monjalon wrote: > >> 22/01/2021 23:24, Dmitry Kozlyuk: > >>> On Fri, 22 Jan 2021 21:57:15 +0100, Thomas Monjalon wrote: > 22/01/2021 21:31, Dmitry Ko

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Dmitry Kozlyuk
On Mon, 25 Jan 2021 10:11:07 +, Kinsella, Ray wrote: > On 25/01/2021 10:05, Dmitry Kozlyuk wrote: > > On Mon, 25 Jan 2021 09:25:51 +, Kinsella, Ray wrote: > >> On 23/01/2021 11:38, Thomas Monjalon wrote: > >>> 22/01/2021 23:24, Dmitry Kozlyuk: > On Fri, 22 Jan 2021 21:57:15 +01

Re: [dpdk-dev] [dpdk-stable] [PATCH v11 1/4] raw/ifpga: add fpga rsu function

2021-01-25 Thread Xu, Rosen
Hi, > -Original Message- > From: Ferruh Yigit > Sent: Monday, January 25, 2021 18:01 > To: Huang, Wei ; dev@dpdk.org; Xu, Rosen > ; Zhang, Qi Z > Cc: sta...@dpdk.org; Zhang, Tianfei ; Ray Kinsella > > Subject: Re: [dpdk-stable] [PATCH v11 1/4] raw/ifpga: add fpga rsu function > > On 1/

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Kinsella, Ray
On 25/01/2021 10:29, David Marchand wrote: > On Mon, Jan 25, 2021 at 11:01 AM Kinsella, Ray wrote: >> >> >> >> On 25/01/2021 09:25, Kinsella, Ray wrote: >>> >>> >>> On 23/01/2021 11:38, Thomas Monjalon wrote: 22/01/2021 23:24, Dmitry Kozlyuk: > On Fri, 22 Jan 2021 21:57:15 +0100, Thoma

Re: [dpdk-dev] [PATCH 1/1] ethdev: fix handling of close failure

2021-01-25 Thread Burakov, Anatoly
On 22-Jan-21 5:58 PM, Thomas Monjalon wrote: If a failure happens when closing a port, it was unnecessarily failing again in the function eth_err(), because of a check against HW removal cause. Indeed there is a big chance the port is released at this point. Given the port is in the middle (or at

Re: [dpdk-dev] [PATCH v2 01/44] bus/vdev: add helper to get vdev from eth dev

2021-01-25 Thread Maxime Coquelin
On 1/20/21 1:56 AM, Thomas Monjalon wrote: > 19/01/2021 22:24, Maxime Coquelin: >> This patch adds an helper macro to get the rte_vdev_device >> pointer from a rte_eth_dev pointer. >> >> This is similar to RTE_ETH_DEV_TO_PCI(). > [...] >> --- a/drivers/bus/vdev/rte_bus_vdev.h >> +++ b/drivers/bu

Re: [dpdk-dev] [PATCH v8 2/3] build: use Python pmdinfogen

2021-01-25 Thread Thomas Monjalon
25/01/2021 11:46, Kinsella, Ray: > On 25/01/2021 10:29, David Marchand wrote: > > The symbol itself can be hidden from the ABeyes. > > It is only a placeholder for the PMD_INFO_STRING= string used by > > usertools/dpdk-pmdinfo.py and maybe some other parsing tool. > > > > I guess a static symbol w

Re: [dpdk-dev] [PATCH v2 01/44] bus/vdev: add helper to get vdev from eth dev

2021-01-25 Thread Thomas Monjalon
25/01/2021 11:53, Maxime Coquelin: > > On 1/20/21 1:56 AM, Thomas Monjalon wrote: > > 19/01/2021 22:24, Maxime Coquelin: > >> This patch adds an helper macro to get the rte_vdev_device > >> pointer from a rte_eth_dev pointer. > >> > >> This is similar to RTE_ETH_DEV_TO_PCI(). > > [...] > >> --- a/

Re: [dpdk-dev] [PATCH v4 2/5] examples/multi_process: cleanup bus objects while terminating app

2021-01-25 Thread oulijun
在 2020/10/18 17:25, David Marchand 写道: On Thu, Oct 8, 2020 at 5:31 PM wrote: From: Rohit Raj Certain bus objects may need to be closed and re-acquired while terminating and rerunning the client application. Hence a signal handler is required to catch the termination of the App and hence c

[dpdk-dev] [PATCH v1] net/iavf: adjust the VLAN failure handling

2021-01-25 Thread Haiyue Wang
Change the fatal returning to print the error message only, so that the VF device can continue to be configured. Fixes: 1c301e8c3cff ("net/iavf: support new VLAN capabilities") Signed-off-by: Haiyue Wang --- drivers/net/iavf/iavf_ethdev.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-)

Re: [dpdk-dev] [PATCH v4 02/22] app/testpmd: fix max rx packet length for VLAN packets

2021-01-25 Thread Ferruh Yigit
On 1/21/2021 3:27 PM, Lance Richardson wrote: On Mon, Jan 18, 2021 at 2:08 AM Steve Yang wrote: When the max rx packet length is smaller than the sum of mtu size and ether overhead size, it should be enlarged, otherwise the VLAN packets will be dropped. Removed the rx_offloads assignment for

Re: [dpdk-dev] [PATCH v3 01/22] ethdev: fix MTU size exceeds max rx packet length

2021-01-25 Thread Ferruh Yigit
On 1/19/2021 8:46 AM, oulijun wrote: 在 2021/1/18 18:42, Ferruh Yigit 写道: On 1/15/2021 10:44 AM, oulijun wrote: Hi Steve This is a very good job! But I have some question and suggestions. Please check it. 在 2021/1/14 17:45, Steve Yang 写道: Ethdev is using default Ethernet overhead to decide i

Re: [dpdk-dev] [PATCH v2 19/44] net/virtio: move features definition to generic header

2021-01-25 Thread Maxime Coquelin
On 1/21/21 7:47 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [dpdk-stable] [PATCH 1/1] ethdev: fix handling of close failure

2021-01-25 Thread Thomas Monjalon
25/01/2021 10:13, Andrew Rybchenko: > On 1/22/21 8:58 PM, Thomas Monjalon wrote: > > If a failure happens when closing a port, > > it was unnecessarily failing again in the function eth_err(), > > because of a check against HW removal cause. > > Indeed there is a big chance the port is released at

Re: [dpdk-dev] [PATCH v3 1/3] ethdev: fix MTU doesn't update when jumbo frame disabled

2021-01-25 Thread Ferruh Yigit
On 1/25/2021 9:49 AM, Yang, SteveX wrote: Hi Huisong, Thanks for your review. The validity of the pair should be checked from application layer (e.g.: testpmd), and the RTE layer should keep open enough to adapt the high-layer requirement. I’m not sure if exists some applications/NICs that

Re: [dpdk-dev] [dpdk-stable] [PATCH 1/1] ethdev: fix handling of close failure

2021-01-25 Thread Thomas Monjalon
25/01/2021 13:37, Thomas Monjalon: > 25/01/2021 10:13, Andrew Rybchenko: > > On 1/22/21 8:58 PM, Thomas Monjalon wrote: > > > If a failure happens when closing a port, > > > it was unnecessarily failing again in the function eth_err(), > > > because of a check against HW removal cause. > > > Indeed

Re: [dpdk-dev] [PATCH v2 09/44] net/virtio: move MSIX detection to PCI ethdev

2021-01-25 Thread Maxime Coquelin
On 1/21/21 8:12 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [PATCH v4 1/2] ethdev: fix MTU doesn't update when jumbo frame disabled

2021-01-25 Thread Ferruh Yigit
On 1/25/2021 8:32 AM, Steve Yang wrote: The MTU value should be updated to 'max_rx_pkt_len - overhead' no matter if the JUMBO FRAME offload enabled. If not update this MTU, use will get the wrong MTU info via some command. E.g.: 'show port info all' in testpmd tool. Actually, the 'max_rx_pkt_len

Re: [dpdk-dev] [PATCH] net/iavf: fix symmetric rule creating

2021-01-25 Thread Zhang, Qi Z
> -Original Message- > From: Xing, Beilei > Sent: Friday, January 22, 2021 12:05 PM > To: Ding, Xuan ; Zhang, Qi Z ; > Wu, Jingjing > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: RE: [PATCH] net/iavf: fix symmetric rule creating > > > > > -Original Message- > > From: Ding, X

Re: [dpdk-dev] [PATCH] net/iavf: fix port VLAN cfg err for AVF with SVM

2021-01-25 Thread Zhang, Qi Z
> -Original Message- > From: Wang, Haiyue > Sent: Friday, January 22, 2021 2:12 PM > To: Guo, Junfeng ; Zhang, Qi Z > ; Wu, Jingjing ; Xing, Beilei > > Cc: dev@dpdk.org; Zhang, Yuying > Subject: RE: [PATCH] net/iavf: fix port VLAN cfg err for AVF with SVM > > > -Original Message-

Re: [dpdk-dev] [PATCH v10 0/3] pmdinfogen: rewrite in Python

2021-01-25 Thread Thomas Monjalon
> Dmitry Kozlyuk (3): > pmdinfogen: add Python implementation > build: use Python pmdinfogen > pmdinfogen: remove C implementation Applied, thanks. Reminder: it is adding a NEW DEPENDENCY on pyelftools, as highlighted already in CI and maintainers meetings: http://mails.dpdk.org/arc

[dpdk-dev] [PATCH v3 1/4] eal: add missing include to mcslock

2021-01-25 Thread Bruce Richardson
Include 'rte_branch_prediction.h' to get the likely/unlikely macro definitions. Fixes: 2173fb61 ("mcslock: add MCS queued lock implementation") Cc: sta...@dpdk.org Signed-off-by: Bruce Richardson --- lib/librte_eal/include/generic/rte_mcslock.h | 1 + 1 file changed, 1 insertion(+) diff --

[dpdk-dev] [PATCH v3 2/4] build: separate out headers for include checking

2021-01-25 Thread Bruce Richardson
For some libraries, there may be some header files which are not for direct inclusion, but rather are to be included via other header files. To allow later checking of these files for missing includes, we separate out the indirect include files from the direct ones. Signed-off-by: Bruce Richardson

[dpdk-dev] [PATCH v3 0/4] add checking of header includes

2021-01-25 Thread Bruce Richardson
As a general principle, each header file should include any other headers it needs to provide data type definitions or macros. For example, any header using the uintX_t types in structures or function prototypes should include "stdint.h" to provide those type definitions. In practice, while many,

[dpdk-dev] [PATCH v3 3/4] buildtools/chkincs: add app to verify header includes

2021-01-25 Thread Bruce Richardson
To verify that all DPDK headers are ok for inclusion directly in a C file, and are not missing any other pre-requisite headers, we can auto-generate for each header an empty C file that includes that header. Compiling these files will throw errors if any header has unmet dependencies. To ensure on

[dpdk-dev] [PATCH v3 4/4] devtools: remove check-includes script

2021-01-25 Thread Bruce Richardson
The check-includes script allowed checking header files in a given directory to ensure that each header compiled alone without requiring any other header inclusions. With header checking now being done by the chkincs app in the build system this script can be removed. Signed-off-by: Bruce Richard

Re: [dpdk-dev] [PATCH v3 0/3] AVX512 vPMD on i40e

2021-01-25 Thread David Marchand
On Thu, Jan 21, 2021 at 6:02 AM Kadam, Pallavi wrote: > On 1/20/2021 11:21 PM, Ferruh Yigit wrote: > > And for the mingw, I have same result with Ali, I can reproduce with (Fedora > MinGW 9.2.1-6.fc32). > > But different from the CI, I am getting the error [1] for all following files: > rte_rando

Re: [dpdk-dev] [PATCH v4 2/2] app/testpmd: fix max-pkt-len option invalid

2021-01-25 Thread Ferruh Yigit
On 1/25/2021 8:32 AM, Steve Yang wrote: Moved the setting of 'DEV_RX_OFFLOAD_JUMBO_FRAME' from 'cmd_config_max_pkt_len_parsed()' to 'init_config()' caused fail the case where 'max_rx_pkt_len' is changed from the command line via "port config all max-pkt-len". The 'init_config()' function is only

Re: [dpdk-dev] [PATCH v2 36/44] net/virtio: move Vhost-user reqs to Vhost-user backend

2021-01-25 Thread Maxime Coquelin
On 1/21/21 9:56 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [PATCH v2 01/44] bus/vdev: add helper to get vdev from eth dev

2021-01-25 Thread Maxime Coquelin
On 1/21/21 9:58 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:24 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

[dpdk-dev] [PATCH v2 0/3] support SSL/TLS way of cipher-auth operations

2021-01-25 Thread Tejasree Kondoj
This series adds SSL/TLS way of cipher-auth operations support i.e. auth generation followed by encryption and decryption followed by auth verify in OCTEON TX, OCTEON TX2 PMDs and sample unit test application. It also adds feature flag for SSL/TLS order in cryptodev library so that SSL test cases a

[dpdk-dev] [PATCH v2 1/3] cryptodev: add feature flag for SSL/TLS order

2021-01-25 Thread Tejasree Kondoj
Added device feature flag for SSL/TLS way of cipher-auth operations support i.e. auth generation followed by encryption and decryption followed by auth verify so that SSL/TLS tests are skipped if the device doesn't support the feature. Signed-off-by: Tejasree Kondoj --- doc/guides/cryptodevs/fea

[dpdk-dev] [PATCH v2 2/3] common/cpt: add support for SSL/TLS way of cipher-auth operations

2021-01-25 Thread Tejasree Kondoj
Adding support for SSL/TLS way of cipher-auth operations order - auth generation followed by encryption - decryption followed by auth verify Signed-off-by: Tejasree Kondoj --- doc/guides/cryptodevs/features/octeontx.ini | 1 + doc/guides/cryptodevs/features/octeontx2.ini | 1 + doc/

[dpdk-dev] [PATCH v2 3/3] test/crypto: add support for SSL/TLS way of cipher-auth operations

2021-01-25 Thread Tejasree Kondoj
Adding support for SSL/TLS way of cipher-auth operations order - auth generation followed by encryption - decryption followed by auth verify Signed-off-by: Tejasree Kondoj --- app/test/test_cryptodev_aes_test_vectors.h | 589 + app/test/test_cryptodev_blockcipher.c

Re: [dpdk-dev] [PATCH v2 27/44] net/virtio: add Virtio-user features ops

2021-01-25 Thread Maxime Coquelin
On 1/22/21 8:25 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [PATCH v2 29/44] net/virtio: add Virtio-user memory tables ops

2021-01-25 Thread Maxime Coquelin
On 1/22/21 8:34 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [PATCH v15 09/12] build: disable drivers in Arm builds

2021-01-25 Thread Honnappa Nagarahalli
> > 22/01/2021 10:07, Jerin Jacob: > > On Fri, Jan 22, 2021 at 2:28 PM Thomas Monjalon > wrote: > > > 22/01/2021 09:39, Juraj Linkeš: > > > > > > > > disabled drivers, similarly how the command line option > > > > > > > > works and remove unneeded driver options ported from the > > > > > > > >

Re: [dpdk-dev] [PATCH v2 41/44] net/virtio: move Vhost-kernel data to its backend

2021-01-25 Thread Maxime Coquelin
On 1/22/21 9:55 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Subj

Re: [dpdk-dev] [PATCH v2 42/44] net/virtio: move Vhost-vDPA data to its backend

2021-01-25 Thread Maxime Coquelin
On 1/22/21 10:06 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Sub

Re: [dpdk-dev] [PATCH v2 43/44] net/virtio: improve Vhost-user error logging

2021-01-25 Thread Maxime Coquelin
On 1/22/21 10:11 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Sub

[dpdk-dev] [PATCH v2] ci: catch coredumps

2021-01-25 Thread David Marchand
Parts of the unit tests code rely on forked/secondary processes (expectedly) failing. A crash in those situations could be missed so add a check on coredumps presence after unit tests have run. When unit tests fail, it can also help checking for coredumps as it could give more insights on what happ

[dpdk-dev] [PATCH] net/nfp: read chip model from PluDevice register

2021-01-25 Thread Heinrich Kuhn
For newer smartNIC NVRAM versions the chip model should be read from the PluDevice register as it provides the authoritative chip model/revision. This method of reading the chip model is backwards compatible with legacy NVRAM versions too. Since the model number is purely used for reporting purpos

Re: [dpdk-dev] [PATCH v15 09/12] build: disable drivers in Arm builds

2021-01-25 Thread Thomas Monjalon
25/01/2021 15:58, Honnappa Nagarahalli: > > 22/01/2021 10:07, Jerin Jacob: > > > On Fri, Jan 22, 2021 at 2:28 PM Thomas Monjalon > > wrote: > > > > 22/01/2021 09:39, Juraj Linkeš: > > > > > > > > > disabled drivers, similarly how the command line option > > > > > > > > > works and remove unneeded

Re: [dpdk-dev] [PATCH v3 0/4] add checking of header includes

2021-01-25 Thread David Marchand
On Mon, Jan 25, 2021 at 3:11 PM Bruce Richardson wrote: > > As a general principle, each header file should include any other > headers it needs to provide data type definitions or macros. For > example, any header using the uintX_t types in structures or function > prototypes should include "stdi

Re: [dpdk-dev] [PATCH v2 3/4] buildtools: support object file extraction for Windows

2021-01-25 Thread Thomas Monjalon
08/01/2021 03:47, Dmitry Kozlyuk: > --- /dev/null > +++ b/buildtools/gen-pmdinfo-cfile.py [...] > +with tempfile.TemporaryDirectory() as temp: > +proc = subprocess.run( > +# Don't use "ar p", because its output is corrupted on Windows. > +[ar, "xv", os.path.abspath(archive)], ca

Re: [dpdk-dev] [PATCH v2 0/4] pmdinfogen: support Windows

2021-01-25 Thread Thomas Monjalon
08/01/2021 03:47, Dmitry Kozlyuk: > Dmitry Kozlyuk (4): > pmdinfogen: support COFF > pmdinfogen: allow multiple input files > buildtools: support object file extraction for Windows > build: enable pmdinfogen for Windows Applied, thanks. Please follow-up on temporary file location.

Re: [dpdk-dev] [PATCH v10 0/3] pmdinfogen: rewrite in Python

2021-01-25 Thread Brandon Lo
Hi Thomas, We have updated all UNH-IOL environments to include pyelftools. Thanks, Brandon On Mon, Jan 25, 2021 at 8:13 AM Thomas Monjalon wrote: > > > Dmitry Kozlyuk (3): > > pmdinfogen: add Python implementation > > build: use Python pmdinfogen > > pmdinfogen: remove C implementation >

Re: [dpdk-dev] [PATCH v15 09/12] build: disable drivers in Arm builds

2021-01-25 Thread Jerin Jacob
On Mon, Jan 25, 2021 at 8:28 PM Honnappa Nagarahalli wrote: > > > > > > > 22/01/2021 10:07, Jerin Jacob: > > > On Fri, Jan 22, 2021 at 2:28 PM Thomas Monjalon > > wrote: > > > > 22/01/2021 09:39, Juraj Linkeš: > > > > > > > > > disabled drivers, similarly how the command line option > > > > > >

Re: [dpdk-dev] [PATCH v2 44/44] net/virtio: handle Virtio-user setup failure properly

2021-01-25 Thread Maxime Coquelin
On 1/22/21 10:24 AM, Xia, Chenbo wrote: > Hi Maxime, > >> -Original Message- >> From: Maxime Coquelin >> Sent: Wednesday, January 20, 2021 5:25 AM >> To: dev@dpdk.org; Xia, Chenbo ; olivier.m...@6wind.com; >> amore...@redhat.com; david.march...@redhat.com >> Cc: Maxime Coquelin >> Sub

Re: [dpdk-dev] [PATCH v2 1/3] cryptodev: add feature flag for SSL/TLS order

2021-01-25 Thread Akhil Goyal
Hi Tejasree, > Subject: [PATCH v2 1/3] cryptodev: add feature flag for SSL/TLS order > > Added device feature flag for SSL/TLS way of cipher-auth > operations support i.e. auth generation followed by encryption > and decryption followed by auth verify so that SSL/TLS tests > are skipped if the de

Re: [dpdk-dev] [PATCH] build: force pkg-config for dependency detection

2021-01-25 Thread Martin Špinler
libnfb and libsze2 works OK. The libnfb is provided by netcope-common package, so it is possible to leave it like this. Tested-by: Martin Spinler

Re: [dpdk-dev] [PATCH 0/2] support SSL/TLS way of cipher-auth operations

2021-01-25 Thread Akhil Goyal
Hi Tejasree, Sorry I missed this mail earlier. I believe it is same as Digest encrypted case. > -Original Message- > From: Tejasree Kondoj > Sent: Thursday, January 21, 2021 12:57 PM > To: Tejasree Kondoj ; Akhil Goyal > ; Radu Nicolau > Cc: Anoob Joseph ; Ankur Dwivedi > ; dev@dpdk.org

Re: [dpdk-dev] [dpdklab] RE: [dpdk-stable] [PATCH v4] mbuf: fix reset on mbuf free

2021-01-25 Thread Brandon Lo
Hi, This seems like a good task for us to do. I will see what it would take in order to convert the difference into a decimal-formatted percentage. I have put this into bugzilla to keep track of this issue: https://bugs.dpdk.org/show_bug.cgi?id=626 Thanks, Brandon On Sat, Jan 23, 2021 at 3:57 AM

[dpdk-dev] [PATCH] common/mlx5: add GTP TEID modification field ID

2021-01-25 Thread Alexander Kozyrev
Define hardware ID for GTP TEID modification. This value can be used later in the RTE modify field API. Signed-off-by: Alexander Kozyrev --- drivers/common/mlx5/mlx5_prm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/common/mlx5/mlx5_prm.h b/drivers/common/mlx5/mlx5_prm.h index fe

[dpdk-dev] [PATCH] bus/pci: nvme on Windows requires class id and bus

2021-01-25 Thread Nick Connolly
Attaching to an NVMe disk on Windows using SPDK requires the PCI class ID and device.bus fields. Decode the class ID from the PCI device info strings if it is present and set device.bus. Signed-off-by: Nick Connolly --- drivers/bus/pci/windows/pci.c | 10 +- 1 file changed, 9 insertions(

[dpdk-dev] [PATCH v3 00/44] net/virtio: Virtio PMD rework

2021-01-25 Thread Maxime Coquelin
Thanks Chenbo, for reviewing the v2. All the comments you made should be taken into account. This series significantly rework Virtio PMD to improve the Virtio-user PMD and its backends integration. First part of the series removes the dependency of Virtio-user ethdev on Virtio PCI, by creating ge

[dpdk-dev] [PATCH v3 01/44] bus/vdev: add helper to get vdev from ethdev

2021-01-25 Thread Maxime Coquelin
This patch adds an helper macro to get the rte_vdev_device pointer from a rte_eth_dev pointer. This is similar to RTE_ETH_DEV_TO_PCI(). Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/bus/vdev/rte_bus_vdev.h | 2 ++ 1 file changed, 2 insertions(+

[dpdk-dev] [PATCH v3 02/44] bus/vdev: add driver IOVA VA mode requirement

2021-01-25 Thread Maxime Coquelin
This patch adds driver flag in vdev bus driver so that vdev drivers can require VA IOVA mode to be used, which for example the case of Virtio-user PMD. The patch implements the .get_iommu_class() callback, that is called before devices probing to determine the IOVA mode to be used. It also adds a

[dpdk-dev] [PATCH v3 03/44] net/virtio: fix getting old status on reconnect

2021-01-25 Thread Maxime Coquelin
This patch fixes getting reset status from the restarted vhost-user backend in case of reconnection, instead of the status at the time of the disconnection. This issue was not spotted earlier because Vhost-user protocol status feature was disabled in server mode. Fixes: 47235f16505f ("net/virtio-

[dpdk-dev] [PATCH v3 04/44] net/virtio: introduce Virtio bus type

2021-01-25 Thread Maxime Coquelin
This patch is preliminary work for introducing a bus layer in Virtio PMD, in order to improve Virtio-user integration. A new bus type is added to provide a unified way to distinguish which bus type is used (PCI modern, PCI legacy or Virtio-user). Signed-off-by: Maxime Coquelin Reviewed-by: Chenb

[dpdk-dev] [PATCH v3 05/44] net/virtio: refactor virtio-user device

2021-01-25 Thread Maxime Coquelin
This patch moves the virtio_hw structure into the virtio_user_dev structure, with the goal of making virtio_hw bus-agnostic. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio_ethdev.c| 2 +- drivers/net/virtio/virtio_pci.h | 1 - ..

[dpdk-dev] [PATCH v3 06/44] net/virtio: introduce PCI device metadata

2021-01-25 Thread Maxime Coquelin
This patch initiate refactoring of Virtio PCI, by introducing a new device structure for PCI-specific metadata. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio_ethdev.c | 2 +- drivers/net/virtio/virtio_pci.c| 2 ++ drivers/net/virtio/virtio_pci.h| 5

[dpdk-dev] [PATCH v3 07/44] net/virtio: move PCI device init in dedicated file

2021-01-25 Thread Maxime Coquelin
This patch moves the PCI Ethernet device registration bits in a dedicated patch. In following patches, more code will be moved there, with the goal of making virtio_ethdev.c truly bus-agnostic. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/meson.build |

[dpdk-dev] [PATCH v3 09/44] net/virtio: move MSIX detection to PCI ethdev

2021-01-25 Thread Maxime Coquelin
This patch introduces a new callback to notify the bus driver some interrupt related operation was done. This is used by Virtio PCI driver to check msix status. Signed-off-by: Maxime Coquelin --- drivers/net/virtio/virtio_ethdev.c | 12 +-- drivers/net/virtio/virtio_pci.c| 120

[dpdk-dev] [PATCH v3 08/44] net/virtio: move PCI specific dev init to PCI ethdev init

2021-01-25 Thread Maxime Coquelin
This patch moves the PCI specific initialization from eth_virtio_dev_init() to eth_virtio_pci_init(). Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_ethdev.c | 63 +-- drivers/net/virtio/virtio_pci_ethdev

[dpdk-dev] [PATCH v3 10/44] net/virtio: force IOVA as VA mode for Virtio-user

2021-01-25 Thread Maxime Coquelin
At least Vhost-user backend of Virtio-user PMD requires IOVA as VA mode. Until now, it was implemented as a hack by forcing to use mbuf's buf_addr field instead of buf_iova. This patch removes all this logic and just fails probing if IOVA as VA mode is not selected. It simplifies the code overall,

[dpdk-dev] [PATCH v3 11/44] net/virtio: store PCI type in Virtio device metadata

2021-01-25 Thread Maxime Coquelin
Going further in making the Virtio ethdev layer bus agnostic, this patch adds a boolean in the Virtio PCI device metadata. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_pci.c| 18 +++--- drivers/net/virtio/v

[dpdk-dev] [PATCH v3 12/44] net/virtio: add callback for device closing

2021-01-25 Thread Maxime Coquelin
This patch introduces a new callback for device closing, making virtio_dev_close() bus-agnostic. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/meson.build | 2 -- drivers/net/virtio/virtio_ethdev.c | 13 + d

[dpdk-dev] [PATCH v3 13/44] net/virtio: validate features at bus level

2021-01-25 Thread Maxime Coquelin
This patch provides a new callback for the bus type to validate negotiated features are compatible with it. Only user for now is PCI modern bus type, which implies that the device supports Virtio 1.0+. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio_ethdev.

[dpdk-dev] [PATCH v3 14/44] net/virtio: remove bus type enum

2021-01-25 Thread Maxime Coquelin
Bus type awareness at the generic ethdev level is no more needed as previous patches have made it bus-agnostic. This patch removes it from struct virtio_hw. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_ethdev.c | 18

[dpdk-dev] [PATCH v3 15/44] net/virtio: move PCI-specific fields to PCI device

2021-01-25 Thread Maxime Coquelin
This patch moves the fields from virtio_hw structure that are PCI-specific to virtio_pci_dev_struct. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_pci.c | 139 ++-- drivers/net/virtio/virtio_pci.h |

[dpdk-dev] [PATCH v3 16/44] net/virtio: pack virtio HW struct

2021-01-25 Thread Maxime Coquelin
This patch improves the virtio_hw struct packing, going from 88 down to 80 bytes with a 6 bytes hole in the end of the first cacheline. Fields only used in the slow path are placed in the end, so that hot path only uses the first cacheline. The patch also changes booleans fields to uint8_t type, a

[dpdk-dev] [PATCH v3 17/44] net/virtio: move legacy IO to Virtio PCI

2021-01-25 Thread Maxime Coquelin
This patch moves Virtio PCI legacy IO handling to virtio_pci.c. Two functions are created so that virtio_pci_ethdev does not have to care about it. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_pci.c| 28 +++

[dpdk-dev] [PATCH v3 18/44] net/virtio: introduce generic virtio header

2021-01-25 Thread Maxime Coquelin
This patch moves virtio_hw and virtio callbacks into a generic virtio header, now that they have been curated from PCI references. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio.h | 74 ++ drivers/net/virtio/virtio_ethdev.c

[dpdk-dev] [PATCH v3 19/44] net/virtio: move features definition to generic header

2021-01-25 Thread Maxime Coquelin
This patch moves all the Virtio definition to the generic header. It also renames some helpers to no more reference PCI. Signed-off-by: Maxime Coquelin --- drivers/net/virtio/meson.build| 3 +- drivers/net/virtio/virtio.c | 22 drivers/net/virtio/virtio.

[dpdk-dev] [PATCH v3 20/44] net/virtio: move virtqueue defines in generic header

2021-01-25 Thread Maxime Coquelin
This patch moves the virtqueues defines from PCI header to the generic one. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio.h| 18 ++ drivers/net/virtio/virtio_ethdev.h | 4 +++- drivers/net/virtio/virtio_pci.

[dpdk-dev] [PATCH v3 22/44] net/virtio: make interrupt handling more generic

2021-01-25 Thread Maxime Coquelin
This patch aims at isolating MSIX notion into PCI layer. Signed-off-by: Maxime Coquelin Reviewed-by: David Marchand --- drivers/net/virtio/virtio.c | 6 drivers/net/virtio/virtio.h | 11 +-- drivers/net/virtio/virtio_ethdev.c | 7 ++--- drivers/net/virtio

[dpdk-dev] [PATCH v3 21/44] net/virtio: move config definitions to generic header

2021-01-25 Thread Maxime Coquelin
This patch moves config and status definitions from the PCI header to the generic one. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio.c | 43 +++ drivers/net/virtio/virtio.h | 50 ++ drivers/net/vi

[dpdk-dev] [PATCH v3 24/44] net/virtio: remove last PCI refs in non-PCI code

2021-01-25 Thread Maxime Coquelin
This patch finalizes the bus isolation part of this refactoring. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio_ethdev.c | 21 +--- drivers/net/virtio/virtio_rxtx.c | 18 - d

[dpdk-dev] [PATCH v3 23/44] net/virtio: move vring alignment to generic header

2021-01-25 Thread Maxime Coquelin
This patch moves vring alignment define to the generic Virtio header. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia Reviewed-by: David Marchand --- drivers/net/virtio/virtio.h | 3 +++ drivers/net/virtio/virtio_ethdev.c | 10 +- drivers/net/virtio/virtio_pci.

[dpdk-dev] [PATCH v3 25/44] net/virtio: make Vhost-user request sender consistent

2021-01-25 Thread Maxime Coquelin
This patch makes vhost_user_write() consistent with vhost_user_read(), by passing a Vhost-user message pointer instead of a buffer pointer and its length, which is now calculated in the function. Signed-off-by: Maxime Coquelin Reviewed-by: Chenbo Xia --- drivers/net/virtio/virtio_user/vhost_use

  1   2   >