[PATCH] net/mlx5: fix PMD compilation in non-HWS setup
Gregory Etelson
getelson at nvidia.com
Tue Oct 29 14:34:14 CET 2024
The PMD calls `mlx5_hw_ctx_validate()` function to differentiate
between HWS and SWS run-time setups.
The function was not defined if HWS functionality was not enabled
during meson code configuration.
The patch creates default weak mlx5_hw_ctx_validate symbol.
Fixes: d3144c59ac98 ("net/mlx5: validate HWS context in meter operations")
Signed-off-by: Gregory Etelson <getelson at nvidia.com>
---
drivers/net/mlx5/mlx5_flow.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c
index 9c43201e05..bfe757ec26 100644
--- a/drivers/net/mlx5/mlx5_flow.c
+++ b/drivers/net/mlx5/mlx5_flow.c
@@ -12321,3 +12321,10 @@ mlx5_ctrl_flow_uc_dmac_vlan_exists(struct rte_eth_dev *dev,
}
return exists;
}
+
+__rte_weak bool
+mlx5_hw_ctx_validate(__rte_unused const struct rte_eth_dev *dev,
+ __rte_unused struct rte_flow_error *error)
+{
+ return false;
+}
--
2.43.0
More information about the dev
mailing list