Message ID | 20190801012725.150493-1-weiyongjun1@huawei.com (mailing list archive) |
---|---|
State | Mainlined |
Commit | 020fb3bebc224dfe9353a56ecbe2d5fac499dffc |
Headers | show |
Series | RDMA/hns: Fix error return code in hns_roce_v1_rsv_lp_qp() | expand |
On Thu, Aug 01, 2019 at 01:27:25AM +0000, Wei Yongjun wrote: > Fix to return error code -ENOMEM from the rdma_zalloc_drv_obj() error > handling case instead of 0, as done elsewhere in this function. > > Fixes: e8ac9389f0d7 ("RDMA: Fix allocation failure on pointer pd") > Fixes: 21a428a019c9 ("RDMA: Handle PD allocations by IB/core") > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> > --- > drivers/infiniband/hw/hns/hns_roce_hw_v1.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > Thanks, Reviewed-by: Leon Romanovsky <leonro@mellanox.com>
On Thu, 2019-08-01 at 01:27 +0000, Wei Yongjun wrote: > Fix to return error code -ENOMEM from the rdma_zalloc_drv_obj() error > handling case instead of 0, as done elsewhere in this function. > > Fixes: e8ac9389f0d7 ("RDMA: Fix allocation failure on pointer pd") > Fixes: 21a428a019c9 ("RDMA: Handle PD allocations by IB/core") > Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> Thanks, applied to for-rc.
diff --git a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c index 70583f82e290..aa8a660ffcda 100644 --- a/drivers/infiniband/hw/hns/hns_roce_hw_v1.c +++ b/drivers/infiniband/hw/hns/hns_roce_hw_v1.c @@ -750,8 +750,10 @@ static int hns_roce_v1_rsv_lp_qp(struct hns_roce_dev *hr_dev) atomic_set(&free_mr->mr_free_cq->ib_cq.usecnt, 0); pd = rdma_zalloc_drv_obj(ibdev, ib_pd); - if (!pd) + if (!pd) { + ret = -ENOMEM; goto alloc_mem_failed; + } pd->device = ibdev; ret = hns_roce_alloc_pd(pd, NULL);
Fix to return error code -ENOMEM from the rdma_zalloc_drv_obj() error handling case instead of 0, as done elsewhere in this function. Fixes: e8ac9389f0d7 ("RDMA: Fix allocation failure on pointer pd") Fixes: 21a428a019c9 ("RDMA: Handle PD allocations by IB/core") Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com> --- drivers/infiniband/hw/hns/hns_roce_hw_v1.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)