[PATCH v4 0/2] net/mlx5: add random item support

2023-12-25 Thread Michael Baum
Add support for matching random value using the "rte_flow_item_random" structure. Depends-on: series-30553 ("ethdev: add random item support") v2: - Rebase. - Move release notes to the new release file. v3: - Fix typos in commit message and release notes. - Update limitations. v4: - Fix us

[PATCH v4 1/2] net/mlx5/hws: add support for random number match

2023-12-25 Thread Michael Baum
From: Erez Shitrit The HW adds a random number per each hash, this value can be used for statistic calculation over the packets, for example by setting one bit in the mask of that field we will get half of the traffic in the flow, and so on with the rest of the mask. Signed-off-by: Erez Shitrit

[PATCH v4 2/2] net/mlx5: add random item support

2023-12-25 Thread Michael Baum
Add support for random item in HWS mode. Signed-off-by: Michael Baum Acked-by: Dariusz Sosnowski --- doc/guides/nics/features/mlx5.ini | 1 + doc/guides/nics/mlx5.rst | 9 + doc/guides/rel_notes/release_24_03.rst | 3 +++ drivers/net/mlx5/mlx5_flow_dv.c| 5 +++

[PATCH v1 2/2] net/mlx5: add support to compare random value

2023-12-25 Thread Michael Baum
Add support to use "RTE_FLOW_ITEM_TYPE_COMPARE" with "RTE_FLOW_FIELD_RAMDOM" as an argument. The random field is supported only when base is an immediate value, random field cannot be compared with enother field. Signed-off-by: Michael Baum --- drivers/net/mlx5/mlx5_flow_hw.c | 70 ++

[PATCH v1 0/2] net/mlx5: add random compare support

2023-12-25 Thread Michael Baum
Add support for compare item with "RTE_FLOW_FIELD_RANDOM". Depends-on: series-30553 ("ethdev: add random item support") Depends-on: series-30606 ("ethdev: add RTE_FLOW_ITEM_TYPE_COMPARE") Depends-on: series-30665 ("net/mlx5: add random item support") Hamdan Igbaria (1): net/mlx5/hws: add suppor

[PATCH v1 1/2] net/mlx5/hws: add support for compare matcher

2023-12-25 Thread Michael Baum
From: Hamdan Igbaria Add support for compare matcher, this matcher will allow direct comparison between two packet fields, or a packet field and a value, with fully masked DW. For now this matcher hash table is limited to size 1x1, thus it supports only 1 rule STE. Signed-off-by: Hamdan Igbaria

[PATCH v5 00/14] Enhance the bond framework to support offload

2023-12-25 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 v5 01/14] ethdev: add member notification for bonding port

2023-12-25 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 v5 02/14] ethdev: add API to get firmware creation of bonding port

2023-12-25 Thread Chaoyong He
From: Long Wu After bonding port notification, member port firmware 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: Chaoyong He Reviewed-by: James Hershaw Reviewed-by: Peng Zhang --- drive

[PATCH v5 03/14] net/bonding: add bonding port arguments

2023-12-25 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: Chaoyong He Reviewed-by: James

[PATCH v5 04/14] net/bonding: support add port by data name

2023-12-25 Thread Chaoyong He
From: Long Wu Several ports may share the same PCI address, like NFP representor port. So users 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, include an option to add such ports to the bonding port. After addi

[PATCH v5 05/14] net/bonding: support checking valid bonding port ID

2023-12-25 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: Chaoyong He Reviewed-by: James Hershaw Reviewed-by: Peng Zhang --- drivers/net/bonding/rte_eth_bond.h | 13 + drivers/net/bonding/rte_eth_bond_api.c | 7 ++

[PATCH v5 06/14] net/bonding: add commands for bonding port notification

2023-12-25 Thread Chaoyong He
From: Long Wu Add some commands to support bonding port notification in dpdk-testpmd. 1. Users can enable the notification by command: "set bonding notify_member (port_id) (enable|disable)" 2. If member port firmware try to create the bonding port after notification users can get the status by

[PATCH v5 07/14] net/bonding: create new rte flow header file

2023-12-25 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 Re

[PATCH v5 08/14] net/nfp: add bond firmware creation initialization

2023-12-25 Thread Chaoyong He
From: Long Wu Firmware supports several features and bond firmware creation is one of the features. Driver notifies firmware that driver supports bond firmware creation feature by CPP bus write. If write successfully, initialize driver configuration. Signed-off-by: Long Wu Reviewed-by: Peng Zha

[PATCH v5 09/14] net/nfp: reset bond configuration of firmware

2023-12-25 Thread Chaoyong He
From: Long Wu Driver sends control message to reset the bond firmware configuration in flower NIC initialization. Firmware should reset bond configuration to avoid strange problems caused by residues. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp

[PATCH v5 10/14] net/nfp: handle link event of bond firmware creation

2023-12-25 Thread Chaoyong He
From: Long Wu If NFP physical representor port is a member port of bonding port, its link status changed and firmware has created the bonding port, driver will record the link status and send control message to notify firmware. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyo

[PATCH v5 11/14] net/nfp: support bond member notification

2023-12-25 Thread Chaoyong He
From: Long Wu A NFP representor port can receive a bond notification. Then driver will parse this notification into one of these two events: 1. Bonding port configuration may have changed. This includes creation of a bonding port, removal/addition of a member port, changing the bond mode, etc. 2.

[PATCH v5 12/14] net/nfp: handle bond packets from firmware

2023-12-25 Thread Chaoyong He
From: Long Wu Firmware sends bond firmware creation packets to driver, driver needs to handle it in ctrl VNIC service. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 53 drivers/net/nfp/flower/nfp_flower_bo

[PATCH v5 14/14] net/nfp: support offloading bond-flow

2023-12-25 Thread Chaoyong He
From: Long Wu After bonding port notification and firmware created the bonding port, NFP rte_flow rule adds support for destination port to bonding port. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 22 +++ drivers/ne

[PATCH v5 13/14] net/nfp: support getting bond firmware creation

2023-12-25 Thread Chaoyong He
From: Long Wu Support getting the status that whether the bonding port is created by the nfp firmware. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 27 +++ drivers/net/nfp/flower/nfp_flower_bond.h

Re: [PATCH v6 12/20] crypto/armv8: do not use PMD logtype

2023-12-25 Thread Ruifeng Wang
On 2023/12/23 1:42 AM, Stephen Hemminger wrote: On Fri, 22 Dec 2023 09:11:45 -0800 Stephen Hemminger wrote: - RTE_LOG(INFO, PMD, - "Closing ARMv8 crypto device %s on numa socket %u\n", + ARVM8_CRYTPO_LOG_INFO( + "Closing ARMv8 crypto device %s on numa soc

[PATCH v6 00/14] Enhance the bond framework to support offload

2023-12-25 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 v6 01/14] ethdev: add member notification for bonding port

2023-12-25 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 v6 02/14] ethdev: add API to get firmware creation of bonding port

2023-12-25 Thread Chaoyong He
From: Long Wu After bonding port notification, member port firmware 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: Chaoyong He Reviewed-by: James Hershaw Reviewed-by: Peng Zhang --- drive

[PATCH v6 03/14] net/bonding: add bonding port arguments

2023-12-25 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: Chaoyong He Reviewed-by: James

[PATCH v6 04/14] net/bonding: support add port by data name

2023-12-25 Thread Chaoyong He
From: Long Wu Several ports may share the same PCI address, like NFP representor port. So users 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, include an option to add such ports to the bonding port. After addi

[PATCH v6 05/14] net/bonding: support checking valid bonding port ID

2023-12-25 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: Chaoyong He Reviewed-by: James Hershaw Reviewed-by: Peng Zhang --- drivers/net/bonding/rte_eth_bond.h | 13 + drivers/net/bonding/rte_eth_bond_api.c | 7 ++

[PATCH v6 06/14] net/bonding: add commands for bonding port notification

2023-12-25 Thread Chaoyong He
From: Long Wu Add some commands to support bonding port notification in dpdk-testpmd. 1. Users can enable the notification by command: "set bonding notify_member (port_id) (enable|disable)" 2. If member port firmware try to create the bonding port after notification users can get the status by

[PATCH v6 07/14] net/bonding: create new rte flow header file

2023-12-25 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 Re

[PATCH v6 09/14] net/nfp: reset bond configuration of firmware

2023-12-25 Thread Chaoyong He
From: Long Wu Driver sends control message to reset the bond firmware configuration in flower NIC initialization. Firmware should reset bond configuration to avoid strange problems caused by residues. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp

[PATCH v6 08/14] net/nfp: add bond firmware creation initialization

2023-12-25 Thread Chaoyong He
From: Long Wu Firmware supports several features and bond firmware creation is one of the features. Driver notifies firmware that driver supports bond firmware creation feature by CPP bus write. If write successfully, initialize driver configuration. Signed-off-by: Long Wu Reviewed-by: Peng Zha

[PATCH v6 10/14] net/nfp: handle link event of bond firmware creation

2023-12-25 Thread Chaoyong He
From: Long Wu If NFP physical representor port is a member port of bonding port, its link status changed and firmware has created the bonding port, driver will record the link status and send control message to notify firmware. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyo

[PATCH v6 11/14] net/nfp: support bond member notification

2023-12-25 Thread Chaoyong He
From: Long Wu A NFP representor port can receive a bond notification. Then driver will parse this notification into one of these two events: 1. Bonding port configuration may have changed. This includes creation of a bonding port, removal/addition of a member port, changing the bond mode, etc. 2.

[PATCH v6 12/14] net/nfp: handle bond packets from firmware

2023-12-25 Thread Chaoyong He
From: Long Wu Firmware sends bond firmware creation packets to driver, driver needs to handle it in ctrl VNIC service. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 53 drivers/net/nfp/flower/nfp_flower_bo

[PATCH v6 13/14] net/nfp: support getting bond firmware creation

2023-12-25 Thread Chaoyong He
From: Long Wu Support getting the status that whether the bonding port is created by the nfp firmware. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 27 +++ drivers/net/nfp/flower/nfp_flower_bond.h

[PATCH v6 14/14] net/nfp: support offloading bond-flow

2023-12-25 Thread Chaoyong He
From: Long Wu After bonding port notification and firmware created the bonding port, NFP rte_flow rule adds support for destination port to bonding port. Signed-off-by: Long Wu Reviewed-by: Peng Zhang Reviewed-by: Chaoyong He --- drivers/net/nfp/flower/nfp_flower_bond.c | 22 +++ drivers/ne

DTS testpmd and SCAPY integration

2023-12-25 Thread Etelson, Gregory
Hello, Consider an option to describe DTS test with testpmd and SCAPY plain text commands. For example: Scenario: - Configure UDP packet in SCAPY and a flow in testpmd. - Send UDP packet and validate testpmd output triggered by that packet. ```yaml phase_0: name: CONFIGURATION tg: