mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
IB/hns: Simplify function of pd alloc and qp alloc
Hns_roce_pd_alloc and hns_roce_reserve_range_qp use unnecessary transformation of parameters. This patch simplify these two functions. Signed-off-by: Lijun Ou <oulijun@huawei.com> Signed-off-by: Dongdong Huang(Donald) <hdd.huang@huawei.com> Reviewed-by: Wei Hu <xavier.huwei@huawei.com> Signed-off-by: Salil Mehta <salil.mehta@huawei.com> Signed-off-by: Doug Ledford <dledford@redhat.com>
This commit is contained in:
parent
ed3e6d0113
commit
a598c6f4c5
@ -35,19 +35,7 @@
|
||||
|
||||
static int hns_roce_pd_alloc(struct hns_roce_dev *hr_dev, unsigned long *pdn)
|
||||
{
|
||||
struct device *dev = &hr_dev->pdev->dev;
|
||||
unsigned long pd_number;
|
||||
int ret = 0;
|
||||
|
||||
ret = hns_roce_bitmap_alloc(&hr_dev->pd_bitmap, &pd_number);
|
||||
if (ret == -1) {
|
||||
dev_err(dev, "alloc pdn from pdbitmap failed\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
*pdn = pd_number;
|
||||
|
||||
return 0;
|
||||
return hns_roce_bitmap_alloc(&hr_dev->pd_bitmap, pdn);
|
||||
}
|
||||
|
||||
static void hns_roce_pd_free(struct hns_roce_dev *hr_dev, unsigned long pdn)
|
||||
|
@ -112,16 +112,8 @@ static int hns_roce_reserve_range_qp(struct hns_roce_dev *hr_dev, int cnt,
|
||||
int align, unsigned long *base)
|
||||
{
|
||||
struct hns_roce_qp_table *qp_table = &hr_dev->qp_table;
|
||||
int ret = 0;
|
||||
unsigned long qpn;
|
||||
|
||||
ret = hns_roce_bitmap_alloc_range(&qp_table->bitmap, cnt, align, &qpn);
|
||||
if (ret == -1)
|
||||
return -ENOMEM;
|
||||
|
||||
*base = qpn;
|
||||
|
||||
return 0;
|
||||
return hns_roce_bitmap_alloc_range(&qp_table->bitmap, cnt, align, base);
|
||||
}
|
||||
|
||||
enum hns_roce_qp_state to_hns_roce_state(enum ib_qp_state state)
|
||||
|
Loading…
Reference in New Issue
Block a user