f49f44839d
Move Tx object similar resources allocations and debug logs from DevX and Verbs modules to a shared location. Signed-off-by: Michael Baum <michaelba@nvidia.com> Acked-by: Matan Azrad <matan@nvidia.com>
16 lines
374 B
C
16 lines
374 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright 2020 Mellanox Technologies, Ltd
|
|
*/
|
|
|
|
#ifndef RTE_PMD_MLX5_DEVX_H_
|
|
#define RTE_PMD_MLX5_DEVX_H_
|
|
|
|
#include "mlx5.h"
|
|
|
|
int mlx5_txq_devx_obj_new(struct rte_eth_dev *dev, uint16_t idx);
|
|
void mlx5_txq_devx_obj_release(struct mlx5_txq_obj *txq_obj);
|
|
|
|
extern struct mlx5_obj_ops devx_obj_ops;
|
|
|
|
#endif /* RTE_PMD_MLX5_DEVX_H_ */
|