mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-08 14:13:53 +00:00
RDMA/hns: Fix memory leak in free_mr_init()
When a reserved QP fails to be created, the memory of the remaining
created reserved QPs is leaked.
Fixes: 70f9252158
("RDMA/hns: Use the reserved loopback QPs to free MR before destroying MPT")
Signed-off-by: Chengchang Tang <tangchengchang@huawei.com>
Signed-off-by: Junxian Huang <huangjunxian6@hisilicon.com>
Link: https://lore.kernel.org/r/20231207114231.2872104-6-huangjunxian6@hisilicon.com
Signed-off-by: Leon Romanovsky <leon@kernel.org>
This commit is contained in:
parent
f31683a522
commit
288f535951
@ -2710,6 +2710,10 @@ static int free_mr_alloc_res(struct hns_roce_dev *hr_dev)
|
||||
return 0;
|
||||
|
||||
create_failed_qp:
|
||||
for (i--; i >= 0; i--) {
|
||||
hns_roce_v2_destroy_qp(&free_mr->rsv_qp[i]->ibqp, NULL);
|
||||
kfree(free_mr->rsv_qp[i]);
|
||||
}
|
||||
hns_roce_destroy_cq(cq, NULL);
|
||||
kfree(cq);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user