浏览代码

IB/mlx5: Replace numerical constant with predefined MACRO

Replace the pre-defined macro signifying inline umr instead
of the numerical constant.

Signed-off-by: Max Gurtovoy <maxg@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Max Gurtovoy 8 年之前
父节点
当前提交
2d2215888d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/infiniband/hw/mlx5/qp.c

+ 1 - 1
drivers/infiniband/hw/mlx5/qp.c

@@ -3068,7 +3068,7 @@ static void set_linv_umr_seg(struct mlx5_wqe_umr_ctrl_seg *umr)
 {
 {
 	memset(umr, 0, sizeof(*umr));
 	memset(umr, 0, sizeof(*umr));
 	umr->mkey_mask = cpu_to_be64(MLX5_MKEY_MASK_FREE);
 	umr->mkey_mask = cpu_to_be64(MLX5_MKEY_MASK_FREE);
-	umr->flags = 1 << 7;
+	umr->flags = MLX5_UMR_INLINE;
 }
 }
 
 
 static __be64 get_umr_reg_mr_mask(void)
 static __be64 get_umr_reg_mr_mask(void)