]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
i40iw: Use actual page size
authorHenry Orosco <henry.orosco@intel.com>
Thu, 10 Nov 2016 03:33:32 +0000 (21:33 -0600)
committerDoug Ledford <dledford@redhat.com>
Mon, 5 Dec 2016 21:09:37 +0000 (16:09 -0500)
In i40iw_post_send, use the actual page size instead of
encoded page size. This is to be consistent with the
rest of the file.

Signed-off-by: Mustafa Ismail <mustafa.ismail@intel.com>
Signed-off-by: Henry Orosco <henry.orosco@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/hw/i40iw/i40iw_verbs.c

index d20ee118f366b174cf6e94d66ab00c7c4f1f8800..dcf08b8994ecd5f298424d8d65d1b691115dec0e 100644 (file)
@@ -2145,7 +2145,6 @@ static int i40iw_post_send(struct ib_qp *ibqp,
                case IB_WR_REG_MR:
                {
                        struct i40iw_mr *iwmr = to_iwmr(reg_wr(ib_wr)->mr);
-                       int page_shift = ilog2(reg_wr(ib_wr)->mr->page_size);
                        int flags = reg_wr(ib_wr)->access;
                        struct i40iw_pble_alloc *palloc = &iwmr->iwpbl.pble_alloc;
                        struct i40iw_sc_dev *dev = &iwqp->iwdev->sc_dev;
@@ -2156,6 +2155,7 @@ static int i40iw_post_send(struct ib_qp *ibqp,
                        info.access_rights |= i40iw_get_user_access(flags);
                        info.stag_key = reg_wr(ib_wr)->key & 0xff;
                        info.stag_idx = reg_wr(ib_wr)->key >> 8;
+                       info.page_size = reg_wr(ib_wr)->mr->page_size;
                        info.wr_id = ib_wr->wr_id;
 
                        info.addr_type = I40IW_ADDR_TYPE_VA_BASED;
@@ -2169,9 +2169,6 @@ static int i40iw_post_send(struct ib_qp *ibqp,
                        if (iwmr->npages > I40IW_MIN_PAGES_PER_FMR)
                                info.chunk_size = 1;
 
-                       if (page_shift == 21)
-                               info.page_size = 1; /* 2M page */
-
                        ret = dev->iw_priv_qp_ops->iw_mr_fast_register(&iwqp->sc_qp, &info, true);
                        if (ret)
                                err = -ENOMEM;