Re: [dpdk-dev] [dpdk-users] [DISCUSSION] code snippet documentation

2021-07-25 Thread Asaf Penso
Regards, Asaf Penso >-Original Message- >From: Ferruh Yigit >Sent: Friday, July 23, 2021 3:04 PM >To: Ajit Khaparde ; NBU-Contact-Thomas >Monjalon >Cc: Asaf Penso ; us...@dpdk.org; dpdk-dev >; David Marchand ; Bruce >Richardson ; Jerin Jacob Kollanukkaran >; Akhil Goyal ; Maxime Coquelin

Re: [dpdk-dev] [PATCH] net/iavf: fix tx thresh check issue

2021-07-25 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Xing, Beilei > Sent: Friday, July 23, 2021 10:43 AM > To: Li, Xiaoyun ; dev@dpdk.org; Wu, Jingjing > > Cc: sta...@dpdk.org > Subject: Re: [dpdk-dev] [PATCH] net/iavf: fix tx thresh check issue > > > > > -Original Message- > > Fro

Re: [dpdk-dev] [PATCH] net/iavf: fix virtual channel RSS command error handling

2021-07-25 Thread Zhang, Qi Z
> -Original Message- > From: dev On Behalf Of Alvin Zhang > Sent: Wednesday, July 21, 2021 2:32 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Zhang, AlvinX ; sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] net/iavf: fix virtual channel RSS command error > handling > > Kernel PF may not resp

Re: [dpdk-dev] Question about hardware error handling policy

2021-07-25 Thread Matan Azrad
Hi From: fengchengwen: > On 2021/7/22 23:46, Thomas Monjalon wrote: > > 22/07/2021 15:50, fengchengwen: > >> Hi, all > >> > >> I notice ethdev support dev_reset ops, which could be used to > >> recover from errors, and only 13+ drivers support this function. > >> And also there is event fo

Re: [dpdk-dev] [PATCH v1 0/8] gro: support TCP/IPv6 and UDP/IPv6 for VLAN and VXLAN

2021-07-25 Thread Hu, Jiayu
> -Original Message- > From: Thomas Monjalon > Sent: Saturday, July 24, 2021 4:49 PM > To: yang_y...@163.com; Hu, Jiayu > Cc: dev@dpdk.org; Ananyev, Konstantin ; > yangy...@inspur.com > Subject: Re: [dpdk-dev] [PATCH v1 0/8] gro: support TCP/IPv6 and UDP/IPv6 > for VLAN and VXLAN > >

Re: [dpdk-dev] [PATCH v16] app/testpmd: support multi-process

2021-07-25 Thread Min Hu (Connor)
在 2021/7/24 19:45, Thomas Monjalon 写道: 10/07/2021 05:50, Min Hu (Connor): This patch adds multi-process support for testpmd. For example the following commands run two testpmd processes: * the primary process: ./dpdk-testpmd --proc-type=auto -l 0-1 -- -i \ --rxq=4 --txq=4 --num-procs=

Re: [dpdk-dev] [PATCH 3/4] doc: update bonding mode 8023ad info

2021-07-25 Thread Min Hu (Connor)
Acked-by: Min Hu (Connor) 在 2021/7/21 23:58, Martin Havlik 写道: Included info on dedicated queues and added related note about issue on mlx5. Signed-off-by: Martin Havlik --- doc/guides/prog_guide/link_bonding_poll_mode_drv_lib.rst | 8 1 file changed, 8 insertions(+) diff --git a

[dpdk-dev] [PATCH] crypto/cnxk: add null check for rsa param key data

2021-07-25 Thread kirankumark
From: Kiran Kumar K Coverity is reporting FORWARD_NULL issue when qt data is NULL. Adding NULL check for this. Coverity issue: 371893 Fixes: 5a3513caeb455 ("crypto/cnxk: add asymmetric session ops") Signed-off-by: Kiran Kumar K --- drivers/crypto/cnxk/cnxk_ae.h | 6 +- 1 file changed, 5 i

[dpdk-dev] [PATCH 1/3] common/cnxk: add const values to ec groups

2021-07-25 Thread kirankumark
From: Kiran Kumar K New ucode expects const values A and B for asymmetric ECDSA messages. Adding roc support for this. Signed-off-by: Kiran Kumar K --- drivers/common/cnxk/roc_ae.c | 70 ++-- drivers/common/cnxk/roc_ae.h | 17 - 2 files changed, 84 inser

[dpdk-dev] [PATCH 3/3] common/cpt: update asym ECDSA messages in sync with ucode

2021-07-25 Thread kirankumark
From: Kiran Kumar K Adding changes to asymmetric ECDSA messages to align with the new ucode for octeontx2 device. Signed-off-by: Kiran Kumar K --- drivers/common/cpt/cpt_mcode_defines.h | 17 +- drivers/common/cpt/cpt_ucode_asym.h| 267 +++-- 2 files changed, 176 inser

[dpdk-dev] [PATCH 2/3] crypto/cnxk: update asym ECDSA messages in sync with ucode

2021-07-25 Thread kirankumark
From: Kiran Kumar K Adding changes to asymmetric ECDSA messages to align with the new ucode for cnxk device. Signed-off-by: Kiran Kumar K --- drivers/crypto/cnxk/cnxk_ae.h| 24 drivers/crypto/cnxk/cnxk_cryptodev.h | 2 +- 2 files changed, 21 insertions(+), 5 d

Re: [dpdk-dev] [PATCH] doc: announce removal of ABIs in PCI bus driver

2021-07-25 Thread Xia, Chenbo
Hi, Ferruh > -Original Message- > From: Yigit, Ferruh > Sent: Friday, July 23, 2021 8:47 PM > To: Xia, Chenbo ; dev@dpdk.org; tho...@monjalon.net > Cc: m...@ashroe.eu; nhor...@tuxdriver.com; david.march...@redhat.com > Subject: Re: [dpdk-dev] [PATCH] doc: announce removal of ABIs in PCI b

Re: [dpdk-dev] Question about hardware error handling policy

2021-07-25 Thread fengchengwen
Hi On 2021/7/25 23:12, Matan Azrad wrote: > Hi > > From: fengchengwen: >> On 2021/7/22 23:46, Thomas Monjalon wrote: >>> 22/07/2021 15:50, fengchengwen: Hi, all I notice ethdev support dev_reset ops, which could be used to recover from errors, and only 13+ drivers support

Re: [dpdk-dev] [PATCH v16] app/testpmd: support multi-process

2021-07-25 Thread Thomas Monjalon
26/07/2021 02:26, Min Hu (Connor): > 在 2021/7/24 19:45, Thomas Monjalon 写道: > > 10/07/2021 05:50, Min Hu (Connor): > >> This patch adds multi-process support for testpmd. > >> For example the following commands run two testpmd > >> processes: > >> > >> * the primary process: > >> > >> ./dpdk-test

[dpdk-dev] [PATCH] ethdev: modify comment of INTR RESET event

2021-07-25 Thread Chengwen Feng
According to the definition of rte_eth_dev_reset(), the RTE_ETH_EVENT_INTR_RESET event could also use when PF resets. This patch modifies the comment of RTE_ETH_EVENT_INTR_RESET event, so that it could use in all resets. Signed-off-by: Chengwen Feng --- lib/ethdev/rte_ethdev.h | 3 +-- 1 file c

Re: [dpdk-dev] [PATCH v10] dmadev: introduce DMA device library

2021-07-25 Thread fengchengwen
Friendly ping. On 2021/7/20 20:46, Chengwen Feng wrote: > This patch introduce 'dmadevice' which is a generic type of DMA > device. > > The APIs of dmadev library exposes some generic operations which can > enable configuration and I/O with the DMA devices. > > Signed-off-by: Chengwen Feng > --