net/mlx5: fix PMD compilation in non-HWS setup
Checks
Commit Message
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@nvidia.com>
---
drivers/net/mlx5/mlx5_flow.c | 7 +++++++
1 file changed, 7 insertions(+)
Comments
Hi,
From: Gregory Etelson <getelson@nvidia.com>
Sent: Tuesday, October 29, 2024 3:34 PM
To: dev@dpdk.org
Cc: Gregory Etelson; Maayan Kashani; Raslan Darawsheh; Dariusz Sosnowski; Slava Ovsiienko; Bing Zhao; Ori Kam; Suanming Mou; Matan Azrad
Subject: [PATCH] net/mlx5: fix PMD compilation in non-HWS setup
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@nvidia.com>
Patch squashed into relevant commit in next-net-mlx,
Kindest regards,
Raslan Darawsheh
@@ -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;
+}