Re: [PATCH v2] scsi: ufshcd: fix missing destroy_workqueue()

2020-11-16 Thread Martin K. Petersen
On Tue, 10 Nov 2020 15:42:23 +0800, Qinglang Miao wrote: > Add the missing destroy_workqueue() before return from > ufshcd_init in the error handling case as well as in > ufshcd_remove. Applied to 5.10/scsi-fixes, thanks! [1/1] scsi: ufshcd: Fix missing destroy_workqueue() https://git.kern

Re: [PATCH v2] scsi: ufshcd: fix missing destroy_workqueue()

2020-11-10 Thread Asutosh Das (asd)
On 11/9/2020 11:42 PM, Qinglang Miao wrote: Add the missing destroy_workqueue() before return from ufshcd_init in the error handling case as well as in ufshcd_remove. Fixes: 4db7a2360597 ("scsi: ufs: Fix concurrency of error handler and other error recovery paths") Suggested-by: Avri Altman Si

RE: [PATCH v2] scsi: ufshcd: fix missing destroy_workqueue()

2020-11-09 Thread Avri Altman
> > > Add the missing destroy_workqueue() before return from > ufshcd_init in the error handling case as well as in > ufshcd_remove. > > Fixes: 4db7a2360597 ("scsi: ufs: Fix concurrency of error handler and other > error recovery paths") > Suggested-by: Avri Altman > Signed-off-by: Qinglang Mia

[PATCH v2] scsi: ufshcd: fix missing destroy_workqueue()

2020-11-09 Thread Qinglang Miao
Add the missing destroy_workqueue() before return from ufshcd_init in the error handling case as well as in ufshcd_remove. Fixes: 4db7a2360597 ("scsi: ufs: Fix concurrency of error handler and other error recovery paths") Suggested-by: Avri Altman Signed-off-by: Qinglang Miao --- v2: consider