Commit 9b3ca3ec authored by Leon Romanovsky's avatar Leon Romanovsky

net/mlx5: Update pd.c new cmd interface

Do mass update of pd.c to reuse newly introduced
mlx5_cmd_exec_in*() interfaces.
Reviewed-by: default avatarMoshe Shemesh <moshe@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
parent 86d41641
...@@ -37,12 +37,12 @@ ...@@ -37,12 +37,12 @@
int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn) int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn)
{ {
u32 out[MLX5_ST_SZ_DW(alloc_pd_out)] = {0}; u32 out[MLX5_ST_SZ_DW(alloc_pd_out)] = {};
u32 in[MLX5_ST_SZ_DW(alloc_pd_in)] = {0}; u32 in[MLX5_ST_SZ_DW(alloc_pd_in)] = {};
int err; int err;
MLX5_SET(alloc_pd_in, in, opcode, MLX5_CMD_OP_ALLOC_PD); MLX5_SET(alloc_pd_in, in, opcode, MLX5_CMD_OP_ALLOC_PD);
err = mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); err = mlx5_cmd_exec_inout(dev, alloc_pd, in, out);
if (!err) if (!err)
*pdn = MLX5_GET(alloc_pd_out, out, pd); *pdn = MLX5_GET(alloc_pd_out, out, pd);
return err; return err;
...@@ -51,11 +51,10 @@ EXPORT_SYMBOL(mlx5_core_alloc_pd); ...@@ -51,11 +51,10 @@ EXPORT_SYMBOL(mlx5_core_alloc_pd);
int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn) int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn)
{ {
u32 out[MLX5_ST_SZ_DW(dealloc_pd_out)] = {0}; u32 in[MLX5_ST_SZ_DW(dealloc_pd_in)] = {};
u32 in[MLX5_ST_SZ_DW(dealloc_pd_in)] = {0};
MLX5_SET(dealloc_pd_in, in, opcode, MLX5_CMD_OP_DEALLOC_PD); MLX5_SET(dealloc_pd_in, in, opcode, MLX5_CMD_OP_DEALLOC_PD);
MLX5_SET(dealloc_pd_in, in, pd, pdn); MLX5_SET(dealloc_pd_in, in, pd, pdn);
return mlx5_cmd_exec(dev, in, sizeof(in), out, sizeof(out)); return mlx5_cmd_exec_in(dev, dealloc_pd, in);
} }
EXPORT_SYMBOL(mlx5_core_dealloc_pd); EXPORT_SYMBOL(mlx5_core_dealloc_pd);
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment