[PATCH 0/2] add missing local symbols catch-all

2022-03-06 Thread Thomas Monjalon
The libraries (and driver) regexdev, gpudev and auxiliary bus were missing "local:*" in their version.map linker script which catch all non-listed functions to be hidden in shared libraries. Thomas Monjalon (2): regexdev: fix section attribute of symbols build: hide local symbols in shared lib

[PATCH 1/2] regexdev: fix section attribute of symbols

2022-03-06 Thread Thomas Monjalon
The functions used by the drivers must be internal, while the function and variables used in inline functions must be experimental. These are the changes done in the shared libraries: - DF .text Base rte_regexdev_get_device_by_name + DF .text INTERNAL rte_regexdev_get_device_by_nam

[PATCH 2/2] build: hide local symbols in shared libraries

2022-03-06 Thread Thomas Monjalon
The symbols which are not listed in the version script are exported by default. Adding a local section with a wildcard make non-listed functions and variables as hidden, as it should be in all version.map files. These are the changes done in the shared libraries: - DF .text Base auxiliar

Re: mlx5_pci Decompression Error

2022-03-06 Thread Matan Azrad
Hi Shafiqul Your compressed data for decompress OP doesn't include b-final bit in the last block. May point to memory issue: cutting/garbage... השג את ‏Outlook עבור Android‏ מאת: Shafiqul Abedin נשלח: יום חמישי, 3 במרץ 2022, 02:32 אל: d

Re: [PATCH v2] ci: remove redundant drivers enabling

2022-03-06 Thread Thomas Monjalon
01/03/2022 11:57, David Marchand: > On Tue, Mar 1, 2022 at 11:05 AM Thomas Monjalon wrote: > > > > No need to explicitly enable drivers bus/vdev and mempool/ring. > > > > bus/vdev is always enabled since > > commit 2e33309ebe03 ("config: enable/disable drivers in Arm builds") > > > > mempool/ring

Re: [PATCH v2] ci: remove outdated default versions for ABI check

2022-03-06 Thread Thomas Monjalon
01/03/2022 11:07, David Marchand: > On Tue, Mar 1, 2022 at 10:57 AM Thomas Monjalon wrote: > > > > The variables REF_GIT_TAG and LIBABIGAIL_VERSION are set > > in the CI configuration like .travis.yml or .github/workflows/build.yml. > > The default values are outdated and probably unused. > > > >

DPDK Release Status Meeting 2022-03-03

2022-03-06 Thread Mcnamara, John
Release status meeting minutes 2022-03-03 = Agenda: * Release Dates * Subtrees * Roadmaps * LTS * Defects * Opens Participants: * ARM * Debian * Intel * Marvell * Nvidia * Red Hat Release Dates - The following are the proposed dates for 22.03

[PATCH] net/sfc: do not spam logs on tunnel restore info errors

2022-03-06 Thread Ivan Malov
OvS might invoke this API on its data path, out of sync with its control plane. If the control path has already deactivated the tunnel context entry, these invocations will produce quite a few error printouts. Suppress that. Fixes: 7e5b479803c3 ("net/sfc: implement control path operations in tunne

Re: [PATCH v4 1/3] net/ixgbe: Fix ixgbe_is_sfp() to return valid result for X550EM_a devs

2022-03-06 Thread Thomas Monjalon
01/03/2022 12:18, Zhang, Qi Z: > From: Wang, Haiyue > > From: Jeff Daly > > > From: Stephen Douthit > > > > > > Currently all X500EM* MAC types fallthrough to the default case and > > > get reported as non-SFP regardless of media type, which isn't correct. > > > > > > Fixes: 0790adeb567 ("ixgbe/

Re: [PATCH v5] app/testpmd: add help messages for multi-process

2022-03-06 Thread Thomas Monjalon
04/03/2022 16:35, Ferruh Yigit: > On 3/4/2022 9:11 AM, Zhang, Yuying wrote: > > From: Min Hu (Connor) > >> From: Huisong Li > >> > >> This patch adds help messages for multi-process. > >> --num-procs , where N is the total number of symmetric_mp instances > >> that will be run side-by-side to per

[PATCH v2 0/2] app/testpmd: skip stopped queues when forwarding

2022-03-06 Thread Dmitry Kozlyuk
It was unspecified what happens of a stopped queue is polled. Declare that polling is prohibited and modify testpmd to follow this. Rationale is described i nthe commit log; it follows the discussion: http://inbox.dpdk.org/dev/bl1pr12mb594551a71273709e1c04a8bab9...@bl1pr12mb5945.namprd12.prod.outlo

[PATCH v2 2/2] app/testpmd: do not poll stopped queues

2022-03-06 Thread Dmitry Kozlyuk
Calling Rx/Tx functions on a stopped queue is not supported. Do not run packet forwarding for streams that use stopped queues. Each stream has a read-only "disabled" field, so that lcore function can skip such streams. Forwarding engines can set this field using a new "stream_init" callback functi

[PATCH v2 1/2] ethdev: prohibit polling of a stopped queue

2022-03-06 Thread Dmitry Kozlyuk
Whether it is allowed to call Rx/Tx functions for a stopped queue was undocumented. Some PMDs make this behavior a no-op either by explicitly checking the queue state or by the way how their routines are implemented or HW works. No-op behavior may be convenient for application developers. But it a

[PATCH] examples/kni: add CR character at print log

2022-03-06 Thread Tianli Lai
add CR character at print link state information Signed-off-by: Tianli Lai --- examples/kni/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/kni/main.c b/examples/kni/main.c index f5b20a7b62..e99ef5c38a 100644 --- a/examples/kni/main.c +++ b/examples/kni/main.c

[PATCH] net/mlx5: fix the port match in sample flow

2022-03-06 Thread Jiawei Wang
If there are an explicit port match and sample action in the same flow, mlx5 PMD pushes the explicit port match in the prefix subflow, and uses the tag item match in the suffix subflow. The explicit port match was translated into source vport match so the sample suffix subflow lost this match afte

RE: [PATCH] examples/l3fwd: resolve stack buffer overflow issue

2022-03-06 Thread Rahul Bhansali
Hi Thomas, Below patch is pending for review and merge. Can you please check it ? http://patches.dpdk.org/project/dpdk/list/?series=21124 Regards, Rahul -Original Message- From: Rahul Bhansali Sent: Tuesday, January 11, 2022 6:20 PM To: dev@dpdk.org; conor.wa...@intel.com; david.march

Re: [PATCH] net/bnxt: fix a null dereference in cleanup label

2022-03-06 Thread Ajit Khaparde
On Thu, Feb 24, 2022 at 7:54 AM Weiguo Li wrote: > > Fixes: a46bbb57605b4 ("net/bnxt: update multi device design") > > In tf_session_create(), there is a case that with 'tfp->session' still > be NULL and run 'goto cleanup', which will leads to a null dereference > by 'tfp_free(tfp->session->core_d

RE: [PATCH 2/2] net/mlx5: fix INET IPIP protocol type

2022-03-06 Thread Gregory Etelson
Hello Ferruh, ::snip:: > > Fixes: f3f1f576f438 ("net/mlx5: fix RSS > expansion with explicit next protocol") > > Signed-off-by: Gregory Etelson > > > Acked-by: Matan Azrad > > --- > > drivers/net/mlx5/mlx5_flow.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/

RE: [PATCH] examples/l3fwd: resolve stack buffer overflow issue

2022-03-06 Thread Rahul Bhansali
Ping.. -Original Message- From: Rahul Bhansali Sent: Tuesday, January 11, 2022 6:20 PM To: dev@dpdk.org; conor.wa...@intel.com; david.march...@redhat.com Cc: Rahul Bhansali Subject: [PATCH] examples/l3fwd: resolve stack buffer overflow issue This patch fixes the stack buffer overflow e

RE: [PATCH] net/cnxk: fix error when compiled for x86

2022-03-06 Thread Gao, DaxueX
> -Original Message- > From: Rakesh Kudurumalla > Sent: 2022年3月4日 22:24 > To: Nithin Dabilpuram ; Kiran Kumar K > ; Sunil Kumar Kori ; Satha > Rao > Cc: dev@dpdk.org; jer...@marvell.com; Rakesh Kudurumalla > ; sta...@dpdk.org; Yigit, Ferruh > > Subject: [PATCH] net/cnxk: fix error when c

[PATCH v1] graph: remove the useless duplicate name check

2022-03-06 Thread Haiyue Wang
The node clone API parameter 'name' is the new node's postfix name, not the final node name, so it makes no sense to check it. And the new name will be checked duplicate when calling API '__rte_node_register'. Signed-off-by: Haiyue Wang --- lib/graph/node.c | 4 1 file changed, 4 deletions(

Re: [PATCH v1] graph: remove the useless duplicate name check

2022-03-06 Thread Jerin Jacob
On Mon, Mar 7, 2022 at 12:47 PM Haiyue Wang wrote: > > The node clone API parameter 'name' is the new node's postfix name, not > the final node name, so it makes no sense to check it. And the new name > will be checked duplicate when calling API '__rte_node_register'. > > Signed-off-by: Haiyue Wan

RE: [PATCH v1] graph: remove the useless duplicate name check

2022-03-06 Thread Wang, Haiyue
> -Original Message- > From: Jerin Jacob > Sent: Monday, March 7, 2022 15:45 > To: Wang, Haiyue > Cc: dpdk-dev ; Jerin Jacob ; Kiran Kumar K > ; > Nithin Dabilpuram > Subject: Re: [PATCH v1] graph: remove the useless duplicate name check > > On Mon, Mar 7, 2022 at 12:47 PM Haiyue Wang