From: Minghao Chi (CGEL ZTE) Date: Thu, 27 Jan 2022 01:43:30 +0000 (+0000) Subject: scsi: lpfc: Remove redundant flush_workqueue() call X-Git-Tag: v5.18-rc1~127^2~251 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d1d87c33f47dc69f948d51dcfed344e34c75c406;p=thirdparty%2Fkernel%2Flinux.git scsi: lpfc: Remove redundant flush_workqueue() call destroy_workqueue() already drains the queue before destroying it, so there is no need to flush it explicitly. Remove the redundant flush_workqueue() call. Link: https://lore.kernel.org/r/20220127014330.1185114-1-chi.minghao@zte.com.cn Reported-by: Zeal Robot Signed-off-by: Minghao Chi (CGEL ZTE) Signed-off-by: CGEL ZTE Signed-off-by: Martin K. Petersen --- diff --git a/drivers/scsi/lpfc/lpfc_init.c b/drivers/scsi/lpfc/lpfc_init.c index a56f01f659f8e..f49ff18cb252c 100644 --- a/drivers/scsi/lpfc/lpfc_init.c +++ b/drivers/scsi/lpfc/lpfc_init.c @@ -8546,7 +8546,6 @@ static void lpfc_unset_driver_resource_phase2(struct lpfc_hba *phba) { if (phba->wq) { - flush_workqueue(phba->wq); destroy_workqueue(phba->wq); phba->wq = NULL; }