Commit e9f2cd28 authored by Xi Wang's avatar Xi Wang Committed by Jason Gunthorpe

RDMA/hns: Rename QP buffer related function

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.comSigned-off-by: default avatarXi Wang <wangxi11@huawei.com>
Signed-off-by: default avatarWeihang Li <liweihang@huawei.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent b9c93e3a
...@@ -502,9 +502,9 @@ static int set_user_sq_size(struct hns_roce_dev *hr_dev, ...@@ -502,9 +502,9 @@ static int set_user_sq_size(struct hns_roce_dev *hr_dev,
return 0; return 0;
} }
static int split_wqe_buf_region(struct hns_roce_dev *hr_dev, static int set_wqe_buf_attr(struct hns_roce_dev *hr_dev,
struct hns_roce_qp *hr_qp, struct hns_roce_qp *hr_qp,
struct hns_roce_buf_attr *buf_attr) struct hns_roce_buf_attr *buf_attr)
{ {
int buf_size; int buf_size;
int idx = 0; int idx = 0;
...@@ -676,7 +676,7 @@ static int alloc_qp_buf(struct hns_roce_dev *hr_dev, struct hns_roce_qp *hr_qp, ...@@ -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; 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) { if (ret) {
ibdev_err(ibdev, "failed to split WQE buf, ret = %d.\n", ret); ibdev_err(ibdev, "failed to split WQE buf, ret = %d.\n", ret);
goto err_inline; goto err_inline;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment