diff options
author | Eli Cohen <eli@dev.mellanox.co.il> | 2013-10-31 14:26:36 +0100 |
---|---|---|
committer | Roland Dreier <roland@purestorage.com> | 2013-11-15 23:36:36 +0100 |
commit | cf1c5e1f1c965cf44e680127b2e9564fc472676c (patch) | |
tree | 39b4e76138ebbd506255d97567d5698877fc2f89 /drivers | |
parent | IB/mlx4: Fix device max capabilities check (diff) | |
download | linux-cf1c5e1f1c965cf44e680127b2e9564fc472676c.tar.xz linux-cf1c5e1f1c965cf44e680127b2e9564fc472676c.zip |
IB/mlx5: Fix page shift in create CQ for userspace
When creating a CQ, we must use mlx5 adapter page shift.
Signed-off-by: Eli Cohen <eli@mellanox.com>
Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers')
-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 28344773f640..b72627429745 100644 --- a/drivers/infiniband/hw/mlx5/cq.c +++ b/drivers/infiniband/hw/mlx5/cq.c @@ -556,7 +556,7 @@ static int create_cq_user(struct mlx5_ib_dev *dev, struct ib_udata *udata, goto err_db; } mlx5_ib_populate_pas(dev, cq->buf.umem, page_shift, (*cqb)->pas, 0); - (*cqb)->ctx.log_pg_sz = page_shift - PAGE_SHIFT; + (*cqb)->ctx.log_pg_sz = page_shift - MLX5_ADAPTER_PAGE_SHIFT; *index = to_mucontext(context)->uuari.uars[0].index; |