DPDK-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Burakov, Anatoly" <anatoly.burakov@intel.com>
To: Bruce Richardson <bruce.richardson@intel.com>
Cc: <dev@dpdk.org>
Subject: Re: [PATCH v5 04/27] net/intel/common: add common flow attr validation
Date: Thu, 28 May 2026 14:39:47 +0200	[thread overview]
Message-ID: <9dbc8a94-ceca-41f0-b759-a23cbae76902@intel.com> (raw)
In-Reply-To: <ahbxgjoGdAEm99kj@bricha3-mobl1.ger.corp.intel.com>

On 5/27/2026 3:28 PM, Bruce Richardson wrote:
> On Mon, May 25, 2026 at 03:06:23PM +0100, Anatoly Burakov wrote:
>> There are a lot of commonalities between what kinds of flow attr each Intel
>> driver supports. Add a helper function that will validate attr based on
>> common requirements and (optional) parameter checks.
>>
>> Things we check for:
>> - Rejecting NULL attr (obviously)
>> - Default to ingress flows
>> - Transfer, group, priority, and egress are not allowed unless requested
>>
>> Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
>> ---
>>   drivers/net/intel/common/flow_check.h | 69 +++++++++++++++++++++++++++
>>   1 file changed, 69 insertions(+)
>>
>> diff --git a/drivers/net/intel/common/flow_check.h b/drivers/net/intel/common/flow_check.h
>> index 74fb28ae3d..0572028664 100644
>> --- a/drivers/net/intel/common/flow_check.h
>> +++ b/drivers/net/intel/common/flow_check.h
>> @@ -54,6 +54,7 @@ ci_flow_action_type_in_list(const enum rte_flow_action_type type,
>>   /* Forward declarations */
>>   struct ci_flow_actions;
>>   struct ci_flow_actions_check_param;
>> +struct ci_flow_attr_check_param;
>>   
>>   static inline const char *
>>   ci_flow_action_type_to_str(enum rte_flow_action_type type)
>> @@ -271,6 +272,74 @@ ci_flow_check_actions(const struct rte_flow_action *actions,
>>   	return parsed_actions->count == 0 ? -EINVAL : 0;
>>   }
>>   
>> +/**
>> + * Parameter structure for attr check.
>> + */
>> +struct ci_flow_attr_check_param {
>> +	bool allow_priority; /**< True if priority attribute is allowed. */
>> +	bool allow_transfer; /**< True if transfer attribute is allowed. */
>> +	bool allow_group;    /**< True if group attribute is allowed. */
>> +	bool expect_egress;  /**< True if egress attribute is expected. */
>> +};
>> +
>> +/**
>> + * Validate rte_flow_attr structure against specified constraints.
>> + *
>> + * @param attr Pointer to rte_flow_attr structure to validate.
>> + * @param attr_param Pointer to ci_flow_attr_check_param structure specifying constraints.
>> + * @param error Pointer to rte_flow_error structure for error reporting.
>> + *
>> + * @return 0 on success, negative errno on failure.
>> + */
>> +static inline int
>> +ci_flow_check_attr(const struct rte_flow_attr *attr,
>> +		const struct ci_flow_attr_check_param *attr_param,
>> +		struct rte_flow_error *error)
>> +{
>> +	if (attr == NULL) {
>> +		return rte_flow_error_set(error, EINVAL,
>> +					  RTE_FLOW_ERROR_TYPE_ATTR, attr,
>> +					  "NULL attribute");
>> +	}
>> +
>> +	/* Direction must be either ingress or egress */
>> +	if (attr->ingress == attr->egress) {
>> +		return rte_flow_error_set(error, EINVAL,
>> +					  RTE_FLOW_ERROR_TYPE_ATTR, attr,
>> +					  "Either ingress or egress must be set");
>> +	}
>> +
>> +	/* Expect ingress by default */
>> +	if (attr->egress && (attr_param == NULL || !attr_param->expect_egress)) {
>> +		return rte_flow_error_set(error, EINVAL,
>> +					  RTE_FLOW_ERROR_TYPE_ATTR_EGRESS, attr,
>> +					  "Egress not supported");
>> +	}
> 
> I think "allow_egress" is possibly a better name here. "expect_egress"
> implies that egress must be present, but the logic here seems to be only
> allowing egress if the flag is provided.

No, the check right above this prevents unspecified egress *if* ingress 
is also specified. Meaning, one of egress/ingress *must* be specified, 
and if it's egress, it is only allowed when we are expecting egress.

-- 
Thanks,
Anatoly

  reply	other threads:[~2026-05-28 12:40 UTC|newest]

Thread overview: 209+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-11 14:20 [PATCH v1 00/25] Add common flow attr/action parsing infrastructure to Intel PMD's Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 01/25] net/intel/common: add common flow action parsing Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 02/25] net/intel/common: add common flow attr validation Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 03/25] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 04/25] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 05/25] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 06/25] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 07/25] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 08/25] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 09/25] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 10/25] net/i40e: use common flow attribute checks Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 11/25] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 12/25] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 13/25] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 14/25] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 15/25] net/iavf: use common flow attribute checks Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 16/25] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 17/25] net/iavf: use common action checks for hash Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 18/25] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 19/25] net/iavf: use common action checks for fsub Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 20/25] net/iavf: use common action checks for flow query Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 21/25] net/ice: use common flow attribute checks Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 22/25] net/ice: use common action checks for hash Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 23/25] net/ice: use common action checks for FDIR Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 24/25] net/ice: use common action checks for switch Anatoly Burakov
2026-02-11 14:20 ` [PATCH v1 25/25] net/ice: use common action checks for ACL Anatoly Burakov
2026-03-16 10:52 ` [PATCH v2 00/25] Add common flow attr/action parsing infrastructure to Intel PMD's Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 01/25] net/intel/common: add common flow action parsing Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 02/25] net/intel/common: add common flow attr validation Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 03/25] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 04/25] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 05/25] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 06/25] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 07/25] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 08/25] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 09/25] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 10/25] net/i40e: use common flow attribute checks Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 11/25] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 12/25] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 13/25] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 14/25] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 15/25] net/iavf: use common flow attribute checks Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 16/25] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 17/25] net/iavf: use common action checks for hash Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 18/25] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 19/25] net/iavf: use common action checks for fsub Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 20/25] net/iavf: use common action checks for flow query Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 21/25] net/ice: use common flow attribute checks Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 22/25] net/ice: use common action checks for hash Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 23/25] net/ice: use common action checks for FDIR Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 24/25] net/ice: use common action checks for switch Anatoly Burakov
2026-03-16 10:52   ` [PATCH v2 25/25] net/ice: use common action checks for ACL Anatoly Burakov
2026-03-16 10:59   ` [PATCH v2 00/25] Add common flow attr/action parsing infrastructure to Intel PMD's Bruce Richardson
2026-04-10 13:12 ` [PATCH v3 00/29] " Anatoly Burakov
2026-04-10 13:12   ` [PATCH v3 01/29] net/ixgbe: fix shared PF pointer in representor Anatoly Burakov
2026-04-10 13:12   ` [PATCH v3 02/29] net/ixgbe: store max VFs in adapter Anatoly Burakov
2026-04-10 13:12   ` [PATCH v3 03/29] net/ixgbe: reduce FDIR conf macro usage Anatoly Burakov
2026-04-10 13:12   ` [PATCH v3 04/29] net/ixgbe: use adapter in flow-related calls Anatoly Burakov
2026-04-19 15:41     ` Stephen Hemminger
2026-04-10 13:12   ` [PATCH v3 05/29] net/intel/common: add common flow action parsing Anatoly Burakov
2026-04-19 15:41     ` Stephen Hemminger
2026-04-10 13:13   ` [PATCH v3 06/29] net/intel/common: add common flow attr validation Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 07/29] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 08/29] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 09/29] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 10/29] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 11/29] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 12/29] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-04-19 15:42     ` Stephen Hemminger
2026-05-29 14:06       ` Burakov, Anatoly
2026-04-10 13:13   ` [PATCH v3 13/29] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 14/29] net/i40e: use common flow attribute checks Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 15/29] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 16/29] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 17/29] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 18/29] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 19/29] net/iavf: use common flow attribute checks Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 20/29] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 21/29] net/iavf: use common action checks for hash Anatoly Burakov
2026-04-10 13:13   ` [PATCH v3 22/29] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 23/29] net/iavf: use common action checks for fsub Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 24/29] net/iavf: use common action checks for flow query Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 25/29] net/ice: use common flow attribute checks Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 26/29] net/ice: use common action checks for hash Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 27/29] net/ice: use common action checks for FDIR Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 28/29] net/ice: use common action checks for switch Anatoly Burakov
2026-04-10 13:22   ` [PATCH v3 29/29] net/ice: use common action checks for ACL Anatoly Burakov
2026-05-22 15:14 ` [PATCH v4 00/26] Add common flow attr/action parsing infrastructure to Intel PMD's Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 01/26] eal/common: add token concatenation macro Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 02/26] net/intel/common: add common flow action parsing Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 03/26] net/intel/common: add common flow attr validation Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 04/26] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 05/26] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 06/26] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 07/26] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 08/26] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 09/26] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 10/26] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 11/26] net/i40e: use common flow attribute checks Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 12/26] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 13/26] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 14/26] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 15/26] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 16/26] net/iavf: use common flow attribute checks Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 17/26] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 18/26] net/iavf: use common action checks for hash Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 19/26] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 20/26] net/iavf: use common action checks for fsub Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 21/26] net/iavf: use common action checks for flow query Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 22/26] net/ice: use common flow attribute checks Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 23/26] net/ice: use common action checks for hash Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 24/26] net/ice: use common action checks for FDIR Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 25/26] net/ice: use common action checks for switch Anatoly Burakov
2026-05-22 15:14   ` [PATCH v4 26/26] net/ice: use common action checks for ACL Anatoly Burakov
2026-05-25 14:06 ` [PATCH v5 00/27] Add common flow attr/action parsing infrastructure to Intel PMD's Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 01/27] build: add build defines for component name and class Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 02/27] eal/common: add token concatenation macro Anatoly Burakov
2026-05-27 12:38     ` Bruce Richardson
2026-05-25 14:06   ` [PATCH v5 03/27] net/intel/common: add common flow action parsing Anatoly Burakov
2026-05-27 13:25     ` Bruce Richardson
2026-05-29 14:35       ` Burakov, Anatoly
2026-05-25 14:06   ` [PATCH v5 04/27] net/intel/common: add common flow attr validation Anatoly Burakov
2026-05-27 13:28     ` Bruce Richardson
2026-05-28 12:39       ` Burakov, Anatoly [this message]
2026-05-28 13:13         ` Bruce Richardson
2026-05-28 14:13           ` Burakov, Anatoly
2026-05-28 15:09             ` Bruce Richardson
2026-05-25 14:06   ` [PATCH v5 05/27] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 06/27] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 07/27] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 08/27] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 09/27] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 10/27] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 11/27] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 12/27] net/i40e: use common flow attribute checks Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 13/27] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 14/27] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 15/27] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 16/27] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 17/27] net/iavf: use common flow attribute checks Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 18/27] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 19/27] net/iavf: use common action checks for hash Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 20/27] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 21/27] net/iavf: use common action checks for fsub Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 22/27] net/iavf: use common action checks for flow query Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 23/27] net/ice: use common flow attribute checks Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 24/27] net/ice: use common action checks for hash Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 25/27] net/ice: use common action checks for FDIR Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 26/27] net/ice: use common action checks for switch Anatoly Burakov
2026-05-25 14:06   ` [PATCH v5 27/27] net/ice: use common action checks for ACL Anatoly Burakov
2026-05-27 14:40   ` [PATCH v5 00/27] Add common flow attr/action parsing infrastructure to Intel PMD's Bruce Richardson
2026-05-29 15:36 ` [PATCH v6 " Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 01/27] build: add build defines for component name and class Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 02/27] eal/common: add token concatenation macro Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 03/27] net/intel/common: add common flow action parsing Anatoly Burakov
2026-06-03 13:03     ` Bruce Richardson
2026-06-04 15:50       ` Burakov, Anatoly
2026-05-29 15:36   ` [PATCH v6 04/27] net/intel/common: add common flow attr validation Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 05/27] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 06/27] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 07/27] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 08/27] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 09/27] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 10/27] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 11/27] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 12/27] net/i40e: use common flow attribute checks Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 13/27] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 14/27] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 15/27] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 16/27] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 17/27] net/iavf: use common flow attribute checks Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 18/27] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 19/27] net/iavf: use common action checks for hash Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 20/27] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 21/27] net/iavf: use common action checks for fsub Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 22/27] net/iavf: use common action checks for flow query Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 23/27] net/ice: use common flow attribute checks Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 24/27] net/ice: use common action checks for hash Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 25/27] net/ice: use common action checks for FDIR Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 26/27] net/ice: use common action checks for switch Anatoly Burakov
2026-05-29 15:36   ` [PATCH v6 27/27] net/ice: use common action checks for ACL Anatoly Burakov
2026-06-04 16:19 ` [PATCH v7 00/27] Add common flow attr/action parsing infrastructure to Intel PMD's Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 01/27] build: add build defines for component name and class Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 02/27] eal/common: add token concatenation macro Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 03/27] net/intel/common: add common flow action parsing Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 04/27] net/intel/common: add common flow attr validation Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 05/27] net/ixgbe: use common checks in ethertype filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 06/27] net/ixgbe: use common checks in syn filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 07/27] net/ixgbe: use common checks in L2 tunnel filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 08/27] net/ixgbe: use common checks in ntuple filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 09/27] net/ixgbe: use common checks in security filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 10/27] net/ixgbe: use common checks in FDIR filters Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 11/27] net/ixgbe: use common checks in RSS filter Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 12/27] net/i40e: use common flow attribute checks Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 13/27] net/i40e: refactor RSS flow parameter checks Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 14/27] net/i40e: use common action checks for ethertype Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 15/27] net/i40e: use common action checks for FDIR Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 16/27] net/i40e: use common action checks for tunnel Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 17/27] net/iavf: use common flow attribute checks Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 18/27] net/iavf: use common action checks for IPsec Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 19/27] net/iavf: use common action checks for hash Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 20/27] net/iavf: use common action checks for FDIR Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 21/27] net/iavf: use common action checks for fsub Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 22/27] net/iavf: use common action checks for flow query Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 23/27] net/ice: use common flow attribute checks Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 24/27] net/ice: use common action checks for hash Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 25/27] net/ice: use common action checks for FDIR Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 26/27] net/ice: use common action checks for switch Anatoly Burakov
2026-06-04 16:19   ` [PATCH v7 27/27] net/ice: use common action checks for ACL Anatoly Burakov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=9dbc8a94-ceca-41f0-b759-a23cbae76902@intel.com \
    --to=anatoly.burakov@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox