diff mbox series

RDMA: fix goto target to release the allocated memory

Message ID 20190910222120.16517-1-navid.emamdoost@gmail.com (mailing list archive)
State Mainlined
Commit 4a9d46a9fe14401f21df69cea97c62396d5fb053
Delegated to: Jason Gunthorpe
Headers show
Series RDMA: fix goto target to release the allocated memory | expand

Commit Message

Navid Emamdoost Sept. 10, 2019, 10:21 p.m. UTC
In bnxt_re_create_srq, when ib_copy_to_udata fails allocated memory
should be released by goto fail.

Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
---
 drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
index 098ab883733e..4a91ffe2c676 100644
--- a/drivers/infiniband/hw/bnxt_re/ib_verbs.c
+++ b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
@@ -1398,7 +1398,7 @@  int bnxt_re_create_srq(struct ib_srq *ib_srq,
 			dev_err(rdev_to_dev(rdev), "SRQ copy to udata failed!");
 			bnxt_qplib_destroy_srq(&rdev->qplib_res,
 					       &srq->qplib_srq);
-			goto exit;
+			goto fail;
 		}
 	}
 	if (nq)