[PATCH 21/45] net/dpaa2: set default flow miss action per device
Prashant Gupta
prashant.gupta_3 at nxp.com
Thu Sep 3 15:53:29 CEST 2026
From: Gagandeep Singh <g.singh at nxp.com>
The flow steering miss flow id was a file-scope global configured only
via the DPAA2_FLOW_CONTROL_MISS_FLOW environment variable and defaulted
to 0. Replace it with a per-device default_flow computed at probe time
as the lowest priority flow of the FS table, so that unmatched frames
are directed there without depending on an environment variable.
Signed-off-by: Gagandeep Singh <g.singh at nxp.com>
---
drivers/net/dpaa2/dpaa2_ethdev.c | 2 ++
drivers/net/dpaa2/dpaa2_ethdev.h | 2 ++
drivers/net/dpaa2/dpaa2_flow.c | 14 +-------------
3 files changed, 5 insertions(+), 13 deletions(-)
diff --git a/drivers/net/dpaa2/dpaa2_ethdev.c b/drivers/net/dpaa2/dpaa2_ethdev.c
index c8abab830f..387a153036 100644
--- a/drivers/net/dpaa2/dpaa2_ethdev.c
+++ b/drivers/net/dpaa2/dpaa2_ethdev.c
@@ -3545,6 +3545,8 @@ dpaa2_dev_init(struct rte_eth_dev *eth_dev)
priv->dist_queues = attr.num_queues;
priv->num_channels = attr.num_channels;
priv->channel_inuse = 0;
+ priv->default_flow = RTE_MIN(priv->fs_entries,
+ priv->dist_queues) - 1;
rte_spinlock_init(&priv->lpbk_qp_lock);
/* only if the custom CG is enabled */
diff --git a/drivers/net/dpaa2/dpaa2_ethdev.h b/drivers/net/dpaa2/dpaa2_ethdev.h
index c5aac65c28..4501bd9e49 100644
--- a/drivers/net/dpaa2/dpaa2_ethdev.h
+++ b/drivers/net/dpaa2/dpaa2_ethdev.h
@@ -437,6 +437,8 @@ struct dpaa2_dev_priv {
uint8_t max_cgs;
uint8_t cgid_in_use[MAX_RX_QUEUES];
rte_spinlock_t meter_lock;
+ /* Lowest priority FS flow id to receive flow steering miss frames. */
+ uint16_t default_flow;
/* Current hash distribution size per RX TC, written by
* dpaa2_setup_flow_dist_size() and read by reta_query / reta_update.
diff --git a/drivers/net/dpaa2/dpaa2_flow.c b/drivers/net/dpaa2/dpaa2_flow.c
index b2f1778de3..2e844121a8 100644
--- a/drivers/net/dpaa2/dpaa2_flow.c
+++ b/drivers/net/dpaa2/dpaa2_flow.c
@@ -24,7 +24,6 @@
#include <dpaa2_pmd_logs.h>
static char *dpaa2_flow_control_log;
-static uint16_t dpaa2_flow_miss_flow_id; /* Default miss flow id is 0. */
static int dpaa2_sp_loaded = -1;
enum dpaa2_flow_entry_size {
@@ -4590,7 +4589,7 @@ dpaa2_configure_fs_rss_table(struct dpaa2_dev_priv *priv,
return 0;
tc_cfg.enable = true;
- tc_cfg.fs_miss_flow_id = dpaa2_flow_miss_flow_id;
+ tc_cfg.fs_miss_flow_id = priv->default_flow;
ret = dpni_set_rx_fs_dist(dpni, CMD_PRI_LOW,
priv->token, &tc_cfg);
if (ret < 0) {
@@ -5224,17 +5223,6 @@ dpaa2_flow_create(struct rte_eth_dev *dev, const struct rte_flow_attr *attr,
dpaa2_flow_control_log =
getenv("DPAA2_FLOW_CONTROL_LOG");
- if (getenv("DPAA2_FLOW_CONTROL_MISS_FLOW")) {
- dpaa2_flow_miss_flow_id =
- (uint16_t)atoi(getenv("DPAA2_FLOW_CONTROL_MISS_FLOW"));
- if (dpaa2_flow_miss_flow_id >= priv->dist_queues) {
- DPAA2_PMD_ERR("Missed flow ID %d >= dist size(%d)",
- dpaa2_flow_miss_flow_id,
- priv->dist_queues);
- return NULL;
- }
- }
-
flow = rte_zmalloc(NULL, sizeof(struct dpaa2_dev_flow),
RTE_CACHE_LINE_SIZE);
if (!flow) {
--
2.43.0
More information about the dev
mailing list