]> git.baikalelectronics.ru Git - kernel.git/commitdiff
scsi: lpfc: Remove redundant flush_workqueue() call
authorMinghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Thu, 27 Jan 2022 01:43:30 +0000 (01:43 +0000)
committerMartin K. Petersen <martin.petersen@oracle.com>
Mon, 31 Jan 2022 22:10:37 +0000 (17:10 -0500)
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 <zealci@zte.com.cn>
Signed-off-by: Minghao Chi (CGEL ZTE) <chi.minghao@zte.com.cn>
Signed-off-by: CGEL ZTE <cgel.zte@gmail.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
drivers/scsi/lpfc/lpfc_init.c

index a56f01f659f8ea3cfac9d2970fbfb1726d3e0eca..f49ff18cb252c0ff85f6666711370dc5bf6c9e99 100644 (file)
@@ -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;
        }