Re: [PATCH v1] ethdev: add indirect action async query

2022-11-17 Thread David Marchand
Hello, On Tue, Sep 20, 2022 at 9:12 AM Suanming Mou wrote: > @@ -2873,17 +2907,23 @@ port_queue_action_handle_destroy(portid_t port_id, > * of error. > */ > memset(&error, 0x99, sizeof(error)); > + job

[Bug 1127] net/i40e does not preserve RSS redirection table upon port stop/start

2022-11-17 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1127 Bug ID: 1127 Summary: net/i40e does not preserve RSS redirection table upon port stop/start Product: DPDK Version: 22.07 Hardware: All OS: All Status: U

RE: [PATCH v1] ethdev: add indirect action async query

2022-11-17 Thread Suanming Mou
Hi, > -Original Message- > From: David Marchand > Sent: Thursday, November 17, 2022 4:07 PM > To: Suanming Mou > Cc: Ori Kam ; Aman Singh ; > Yuying Zhang ; NBU-Contact-Thomas Monjalon > (EXTERNAL) ; Ferruh Yigit ; > Andrew Rybchenko ; Ray Kinsella > ; dev@dpdk.org > Subject: Re: [PATCH

Re: release candidate 22.11-rc3

2022-11-17 Thread David Marchand
On Tue, Nov 15, 2022 at 6:33 PM Thomas Monjalon wrote: > > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v22.11-rc3 > > There are 161 new patches in this snapshot. > > Release notes: > https://doc.dpdk.org/guides/rel_notes/release_22_11.html

Re: [PATCH v1] ethdev: add indirect action async query

2022-11-17 Thread David Marchand
On Thu, Nov 17, 2022 at 9:18 AM Suanming Mou wrote: > > Hi, > > > -Original Message- > > From: David Marchand > > Sent: Thursday, November 17, 2022 4:07 PM > > To: Suanming Mou > > Cc: Ori Kam ; Aman Singh ; > > Yuying Zhang ; NBU-Contact-Thomas Monjalon > > (EXTERNAL) ; Ferruh Yigit ; >

RE: [PATCH] net/idpf: fix port start

2022-11-17 Thread Peng, Yuan
Tested-by: Peng, Yuan > -Original Message- > From: Xing, Beilei > Sent: Thursday, November 17, 2022 11:08 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Peng, Yuan ; Xing, Beilei > > Subject: [PATCH] net/idpf: fix port start > > From: Beilei Xing > > Port can't start successfully if stop

[PATCH] net/nfp: fix issue of data len exceeds descriptor limitation

2022-11-17 Thread Chaoyong He
From: Long Wu If dma_len is larger than "NFDK_DESC_TX_DMA_LEN_HEAD", the value of dma_len bitwise and NFDK_DESC_TX_DMA_LEN_HEAD maybe less than packet head length. Fill maximum dma_len in first tx descriptor to make sure the whole head is included in the first descriptor. In addition, add some ex

[Bug 1128] [dpdk22.11-rc3]failed to start testpmd with the mbuf-size parameter

2022-11-17 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1128 Bug ID: 1128 Summary: [dpdk22.11-rc3]failed to start testpmd with the mbuf-size parameter Product: DPDK Version: 22.11 Hardware: x86 OS: Linux Status: U

Fwd: Regarding User Data in DPDK ACL Library.

2022-11-17 Thread venkatesh bs
-- Forwarded message - From: venkatesh bs Date: Wed, Nov 16, 2022 at 7:28 PM Subject: Regarding User Data in DPDK ACL Library. To: Hi DPDK Team, After the ACL match for highest priority DPDK Classification API returns User Data Which is as mentioned below in the document. 53.

RE: [PATCH] net/mlx5: fix GENEVE resource management

2022-11-17 Thread Raslan Darawsheh
Hi, > -Original Message- > From: Suanming Mou > Sent: Wednesday, November 16, 2022 11:37 AM > To: Matan Azrad ; Slava Ovsiienko > > Cc: dev@dpdk.org; Raslan Darawsheh > Subject: [PATCH] net/mlx5: fix GENEVE resource management > > The item translation split causes GENEVE TLV option res

RE: [PATCH v1] ethdev: add indirect action async query

2022-11-17 Thread Suanming Mou
Hi, > -Original Message- > From: David Marchand > Sent: Thursday, November 17, 2022 4:32 PM > To: Suanming Mou > Cc: Ori Kam ; Aman Singh ; > Yuying Zhang ; NBU-Contact-Thomas Monjalon > (EXTERNAL) ; Ferruh Yigit ; > Andrew Rybchenko ; Ray Kinsella > ; dev@dpdk.org > Subject: Re: [PATCH

RE: [PATCH v14 1/1] app/testpmd: support multiple mbuf pools per Rx queue

2022-11-17 Thread Jiang, YuX
Hi Hanumanth, We meet an issue on this patch, can you pls have a look quickly? https://bugs.dpdk.org/show_bug.cgi?id=1128 Best regards, Yu Jiang > -Original Message- > From: Hanumanth Pothula > Sent: Thursday, November 10, 2022 6:17 PM > To: Singh, Aman Deep ; Zhang, Yuying > > Cc: dev

RE: release candidate 22.11-rc3

2022-11-17 Thread Jiang, YuX
> -Original Message- > From: Thomas Monjalon > Sent: Wednesday, November 16, 2022 1:33 AM > To: annou...@dpdk.org > Subject: release candidate 22.11-rc3 > > A new DPDK release candidate is ready for testing: > https://git.dpdk.org/dpdk/tag/?id=v22.11-rc3 > > There are 161 new patches

[PATCH] app/testpmd: fix action destruction memory leak

2022-11-17 Thread Suanming Mou
In case action handle destroy fails, the job memory was not freed properly. This commit fixes the possible memory leak in the action handle destruction failed case. Fixes: c9dc03840873 ("ethdev: add indirect action async query") Signed-off-by: Suanming Mou --- app/test-pmd/config.c | 4 ++-- 1

RE: [PATCH] doc: avoid meson deprecation in setup

2022-11-17 Thread Ruifeng Wang
> -Original Message- > From: Stephen Hemminger > Sent: Wednesday, November 16, 2022 1:35 AM > To: dev@dpdk.org > Cc: Stephen Hemminger ; Ruifeng Wang > ; > Zhangfei Gao ; Bruce Richardson > ; > Elena Agostini ; Shepard Siegel > ; Ed > Czeck ; John Miller ; > Zyta Szpak > ; Liron Himi ;

[PATCH] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread beilei . xing
From: Beilei Xing There's core dump when launching l3fwd with 1 queue 1 core. It's because NULL pointer is used if fail to configure device. This patch removes incorrect check during device configuration, and checks NULL pointer when excuting VIRTCHNL2_OP_DEALLOC_VECTORS. Fixes: 549343c25db8 ("n

[PATCH] net/mlx5: fix push VLAN action mask iteration

2022-11-17 Thread Dariusz Sosnowski
Before this patch, during translation of OF_PUSH_VLAN actions iterator was moved forward to the position of OF_SET_VLAN_VID or OF_SET_VLAN_PCP, but masks iterator was not updated. As a result, the following actions were incorrectly translated, because iterators were not aligned. This patch fixes t

[PATCH v2] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread beilei . xing
From: Beilei Xing There's core dump when launching l3fwd with 1 queue 1 core. It's because NULL pointer is used if fail to configure device. This patch removes incorrect check during device configuration, and checks NULL pointer when executing VIRTCHNL2_OP_DEALLOC_VECTORS. Fixes: 549343c25db8 ("

[PATCH v1 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Hanumanth Pothula
Validate ethdev parameter 'max_rx_mempools' to know wheater device supports multi-mempool feature or not. Bugzilla ID: 1128 Signed-off-by: Hanumanth Pothula --- app/test-pmd/testpmd.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app/test-pmd/testpmd.c b/app/test-pm

RE: [PATCH v14 1/1] app/testpmd: support multiple mbuf pools per Rx queue

2022-11-17 Thread Hanumanth Reddy Pothula
Hi Yu Jiang, Please find the fix for below issue, https://patches.dpdk.org/project/dpdk/patch/20221117113047.3088461-1-hpoth...@marvell.com Verified changes locally, both with/without multi-mempool support. Regards, Hanumanth > -Original Message- > From: Jiang, YuX > Sent: Thursday, N

Re: [PATCH] app/testpmd: fix action destruction memory leak

2022-11-17 Thread David Marchand
On Thu, Nov 17, 2022 at 9:56 AM Suanming Mou wrote: > > In case action handle destroy fails, the job memory was not freed > properly. This commit fixes the possible memory leak in the action > handle destruction failed case. > > Fixes: c9dc03840873 ("ethdev: add indirect action async query") > Re

[dpdk-dev v6] doc: support IPsec Multi-buffer lib v1.3

2022-11-17 Thread Kai Ji
From: Pablo de Lara Updated AESNI MB and AESNI GCM, KASUMI, ZUC, SNOW3G and CHACHA20_POLY1305 PMD documentation guides with information about the latest Intel IPSec Multi-buffer library supported. Signed-off-by: Pablo de Lara Acked-by: Ciara Power Acked-by: Brian Dooley Signed-off-by: Kai Ji

[Bug 1129] net/mlx5: cannot transmit if Tx queue is setup with maximum number of descriptors

2022-11-17 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1129 Bug ID: 1129 Summary: net/mlx5: cannot transmit if Tx queue is setup with maximum number of descriptors Product: DPDK Version: 22.11 Hardware: All OS: All

[PATCH v2 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Hanumanth Pothula
Validate ethdev parameter 'max_rx_mempools' to know wheater device supports multi-mempool feature or not. Bugzilla ID: 1128 Signed-off-by: Hanumanth Pothula v2: - Rebased on tip of next-net/main --- app/test-pmd/testpmd.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git

Regarding User Data in DPDK ACL Library.

2022-11-17 Thread venkatesh bs
Hi DPDK Team, After the ACL match for highest priority DPDK Classification API returns User Data Which is as mentioned below in the document. 53. Packet Classification and Access Control — Data Plane Development Kit 22.11.0-rc2 documentation (dpdk.org) - *userdata*: A user-defined value. For

[PATCH 1/2] net/mlx5: fix port private max_lro_msg_size

2022-11-17 Thread Gregory Etelson
The PMD analyzes each Rx queue maximal LRO size and selects one that fits all queues to configure TIR LRO attribute. TIR LRO attribute is number of 256 bytes chunks that match the selected maximal LRO size. PMD used `priv->max_lro_msg_size` for selected maximal LRO size and number of TIR chunks.

[PATCH 2/2] doc: update MLX5 LRO limitation

2022-11-17 Thread Gregory Etelson
Maximal LRO message size must be multiply of 256. Otherwise, TCP payload may not fit into a single WQE. Cc: sta...@dpdk.org Signed-off-by: Gregory Etelson Acked-by: Matan Azrad --- doc/guides/nics/mlx5.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/nics/mlx5.rst b/doc/gui

[PATCH] net/mlx5: fix modify field operation validation

2022-11-17 Thread Dariusz Sosnowski
This patch removes the following checks from validation of modify field action: - rejection of ADD operation, - offsets should be aligned to 4 bytes. These limitations were removed in commit 0f4aa72b99da ("net/mlx5: support flow modify field with HWS"), but non-HWS validation was not updated. No

Re: [PATCH v2 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Singh, Aman Deep
On 11/17/2022 6:25 PM, Hanumanth Pothula wrote: Validate ethdev parameter 'max_rx_mempools' to know wheater device supports multi-mempool feature or not. Spell check: whether Bugzilla ID: 1128 Signed-off-by: Hanumanth Pothula Tested-by: Aman Singh v2: - Rebased on tip of next-net/

[PATCH] net/mlx5: fix invalid memory access in port closing

2022-11-17 Thread Michael Baum
The shared IB device (sh) has per port data updated in port creation. In port closing this port data is updated even when the SH still exist. However, this updating is happened after SH has been released and for last port it actually accesses to freed memory. This patch updates the port data befo

RE: [EXT] Re: [PATCH v2 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Hanumanth Reddy Pothula
> -Original Message- > From: Singh, Aman Deep > Sent: Thursday, November 17, 2022 8:30 PM > To: Hanumanth Reddy Pothula ; Yuying Zhang > > Cc: dev@dpdk.org; andrew.rybche...@oktetlabs.ru; > tho...@monjalon.net; -yux.ji...@intel.com; Jerin Jacob Kollanukkaran > ; Nithin Kumar Dabilpuram

[PATCH v3 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Hanumanth Pothula
Validate ethdev parameter 'max_rx_mempools' to know whether device supports multi-mempool feature or not. Bugzilla ID: 1128 Signed-off-by: Hanumanth Pothula v3: - Simplified conditional check. - Corrected spell, whether. v2: - Rebased on tip of next-net/main. --- app/test-pmd/testpmd.c | 8 +

Re: Regarding User Data in DPDK ACL Library.

2022-11-17 Thread Stephen Hemminger
On Thu, 17 Nov 2022 19:28:12 +0530 venkatesh bs wrote: > Hi DPDK Team, > > After the ACL match for highest priority DPDK Classification API returns > User Data Which is as mentioned below in the document. > > 53. Packet Classification and Access Control — Data Plane Development Kit > 22.11.0-rc

Re: [PATCH v3 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Ferruh Yigit
On 11/17/2022 4:03 PM, Hanumanth Pothula wrote: > Validate ethdev parameter 'max_rx_mempools' to know whether > device supports multi-mempool feature or not. > > Bugzilla ID: 1128 > > Signed-off-by: Hanumanth Pothula > v3: > - Simplified conditional check. > - Corrected spell, whether. > v2: >

[PATCH 0/3] fix wrong increment of free list counter

2022-11-17 Thread Chaoyong He
The wrong increment of free list counter occurs three different place, and is imported by different commit. Chaoyong He (3): net/nfp: fix wrong increment of free list counter net/nfp: fix wrong increment of free list counter for PF net/nfp: fix wrong increment of free list counter for VNIC

[PATCH 1/3] net/nfp: fix wrong increment of free list counter

2022-11-17 Thread Chaoyong He
When receiving a packet that is larger than the mbuf size, the Rx function will break the receive loop and sent a free list descriptor with random DMA address. Fix this by moving the increment of the free list descriptor counter to after the packet size have been checked and acted on. Fixes: bb34

[PATCH 2/3] net/nfp: fix wrong increment of free list counter for PF

2022-11-17 Thread Chaoyong He
When using flower firmware application, and the PF receiving a packet that is larger than the mbuf size, the Rx function will break the receive loop and sent a free list descriptor with random DMA address. Fix this by moving the increment of the free list descriptor counter to after the packet siz

[PATCH 3/3] net/nfp: fix wrong increment of free list counter for VNIC

2022-11-17 Thread Chaoyong He
When using flower firmware application, and the ctrl vNIC receiving a packet that is larger than the mbuf size, the Rx function will break the receive loop and sent a free list descriptor with random DMA address. Fix this by moving the increment of the free list descriptor counter to after the pac

[Bug 1130] [22.11-rc3] lib/eal meson build error with clang15.0.4 on Fedora37

2022-11-17 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1130 Bug ID: 1130 Summary: [22.11-rc3] lib/eal meson build error with clang15.0.4 on Fedora37 Product: DPDK Version: 22.11 Hardware: All OS: All Status: UNCO

[PATCH] net/idpf: add supported ptypes get

2022-11-17 Thread beilei . xing
From: Beilei Xing Failed to launch l3fwd, the log shows: port 0 cannot parse packet type, please add --parse-ptype This patch adds dev_supported_ptypes_get ops. Fixes: 549343c25db8 ("net/idpf: support device initialization") Signed-off-by: Beilei Xing --- drivers/net/idpf/idpf_ethdev.c | 19 +

RE: [PATCH v2] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread Wu, Jingjing
> - > if (conf->txmode.mq_mode != RTE_ETH_MQ_TX_NONE) { > PMD_INIT_LOG(ERR, "Multi-queue TX mode %d is not supported", >conf->txmode.mq_mode); > diff --git a/drivers/net/idpf/idpf_vchnl.c b/drivers/net/idpf/idpf_vchnl.c > index ac6486d4ef..88770447f8

RE: [PATCH] net/idpf: add supported ptypes get

2022-11-17 Thread Wu, Jingjing
> -Original Message- > From: Xing, Beilei > Sent: Friday, November 18, 2022 11:51 AM > To: Wu, Jingjing > Cc: dev@dpdk.org; Peng, Yuan ; Xing, Beilei > > Subject: [PATCH] net/idpf: add supported ptypes get > > From: Beilei Xing > > Failed to launch l3fwd, the log shows: > port 0 ca

RE: [PATCH v3 1/1] app/testpmd: add valid check to verify multi mempool feature

2022-11-17 Thread Han, YingyaX
There is a new issue after applying the patch. Failed to configure buffer_split for a single queue and port can't up. The test steps and logs are as follows: ./x86_64-native-linuxapp-gcc/app/dpdk-testpmd -l 5-9 -n 4 -a 31:00.0 --force-max-simd-bitwidth=64 -- -i --mbuf-size=2048,2048 --txq=4 --rxq

[PATCH] net/iavf: fix outer udp checksum offload

2022-11-17 Thread Zhichao Zeng
Currently, when dealing with UDP tunnel pkts checksum offloading, the outer-udp checksum will be offloaded by default. So the 'csum set outer-udp hw/sw' command does not work. This patch enables the 'csum set outer-udp hw/sw' command by adding judgment on the outer-udp chekcusm offload flag. Fixe

[PATCH] doc: fix max supported packet len for virtio driver

2022-11-17 Thread liyi1
From: Yi Li According to VIRTIO_MAX_RX_PKTLEN macro definition, for virtio driver currently supported pkt size is 9728. Signed-off-by: Yi Li --- doc/guides/nics/virtio.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/guides/nics/virtio.rst b/doc/guides/nics/virtio.rs

[PATCH v3] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread beilei . xing
From: Beilei Xing There's core dump when launching l3fwd with 1 queue 1 core. It's because NULL pointer is used if fail to configure device. This patch removes incorrect check during device configuration, and checks NULL pointer when executing VIRTCHNL2_OP_DEALLOC_VECTORS. Fixes: 549343c25db8 ("

RE: [PATCH v2] net/idpf: fix crash when launching l3fwd

2022-11-17 Thread Xing, Beilei
> -Original Message- > From: Wu, Jingjing > Sent: Friday, November 18, 2022 2:24 PM > To: Xing, Beilei > Cc: dev@dpdk.org; Peng, Yuan > Subject: RE: [PATCH v2] net/idpf: fix crash when launching l3fwd > > > - > > if (conf->txmode.mq_mode != RTE_ETH_MQ_TX_NONE) { > > P

[Bug 1131] vmdq && kni meson build error with gcc12.2.1+debug on Fedora37

2022-11-17 Thread bugzilla
https://bugs.dpdk.org/show_bug.cgi?id=1131 Bug ID: 1131 Summary: vmdq && kni meson build error with gcc12.2.1+debug on Fedora37 Product: DPDK Version: 22.11 Hardware: All OS: All Status: UNCONFI