[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20241024140057.18548-1-wanghai38@huawei.com>
Date: Thu, 24 Oct 2024 22:00:57 +0800
From: Wang Hai <wanghai38@...wei.com>
To: <giovanni.cabiddu@...el.com>, <herbert@...dor.apana.org.au>,
<davem@...emloft.net>, <ahsan.atta@...el.com>, <mun.chun.yep@...el.com>,
<markas.rapoportas@...el.com>, <damian.muszynski@...el.com>,
<furong.zhou@...el.com>, <adam.guerin@...el.com>, <zhangxiaoxu5@...wei.com>
CC: <qat-linux@...el.com>, <linux-crypto@...r.kernel.org>,
<linux-kernel@...r.kernel.org>, <wanghai38@...wei.com>
Subject: [PATCH] crypto: qat - Fix missing destroy_workqueue in adf_init_aer()
The adf_init_aer() won't destroy device_reset_wq when alloc_workqueue()
for device_sriov_wq failed. Add destroy_workqueue for device_reset_wq to
fix this issue.
Fixes: 4469f9b23468 ("crypto: qat - re-enable sriov after pf reset")
Signed-off-by: Wang Hai <wanghai38@...wei.com>
---
drivers/crypto/intel/qat/qat_common/adf_aer.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/crypto/intel/qat/qat_common/adf_aer.c b/drivers/crypto/intel/qat/qat_common/adf_aer.c
index ec7913ab00a2..907144ec7e65 100644
--- a/drivers/crypto/intel/qat/qat_common/adf_aer.c
+++ b/drivers/crypto/intel/qat/qat_common/adf_aer.c
@@ -281,8 +281,10 @@ int adf_init_aer(void)
return -EFAULT;
device_sriov_wq = alloc_workqueue("qat_device_sriov_wq", 0, 0);
- if (!device_sriov_wq)
+ if (!device_sriov_wq) {
+ destroy_workqueue(device_reset_wq);
return -EFAULT;
+ }
return 0;
}
--
2.17.1
Powered by blists - more mailing lists