[dpdk-dev] [PATCH v1 44/72] net/mlx5/windows: add memory region callbacks
Ophir Munk
ophirmu at nvidia.com
Wed Oct 28 00:23:07 CET 2020
This commit is the Windows part implementation of (1).
(1)
commit d5ed8aa9449d ("net/mlx5: add memory region callbacks
in per-device cache")'
Signed-off-by: Ophir Munk <ophirmu at nvidia.com>
---
drivers/net/mlx5/windows/mlx5_os.c | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/drivers/net/mlx5/windows/mlx5_os.c b/drivers/net/mlx5/windows/mlx5_os.c
index 572f586..e334110 100644
--- a/drivers/net/mlx5/windows/mlx5_os.c
+++ b/drivers/net/mlx5/windows/mlx5_os.c
@@ -286,6 +286,23 @@ mlx5_os_set_allmulti(struct rte_eth_dev *dev, int enable)
return -ENOTSUP;
}
+/**
+ * Set the reg_mr and dereg_mr call backs
+ *
+ * @param reg_mr_cb[out]
+ * Pointer to reg_mr func
+ * @param dereg_mr_cb[out]
+ * Pointer to dereg_mr func
+ *
+ */
+void
+mlx5_os_set_reg_mr_cb(mlx5_reg_mr_t *reg_mr_cb,
+ mlx5_dereg_mr_t *dereg_mr_cb)
+{
+ *reg_mr_cb = mlx5_os_reg_mr;
+ *dereg_mr_cb = mlx5_os_dereg_mr;
+}
+
const struct mlx5_flow_driver_ops mlx5_flow_verbs_drv_ops = {0};
const struct eth_dev_ops mlx5_os_dev_ops = {
--
2.8.4
More information about the dev
mailing list