RE: [PATCH v7 1/6] eal: trace: add trace point emit for blob

2023-01-30 Thread Morten Brørup
> From: Sunil Kumar Kori [mailto:sk...@marvell.com] > Sent: Monday, 30 January 2023 08.31 > > > From: Ankur Dwivedi > > Sent: Monday, January 23, 2023 2:32 PM > > [...] > > +RTE_TRACE_POINT( > > + rte_eal_trace_generic_blob, > > + RTE_TRACE_POINT_ARGS(void *in, uint8_t len), > > + rte_tra

[PATCH v2] net/i40e: support enabling/disabling source pruning

2023-01-30 Thread Ke Zhang
VRRP advertisement packets are dropped on i40e PF devices because when a MAC address is added to a device, packets originating from that MAC address are dropped. This patch adds a PMD specific API to enable/disable source pruning to fix above issue. Bugzilla ID: 648 Signed-off-by: Ke Zhang ---

RE: [PATCH v2] net/i40e: support enabling/disabling source pruning

2023-01-30 Thread Morten Brørup
> From: Ke Zhang [mailto:ke1x.zh...@intel.com] > Sent: Monday, 30 January 2023 09.09 > > VRRP advertisement packets are dropped on i40e PF devices because > when a MAC address is added to a device, packets originating from > that MAC address are dropped. > > This patch adds a PMD specific API to

RE: [PATCH v7 1/6] eal: trace: add trace point emit for blob

2023-01-30 Thread Sunil Kumar Kori
> -Original Message- > From: Morten Brørup > Sent: Monday, January 30, 2023 1:45 PM > To: Sunil Kumar Kori ; Ankur Dwivedi > ; dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; > or...@nvidia.com; ferruh.yi...@amd.com; ch...@att.com; > humi...@huawei.com; l

RE: [PATCH v7 2/6] ethdev: add trace points for ethdev (part one)

2023-01-30 Thread Sunil Kumar Kori
> -Original Message- > From: Ankur Dwivedi > Sent: Monday, January 23, 2023 2:32 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; > or...@nvidia.com; ferruh.yi...@amd.com; ch...@att.com; > humi...@huawei.com; linvi...@tuxdriver.com; ciara.lof...@i

RE: [PATCH v7 3/6] ethdev: add trace points for ethdev (part two)

2023-01-30 Thread Sunil Kumar Kori
> -Original Message- > From: Ankur Dwivedi > Sent: Monday, January 23, 2023 2:32 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; > or...@nvidia.com; ferruh.yi...@amd.com; ch...@att.com; > humi...@huawei.com; linvi...@tuxdriver.com; ciara.lof...@i

RE: [PATCH v7 5/6] ethdev: add trace points for mtr

2023-01-30 Thread Sunil Kumar Kori
> -Original Message- > From: Ankur Dwivedi > Sent: Monday, January 23, 2023 2:32 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; > or...@nvidia.com; ferruh.yi...@amd.com; ch...@att.com; > humi...@huawei.com; linvi...@tuxdriver.com; ciara.lof...@i

Re: [PATCH v2] net/i40e: support enabling/disabling source pruning

2023-01-30 Thread David Marchand
On Mon, Jan 30, 2023 at 9:23 AM Ke Zhang wrote: > > VRRP advertisement packets are dropped on i40e PF devices because > when a MAC address is added to a device, packets originating from > that MAC address are dropped. > > This patch adds a PMD specific API to enable/disable source > pruning to fix

Re: [PATCH v3] app/dma-perf: introduce dma-perf application

2023-01-30 Thread Bruce Richardson
On Sat, Jan 28, 2023 at 01:32:05PM +, Jiang, Cheng1 wrote: > Hi Bruce, > > Sorry for the late reply. We are in the Spring Festival holiday last week. > Thanks for your comments. > Replies are inline. > > Thanks, > Cheng > > > -Original Message- > > From: Richardson, Bruce > > Sent:

[RFC] config: customize max memzones configuration

2023-01-30 Thread Ophir Munk
In current DPDK the RTE_MAX_MEMZONE definition is unconditionally hard coded as 2560. For applications requiring different values of this parameter – it is more convenient to set its value as part of the meson command line or to set the max value via an rte API - rather than changing the dpdk sour

[PATCH V2 01/10] net/hns3: fix error log about indirection table size

2023-01-30 Thread Dongdong Liu
From: Huisong Li The error log about indirection table size during initialization phase of PF and VF is unreasonable when the indirection table size obtained from firmware or PF function should be zero. In addition, VF driver should use error level to print this log. Fixes: 0fce2c46dc16 ("net/hn

[PATCH V2 00/10] net/hns3: some bugfixes for rss

2023-01-30 Thread Dongdong Liu
This patchset is to do some bugfixes for hns3 rss. v1->v2: - Fix missing comparison of types and level when verifying duplicate rules for [PATCH 10/10]. Huisong Li (10): net/hns3: fix error log about indirection table size net/hns3: extract common API to query device net/hns3: refactor se

[PATCH V2 04/10] net/hns3: fix fixed RSS key size to be more compatibility

2023-01-30 Thread Dongdong Liu
From: Huisong Li For better compatibility, the RSS key size of PF and VF are obtained from firmware. However, many places still used the old macro HNS3_RSS_KEY_SIZE as the key size. Fixes: 9c740336f024 ("net/hns3: get device specifications from firmware") Cc: sta...@dpdk.org Signed-off-by: Huis

[PATCH V2 03/10] net/hns3: refactor set RSS hash algorithm and key interface

2023-01-30 Thread Dongdong Liu
From: Huisong Li The hns3_rss_set_algo_key() is used to set RSS hash algorithm and key to hardware. The maximum times of command sent to firmware depend on the length of key. However, now this times is fixed, which isn't good for key expansion. In addition, hash algorithm comes from rss_info::has

[PATCH V2 02/10] net/hns3: extract common API to query device

2023-01-30 Thread Dongdong Liu
From: Huisong Li Extract common function to query device specifications. Fixes: 9c740336f024 ("net/hns3: get device specifications from firmware") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_common.c| 75

[PATCH V2 05/10] net/hns3: fix misclearing RSS configuration

2023-01-30 Thread Dongdong Liu
From: Huisong Li The RSS configuration will be miscleared when driver receives a RSS rule which has more one RSS action. Fixes: c37ca66f2b27 ("net/hns3: support RSS") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_flow.c | 4 +--- 1 file c

[PATCH V2 08/10] net/hns3: fix useless warning when flush or destroy rule

2023-01-30 Thread Dongdong Liu
From: Huisong Li The types of the rule will no longer be used when user flush all rules or destroy a rule. But user would receive some RSS types warnings, like, "modified RSS types based on hardware support, requested:0x137f83fffc configured:0x3ffc". Fixes: ec674cb742e5 ("net/hns3: fix flushing

[PATCH V2 07/10] net/hns3: remove useless code when destroy valid RSS rule

2023-01-30 Thread Dongdong Liu
From: Huisong Li The hw::rss_info::conf::func was set to the macro RTE_ETH_HASH_FUNCTION_MAX and hw::rss_info::conf::queue was set to NULL when all rules are flushed, which indicates no flow rules is issued. See commit eb158fc756a5 ("net/hns3: fix config when creating RSS rule after flush"). Actu

[PATCH V2 06/10] net/hns3: using RSS filter list to check duplicated rule

2023-01-30 Thread Dongdong Liu
From: Huisong Li All rules from user are saved in RSS filter list, so use RSS filter list to check duplicated rule. Fixes: c37ca66f2b27 ("net/hns3: support RSS") Cc: sta...@dpdk.org Signed-off-by: Huisong Li Signed-off-by: Dongdong Liu --- drivers/net/hns3/hns3_flow.c | 35 ++

[PATCH V2 09/10] net/hns3: fix bad memory structure conversion

2023-01-30 Thread Dongdong Liu
From: Huisong Li When the type in 'struct rte_flow_action' is RTE_FLOW_ACTION_TYPE_RSS, the 'conf' pointer references the 'struct rte_flow_action_rss' instead of the 'struct hns3_rss_conf' in driver. But driver uses 'struct hns3_rss_conf' to convert this 'conf' pointer to get RSS action configura

[PATCH V2 10/10] net/hns3: fix incorrect check for duplicate RSS rule

2023-01-30 Thread Dongdong Liu
From: Huisong Li Currently, the interface for verifying duplicate RSS rules has some problems: 1) If the value of 'func' in configuring RSS rule is default value, this rule is mistakenly considered as a duplicate rule. 2) If key length is zero or 'key' is NULL in configuring RSS rule this r

Re: [PATCH v2 1/2] vhost: fix possible FDs leak

2023-01-30 Thread Maxime Coquelin
On 1/29/23 10:25, David Marchand wrote: On Fri, Jan 27, 2023 at 5:55 PM Maxime Coquelin wrote: On failure, read_vhost_message() only closed the message FDs if the header size was unexpected, but there are other cases where it is required. For exemple in the case the payload size read from t

Re: [RFC] config: customize max memzones configuration

2023-01-30 Thread Bruce Richardson
On Mon, Jan 30, 2023 at 11:23:02AM +0200, Ophir Munk wrote: > In current DPDK the RTE_MAX_MEMZONE definition is unconditionally hard > coded as 2560. For applications requiring different values of this > parameter – it is more convenient to set its value as part of the meson > command line or to s

RE: [PATCH v2 1/3] eventdev/eth_rx: add params set/get APIs

2023-01-30 Thread Naga Harish K, S V
> -Original Message- > From: Jerin Jacob > Sent: Saturday, January 28, 2023 4:24 PM > To: Naga Harish K, S V > Cc: jer...@marvell.com; Carrillo, Erik G ; Gujjar, > Abhinandan S ; dev@dpdk.org; > Jayatheerthan, Jay > Subject: Re: [PATCH v2 1/3] eventdev/eth_rx: add params set/get APIs >

Re: [RFC] config: customize max memzones configuration

2023-01-30 Thread Dmitry Kozlyuk
2023-01-30 11:23 (UTC+0200), Ophir Munk: > In current DPDK the RTE_MAX_MEMZONE definition is unconditionally hard > coded as 2560. For applications requiring different values of this > parameter – it is more convenient to set its value as part of the meson > command line or to set the max value vi

RE: [dpdk-dev] [RFC] testpmd: support user-id attribute

2023-01-30 Thread Asaf Penso
Hello Aman, Can you clarify your intention? Like Eli mentioned, the group_id is less relevant for that purpose. Even with the same group_id we wish to have several different flows with different user-id. All, Do you have any other comments? We would like to proceed with the process of sending v1

RE: [PATCH v7] mem: telemetry support for memseg and element information

2023-01-30 Thread Amit Prakash Shukla
Ping. > -Original Message- > From: Amit Prakash Shukla > Sent: Tuesday, December 6, 2022 5:17 PM > To: david.march...@redhat.com > Cc: dev@dpdk.org; Jerin Jacob Kollanukkaran ; > bruce.richard...@intel.com; ciara.po...@intel.com; > dmitry.kozl...@gmail.com; Anatoly Burakov ; > Amit Prakash

Expect slowness in CI during the week of Feb 5

2023-01-30 Thread Raslan Darawsheh
Hi Guys, Because we are migrating our servers from MTR to MTL, We need to have a shutdown for some of our services/servers in MTR which will affect our CI. In general, the services should continue working, but with a slower resolution time. One of our services (dpdk-tests) will be fully down (c

Re: [PATCH V8 0/8] telemetry: fix data truncation and conversion error and add hex integer API

2023-01-30 Thread lihuisong (C)
Kindly ping. 在 2023/1/16 20:06, lihuisong (C) 写道: Hi Ferruh and Andrew, This patch series optimizes some codes and bug. Can you take a look at this patch series? If there are no other questions, can it be merged? Best, Huisong 在 2022/12/19 15:06, Huisong Li 写道: Some lib telemetry interfaces

RE: Expect slowness in CI during the week of Feb 5

2023-01-30 Thread Raslan Darawsheh
You can disregard this email! It was sent by mistake to the wrong mailing address. Sorry for the spam! Kindest regards, Raslan Darawsheh From: Raslan Darawsheh Sent: Monday, January 30, 2023 12:34 PM To: dpdk-team ; dpdk-dev ; shys-org Cc: Ali Alnubani ; Shy Shyman Subject: Expect slowness in

[PATCH] test/crypto: fix typo in AES test

2023-01-30 Thread Vikash Poddar
Fix the spelling of scater to scatter in cryptodev AES test vector header file Fixes: 2692b02e03b2 ("test/crypto: add multi-segment out-of-place AES-XTS") Cc: shi...@nvidia.com Signed-off-by: Vikash Poddar --- .mailmap | 1 + app/test/test_cryptodev_aes_test_v

[PATCH v3 00/11] add flex item support

2023-01-30 Thread Rongwei Liu
Support flex item matching and modify field in async flow. Syntax follows sync flow exactly. v3: enhance format, add flex_handle document. Rongwei Liu (11): ethdev: add flex item modify field support app/testpmd: pass flex handle into matching mask net/mlx5: enable hws flex item create ne

[PATCH v3 01/11] ethdev: add flex item modify field support

2023-01-30 Thread Rongwei Liu
Add flex item as modify field destination. Add "struct rte_flow_item_flex_handle *flex_handle" into "struct rte_flow_action_modify_data" as union with existed "level" member. This new member is dedicated for modifying flex item. Add flex item modify field cmdline support. Now user can use testpmd

[PATCH v3 03/11] net/mlx5: enable hws flex item create

2023-01-30 Thread Rongwei Liu
Enable flex item create and destroy with dv_flow_en=2 Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/linux/mlx5_os.c | 27 +++ drivers/net/mlx5/mlx5_flow_hw.c | 2 ++ 2 files changed, 17 insertions(+), 12 deletions(-) diff --git a/drive

[PATCH v3 02/11] app/testpmd: pass flex handle into matching mask

2023-01-30 Thread Rongwei Liu
In async flow create API, there is only mask information when creating flow table but flex item handle is required to parse the HW sample information. Pass the flex item handle instead of UINT64/32_MAX to mask. Signed-off-by: Rongwei Liu Acked-by: Ori Kam --- app/test-pmd/cmdline_flow.c | 8 ++

[PATCH v3 05/11] net/mlx5: adopt new flex item prm definition

2023-01-30 Thread Rongwei Liu
Per newest PRM definition, sample_id stands for 3 parts of information instead of single uint32_t id: sample_id + modify_filed_id + format_select_dw. Also new FW capability bits have been introduces to identify the new capability. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- d

[PATCH v3 04/11] net/mlx5: add IPv6 protocol as flex item input

2023-01-30 Thread Rongwei Liu
Support IPv6 protocol as new flex item input link. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/mlx5_flow_flex.c | 19 +++ 1 file changed, 19 insertions(+) diff --git a/drivers/net/mlx5/mlx5_flow_flex.c b/drivers/net/mlx5/mlx5_flow_flex.c inde

[PATCH v3 06/11] net/mlx5/hws: add hws flex item matching support

2023-01-30 Thread Rongwei Liu
Support flex item matching in hws and syntax follows sws exactly. Flex item should be created in advance and follow current json mapping logic. Signed-off-by: Rongwei Liu Reviewed-by: Alex Vesker Acked-by: Viacheslav Ovsiienko --- drivers/net/mlx5/hws/mlx5dr_definer.c | 83 ++

[PATCH v3 07/11] net/mlx5: add flex item modify field implementation

2023-01-30 Thread Rongwei Liu
Add flex item modify field HWS implementation. The minimum modify boundary is one byte. Signed-off-by: Rongwei Liu Acked-by: Viacheslav Ovsiienko --- drivers/common/mlx5/mlx5_prm.h | 1 + drivers/net/mlx5/mlx5_flow.h| 3 + drivers/net/mlx5/mlx5_flow_dv.c | 165 +

[PATCH v3 08/11] net/mlx5: return error for sws modify field

2023-01-30 Thread Rongwei Liu
Return unsupported error message when application tries to modify flex item field. Validation of packet modifications actions for SW Steering checked if either source or destination field of MODIFY_FIELD action was a flex item. When DEC_TTL action is used, DEC_TTL action does not have any action c

[PATCH v3 09/11] app/testpmd: raw encap with flex item support

2023-01-30 Thread Rongwei Liu
Application should retrieve raw_encap buffer from spec->pattern if it is flex item. Signed-off-by: Rongwei Liu Acked-by: Ori Kam --- app/test-pmd/cmdline_flow.c | 26 +- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/app/test-pmd/cmdline_flow.c b/app/test

[PATCH v3 10/11] doc/mlx5: update mlx5 doc

2023-01-30 Thread Rongwei Liu
Add flex item matching and modify field feature into mlx5 documents. Signed-off-by: Rongwei Liu Acked-by: Ori Kam --- doc/guides/nics/mlx5.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/guides/nics/mlx5.rst b/doc/guides/nics/mlx5.rst index f137f156f9..aceeeb462c 100644 --- a/doc/gu

[PATCH v3 11/11] app/testpmd: adjust cleanup sequence when quitting

2023-01-30 Thread Rongwei Liu
If flex item is referenced in async flow either by pattern template or action template, currently testpmd complains "flex item has flow references". Flex items should be flushed after async flow resources cleanup. Signed-off-by: Rongwei Liu Acked-by: Ori Kam --- app/test-pmd/testpmd.c | 2 +- 1

RE: [EXT] Re: [PATCH v6 1/6] eal: trace: add trace point emit for blob

2023-01-30 Thread Ankur Dwivedi
>-Original Message- >From: Ferruh Yigit >Sent: Wednesday, January 25, 2023 9:40 PM >To: Ankur Dwivedi ; dev@dpdk.org >Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; >or...@nvidia.com; ch...@att.com; humi...@huawei.com; >linvi...@tuxdriver.com; ciara.lof...@intel.com;

Re: [PATCH v2 1/2] vhost: fix possible FDs leak

2023-01-30 Thread David Marchand
On Mon, Jan 30, 2023 at 10:46 AM Maxime Coquelin wrote: > > > > On 1/29/23 10:25, David Marchand wrote: > > On Fri, Jan 27, 2023 at 5:55 PM Maxime Coquelin > > wrote: > >> > >> On failure, read_vhost_message() only closed the message > >> FDs if the header size was unexpected, but there are other

RE: [PATCH] test/crypto: fix typo in AES test

2023-01-30 Thread Ji, Kai
Acked-by: Kai Ji > -Original Message- > From: Vikash Poddar > Sent: Monday, January 30, 2023 12:03 PM > To: Thomas Monjalon ; Akhil Goyal > ; Fan Zhang > Cc: dev@dpdk.org; Poddar, Vikash ChandraX > ; shi...@nvidia.com > Subject: [PATCH] test/crypto: fix typo in AES test > > Fix the spe

Re: [PATCH v2] eventdev: add trace points

2023-01-30 Thread Jerin Jacob
On Mon, Jan 30, 2023 at 3:44 PM Amit Prakash Shukla wrote: > > Add trace points for eventdev functions. > > Signed-off-by: Amit Prakash Shukla > --- > diff --git a/lib/eventdev/version.map b/lib/eventdev/version.map > index 4405cd38eb..f6ab242a3d 100644 > --- a/lib/eventdev/version.map > +++ b/l

Re: [PATCH v2 1/3] eventdev/eth_rx: add params set/get APIs

2023-01-30 Thread Jerin Jacob
On Mon, Jan 30, 2023 at 3:26 PM Naga Harish K, S V wrote: > > > > > -Original Message- > > From: Jerin Jacob > > Sent: Saturday, January 28, 2023 4:24 PM > > To: Naga Harish K, S V > > Cc: jer...@marvell.com; Carrillo, Erik G ; > > Gujjar, > > Abhinandan S ; dev@dpdk.org; > > Jayatheert

Re: [RFC] ethdev: add template table insertion and matching types

2023-01-30 Thread Thomas Monjalon
23/01/2023 23:02, Alexander Kozyrev: > > 21/01/2023 00:06, Alexander Kozyrev: > > > > 14/12/2022 03:21, Alexander Kozyrev: > > > > > Bring more flexibility and control over both flow rule insertion > > > > > and packet matching mechanisms. Introduce 2 new flow table types: > > > > > > > > > > 1. Al

RE: [PATCH v7] ethdev: add special flags when creating async transfer table

2023-01-30 Thread Rongwei Liu
HI Ivan BR Rongwei > -Original Message- > From: Ivan Malov > Sent: Monday, January 30, 2023 15:40 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko > ; dev@dpdk.

RE: [EXT] Re: [PATCH v2] eventdev: add trace points

2023-01-30 Thread Amit Prakash Shukla
Thanks Jerin for the review and feedback. Sure, I will send next version of the patch without symbols. > -Original Message- > From: Jerin Jacob > Sent: Monday, January 30, 2023 8:02 PM > To: Amit Prakash Shukla > Cc: Jerin Jacob Kollanukkaran ; Abhinandan Gujjar > ; Naga Harish K S V >

Re: [PATCH v10 4/4] eal: deprecation notice for rte thread setname API

2023-01-30 Thread Thomas Monjalon
Hi, The title should start with a verb. I suppose it can be fixed while merging with a title like: doc: announce deprecation of thread naming function 24/01/2023 19:12, Tyler Retzlaff: > Notify deprecation of rte_thread_setname API, it will be removed as it > exposes platform-specific thread det

RE: [EXT] Re: [PATCH v6 2/6] ethdev: add trace points for ethdev (part one)

2023-01-30 Thread Ankur Dwivedi
>-Original Message- >From: Ferruh Yigit >Sent: Monday, January 23, 2023 10:59 PM >To: Ankur Dwivedi ; dev@dpdk.org; David >Marchand >Cc: tho...@monjalon.net; david.march...@redhat.com; m...@ashroe.eu; >or...@nvidia.com; ch...@att.com; humi...@huawei.com; >linvi...@tuxdriver.com; ciara.lo

Re: [PATCH v10 4/4] eal: deprecation notice for rte thread setname API

2023-01-30 Thread David Marchand
On Mon, Jan 30, 2023 at 4:47 PM Thomas Monjalon wrote: > > Hi, > > The title should start with a verb. > I suppose it can be fixed while merging with a title like: > doc: announce deprecation of thread naming function Yes, I will handle it. > 24/01/2023 19:12, Tyler Retzlaff: > > Notify deprecat

Re: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Stephen Hemminger
On Mon, 30 Jan 2023 05:59:33 +0200 Rongwei Liu wrote: > +static size_t > +rte_flow_item_ipv6_routing_ext_conv(void *buf, const void *data) > +{ > + struct rte_flow_item_ipv6_routing_ext *dst = buf; > + const struct rte_flow_item_ipv6_routing_ext *src = data; > + size_t len; > + > +

[PATCH v2 2/2] ethdev: introduce the PHY affinity field in Tx queue API

2023-01-30 Thread Jiawei Wang
For the multiple hardware ports connect to a single DPDK port (mhpsdp), the previous patch introduces the new rte flow item to match the phy affinity of the received packets. This patch adds the tx_phy_affinity setting in Tx queue API, the affinity value reflects packets be sent to which hardware

[PATCH v2 0/2] add new PHY affinity in the flow item and Tx queue API

2023-01-30 Thread Jiawei Wang
For the multiple hardware ports connect to a single DPDK port (mhpsdp), currently, there is no information to indicate the packet belongs to which hardware port. This patch introduces a new phy affinity item in rte flow API, and the phy affinity value reflects the physical phy affinity of the rece

[PATCH v2 1/2] ethdev: add PHY affinity match item

2023-01-30 Thread Jiawei Wang
For the multiple hardware ports connect to a single DPDK port (mhpsdp), currently, there is no information to indicate the packet belongs to which hardware port. This patch introduces a new phy affinity item in rte flow API, and the phy affinity value reflects the physical port of the received pac

Re: [PATCH v4 3/3] ethdev: add standby flags for live migration

2023-01-30 Thread Jerin Jacob
On Mon, Jan 30, 2023 at 8:17 AM Rongwei Liu wrote: > > Hi Jerin > > BR > Rongwei > > > -Original Message- > > From: Jerin Jacob > > Sent: Monday, January 23, 2023 21:20 > > To: Rongwei Liu > > Cc: dev@dpdk.org; Matan Azrad ; Slava Ovsiienko > > ; Ori Kam ; NBU-Contact- > > Thomas Monjalo

RE: [RFC v2 7/9] net/gve: support basic stats for DQO

2023-01-30 Thread Honnappa Nagarahalli
Few comments inline > -Original Message- > From: Junfeng Guo > Sent: Monday, January 30, 2023 12:27 AM > To: qi.z.zh...@intel.com; jingjing...@intel.com; ferruh.yi...@amd.com; > beilei.x...@intel.com > Cc: dev@dpdk.org; xiaoyun...@intel.com; helin.zh...@intel.com; Junfeng Guo > ; Rushil G

RE: [RFC v2 6/9] net/gve: support basic Rx data path for DQO

2023-01-30 Thread Honnappa Nagarahalli
> -Original Message- > From: Junfeng Guo > Sent: Monday, January 30, 2023 12:27 AM > To: qi.z.zh...@intel.com; jingjing...@intel.com; ferruh.yi...@amd.com; > beilei.x...@intel.com > Cc: dev@dpdk.org; xiaoyun...@intel.com; helin.zh...@intel.com; Junfeng Guo > ; Rushil Gupta ; Jordan > Ki

RE: [EXT] [PATCH 1/4] compressdev: add LZ4 algorithm support

2023-01-30 Thread Akhil Goyal
> +/** > + * Block checksum flag. > + * If this flag is set, each data block will be followed by a 4-bytes > checksum, > + * calculated by using the xxHash-32 algorithm on the raw (compressed) data > + * block. The intention is to detect data corruption (storage or transmission > + * errors) immed

RE: [EXT] [PATCH v2 1/4] crypto/ccp: remove some printf

2023-01-30 Thread Akhil Goyal
> A DPDK application must _not_ use printf. > Use log framework. > > Fixes: ef4b04f87fa6 ("crypto/ccp: support device init") > Cc: sta...@dpdk.org > > Signed-off-by: David Marchand First 3 patches of the series applied to dpdk-next-crypto Please submit the last patch again with the required cha

Re: [PATCH v9] testpmd: cleanup cleanly from signal

2023-01-30 Thread Ferruh Yigit
On 1/25/2023 6:32 PM, Stephen Hemminger wrote: > Do a clean shutdown of testpmd when a signal is received; instead of > having testpmd kill itself. This fixes the problem where a signal could > be received in the middle of a PMD and then the signal handler would > call PMD's close routine leading

RE: [PATCH 3/4] cryptodev: introduce query API for error interrupt event

2023-01-30 Thread Akhil Goyal
> Subject: [PATCH 3/4] cryptodev: introduce query API for error interrupt event > > An event RTE_CRYPTODEV_EVENT_ERROR gets fired when crypto PMD receives > an error interrupt. This patch adds query function for the application, > to get more info about the event. > > Signed-off-by: Srujana Chall

RE: [PATCH 4/4] crypto/cnxk: add error interrupt event query handler

2023-01-30 Thread Akhil Goyal
> Subject: [PATCH 4/4] crypto/cnxk: add error interrupt event query handler > > Adds RTE_CRYPTODEV_EVENT_ERROR query handler for cn9k/cn10k PMD. > The query handler finds the next queue pair ID with pending error > interrupt event if any, starting from the given queue pair index, > for the device.

RE: [PATCH v2 1/3] cryptodev: add SHAKE algorithm

2023-01-30 Thread Akhil Goyal
> -Original Message- > From: Volodymyr Fialko > Sent: Thursday, January 12, 2023 4:18 PM > To: dev@dpdk.org; Akhil Goyal ; Fan Zhang > > Cc: Jerin Jacob Kollanukkaran ; Anoob Joseph > ; Volodymyr Fialko > Subject: [PATCH v2 1/3] cryptodev: add SHAKE algorithm > > Add SHAKE to enum of

RE: [PATCH v2 2/3] app/test: add SHAKE test cases

2023-01-30 Thread Akhil Goyal
> Subject: [PATCH v2 2/3] app/test: add SHAKE test cases > > Add test cases for SHAKE hash algorithm for Digest and Digest-Verify. > > Signed-off-by: Volodymyr Fialko > --- Acked-by: Akhil Goyal

RE: [PATCH] test/crypto: add missing MAC-I to PDCP vectors

2023-01-30 Thread Akhil Goyal
> Subject: [PATCH] test/crypto: add missing MAC-I to PDCP vectors > > Existing PDCP 12-bit C/U-plane output vectors with NULL encryption + NULL > integrity do not contain the MAC-I (32-bit of all zeros according to the > specification). > Vectors for other SN length (5, 18 bits) have the MAC-I set

RE: [EXT] [PATCH] compressdev: fix end of comp PMD list macro conflict

2023-01-30 Thread Akhil Goyal
> The "rte_compressdev_info_get()" function retrieves the contextual > information of a device. > The output structure "dev_info" contains a list of devices supported > capabilities for each supported algorithm. > > In this function description, it says the element after the last valid > element h

[PATCH v10 0/2] testpmd: handle signals safely

2023-01-30 Thread Stephen Hemminger
Fixing the signal handling in testpmd requires also fixing EOF handling in cmdline_poll() Stephen Hemminger (2): cmdline: handle EOF in cmdline_poll testpmd: cleanup cleanly from signal app/test-pmd/cmdline.c | 30 ++-- app/test-pmd/testpmd.c | 77

[PATCH v10 1/2] cmdline: handle EOF in cmdline_poll

2023-01-30 Thread Stephen Hemminger
If end of file is reached on input, then cmdline_read_char() will return 0. The problem is that cmdline_poll() was not checking for this and would continue and not return the status. Fixes: 9251cd97a6be ("cmdline: add internal wrappers for character input") Signed-off-by: Stephen Hemminger --- l

[PATCH v10 2/2] testpmd: cleanup cleanly from signal

2023-01-30 Thread Stephen Hemminger
Do a clean shutdown of testpmd when a signal is received; instead of having testpmd kill itself. This fixes the problem where a signal could be received in the middle of a PMD and then the signal handler would call PMD's close routine leading to locking problems. An added benefit is it gets rid o

Re: [PATCH v9] testpmd: cleanup cleanly from signal

2023-01-30 Thread Stephen Hemminger
On Mon, 30 Jan 2023 18:48:25 + Ferruh Yigit wrote: > On 1/25/2023 6:32 PM, Stephen Hemminger wrote: > > Do a clean shutdown of testpmd when a signal is received; instead of > > having testpmd kill itself. This fixes the problem where a signal could > > be received in the middle of a PMD and

Re: Commit broke 32-bit testpmd app

2023-01-30 Thread Sampath Peechu (speechu)
Hi Maxime, Could you please let us know if you got a chance to look at the debugs logs I provided? Thanks, Sampath From: Sampath Peechu (speechu) Date: Tuesday, December 6, 2022 at 1:08 PM To: Maxime Coquelin , chenbo@intel.com , dev@dpdk.org Cc: Roger Melton (rmelton) Subject: Re: Com

Re: [PATCH v10 4/4] eal: deprecation notice for rte thread setname API

2023-01-30 Thread Tyler Retzlaff
On Mon, Jan 30, 2023 at 05:19:20PM +0100, David Marchand wrote: > On Mon, Jan 30, 2023 at 4:47 PM Thomas Monjalon wrote: > > > > Hi, > > > > The title should start with a verb. > > I suppose it can be fixed while merging with a title like: > > doc: announce deprecation of thread naming function >

RE: [EXT] [PATCH 1/4] compressdev: add LZ4 algorithm support

2023-01-30 Thread Michael Baum
On Mon, Jan 30, 2023 at 20:35 PM Akhil Goyal wrote: > > > +/** > > + * Block checksum flag. > > + * If this flag is set, each data block will be followed by a 4-bytes > > checksum, > > + * calculated by using the xxHash-32 algorithm on the raw (compressed) data > > + * block. The intention is t

Re: [PATCH v10 1/2] cmdline: handle EOF in cmdline_poll

2023-01-30 Thread Ferruh Yigit
On 1/30/2023 8:09 PM, Stephen Hemminger wrote: > If end of file is reached on input, then cmdline_read_char() > will return 0. The problem is that cmdline_poll() was not checking > for this and would continue and not return the status. > > Fixes: 9251cd97a6be ("cmdline: add internal wrappers for c

Re: [PATCH v10 0/2] testpmd: handle signals safely

2023-01-30 Thread Ferruh Yigit
On 1/30/2023 8:09 PM, Stephen Hemminger wrote: > Fixing the signal handling in testpmd requires also > fixing EOF handling in cmdline_poll() > > Stephen Hemminger (2): > cmdline: handle EOF in cmdline_poll > testpmd: cleanup cleanly from signal > I confirm this solves the EOF issue, but plea

RE: [PATCH v7] ethdev: add special flags when creating async transfer table

2023-01-30 Thread Ivan Malov
Hi Rongwei, Thanks for the professional attitude. Hope this discussion gets us on the same page. Please see below. On Mon, 30 Jan 2023, Rongwei Liu wrote: HI Ivan BR Rongwei -Original Message- From: Ivan Malov Sent: Monday, January 30, 2023 15:40 To: Rongwei Liu Cc: Matan Azrad ;

Re: [PATCH] net/gve: add support for basic stats

2023-01-30 Thread Joshua Washington
Hello, I tested it out, and the updates to testpmd seem to work. Before applying the second patch: -- Forward statistics for port 0 -- RX-packets: 0 RX-dropped: 0 RX-total: 0 TX-packets: 43769238 TX-dropped: 62634

RE: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Rongwei Liu
HI Stephen: BR Rongwei > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 31, 2023 00:48 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko >

RE: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Rongwei Liu
HI Stephen: BR Rongwei > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 31, 2023 00:50 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko >

RE: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Rongwei Liu
HI Stephen BR Rongwei > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 31, 2023 00:48 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko >

[PATCH v3 0/2] add ring telemetry cmds

2023-01-30 Thread Jie Hai
This patch set supports telemetry list rings and dump info of a ring by its name. v1->v2: 1. Add space after "switch". 2. Fix wrong strlen parameter. v2->v3: 1. Remove prefix "rte_" for static function. 2. Add Acked-by Konstantin Ananyev for PATCH 1. 3. Introduce functions to return strings inste

[PATCH v3 1/2] ring: add ring list telemetry cmd

2023-01-30 Thread Jie Hai
This patch supports the list of rings with telemetry cmd. An example using this command is shown below: --> /ring/list { "/ring/list": [ "HT_:7d:00.2", "MP_mb_pool_0" ] } Signed-off-by: Jie Hai Acked-by: Konstantin Ananyev --- lib/ring/meson.build | 1 + lib/ring/rte_ring.c |

[PATCH v3 2/2] ring: add ring info telemetry cmd

2023-01-30 Thread Jie Hai
This patch supports dump of the info of ring by its name. An example using this command is shown below: --> /ring/info,MP_mb_pool_0 { "/ring/info": { "name": "MP_mb_pool_0", "socket": 0, "flags": 0, "producer_type": "MP", "consumer_type": "MC", "size": 262144, "mask":

[PATCH] test/mbuf: fix mbuf_autotest retest fail

2023-01-30 Thread Jie Hai
Retest "mbuf_autotest" will fail because the mbuf pool was not freed after previous test successful done. This patch fixes it. Fixes: efc6f9104c80 ("mbuf: fix reset on mbuf free") Cc: sta...@dpdk.org Signed-off-by: Jie Hai --- app/test/test_mbuf.c | 1 + 1 file changed, 1 insertion(+) diff --g

RE: [PATCH v4 3/3] ethdev: add standby flags for live migration

2023-01-30 Thread Rongwei Liu
HI Jerin: BR Rongwei > -Original Message- > From: Jerin Jacob > Sent: Tuesday, January 31, 2023 01:10 > To: Rongwei Liu > Cc: dev@dpdk.org; Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; > step...@networkplumber.org; Raslan Darawsheh ; > Ferruh Y

Re: [PATCH v10 1/2] cmdline: handle EOF in cmdline_poll

2023-01-30 Thread Stephen Hemminger
On Mon, 30 Jan 2023 22:12:42 + Ferruh Yigit wrote: > On 1/30/2023 8:09 PM, Stephen Hemminger wrote: > > If end of file is reached on input, then cmdline_read_char() > > will return 0. The problem is that cmdline_poll() was not checking > > for this and would continue and not return the status

[PATCH] examples/l3fwd-power: support CPPC cpufreq

2023-01-30 Thread Jie Hai
Currently the l3fwd-power only supports ACPI cpufreq and Pstate cpufreq, This patch adds CPPC cpufreq. Signed-off-by: Jie Hai --- examples/l3fwd-power/main.c | 9 ++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/examples/l3fwd-power/main.c b/examples/l3fwd-power/main.c ind

Re: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Stephen Hemminger
On Mon, 30 Jan 2023 05:59:33 +0200 Rongwei Liu wrote: > +/** > + * @warning > + * @b EXPERIMENTAL: this structure may change without prior notice > + * > + * RTE_FLOW_ITEM_TYPE_IPV6_ROUTING_EXT. > + * > + * Matches an IPv6 routing extension header. > + */ > +struct rte_flow_item_ipv6_routing_ext

RE: [PATCH v7] ethdev: add special flags when creating async transfer table

2023-01-30 Thread Rongwei Liu
HI Ivan BR Rongwei > -Original Message- > From: Ivan Malov > Sent: Tuesday, January 31, 2023 07:00 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko > ; dev@dpdk

Re: [PATCH v2 1/2] ring: add ring list telemetry cmd

2023-01-30 Thread Jie Hai
On 2023/1/23 0:40, Konstantin Ananyev wrote: Hi Jie, This patch supports the list of rings with telemetry cmd. An example using this command is shown below: --> /ring/list {    "/ring/list": [ "HT_:7d:00.2", "MP_mb_pool_0"    ] } Signed-off-by: Jie Hai ---   lib/ring/meson.bu

Re: [PATCH v2 2/2] ring: add ring info telemetry cmd

2023-01-30 Thread Jie Hai
Hi, Konstantin, Thanks for your review. All accepted and fixed in v3. Jie Hai On 2023/1/23 1:49, Konstantin Ananyev wrote: This patch supports dump of the info of ring by its name. An example using this command is shown below: --> /ring/info,MP_mb_pool_0 {    "/ring/info": { "name": "M

RE: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Rongwei Liu
HI Stephen BR Rongwei > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 31, 2023 10:56 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko >

RE: [PATCH v3] malloc: enhance NUMA affinity heuristic

2023-01-30 Thread You, KaisenX
> -Original Message- > From: David Marchand > Sent: 2023年1月3日 21:32 > To: dev@dpdk.org > Cc: Matz, Olivier ; ferruh.yi...@amd.com; You, > KaisenX ; zhou...@loongson.cn; Burakov, Anatoly > > Subject: [PATCH v3] malloc: enhance NUMA affinity heuristic > > Trying to allocate memory on th

RE: [PATCH v3 1/8] ethdev: add IPv6 routing extension header definition

2023-01-30 Thread Rongwei Liu
Hi Stephen BR Rongwei > -Original Message- > From: Stephen Hemminger > Sent: Tuesday, January 31, 2023 11:02 > To: Rongwei Liu > Cc: Matan Azrad ; Slava Ovsiienko > ; Ori Kam ; NBU-Contact- > Thomas Monjalon (EXTERNAL) ; Aman Singh > ; Yuying Zhang ; > Ferruh Yigit ; Andrew Rybchenko >

RE: [PATCH v2] net/i40e: support enabling/disabling source pruning

2023-01-30 Thread Zhang, Ke1X
> -Original Message- > From: David Marchand > Sent: Monday, January 30, 2023 4:58 PM > To: Zhang, Ke1X ; m...@smartsharesystems.com; > tho...@monjalon.net; ferruh.yi...@amd.com > Cc: dev@dpdk.org; Matz, Olivier ; Zhang, Yuying > ; Xing, Beilei > Subject: Re: [PATCH v2] net/i40e: support

[PATCH V5 0/5] app/testpmd: support multiple process attach and detach port

2023-01-30 Thread Huisong Li
This patchset fix some bugs and support attaching and detaching port in primary and secondary. --- -v5: move 'ALLOCATED' state to the back of 'REMOVED' to avoid abi break. -v4: fix a misspelling. -v3: #1 merge patch 1/6 and patch 2/6 into patch 1/5, and add modification for other bus

  1   2   >