1 /* SPDX-License-Identifier: BSD-3-Clause 2 * Copyright 2020 Mellanox Technologies, Ltd 3 */ 4 5 #ifndef RTE_PMD_MLX5_VERBS_H_ 6 #define RTE_PMD_MLX5_VERBS_H_ 7 8 struct mlx5_verbs_ops { 9 mlx5_reg_mr_t reg_mr; 10 mlx5_dereg_mr_t dereg_mr; 11 }; 12 13 /* Verbs ops struct */ 14 extern const struct mlx5_verbs_ops mlx5_verbs_ops; 15 #endif /* RTE_PMD_MLX5_VERBS_H_ */ 16