| 970 | } |
| 971 | |
| 972 | int32_t |
| 973 | mlx5_l3t_get_entry(struct mlx5_l3t_tbl *tbl, uint32_t idx, |
| 974 | union mlx5_l3t_data *data) |
| 975 | { |
| 976 | int ret; |
| 977 | |
| 978 | rte_spinlock_lock(&tbl->sl); |
| 979 | ret = __l3t_get_entry(tbl, idx, data); |
| 980 | rte_spinlock_unlock(&tbl->sl); |
| 981 | return ret; |
| 982 | } |
| 983 | |
| 984 | int32_t |
| 985 | mlx5_l3t_clear_entry(struct mlx5_l3t_tbl *tbl, uint32_t idx) |
no test coverage detected