summaryrefslogtreecommitdiffstats
path: root/0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch
diff options
context:
space:
mode:
Diffstat (limited to '0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch')
-rw-r--r--0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch b/0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch
deleted file mode 100644
index 87f4b4db7..000000000
--- a/0001-RDMA-Fix-goto-target-to-release-the-allocated-memory.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 4a9d46a9fe14401f21df69cea97c62396d5fb053 Mon Sep 17 00:00:00 2001
-From: Navid Emamdoost <navid.emamdoost@gmail.com>
-Date: Tue, 10 Sep 2019 17:21:19 -0500
-Subject: [PATCH] RDMA: Fix goto target to release the allocated memory
-
-In bnxt_re_create_srq(), when ib_copy_to_udata() fails allocated memory
-should be released by goto fail.
-
-Fixes: 37cb11acf1f7 ("RDMA/bnxt_re: Add SRQ support for Broadcom adapters")
-Link: https://lore.kernel.org/r/20190910222120.16517-1-navid.emamdoost@gmail.com
-Signed-off-by: Navid Emamdoost <navid.emamdoost@gmail.com>
-Reviewed-by: Jason Gunthorpe <jgg@mellanox.com>
-Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
----
- drivers/infiniband/hw/bnxt_re/ib_verbs.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/drivers/infiniband/hw/bnxt_re/ib_verbs.c b/drivers/infiniband/hw/bnxt_re/ib_verbs.c
-index f9e97d0cc459..b4149dc9e824 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)
---
-2.23.0
-