linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] scsi: ufs: Check workqueue exists before destroying it
@ 2018-08-02  0:14 Matthias Kaehlcke
  2018-08-07 17:09 ` Evan Green
  2018-08-08  6:24 ` Stephen Boyd
  0 siblings, 2 replies; 4+ messages in thread
From: Matthias Kaehlcke @ 2018-08-02  0:14 UTC (permalink / raw)
  To: Vinayak Holikatti, James E . J . Bottomley, Martin K . Petersen,
	Subhash Jadavani
  Cc: linux-scsi, linux-kernel, Evan Green, Douglas Anderson,
	Stephen Boyd, Matthias Kaehlcke

In ufshcd_hba_exit() the clock gating workqueue is always destroyed
when clock gating is supported. However the workqueue pointer is NULL
when ufshcd_init() fails before the workqueue is created. Only destroy
the workqueue if it exists.

Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
---
 drivers/scsi/ufs/ufshcd.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/scsi/ufs/ufshcd.c b/drivers/scsi/ufs/ufshcd.c
index 397081d320b1..401f7dbe2981 100644
--- a/drivers/scsi/ufs/ufshcd.c
+++ b/drivers/scsi/ufs/ufshcd.c
@@ -7190,7 +7190,8 @@ static void ufshcd_hba_exit(struct ufs_hba *hba)
 		if (ufshcd_is_clkscaling_supported(hba)) {
 			if (hba->devfreq)
 				ufshcd_suspend_clkscaling(hba);
-			destroy_workqueue(hba->clk_scaling.workq);
+			if (hba->clk_scaling.workq)
+				destroy_workqueue(hba->clk_scaling.workq);
 			ufshcd_devfreq_remove(hba);
 		}
 		ufshcd_setup_clocks(hba, false);
-- 
2.18.0.597.ga71716f1ad-goog


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-08-09 18:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-02  0:14 [PATCH] scsi: ufs: Check workqueue exists before destroying it Matthias Kaehlcke
2018-08-07 17:09 ` Evan Green
2018-08-08  6:24 ` Stephen Boyd
2018-08-09 18:57   ` Matthias Kaehlcke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).