diff options
author | Yonatan Cohen <yonatanc@mellanox.com> | 2018-10-09 11:05:13 +0200 |
---|---|---|
committer | Doug Ledford <dledford@redhat.com> | 2018-10-17 17:25:41 +0200 |
commit | 5d6ff1babe78034f0cf8e5f7bf312a257e5574cc (patch) | |
tree | e168c1f907b01fe01c5164fc3d1de2d4e229e762 /drivers/infiniband/hw/mlx5/cq.c | |
parent | Merge remote-tracking branch 'mlx5-next' into for-next (diff) | |
download | linux-5d6ff1babe78034f0cf8e5f7bf312a257e5574cc.tar.xz linux-5d6ff1babe78034f0cf8e5f7bf312a257e5574cc.zip |
IB/mlx5: Support scatter to CQE for DC transport type
Scatter to CQE is a HW offload that saves PCI writes by scattering the
payload to the CQE.
This patch extends already existing functionality to support DC
transport type.
Signed-off-by: Yonatan Cohen <yonatanc@mellanox.com>
Reviewed-by: Guy Levi <guyle@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Diffstat (limited to 'drivers/infiniband/hw/mlx5/cq.c')
-rw-r--r-- | drivers/infiniband/hw/mlx5/cq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/mlx5/cq.c b/drivers/infiniband/hw/mlx5/cq.c index dae30b6478bf..a41519dc8d3a 100644 --- a/drivers/infiniband/hw/mlx5/cq.c +++ b/drivers/infiniband/hw/mlx5/cq.c @@ -1460,7 +1460,7 @@ ex: return err; } -int mlx5_ib_get_cqe_size(struct mlx5_ib_dev *dev, struct ib_cq *ibcq) +int mlx5_ib_get_cqe_size(struct ib_cq *ibcq) { struct mlx5_ib_cq *cq; |