diff mbox series

RDMA/qedr: clean up work queue on failure in qedr_alloc_resources()

Message ID Y1gBkDucQhhWj5YM@kili (mailing list archive)
State Accepted
Headers show
Series RDMA/qedr: clean up work queue on failure in qedr_alloc_resources() | expand

Commit Message

Dan Carpenter Oct. 25, 2022, 3:32 p.m. UTC
Add a check for if create_singlethread_workqueue() fails and also destroy
the work queue on failure paths.

Fixes: e411e0587e0d ("RDMA/qedr: Add iWARP connection management functions")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 drivers/infiniband/hw/qedr/main.c | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

Comments

Leon Romanovsky Oct. 27, 2022, 11:48 a.m. UTC | #1
On Tue, 25 Oct 2022 18:32:32 +0300, Dan Carpenter wrote:
> Add a check for if create_singlethread_workqueue() fails and also destroy
> the work queue on failure paths.
> 
> 

Applied, thanks!

[1/1] RDMA/qedr: clean up work queue on failure in qedr_alloc_resources()
      https://git.kernel.org/rdma/rdma/c/569ab362c3073a

Best regards,
diff mbox series

Patch

diff --git a/drivers/infiniband/hw/qedr/main.c b/drivers/infiniband/hw/qedr/main.c
index 5152f10d2e6d..ba0c3e4c07d8 100644
--- a/drivers/infiniband/hw/qedr/main.c
+++ b/drivers/infiniband/hw/qedr/main.c
@@ -344,6 +344,10 @@  static int qedr_alloc_resources(struct qedr_dev *dev)
 	if (IS_IWARP(dev)) {
 		xa_init(&dev->qps);
 		dev->iwarp_wq = create_singlethread_workqueue("qedr_iwarpq");
+		if (!dev->iwarp_wq) {
+			rc = -ENOMEM;
+			goto err1;
+		}
 	}
 
 	/* Allocate Status blocks for CNQ */
@@ -351,7 +355,7 @@  static int qedr_alloc_resources(struct qedr_dev *dev)
 				GFP_KERNEL);
 	if (!dev->sb_array) {
 		rc = -ENOMEM;
-		goto err1;
+		goto err_destroy_wq;
 	}
 
 	dev->cnq_array = kcalloc(dev->num_cnq,
@@ -402,6 +406,9 @@  static int qedr_alloc_resources(struct qedr_dev *dev)
 	kfree(dev->cnq_array);
 err2:
 	kfree(dev->sb_array);
+err_destroy_wq:
+	if (IS_IWARP(dev))
+		destroy_workqueue(dev->iwarp_wq);
 err1:
 	kfree(dev->sgid_tbl);
 	return rc;