[RFC PATCH v1 04/21] net/ixgbe: add support for common flow parsing
Anatoly Burakov
anatoly.burakov at intel.com
Mon Mar 16 18:27:32 CET 2026
Implement support for common flow parsing infrastructure in preparation for
migration of flow engines.
Signed-off-by: Anatoly Burakov <anatoly.burakov at intel.com>
---
drivers/net/intel/ixgbe/ixgbe_ethdev.c | 12 ++++++--
drivers/net/intel/ixgbe/ixgbe_ethdev.h | 5 +++
drivers/net/intel/ixgbe/ixgbe_flow.c | 42 +++++++++++++++++++++++++-
drivers/net/intel/ixgbe/ixgbe_flow.h | 12 ++++++++
4 files changed, 68 insertions(+), 3 deletions(-)
create mode 100644 drivers/net/intel/ixgbe/ixgbe_flow.h
diff --git a/drivers/net/intel/ixgbe/ixgbe_ethdev.c b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
index 57d929cf2c..b4435acd20 100644
--- a/drivers/net/intel/ixgbe/ixgbe_ethdev.c
+++ b/drivers/net/intel/ixgbe/ixgbe_ethdev.c
@@ -46,6 +46,7 @@
#include "base/ixgbe_phy.h"
#include "base/ixgbe_osdep.h"
#include "ixgbe_regs.h"
+#include "ixgbe_flow.h"
/*
* High threshold controlling when to start sending XOFF frames. Must be at
@@ -1342,6 +1343,10 @@ eth_ixgbe_dev_init(struct rte_eth_dev *eth_dev, void *init_params __rte_unused)
/* initialize Traffic Manager configuration */
ixgbe_tm_conf_init(eth_dev);
+ /* initialize flow engine configuration */
+ ci_flow_engine_conf_init(&ad->flow_engine_conf,
+ &ixgbe_flow_engine_list, eth_dev);
+
return 0;
err_l2_tn_filter_init:
@@ -3080,8 +3085,8 @@ ixgbe_dev_set_link_down(struct rte_eth_dev *dev)
static int
ixgbe_dev_close(struct rte_eth_dev *dev)
{
- struct ixgbe_hw *hw =
- IXGBE_DEV_PRIVATE_TO_HW(dev->data->dev_private);
+ struct ixgbe_adapter *ad = dev->data->dev_private;
+ struct ixgbe_hw *hw = IXGBE_DEV_PRIVATE_TO_HW(ad);
struct rte_pci_device *pci_dev = RTE_ETH_DEV_TO_PCI(dev);
struct rte_intr_handle *intr_handle = pci_dev->intr_handle;
int retries = 0;
@@ -3145,6 +3150,9 @@ ixgbe_dev_close(struct rte_eth_dev *dev)
rte_free(dev->security_ctx);
dev->security_ctx = NULL;
+ /* reset rte_flow config */
+ ci_flow_engine_conf_reset(&ad->flow_engine_conf, &ixgbe_flow_engine_list);
+
return ret;
}
diff --git a/drivers/net/intel/ixgbe/ixgbe_ethdev.h b/drivers/net/intel/ixgbe/ixgbe_ethdev.h
index 32d7b98ed1..eaeeb35dea 100644
--- a/drivers/net/intel/ixgbe/ixgbe_ethdev.h
+++ b/drivers/net/intel/ixgbe/ixgbe_ethdev.h
@@ -22,6 +22,8 @@
#include <bus_pci_driver.h>
#include <rte_tm_driver.h>
+#include "../common/flow_engine.h"
+
/* need update link, bit flag */
#define IXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
#define IXGBE_FLAG_MAILBOX (uint32_t)(1 << 1)
@@ -344,6 +346,7 @@ struct ixgbe_l2_tn_info {
};
struct rte_flow {
+ struct ci_flow flow;
enum rte_filter_type filter_type;
/* security flows are not rte_filter_type */
bool is_security;
@@ -486,6 +489,8 @@ struct ixgbe_adapter {
struct rte_timecounter tx_tstamp_tc;
struct ixgbe_tm_conf tm_conf;
+ struct ci_flow_engine_conf flow_engine_conf;
+
/* For RSS reta table update */
uint8_t rss_reta_updated;
diff --git a/drivers/net/intel/ixgbe/ixgbe_flow.c b/drivers/net/intel/ixgbe/ixgbe_flow.c
index d36e276ee0..3f33d28207 100644
--- a/drivers/net/intel/ixgbe/ixgbe_flow.c
+++ b/drivers/net/intel/ixgbe/ixgbe_flow.c
@@ -30,6 +30,7 @@
#include <rte_hash_crc.h>
#include <rte_flow.h>
#include <rte_flow_driver.h>
+#include <rte_tailq.h>
#include "ixgbe_logs.h"
#include "base/ixgbe_api.h"
@@ -44,7 +45,7 @@
#include "rte_pmd_ixgbe.h"
#include "../common/flow_check.h"
-
+#include "../common/flow_engine.h"
#define IXGBE_MIN_N_TUPLE_PRIO 1
#define IXGBE_MAX_N_TUPLE_PRIO 7
@@ -102,6 +103,8 @@ static struct ixgbe_l2_tunnel_filter_list filter_l2_tunnel_list;
static struct ixgbe_rss_filter_list filter_rss_list;
static struct ixgbe_flow_mem_list ixgbe_flow_list;
+const struct ci_flow_engine_list ixgbe_flow_engine_list = {0};
+
/**
* Endless loop will never happen with below assumption
* 1. there is at least one no-void item(END)
@@ -2789,6 +2792,7 @@ ixgbe_flow_create(struct rte_eth_dev *dev,
const struct rte_flow_action actions[],
struct rte_flow_error *error)
{
+ struct ixgbe_adapter *ad = dev->data->dev_private;
int ret;
struct rte_eth_ntuple_filter ntuple_filter;
struct rte_eth_ethertype_filter ethertype_filter;
@@ -2808,6 +2812,15 @@ ixgbe_flow_create(struct rte_eth_dev *dev,
struct ixgbe_flow_mem *ixgbe_flow_mem_ptr;
uint8_t first_mask = FALSE;
+ /* try the new flow engine first */
+ flow = ci_flow_create(&ad->flow_engine_conf, &ixgbe_flow_engine_list,
+ attr, pattern, actions, error);
+ if (flow != NULL) {
+ return flow;
+ }
+
+ /* fall back to legacy flow engines */
+
flow = rte_zmalloc("ixgbe_rte_flow", sizeof(struct rte_flow), 0);
if (!flow) {
PMD_DRV_LOG(ERR, "failed to allocate memory");
@@ -3052,6 +3065,7 @@ ixgbe_flow_validate(struct rte_eth_dev *dev,
const struct rte_flow_action actions[],
struct rte_flow_error *error)
{
+ struct ixgbe_adapter *ad = dev->data->dev_private;
struct rte_eth_ntuple_filter ntuple_filter;
struct rte_eth_ethertype_filter ethertype_filter;
struct rte_eth_syn_filter syn_filter;
@@ -3060,6 +3074,14 @@ ixgbe_flow_validate(struct rte_eth_dev *dev,
struct ixgbe_rte_flow_rss_conf rss_conf;
int ret;
+ /* try the new flow engine first */
+ ret = ci_flow_validate(&ad->flow_engine_conf, &ixgbe_flow_engine_list,
+ attr, pattern, actions, error);
+ if (ret == 0)
+ return ret;
+
+ /* fall back to legacy engines */
+
/**
* Special case for flow action type RTE_FLOW_ACTION_TYPE_SECURITY
*/
@@ -3110,6 +3132,7 @@ ixgbe_flow_destroy(struct rte_eth_dev *dev,
struct rte_flow *flow,
struct rte_flow_error *error)
{
+ struct ixgbe_adapter *ad = dev->data->dev_private;
int ret;
struct rte_flow *pmd_flow = flow;
enum rte_filter_type filter_type = pmd_flow->filter_type;
@@ -3128,6 +3151,15 @@ ixgbe_flow_destroy(struct rte_eth_dev *dev,
IXGBE_DEV_PRIVATE_TO_FDIR_INFO(dev->data->dev_private);
struct ixgbe_rss_conf_ele *rss_filter_ptr;
+ /* try the new flow engine first */
+ ret = ci_flow_destroy(&ad->flow_engine_conf,
+ &ixgbe_flow_engine_list, flow, error);
+ if (ret == 0) {
+ return 0;
+ }
+
+ /* fall back to legacy engines */
+
/* Special case for SECURITY flows */
if (flow->is_security) {
ret = 0;
@@ -3245,8 +3277,16 @@ static int
ixgbe_flow_flush(struct rte_eth_dev *dev,
struct rte_flow_error *error)
{
+ struct ixgbe_adapter *ad = dev->data->dev_private;
int ret = 0;
+ /* flush all flows from the new flow engine */
+ ret = ci_flow_flush(&ad->flow_engine_conf, &ixgbe_flow_engine_list, error);
+ if (ret) {
+ PMD_DRV_LOG(ERR, "Failed to flush flow");
+ return ret;
+ }
+
ixgbe_clear_all_ntuple_filter(dev);
ixgbe_clear_all_ethertype_filter(dev);
ixgbe_clear_syn_filter(dev);
diff --git a/drivers/net/intel/ixgbe/ixgbe_flow.h b/drivers/net/intel/ixgbe/ixgbe_flow.h
new file mode 100644
index 0000000000..5e68c9886c
--- /dev/null
+++ b/drivers/net/intel/ixgbe/ixgbe_flow.h
@@ -0,0 +1,12 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2026 Intel Corporation
+ */
+
+#ifndef _IXGBE_FLOW_H_
+#define _IXGBE_FLOW_H_
+
+#include "../common/flow_engine.h"
+
+extern const struct ci_flow_engine_list ixgbe_flow_engine_list;
+
+#endif /* _IXGBE_FLOW_H_ */
--
2.47.3
More information about the dev
mailing list