mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
scsi: qedi: Remove redundant flush_workqueue() calls
destroy_workqueue() already drains the queue before destroying it, so there is no need to flush it explicitly. Remove the redundant flush_workqueue() calls. Link: https://lore.kernel.org/r/20220127013934.1184923-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>
This commit is contained in:
parent
2245ea91fd
commit
0603be7192
@ -2418,13 +2418,11 @@ static void __qedi_remove(struct pci_dev *pdev, int mode)
|
|||||||
iscsi_host_remove(qedi->shost);
|
iscsi_host_remove(qedi->shost);
|
||||||
|
|
||||||
if (qedi->tmf_thread) {
|
if (qedi->tmf_thread) {
|
||||||
flush_workqueue(qedi->tmf_thread);
|
|
||||||
destroy_workqueue(qedi->tmf_thread);
|
destroy_workqueue(qedi->tmf_thread);
|
||||||
qedi->tmf_thread = NULL;
|
qedi->tmf_thread = NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (qedi->offload_thread) {
|
if (qedi->offload_thread) {
|
||||||
flush_workqueue(qedi->offload_thread);
|
|
||||||
destroy_workqueue(qedi->offload_thread);
|
destroy_workqueue(qedi->offload_thread);
|
||||||
qedi->offload_thread = NULL;
|
qedi->offload_thread = NULL;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user