RDMA/hns: Rename QP buffer related function
authorXi Wang <wangxi11@huawei.com>
Wed, 20 May 2020 13:53:15 +0000 (21:53 +0800)
committerJason Gunthorpe <jgg@mellanox.com>
Mon, 25 May 2020 17:02:12 +0000 (14:02 -0300)
Rename the function related to QP buffer to make the code more readable.

Link: https://lore.kernel.org/r/1589982799-28728-6-git-send-email-liweihang@huawei.com
Signed-off-by: Xi Wang <wangxi11@huawei.com>
Signed-off-by: Weihang Li <liweihang@huawei.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/hw/hns/hns_roce_qp.c

index fb71755f6179eb4f8c460ac6f475f0edc156accf..5d294209fb23dc718d5175a0d4e3b78c2a56f62e 100644 (file)
@@ -502,9 +502,9 @@ static int set_user_sq_size(struct hns_roce_dev *hr_dev,
        return 0;
 }
 
-static int split_wqe_buf_region(struct hns_roce_dev *hr_dev,
-                               struct hns_roce_qp *hr_qp,
-                               struct hns_roce_buf_attr *buf_attr)
+static int set_wqe_buf_attr(struct hns_roce_dev *hr_dev,
+                           struct hns_roce_qp *hr_qp,
+                           struct hns_roce_buf_attr *buf_attr)
 {
        int buf_size;
        int idx = 0;
@@ -676,7 +676,7 @@ static int alloc_qp_buf(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp,
                hr_qp->rq_inl_buf.wqe_list = NULL;
        }
 
-       ret = split_wqe_buf_region(hr_dev, hr_qp, &buf_attr);
+       ret = set_wqe_buf_attr(hr_dev, hr_qp, &buf_attr);
        if (ret) {
                ibdev_err(ibdev, "failed to split WQE buf, ret = %d.\n", ret);
                goto err_inline;