[PATCH v2] hash: fix SSE comparison

2023-10-07 Thread Jieqiang Wang
__mm_cmpeq_epi16 returns 0x if the corresponding 16-bit elements are equal. In original SSE2 implementation for function compare_signatures, it utilizes _mm_movemask_epi8 to create mask from the MSB of each 8-bit element, while we should only care about the MSB of lower 8-bit in each 16-bit ele

[PATCH v3] hash: fix SSE comparison

2023-10-07 Thread Jieqiang Wang
__mm_cmpeq_epi16 returns 0x if the corresponding 16-bit elements are equal. In original SSE2 implementation for function compare_signatures, it utilizes _mm_movemask_epi8 to create mask from the MSB of each 8-bit element, while we should only care about the MSB of lower 8-bit in each 16-bit ele

Re: [PATCH v2] app/testpmd: add flush multicast MAC address command

2023-10-07 Thread huangdengdui
On 2023/9/29 1:23, Ferruh Yigit wrote: > On 8/2/2023 7:23 AM, Dengdui Huang wrote: >> Add command to flush multicast MAC address >> Usage: >> mcast_addr flush : >> flush multicast MAC address on port_id >> >> Signed-off-by: Dengdui Huang >> --- >> app/test-pmd/cmdline.c

Re: [PATCH v2 1/8] lib/ethdev: update Rx and Tx queue status

2023-10-07 Thread Jie Hai
On 2023/9/28 21:15, Ferruh Yigit wrote: On 9/28/2023 8:42 AM, Jie Hai wrote: The DPDK framework reports the queue status, which is stored in 'dev->data->tx_queue_state' and 'dev->data->rx_queue_state'.The state is currently maintained by the drivers. Users may determine whether a queue participa

Re: [PATCH v3 1/2] dmadev: offload to free source buffer

2023-10-07 Thread fengchengwen
Hi Amit, On 2023/9/28 19:50, Amit Prakash Shukla wrote: > This changeset adds support in DMA library to free source DMA buffer by > hardware. On a supported hardware, application can pass on the mempool > information as part of vchan config when the DMA transfer direction is > configured as RTE_DM

Re: [PATCH v3 2/2] test/dma: add source buffer offload free test

2023-10-07 Thread fengchengwen
Hi Amit, On 2023/9/28 19:50, Amit Prakash Shukla wrote: > Add a test case to validate the functionality of drivers' dma > source buffer offload free. As part of dmadev_autotest, test case > will be executed only if the driver supports source buffer offload > free and if the test is exported by env

Re: [PATCH v2 1/8] ethdev: add member notification for bonding port

2023-10-07 Thread Stephen Hemminger
On Sat, 7 Oct 2023 09:34:33 +0800 Chaoyong He wrote: > diff --git a/drivers/net/bonding/eth_bond_private.h > b/drivers/net/bonding/eth_bond_private.h > index e688894210..1344f8c002 100644 > --- a/drivers/net/bonding/eth_bond_private.h > +++ b/drivers/net/bonding/eth_bond_private.h > @@ -186,6 +

RE: [PATCH v4] app/testpmd: enable cli for programmable action

2023-10-07 Thread Dumitrescu, Cristian
> -Original Message- > From: Zhang, Qi Z > Sent: Saturday, October 7, 2023 11:48 AM > To: Singh, Aman Deep ; Zhang, Yuying > > Cc: dev@dpdk.org; Dumitrescu, Cristian ; > or...@nvidia.com; ferruh.yi...@amd.com; Zhang, Qi Z > Subject: [PATCH v4] app/testpmd: enable cli for programmable

Re: Technical board meeting agenda for 2023-09-20

2023-10-07 Thread fengchengwen
Hi TB, On 2023/9/19 4:20, Maxime Coquelin wrote: > Dear DPDK community, > > Following topics are planned to be discussed at the next Technical board > meeting, which will take place on Sept. 20th @3PM UTC: >  1- Memarea library inclusion Sorry to miss this meeting. Could you help rescheduling on

RE: [PATCH v2 1/8] ethdev: add member notification for bonding port

2023-10-07 Thread Chaoyong He
> Chaoyong He wrote: > > > diff --git a/drivers/net/bonding/eth_bond_private.h > b/drivers/net/bonding/eth_bond_private.h > > index e688894210..1344f8c002 100644 > > --- a/drivers/net/bonding/eth_bond_private.h > > +++ b/drivers/net/bonding/eth_bond_private.h > > @@ -186,6 +186,8 @@ struct bond_d

Re: [PATCH 1/4] dmadev: add function to get list of device identifiers

2023-10-07 Thread fengchengwen
Hi Gowrishankar, This could create a help function in test, just like: func() { RTE_DMA_FOREACH_DEV(i) { rte_dma_info_get(i, &dev_info); if (strncmp(dev_info->dev_name, xxx) ... } } If some application (not test) should pick some specific device, I suggest ad

Re: [PATCH] test/dma: add test skip status

2023-10-07 Thread fengchengwen
Hi Gowrishankar, It was already support in test framework (unit_test_suite), I suggest not invent. Could you help refactoring the test_dmadev (use the test framework) ? PS: could refer test_fbarray.c Thanks. On 2023/8/10 19:59, Gowrishankar Muthukrishnan wrote: > Add status on skipped tests. >

[PATCH v3 0/8] Enhance the bond framework to support offload

2023-10-07 Thread Chaoyong He
This patch series try to enhance the bond framework to support the offload feature better: * Add new API to make the member port can access some information of the bond port which belongs. * Add new API to get the result of whether bond port is created by the member port. * Add two command line

[PATCH v3 1/8] ethdev: add member notification for bonding port

2023-10-07 Thread Chaoyong He
From: Long Wu Bonding PMD does not let member ports know the bonding port's information, like how many member ports the bonding port has, what mode the bonding port is in and so on. Add the notification interface for bonding port to let member port know it is added to a bonding port and what the

[PATCH v3 2/8] ethdev: add API to get hardware creation of bonding port

2023-10-07 Thread Chaoyong He
From: Long Wu After bonding port notification, member port hardware may create the bonding port. We want to get the result of creatition, so we add this API to do the getting action. Signed-off-by: Long Wu Reviewed-by: James Hershaw Reviewed-by: Chaoyong He --- drivers/net/bonding/rte_eth_bo

[PATCH v3 3/8] net/bonding: modify interface comment format

2023-10-07 Thread Chaoyong He
From: Long Wu Most of the previous interface comment format does not meet the current standards and were not uniform. Modify them to meet current standards. Signed-off-by: Long Wu Reviewed-by: James Hershaw Reviewed-by: Chaoyong He --- drivers/net/bonding/eth_bond_8023ad_private.h | 52 +++

[PATCH v3 4/8] net/bonding: add bonding port arguments

2023-10-07 Thread Chaoyong He
From: Long Wu Include the following new arguments for bonding ports: - "notify_member" to enable/disable member notification. - "dedicated_queue" to enable/disable dedicated queue. Add these two arguments in initial argument. Signed-off-by: Long Wu Reviewed-by: James Hershaw Reviewed-by: Chao

[PATCH v3 5/8] net/bonding: support add port by data name

2023-10-07 Thread Chaoyong He
From: Long Wu Several ports may share the same PCI address, like nfp representor. So we cannot add this type of ports to bonding port by "--vdev" argument in dpdk-testpmd. But the port's data name is unique between them, we include an option to add such ports to the bonding port. After adding th

[PATCH v3 7/8] net/bonding: support checking valid bonding port ID

2023-10-07 Thread Chaoyong He
From: Long Wu Add API to support checking if the port id is a bonding port id. Signed-off-by: Long Wu Reviewed-by: James Hershaw Reviewed-by: Chaoyong He --- drivers/net/bonding/rte_eth_bond.h | 13 + drivers/net/bonding/rte_eth_bond_api.c | 7 +++ drivers/net/bonding/ve

[PATCH v3 6/8] net/bonding: create new rte flow header file

2023-10-07 Thread Chaoyong He
From: Long Wu Move the flow code to a new head file to make flow related code more clean and make the code architecture more reasonable in the future. There is no functional change, just moving verbatim code around. Signed-off-by: Long Wu Reviewed-by: James Hershaw Reviewed-by: Chaoyong He --

[PATCH v3 8/8] net/bonding: add commands for bonding port notification

2023-10-07 Thread Chaoyong He
From: Long Wu Add some commands to support bonding port notification in dpdk-testpmd. 1. We can enable the notification by command: "set bonding notify_member (port_id) (enable|disable)" 2. If member port hardware try to create the bonding port after notification we can get the status by comman

[PATCH v3 0/2] fix help string and add a new command

2023-10-07 Thread Dengdui Huang
This series fix help string and add a new command. v2->v3 add 'mcast_addr add|remove' to help string and update the new command description. v1->v2 update order on help string Dengdui Huang (2): app/testpmd: fix help string app/testpmd: add flush all multicast MAC address command app/test-

[PATCH v3 1/2] app/testpmd: fix help string

2023-10-07 Thread Dengdui Huang
Command help string is missing 'mcast_addr add|remove'. This patch add it. Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC addresses") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang --- app/test-pmd/cmdline.c | 6 ++ 1 file changed, 6 insertions(+) diff --git

[PATCH v3 2/2] app/testpmd: add flush all multicast MAC address command

2023-10-07 Thread Dengdui Huang
Add command to flush all multicast MAC address Usage: mcast_addr flush : flush all multicast MAC address on port_id Signed-off-by: Dengdui Huang --- app/test-pmd/cmdline.c | 43 + app/test-pmd/config.c | 18 + app/te

Re: [PATCH v1 1/3] dmadev: add inter-domain operations

2023-10-07 Thread fengchengwen
Hi Anatoly, On 2023/8/12 0:14, Anatoly Burakov wrote: > Add a flag to indicate that a specific device supports inter-domain > operations, and add an API for inter-domain copy and fill. > > Inter-domain operation is an operation that is very similar to regular > DMA operation, except either source

Re: [PATCH v3 1/2] app/testpmd: fix help string

2023-10-07 Thread fengchengwen
Hi Dengdui, On 2023/10/8 9:56, Dengdui Huang wrote: > Command help string is missing 'mcast_addr add|remove'. > This patch add it. > > Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC > addresses") > Cc: sta...@dpdk.org > > Signed-off-by: Dengdui Huang > --- > app/te

Re: [PATCH v3 1/8] ethdev: add member notification for bonding port

2023-10-07 Thread lihuisong (C)
Hi Chaoyong, some comments as below. 在 2023/10/8 9:50, Chaoyong He 写道: From: Long Wu Bonding PMD does not let member ports know the bonding port's information, like how many member ports the bonding port has, what mode the bonding port is in and so on. Add the notification interface for bon

Re: [PATCH v3 2/2] app/testpmd: add flush all multicast MAC address command

2023-10-07 Thread fengchengwen
Hi Dengdui, On 2023/10/8 9:56, Dengdui Huang wrote: > Add command to flush all multicast MAC address > Usage: > mcast_addr flush : > flush all multicast MAC address on port_id > > Signed-off-by: Dengdui Huang Acked-by: Chengwen Feng

[PATCH v4 0/5] support item NSH matching

2023-10-07 Thread Haifei Luo
NSH can be matched using the existed item: RTE_FLOW_ITEM_TYPE_NSH. NSH fields matching is not supported. Add support for configuring VXLAN-GPE's next protocol. The CLI is: vxlan-gpe protocol is . Add support for matching item NSH. The CLI is: nsh Add support for HCA attribute query of NSH. Enh

[PATCH v4 1/5] app/testpmd: support for VXLAN-GPE's next protocol

2023-10-07 Thread Haifei Luo
Add support for configuring VXLAN-GPE's next protocol. The CLI is: vxlan-gpe protocol is . Example: flow create 0 transfer group 1 pattern eth / ipv6 / udp dst is 4790 / vxlan-gpe protocol is 0x04 / eth / ipv4 / tcp / end actions port_id id 1 / end Signed-off-by: Jiawei Wang Signed-off-by: Haif

[PATCH v4 2/5] common/mlx5: extend HCA attribute query for NSH

2023-10-07 Thread Haifei Luo
Add NSH supporting field in two places: 1. New HCA capability indicating NSH is supported 2. New field in "mlx5_ifc_per_protocol_networking_offload_caps_bits" structure Signed-off-by: Haifei Luo Acked-by: Dariusz Sosnowski Acked-by: Suanming Mou --- drivers/common/mlx5/mlx5_devx_cmds.c | 3

[PATCH v4 3/5] net/mlx5: enhance the validation for item VXLAN-GPE

2023-10-07 Thread Haifei Luo
Enhance the validation so that configuring vxlan-gpe's next protocol as NSH is supported. 1. The spec's protocol can have value and nic_mask's protocol is 0xff. Signed-off-by: Haifei Luo Acked-by: Dariusz Sosnowski Acked-by: Suanming Mou --- drivers/net/mlx5/mlx5_flow.c | 13 ++--- 1

[PATCH v4 4/5] app/testpmd: support for NSH flow item

2023-10-07 Thread Haifei Luo
Add support for item NSH. The CLI is: nsh Example: flow create 0 transfer group 1 pattern eth / ipv6 / udp dst is 4790 / vxlan-gpe / nsh / eth / ipv4 / tcp / end actions port_id id 1 / end Signed-off-by: Haifei Luo Acked-by: Dariusz Sosnowski Acked-by: Suanming Mou --- a

[PATCH v4 5/5] net/mlx5: add support for item NSH

2023-10-07 Thread Haifei Luo
1. Add validation for item NSH. It will fail if HCA cap for NSH is false. 2. Add item_flags for NSH. 3. For vxlan-gpe if next header is NSH, set next_protocol as NSH. Signed-off-by: Haifei Luo Acked-by: Dariusz Sosnowski Acked-by: Suanming Mou --- drivers/net/mlx5/mlx5_flow.c| 39 ++

Re: [PATCH v3 1/2] app/testpmd: fix help string

2023-10-07 Thread huangdengdui
On 2023/10/8 10:47, fengchengwen wrote: > Hi Dengdui, > > On 2023/10/8 9:56, Dengdui Huang wrote: >> Command help string is missing 'mcast_addr add|remove'. >> This patch add it. >> >> Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC >> addresses") >> Cc: sta...@dpdk.

[PATCH v3 0/2] fix help string and add a new command

2023-10-07 Thread Dengdui Huang
This series fix help string and add a new command. v3->v4 help string add '\n' at last. v2->v3 add 'mcast_addr add|remove' to help string and update the new command description. v1->v2 update order on help string. Dengdui Huang (2): app/testpmd: fix help string app/testpmd: add flush all mu

[PATCH v4 1/2] app/testpmd: fix help string

2023-10-07 Thread Dengdui Huang
Command help string is missing 'mcast_addr add|remove'. This patch add it. Fixes: 8fff667578a7 ("app/testpmd: new command to add/remove multicast MAC addresses") Cc: sta...@dpdk.org Signed-off-by: Dengdui Huang Acked-by: Chengwen Feng --- app/test-pmd/cmdline.c | 6 ++ 1 file changed, 6 i

[PATCH v4 2/2] app/testpmd: add flush all multicast MAC address command

2023-10-07 Thread Dengdui Huang
Add command to flush all multicast MAC address Usage: mcast_addr flush : flush all multicast MAC address on port_id Signed-off-by: Dengdui Huang Acked-by: Chengwen Feng --- app/test-pmd/cmdline.c | 43 + app/test-pmd/config.c