net/mlx5: fix flow operation wrapper per OS

Wrap glue call dv_create_flow_action_dest_devx_tir() with an OS API.

Fixes: b293fbf967 ("net/mlx5: add OS specific flow actions operations")
Cc: stable@dpdk.org

Signed-off-by: Ophir Munk <ophirmu@nvidia.com>
Acked-by: Matan Azrad <matan@nvidia.com>
This commit is contained in:
Ophir Munk 2020-12-28 14:32:50 +02:00 committed by Ferruh Yigit
parent 14020ad53d
commit 8801972313
2 changed files with 29 additions and 4 deletions

View File

@ -366,6 +366,32 @@ mlx5_flow_os_create_flow_action_default_miss(void **action)
return (*action) ? 0 : -1;
}
/**
* Create flow action: dest_devx_tir
*
* @param[in] tir
* Pointer to DevX tir object
* @param[out] action
* Pointer to a valid action on success, NULL otherwise.
*
* @return
* 0 on success, or -1 on failure and errno is set.
*/
static inline int
mlx5_flow_os_create_flow_action_dest_devx_tir(struct mlx5_devx_obj *tir,
void **action)
{
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
*action = mlx5_glue->dv_create_flow_action_dest_devx_tir(tir->obj);
return (*action) ? 0 : -1;
#else
/* If no DV support - skip the operation and return success */
RTE_SET_USED(tir);
*action = 0;
return 0;
#endif
}
/**
* Destroy flow action.
*

View File

@ -23,7 +23,7 @@
#include "mlx5_utils.h"
#include "mlx5_devx.h"
#include "mlx5_flow.h"
#include "mlx5_flow_os.h"
/**
* Modify RQ vlan stripping offload
@ -942,9 +942,8 @@ mlx5_devx_hrxq_new(struct rte_eth_dev *dev, struct mlx5_hrxq *hrxq,
goto error;
}
#ifdef HAVE_IBV_FLOW_DV_SUPPORT
hrxq->action = mlx5_glue->dv_create_flow_action_dest_devx_tir
(hrxq->tir->obj);
if (!hrxq->action) {
if (mlx5_flow_os_create_flow_action_dest_devx_tir(hrxq->tir,
&hrxq->action)) {
rte_errno = errno;
goto error;
}