Re: [dpdk-dev] [PATCH] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread David Marchand
Hello Maxime, On Wed, Sep 29, 2021 at 10:18 PM Maxime Coquelin wrote: > > This patch removes the simplification in Virtio descriptors > handling, where their buffer addresses are IOVAs for Virtio > PCI devices, and VA-only for Virtio-user devices, which > added a requirement on Virtio-user that

Re: [dpdk-dev] DTS WG material review

2021-09-30 Thread David Marchand
Hello Honnappa, On Thu, Sep 30, 2021 at 8:21 AM Honnappa Nagarahalli wrote: > > Hello, > Please find the slides and the excel sheet containing the > work items to fix DTS. We will review the slides in this meeting. Please > provide your review comments before the meeting if poss

Re: [dpdk-dev] [PATCH] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread Maxime Coquelin
Hi David, On 9/30/21 09:26, David Marchand wrote: Hello Maxime, On Wed, Sep 29, 2021 at 10:18 PM Maxime Coquelin wrote: This patch removes the simplification in Virtio descriptors handling, where their buffer addresses are IOVAs for Virtio PCI devices, and VA-only for Virtio-user devices, w

Re: [dpdk-dev] [PATCH] lib/cmdline: release cl when cmdline exit

2021-09-30 Thread Dmitry Kozlyuk
2021-09-30 06:53 (UTC+), Peng, ZhihongX: > > -Original Message- > > From: Dmitry Kozlyuk > > Sent: Monday, September 6, 2021 3:34 PM > > To: Peng, ZhihongX > > Cc: olivier.m...@6wind.com; dev@dpdk.org; sta...@dpdk.org > > Subject: Re: [dpdk-dev] [PATCH] lib/cmdline: release cl when cm

Re: [dpdk-dev] [RFC V1] examples/l3fwd-power: fix memory leak for rte_pci_device

2021-09-30 Thread Thomas Monjalon
30/09/2021 08:28, Huisong Li: > Hi. Thomas > > I've summed up our previous discussion. > > Can you look at the final proposal again? > > Do you think we should deal with the problem better? I don't understand what is the final proposal. > 在 2021/9/27 9:44, Huisong Li 写道: > > > > 在 2021/9/27 3

Re: [dpdk-dev] [PATCH 1/3] bus/vmbus: fix leak on device scan

2021-09-30 Thread David Marchand
On Wed, Sep 29, 2021 at 10:57 PM Long Li wrote: > > > Subject: [PATCH 1/3] bus/vmbus: fix leak on device scan > > > > Caught running ASAN. > > > > The device name is leaked on scan. > > rte_device name field being a const, use the private vmbus struct to store > > the > > device name and point at

[dpdk-dev] [PATCH] doc: remove ethdev deprecation note for flag name

2021-09-30 Thread Aman Singh
Proposed name change of offload flag PKT_RX_EIP_CKSUM_BAD to PKT_RX_OUTER_IP_CKSUM_BAD has already been done in the code as per the deprecation note. Signed-off-by: Aman Singh --- doc/guides/rel_notes/deprecation.rst | 5 - lib/mbuf/rte_mbuf_core.h | 7 --- 2 files changed, 1

[dpdk-dev] [PATCH v2] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread Maxime Coquelin
This patch removes the simplification in Virtio descriptors handling, where their buffer addresses are IOVAs for Virtio PCI devices, and VA-only for Virtio-user devices, which added a requirement on Virtio-user that it only supported IOVA as VA. This change introduced a regression for applications

Re: [dpdk-dev] [PATCH v4] net/af_packet: reinsert the stripped vlan tag

2021-09-30 Thread Ferruh Yigit
On 9/29/2021 3:08 PM, Tudor Cornea wrote: > The af_packet pmd driver binds to a raw socket and allows > sending and receiving of packets through the kernel. > > Since commit [1], the kernel strips the vlan tags early in > __netif_receive_skb_core(), so we receive untagged packets while > running w

Re: [dpdk-dev] [PATCH v6 1/2] Enable ASan for memory detector on DPDK

2021-09-30 Thread David Marchand
Hello, I see v6 is superseded in pw, I have been cleaning my queue... maybe my fault. On Thu, Sep 30, 2021 at 7:37 AM wrote: > > From: Zhihong Peng > > AddressSanitizer (ASan) is a google memory error detect > standard tool. It could help to detect use-after-free and > {heap,stack,global}-buff

Re: [dpdk-dev] [PATCH v2] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread David Marchand
On Thu, Sep 30, 2021 at 10:13 AM Maxime Coquelin wrote: > > This patch removes the simplification in Virtio descriptors > handling, where their buffer addresses are IOVAs for Virtio > PCI devices, and VA-only for Virtio-user devices, which > added a requirement on Virtio-user that it only supporte

Re: [dpdk-dev] [PATCH v2 0/5] kvargs: promote or remove experimental api

2021-09-30 Thread David Marchand
On Wed, Sep 29, 2021 at 11:40 PM Olivier Matz wrote: > > This patchset promotes 2 functions rte_kvargs_parse_delim() and > rte_kvargs_get() as stable. > > It also replaces rte_kvargs_strcmp() by a new one > rte_kvargs_get_with_value(), which is easier to use. > > v2 > * remove rte_kvargs_strcmp fr

Re: [dpdk-dev] [PATCH] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread Maxime Coquelin
On 9/29/21 23:15, Olivier Matz wrote: Hi Maxime, On Wed, Sep 29, 2021 at 10:17:39PM +0200, Maxime Coquelin wrote: This patch removes the simplification in Virtio descriptors handling, where their buffer addresses are IOVAs for Virtio PCI devices, and VA-only for Virtio-user devices, which ad

[dpdk-dev] [PATCH v4 1/5] eventdev/rx_adapter: add event buffer size configurability

2021-09-30 Thread Naga Harish K S V
Currently event buffer is static array with a default size defined internally. To configure event buffer size from application, ``rte_event_eth_rx_adapter_create_with_params`` api is added which takes ``struct rte_event_eth_rx_adapter_params`` to configure event buffer size in addition other param

[dpdk-dev] [PATCH v4 2/5] test/event: add unit test for Rx adapter

2021-09-30 Thread Naga Harish K S V
this patch adds unit test for rte_event_eth_rx_adapter_create_with_params api and validate all possible input combinations. Signed-off-by: Naga Harish K S V --- app/test/test_event_eth_rx_adapter.c | 53 +--- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/

[dpdk-dev] [PATCH v4 3/5] eventdev/rx_adapter: introduce per queue event buffer

2021-09-30 Thread Naga Harish K S V
To configure per queue event buffer size, application sets ``rte_event_eth_rx_adapter_params::use_queue_event_buf`` flag as true and is passed to ``rte_event_eth_rx_adapter_create_with_params`` api. The per queue event buffer size is populated in ``rte_event_eth_rx_adapter_queue_conf::event_buf_s

[dpdk-dev] [PATCH v4 4/5] eventdev/rx_adapter: implement per queue event buffer

2021-09-30 Thread Naga Harish K S V
this patch implement the per queue event buffer with required validations. Signed-off-by: Naga Harish K S V --- lib/eventdev/rte_event_eth_rx_adapter.c | 187 +--- 1 file changed, 138 insertions(+), 49 deletions(-) diff --git a/lib/eventdev/rte_event_eth_rx_adapter.c b/lib/

[dpdk-dev] [PATCH v4 5/5] test/event: add unit test for Rx adapter

2021-09-30 Thread Naga Harish K S V
this patch adds unit tests for checking per rx queue event buffer feature using rte_event_eth_rx_adapter_queue_add api. fix segfault in adapter_queue_conf unit test Signed-off-by: Naga Harish K S V --- app/test/test_event_eth_rx_adapter.c | 129 ++- 1 file changed, 126 i

Re: [dpdk-dev] [dpdk-stable] [PATCH v6 2/2] lib/pipeline: Fix gcc compilation error using ASan

2021-09-30 Thread David Marchand
On Thu, Sep 30, 2021 at 7:37 AM wrote: > > From: Zhihong Peng Commit titles don't start with lib/. > > After adding ASan, the gcc compilation check will be stricter. > "Control reaches end of non-void function" error occurs here. Fwiw, I could not pinpoint the right version where this warning

[dpdk-dev] [PATCH] net/softnic: fix memory leak of meter policy

2021-09-30 Thread dapengx . yu
From: Dapeng Yu After the meter policies are created, they are not freed on device close. This patch fixes it. Fixes: 5f0d54f372f0 ("ethdev: add pre-defined meter policy API") Cc: sta...@dpdk.org Signed-off-by: Dapeng Yu --- drivers/net/softnic/rte_eth_softnic_meter.c | 12 1 fi

Re: [dpdk-dev] [PATCH v3 1/5] eventdev/rx_adapter: add event buffer size configurability

2021-09-30 Thread Jayatheerthan, Jay
> -Original Message- > From: Jerin Jacob > Sent: Wednesday, September 29, 2021 10:46 AM > To: Naga Harish K, S V > Cc: Jerin Jacob ; Jayatheerthan, Jay > ; dpdk-dev ; Kundapura, > Ganapati > Subject: Re: [dpdk-dev] [PATCH v3 1/5] eventdev/rx_adapter: add event buffer > size configurabi

Re: [dpdk-dev] [PATCH v2 0/7] Removal of PCI bus ABIs

2021-09-30 Thread David Marchand
Hello Chenbo, On Wed, Sep 29, 2021 at 9:38 AM Xia, Chenbo wrote: > > Gentle ping for comments.. Sorry, I'll try to look at it. > > @David, could you help me understand what is the compile error in Fedora 31? > DPDK_compile_spdk failure is expected as the header name for SPDK is changed, > I am

Re: [dpdk-dev] [v2] telemetry: fix json output buffer size

2021-09-30 Thread Power, Ciara
Hi Gowrishankar, >-Original Message- >From: Gowrishankar Muthukrishnan >Sent: Thursday 23 September 2021 06:53 >To: Power, Ciara ; dev@dpdk.org >Cc: Richardson, Bruce >Subject: RE: [v2] telemetry: fix json output buffer size > >Hi Ciara, >> I am not sure about why we would want this to a

Re: [dpdk-dev] [v2] telemetry: fix json output buffer size

2021-09-30 Thread Gowrishankar Muthukrishnan
> >Also, I propose if we can have platform defined upper limits (esp > >MAX_CMD_LEN, MAX_SINGLE_STRING_LEN etc) so that, we need not revisit > >lib/telemetry for platform needs (and I don't think one size fits all > >platform, may be excess too). > >Thoughts ? > > I am not sure why it is needed to

Re: [dpdk-dev] [PATCH v6 04/10] mbuf: add IPsec ESP tunnel type

2021-09-30 Thread Nicolau, Radu
On 9/23/2021 1:59 PM, Ananyev, Konstantin wrote: Add tunnel type for IPsec ESP tunnels Signed-off-by: Declan Doherty Signed-off-by: Radu Nicolau Signed-off-by: Abhijit Sinha Signed-off-by: Daniel Martin Buckley Acked-by: Fan Zhang Acked-by: Akhil Goyal Acked-by: Olivier Matz --- lib/m

Re: [dpdk-dev] Questions about vm2vm vhost-user/virtio-net test

2021-09-30 Thread Min Hu (Connor)
Hi, all, I got the answer: testpmd fwd mode should be set "io", then ping OK. IO fwd mode, it will not change packet MAC address info, and ping OK MAC fwd mode, it will change packet MAC address info, like: "rte_ether_addr_copy(&peer_eth_addrs[fs->peer_addr],

[dpdk-dev] [PATCH v3 01/27] common/cnxk: update policer MBOX APIs and HW definitions

2021-09-30 Thread skori
From: Sunil Kumar Kori To support ingress policer on CN10K, MBOX interfaces and HW definitions are synced. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK -

[dpdk-dev] [PATCH v3 02/27] common/cnxk: support RoC API to get level to index

2021-09-30 Thread skori
From: Sunil Kumar Kori CN10K platform supports policer up to 3 level of hierarchy. Implement RoC API to get corresponding index for given level. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2

[dpdk-dev] [PATCH v3 03/27] common/cnxk: support RoC API to get profile count

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement interface to get available profile count for given nixlf. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled multilev

[dpdk-dev] [PATCH v3 04/27] common/cnxk: support RoC API to alloc bandwidth profiles

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC API to allocate HW resources i.e. bandwidth profiles for policer processing on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase s

[dpdk-dev] [PATCH v3 05/27] common/cnxk: support RoC API to free bandwidth profiles

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC interface to free HW bandwidth profiles on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled mul

[dpdk-dev] [PATCH v3 06/27] common/cnxk: support RoC API to configure bandwidth profile

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC API to configure HW bandwidth profile for CN10K platform. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled mult

[dpdk-dev] [PATCH v3 07/27] common/cnxk: support RoC API to toggle profile state

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC API to enable or disable HW bandwidth profiles on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Hand

[dpdk-dev] [PATCH v3 08/27] common/cnxk: support RoC API to dump bandwidth profile

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC API to dump bandwidth profile on CN10K platform. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled multilevel ch

[dpdk-dev] [PATCH v3 09/27] common/cnxk: support RoC API to setup precolor table

2021-09-30 Thread skori
From: Sunil Kumar Kori For initial coloring of input packet, CN10K platform maintains precolor table for VLAN, DSCP and Generic. Implement RoC interface to setup pre color table. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hie

[dpdk-dev] [PATCH v3 10/27] common/cnxk: support RoC API to connect bandwidth profiles

2021-09-30 Thread skori
From: Sunil Kumar Kori To maintain chain of bandwidth profiles, they needs to be connected. Implement RoC API to connect two bandwidth profiles at different levels. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix

[dpdk-dev] [PATCH v3 11/27] common/cnxk: support RoC API to get stats to index

2021-09-30 Thread skori
From: Sunil Kumar Kori CN10K platform supports different stats for HW bandwidth profiles. Implement RoC API to get index for given stats type. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2:

[dpdk-dev] [PATCH v3 12/27] common/cnxk: support RoC API to read profile statistics

2021-09-30 Thread skori
From: Sunil Kumar Kori CN10K platform provides statistics per bandwidth profile and per nixlf. Implement RoC API to read stats for given bandwidth profile. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming co

[dpdk-dev] [PATCH v3 13/27] common/cnxk: support RoC API to reset profile stats

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement RoC API to reset stats per bandwidth profile or per nixlf. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled multile

[dpdk-dev] [PATCH v3 14/27] common/cnxk: support meter in action list

2021-09-30 Thread skori
From: Sunil Kumar Kori Meter action is added in supported action list. Signed-off-by: Sunil Kumar Kori --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPDK - Handled multilevel chaining for line

[dpdk-dev] [PATCH v3 15/27] net/cnxk: support meter ops get API

2021-09-30 Thread skori
From: Sunil Kumar Kori To enable support for ingress meter, supported operations are exposed for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention

[dpdk-dev] [PATCH v3 16/27] net/cnxk: support ops to get meter capabilities

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement ethdev operation to get meter capabilities for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase su

[dpdk-dev] [PATCH v3 17/27] net/cnxk: support ops to create meter profile

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to add meter profile for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DP

[dpdk-dev] [PATCH v3 18/27] net/cnxk: support ops to delete meter profile

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to delete meter profile for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest

[dpdk-dev] [PATCH v3 19/27] net/cnxk: support ops to validate meter policy

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to validate meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on lates

[dpdk-dev] [PATCH v3 20/27] net/cnxk: support ops to create meter policy

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to add meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest DPD

Re: [dpdk-dev] [PATCH v2 1/3] security: add SA config option for inner pkt csum

2021-09-30 Thread Ananyev, Konstantin
Hi Anoob, > > > > External Email > > > > -- > > Hi Anoob, > > > > > Hi Konstanin, > > > > > > Please see inline. > > > > > > Thanks, > > > Anoob > > > > > > > -Original Message- > > > > From: Ananyev, Konstantin > > >

[dpdk-dev] [PATCH v3 21/27] net/cnxk: support ops to delete meter policy

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to delete meter policy for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on latest

[dpdk-dev] [PATCH v3 22/27] net/cnxk: support ops to create meter

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to create meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on lates

[dpdk-dev] [PATCH v3 23/27] net/cnxk: support ops to delete meter

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to delete meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase support on lates

[dpdk-dev] [PATCH v3 24/27] net/cnxk: support ops to enable/disable meter

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to enable or disable meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming convention v2: - Rebase suppo

[dpdk-dev] [PATCH v3 25/27] net/cnxk: support ops to update precolor DSCP table

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to update DSCP table for pre-coloring for incoming packet per nixlf for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix namin

[dpdk-dev] [PATCH v3 26/27] net/cnxk: support ops to read/update meter stats

2021-09-30 Thread skori
From: Sunil Kumar Kori Implement API to read and update stats corresponding to given meter instance for CN10K platform. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy - Fix naming con

[dpdk-dev] [PATCH v3 27/27] net/cnxk: support meter action to flow create

2021-09-30 Thread skori
From: Sunil Kumar Kori Meters are configured per flow using rte_flow_create API. Implement support for meter action applied on the flow. Signed-off-by: Sunil Kumar Kori Signed-off-by: Rakesh Kudurumalla --- v3: - Rebase support on latest DPDK - Handled multilevel chaining for tree hierarchy

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/iavf: fix multi-process shared data

2021-09-30 Thread Yu, DapengX
> -Original Message- > From: Yigit, Ferruh > Sent: Thursday, September 30, 2021 12:28 AM > To: Yu, DapengX ; Richardson, Bruce > ; Ananyev, Konstantin > ; Wu, Jingjing ; > Xing, Beilei > Cc: dev@dpdk.org; sta...@dpdk.org > Subject: Re: [dpdk-stable] [PATCH] net/iavf: fix multi-process s

Re: [dpdk-dev] [PATCH v2] net/virtio: fix virtio-user init when using existing tap

2021-09-30 Thread Maxime Coquelin
On 9/29/21 15:19, Ferruh Yigit wrote: On 9/28/2021 9:51 AM, David Marchand wrote: When attaching to an existing mono queue tap, the virtio-user was not reporting that the virtio device was not properly initialised which prevented from starting the port later. $ ip tuntap add test mode tap $

[dpdk-dev] FW: [dpdk-dev v1] test/crypto: maxlen calculation update

2021-09-30 Thread Zhang, Roy Fan
CCing to sta...@dpdk.org > -Original Message- > From: Ji, Kai > Sent: Wednesday, September 29, 2021 4:38 PM > To: dev@dpdk.org > Cc: Zhang, Roy Fan ; Ji, Kai > Subject: [dpdk-dev v1] test/crypto: maxlen calculation update > > Update the calculation of the max length needed when converti

[dpdk-dev] [PATCH V5 1/5] common/mlx5: update new MMO HCA capabilities

2021-09-30 Thread Raja Zidane
New MMO HCA capabilities were added and others were renamed. Align hca capabilities with new prm. Add support in devx interface for changes in HCA capabilities. Signed-off-by: Raja Zidane Acked-by: Matan Azrad --- drivers/common/mlx5/mlx5_devx_cmds.c | 15 --- drivers/common/mlx5/m

[dpdk-dev] [PATCH V5 2/5] common/mlx5: add MMO configuration for the DevX QP

2021-09-30 Thread Raja Zidane
A new configuration MMO was added to QP Context. If set, MMO WQEs are supported on this QP. For DMA MMO, supported only when dma_mmo_qp==1. For REGEXP MMO, supported only when regexp_mmo_qp==1. For COMPRESS MMO, supported only when compress_mmo_qp==1. For DECOMPRESS MMO, supported only when decompr

[dpdk-dev] [PATCH V5 4/5] regex/mlx5: refactor HW queue objects

2021-09-30 Thread Raja Zidane
The mlx5 PMD for regex class uses an MMO WQE operated by the GGA engine in BF devices. Currently, all the MMO WQEs are managed by the SQ object. Starting from BF3, the queue of the MMO WQEs should be connected to the GGA engine using a new configuration, MMO, that will be supported only in the QP o

[dpdk-dev] [PATCH V5 0/5] mlx5: replaced hardware queue object

2021-09-30 Thread Raja Zidane
The mlx5 PMDs for compress and regex classes use an MMO WQE operated by the GGA engine in BF devices. Currently, all the MMO WQEs are managed by the SQ object. Starting from BF3, the queue of the MMO WQEs should be connected to the GGA engine using a new configuration, mmo, that will be supported o

[dpdk-dev] [PATCH V5 5/5] compress/mlx5: allow partial transformations support

2021-09-30 Thread Raja Zidane
Currently compress, decompress and dma are allowed only when all 3 capabilities are on. A case where the user wants decompress offload, if decompress capability is on but one of compress, dma is off, is not allowed. Split compress/decompress/dma support check to allow partial transformations. Sign

[dpdk-dev] [PATCH V5 3/5] compress/mlx5: refactor queue HW object

2021-09-30 Thread Raja Zidane
The mlx5 PMD for compress class uses an MMO WQE operated by the GGA engine in BF devices. Currently, all the MMO WQEs are managed by the SQ object. Starting from BF3, the queue of the MMO WQEs should be connected to the GGA engine using a new configuration, MMO, that will be supported only in the Q

Re: [dpdk-dev] [PATCH v3 01/10] drivers/crypto: introduce IPsec-mb framework

2021-09-30 Thread Kinsella, Ray
On 29/09/2021 17:30, Ciara Power wrote: > From: Fan Zhang > > This patch introduces the new framework to share common code between > the SW crypto PMDs that depend on the intel-ipsec-mb library. > This change helps to reduce future effort on the code maintenance and > feature updates. > > The

Re: [dpdk-dev] [PATCH 02/10] common/sfc_efx/base: add API to set RECIRC ID in outer rules

2021-09-30 Thread Kinsella, Ray
On 29/09/2021 21:57, Ivan Malov wrote: > When an outer rule is hit, it can pass recirculation ID down > to action rule lookup, and action rules can match on this ID > instead of matching on the outer rule allocation handle. > By default, recirculation ID is assumed to be zero. > > Add an API to

Re: [dpdk-dev] [PATCH v2 0/5] kvargs: promote or remove experimental api

2021-09-30 Thread Kinsella, Ray
On 30/09/2021 09:25, David Marchand wrote: > On Wed, Sep 29, 2021 at 11:40 PM Olivier Matz wrote: >> >> This patchset promotes 2 functions rte_kvargs_parse_delim() and >> rte_kvargs_get() as stable. >> >> It also replaces rte_kvargs_strcmp() by a new one >> rte_kvargs_get_with_value(), which is

Re: [dpdk-dev] [PATCH v1] ethdev: introduce shared Rx queue

2021-09-30 Thread Ananyev, Konstantin
> On Wed, 2021-09-29 at 10:20 +, Ananyev, Konstantin wrote: > > > > > > > > > > > > > > > > > > In current DPDK framework, each RX > > > > > > > > > > > > > > > > > > queue > > > > > > > > > > > > > > > > > > is > > > > > > > > > > > > > > > > > > pre-loaded with mbufs > > > > > > > > > > > >

Re: [dpdk-dev] [PATCH v3 01/27] common/cnxk: update policer MBOX APIs and HW definitions

2021-09-30 Thread Kinsella, Ray
On 30/09/2021 10:08, sk...@marvell.com wrote: > From: Sunil Kumar Kori > > To support ingress policer on CN10K, MBOX interfaces and HW > definitions are synced. > > Signed-off-by: Sunil Kumar Kori > --- > v3: > - Rebase support on latest DPDK > - Handled multilevel chaining for tree hierar

Re: [dpdk-dev] [PATCH 2/2] security: build on Windows

2021-09-30 Thread Tal Shnaiderman
> Subject: Re: [PATCH 2/2] security: build on Windows > > External email: Use caution opening links or attachments > > > On 9/15/2021 9:26 AM, Tal Shnaiderman wrote: > > Build the security library on Windows. > > > > Remove unneeded export from version file. > > > > Signed-off-by: Tal Shnaiderma

Re: [dpdk-dev] [RFC V2] ethdev: fix issue that dev close in PMD calls twice

2021-09-30 Thread Huisong Li
在 2021/9/28 15:19, Singh, Aman Deep 写道: On 9/22/2021 9:01 AM, Huisong Li wrote: 在 2021/9/20 22:07, Ferruh Yigit 写道: On 8/25/2021 10:53 AM, Huisong Li wrote: 在 2021/8/24 22:42, Ferruh Yigit 写道: On 8/19/2021 4:45 AM, Huisong Li wrote: 在 2021/8/18 19:24, Ferruh Yigit 写道: On 8/13/2021 9:16

Re: [dpdk-dev] [dpdk-stable] [PATCH] net/iavf: fix multi-process shared data

2021-09-30 Thread Ferruh Yigit
On 9/30/2021 10:11 AM, Yu, DapengX wrote: > > >> -Original Message- >> From: Yigit, Ferruh >> Sent: Thursday, September 30, 2021 12:28 AM >> To: Yu, DapengX ; Richardson, Bruce >> ; Ananyev, Konstantin >> ; Wu, Jingjing ; >> Xing, Beilei >> Cc: dev@dpdk.org; sta...@dpdk.org >> Subject:

Re: [dpdk-dev] [dpdk-stable] [PATCH v2] net/virtio: revert forcing IOVA as VA mode for virtio-user

2021-09-30 Thread Ferruh Yigit
On 9/30/2021 9:24 AM, David Marchand wrote: > On Thu, Sep 30, 2021 at 10:13 AM Maxime Coquelin > wrote: >> >> This patch removes the simplification in Virtio descriptors >> handling, where their buffer addresses are IOVAs for Virtio >> PCI devices, and VA-only for Virtio-user devices, which >> add

Re: [dpdk-dev] [RFC V2] ethdev: fix issue that dev close in PMD calls twice

2021-09-30 Thread Ferruh Yigit
On 9/30/2021 11:54 AM, Huisong Li wrote: > > 在 2021/9/28 15:19, Singh, Aman Deep 写道: >> >> On 9/22/2021 9:01 AM, Huisong Li wrote: >>> >>> 在 2021/9/20 22:07, Ferruh Yigit 写道: On 8/25/2021 10:53 AM, Huisong Li wrote: > 在 2021/8/24 22:42, Ferruh Yigit 写道: >> On 8/19/2021 4:45 AM, Huison

Re: [dpdk-dev] [PATCH v5] ethdev: fix representor port ID search by name

2021-09-30 Thread Andrew Rybchenko
On 9/29/21 2:13 PM, Singh, Aman Deep wrote: > > On 9/13/2021 4:56 PM, Andrew Rybchenko wrote: >> From: Viacheslav Galaktionov >> >> Getting a list of representors from a representor does not make sense. >> Instead, a parent device should be used. >> >> To this end, extend the rte_eth_dev_data str

Re: [dpdk-dev] [dpdk-stable] [PATCH v5 2/2] ethdev: fix docs of drivers callbacks getting xstats by IDs

2021-09-30 Thread Ferruh Yigit
On 9/29/2021 12:54 PM, Andrew Rybchenko wrote: > On 9/29/21 11:44 AM, Ferruh Yigit wrote: >> On 9/28/2021 5:53 PM, Andrew Rybchenko wrote: >>> On 9/28/21 7:50 PM, Ferruh Yigit wrote: On 9/28/2021 1:05 PM, Andrew Rybchenko wrote: > From: Ivan Ilchenko > > Update xstats by IDs callb

Re: [dpdk-dev] [PATCH] doc: remove ethdev deprecation note for flag name

2021-09-30 Thread Ferruh Yigit
On 9/30/2021 8:47 AM, Aman Singh wrote: > Proposed name change of offload flag PKT_RX_EIP_CKSUM_BAD > to PKT_RX_OUTER_IP_CKSUM_BAD has already been done in the > code as per the deprecation note. > > Signed-off-by: Aman Singh > --- > doc/guides/rel_notes/deprecation.rst | 5 - > lib/mbuf/rte

[dpdk-dev] [PATCH v1] eventdev/rx-adapter: segfault in queue conf get

2021-09-30 Thread Ganapati Kundapura
rte_event_eth_rx_adapter_queue_conf_get() segfaults if called without queue added to the Rx adapter. Added check to no queues in Rx adapter and error out on being called with no queue in Rx adapter. Added test case to call queue conf get without queues in Rx adapter. Signed-off-by: Ganapati Kund

Re: [dpdk-dev] [PATCH v5] ethdev: fix representor port ID search by name

2021-09-30 Thread Singh, Aman Deep
On 9/30/2021 5:33 PM, Andrew Rybchenko wrote: On 9/29/21 2:13 PM, Singh, Aman Deep wrote: On 9/13/2021 4:56 PM, Andrew Rybchenko wrote: From: Viacheslav Galaktionov Getting a list of representors from a representor does not make sense. Instead, a parent device should be used. To this end,

[dpdk-dev] [PATCH v4 0/3] add SA config option for inner pkt csum

2021-09-30 Thread Archana Muniganti
Add inner packet IPv4 hdr and L4 checksum enable options in conf. These will be used in case of protocol offload. Per SA, application could specify whether the checksum(compute/verify) can be offloaded to security device. Changes in v4: - Rebased to ToT - Added documentation for per packet checksu

[dpdk-dev] [PATCH v4 1/3] security: add SA config option for inner pkt csum

2021-09-30 Thread Archana Muniganti
Add inner packet IPv4 hdr and L4 checksum enable options in conf. These will be used in case of protocol offload. Per SA, application could specify whether the checksum(compute/verify) can be offloaded to security device. Signed-off-by: Archana Muniganti --- doc/guides/cryptodevs/features/defaul

[dpdk-dev] [PATCH v4 2/3] crypto/cnxk: add inner checksum

2021-09-30 Thread Archana Muniganti
Add inner checksum support for cn10k. Signed-off-by: Archana Muniganti --- doc/guides/cryptodevs/features/cn10k.ini | 1 + doc/guides/rel_notes/release_21_11.rst| 1 + drivers/crypto/cnxk/cn10k_cryptodev_ops.c | 65 +++ drivers/crypto/cnxk/cn10k_ipsec.c

[dpdk-dev] [PATCH v4 3/3] test/crypto: add inner checksum cases

2021-09-30 Thread Archana Muniganti
This patch adds tests for inner IP and inner L4 checksum in IPsec mode. Signed-off-by: Archana Muniganti --- app/test/test_cryptodev.c | 34 +++ app/test/test_cryptodev_security_ipsec.c | 195 ++ app/test/test_cryptodev_security_ipsec.h | 2 + ...

[dpdk-dev] [PATCH v2] eventdev/rx-adapter: segfault in queue conf get

2021-09-30 Thread Ganapati Kundapura
rte_event_eth_rx_adapter_queue_conf_get() segfaults if called without queue added to the Rx adapter. Added check to no queues in Rx adapter and error out on being called with no queue in Rx adapter. Added test case to call queue conf get without queues in Rx adapter. Signed-off-by: Ganapati Kund

Re: [dpdk-dev] [PATCH v2] drivers/net: remove queue xstats auto-fill flag

2021-09-30 Thread Ferruh Yigit
On 9/29/2021 7:38 AM, Andrew Rybchenko wrote: > On 9/28/21 8:10 PM, Stephen Hemminger wrote: >> On Tue, 28 Sep 2021 19:48:54 +0300 >> Andrew Rybchenko wrote: >> >>> Some drivers do not provide per-queue statistics. So, there is no point >>> to have these misleading zeros in xstats. >>> >>> Fixes:

[dpdk-dev] [PATCH v6 1/2] Enable ASan for memory detector on DPDK

2021-09-30 Thread zhihongx . peng
From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happens, large improve debug efficiency. `AddressSanitizer

[dpdk-dev] [PATCH v6 2/2] lib/pipeline: Fix compilation error with gcc ASan

2021-09-30 Thread zhihongx . peng
From: Zhihong Peng After adding ASan, the gcc compilation check will be stricter. "Control reaches end of non-void function" error occurs here. Fixes: f38913b7fb8e (pipeline: add meter array to SWX) Cc: sta...@dpdk.org Signed-off-by: Xueqin Lin Signed-off-by: Zhihong Peng --- lib/pipeline/rt

[dpdk-dev] [PATCH] crypto/cnxk: add max queue pairs limit devargs

2021-09-30 Thread Ankur Dwivedi
Adds max queue pairs limit devargs for crypto cnxk driver. This can be used to set a limit on the number of maximum queue pairs supported by the device. The default value is 63. Signed-off-by: Ankur Dwivedi Reviewed-by: Anoob Joseph Reviewed-by: Jerin Jacob Kollanukkaran --- doc/guides/cryptod

Re: [dpdk-dev] [PATCH] ethdev: remove legacy Rx descriptor done API

2021-09-30 Thread Ferruh Yigit
On 9/28/2021 4:48 PM, Andrew Rybchenko wrote: > rte_eth_rx_descriptor_status() should be used as a replacement. > > Signed-off-by: Andrew Rybchenko Reviewed-by: Ferruh Yigit

Re: [dpdk-dev] [PATCH v5] mbuf: fix reset on mbuf free

2021-09-30 Thread Ali Alnubani
> -Original Message- > From: Olivier Matz > Sent: Thursday, September 30, 2021 12:37 AM > To: dev@dpdk.org > Cc: ajit.khapa...@broadcom.com; ajitkhapa...@gmail.com; Ali Alnubani > ; andrew.rybche...@oktetlabs.ru; > konstantin.anan...@intel.com; m...@smartsharesystems.com; > sta...@dpdk.org

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

2021-09-30 Thread Ali Alnubani
> -Original Message- > From: Olivier Matz > Sent: Thursday, September 30, 2021 12:39 AM > To: Ali Alnubani > Cc: dev@dpdk.org; David Marchand ; > Alexander Kozyrev ; NBU-Contact-Thomas Monjalon > ; Ferruh Yigit ; Slava > Ovsiienko ; zhaoyan.c...@intel.com; Morten > Brørup ; Andrew Rybchen

Re: [dpdk-dev] [PATCH] net/memif: allocate socket hash on any NUMA socket

2021-09-30 Thread Ferruh Yigit
On 9/28/2021 2:51 PM, Junxiao Shi wrote: > Previously, memif socket hash is always allocated on NUMA socket 0. > If the application is entirely running on another NUMA socket and EAL > --socket-limit prevents memory allocation on NUMA socket 0, memif > creation fails with "HASH: memory allocation f

Re: [dpdk-dev] [PATCH v5] ethdev: fix representor port ID search by name

2021-09-30 Thread Andrew Rybchenko
On 9/30/21 3:51 PM, Singh, Aman Deep wrote: > > On 9/30/2021 5:33 PM, Andrew Rybchenko wrote: >> On 9/29/21 2:13 PM, Singh, Aman Deep wrote: >>> On 9/13/2021 4:56 PM, Andrew Rybchenko wrote: From: Viacheslav Galaktionov Getting a list of representors from a representor does not mak

Re: [dpdk-dev] [PATCH v2] drivers/net: remove queue xstats auto-fill flag

2021-09-30 Thread Andrew Rybchenko
On 9/30/21 4:00 PM, Ferruh Yigit wrote: > On 9/29/2021 7:38 AM, Andrew Rybchenko wrote: >> On 9/28/21 8:10 PM, Stephen Hemminger wrote: >>> On Tue, 28 Sep 2021 19:48:54 +0300 >>> Andrew Rybchenko wrote: >>> Some drivers do not provide per-queue statistics. So, there is no point to have t

Re: [dpdk-dev] [PATCH] app/testpmd: support unequal number of RXQ and TXQ

2021-09-30 Thread Ferruh Yigit
On 9/28/2021 12:08 PM, nipun.gu...@nxp.com wrote: > From: Jun Yang > > The existing forwarding mode configures the total number of > queues as the minimum of rxq and txq, so eventually the number > of txq are same as rxq. > However in some scenarios, specially for flow control the > number of rxq

[dpdk-dev] [PATCH] net/af_xdp: do not attempt probe for secondary processes

2021-09-30 Thread Ciara Loftus
Since the AF_XDP PMD does not work for secondary processes as reported in Bugzilla 805, check for the process type at the beginning of probe and return ENOTSUP if the process type is secondary. Bugzilla ID: 805 Fixes: f1debd77efaf ("net/af_xdp: introduce AF_XDP PMD") Cc: sta...@dpdk.org Signed-of

Re: [dpdk-dev] [PATCH v2] drivers/net: remove queue xstats auto-fill flag

2021-09-30 Thread Andrew Rybchenko
On 9/30/21 4:45 PM, Andrew Rybchenko wrote: > On 9/30/21 4:00 PM, Ferruh Yigit wrote: >> On 9/29/2021 7:38 AM, Andrew Rybchenko wrote: >>> On 9/28/21 8:10 PM, Stephen Hemminger wrote: On Tue, 28 Sep 2021 19:48:54 +0300 Andrew Rybchenko wrote: > Some drivers do not provide per-qu

Re: [dpdk-dev] [PATCH v6 1/2] Enable ASan for memory detector on DPDK

2021-09-30 Thread Burakov, Anatoly
On 30-Sep-21 1:59 PM, zhihongx.p...@intel.com wrote: From: Zhihong Peng AddressSanitizer (ASan) is a google memory error detect standard tool. It could help to detect use-after-free and {heap,stack,global}-buffer overflow bugs in C/C++ programs, print detailed error information when error happe

Re: [dpdk-dev] [PATCH v2 4/5] kvargs: remove experimental function to compare string

2021-09-30 Thread Olivier Matz
On Wed, Sep 29, 2021 at 11:39:42PM +0200, Olivier Matz wrote: > The function was designed to be used as a handler for > rte_kvargs_process() to compare the value string in a kvlist. For > readability, its usages in DPDK have been replaced by > rte_kvargs_get_with_value() in previous commit. > > Re

Re: [dpdk-dev] [dpdk-stable] [PATCH v5 2/2] ethdev: fix docs of drivers callbacks getting xstats by IDs

2021-09-30 Thread Andrew Rybchenko
On 9/30/21 3:08 PM, Ferruh Yigit wrote: > On 9/29/2021 12:54 PM, Andrew Rybchenko wrote: >> On 9/29/21 11:44 AM, Ferruh Yigit wrote: >>> On 9/28/2021 5:53 PM, Andrew Rybchenko wrote: On 9/28/21 7:50 PM, Ferruh Yigit wrote: > On 9/28/2021 1:05 PM, Andrew Rybchenko wrote: >> From: Ivan I

[dpdk-dev] [PATCH v6 1/4] ethdev: fix docs of functions getting xstats by IDs

2021-09-30 Thread Andrew Rybchenko
From: Ivan Ilchenko Document valid combinations of input arguments in accordance with current implementation in ethdev. Fixes: 79c913a42f0 ("ethdev: retrieve xstats by ID") Cc: sta...@dpdk.org Signed-off-by: Ivan Ilchenko Signed-off-by: Andrew Rybchenko Reviewed-by: Andy Moreton --- lib/eth

  1   2   3   >