diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2021-10-10 09:01:32 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-10-10 11:33:15 +0100 |
commit | b9c56ccb436d1e952bb1fc0ddf752669a116b310 (patch) | |
tree | d35ac602aa4ce03ed65ff30f72eb19913514f81d /drivers/net/ethernet/qlogic | |
parent | 6213f07cb542c9651ba614e784bf58ed41354936 (diff) | |
download | linux-b9c56ccb436d1e952bb1fc0ddf752669a116b310.tar.gz linux-b9c56ccb436d1e952bb1fc0ddf752669a116b310.tar.bz2 linux-b9c56ccb436d1e952bb1fc0ddf752669a116b310.zip |
ethernet: 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.
This was generated with coccinelle:
@@
expression E;
@@
- flush_workqueue(E);
destroy_workqueue(E);
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Reviewed-by: Leon Romanovsky <leonro@nvidia.com> #mlx*
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/qlogic')
-rw-r--r-- | drivers/net/ethernet/qlogic/qed/qed_sriov.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/qlogic/qed/qed_sriov.c b/drivers/net/ethernet/qlogic/qed/qed_sriov.c index f88f58ec2a20..8ac38828ba45 100644 --- a/drivers/net/ethernet/qlogic/qed/qed_sriov.c +++ b/drivers/net/ethernet/qlogic/qed/qed_sriov.c @@ -5224,7 +5224,6 @@ void qed_iov_wq_stop(struct qed_dev *cdev, bool schedule_first) cancel_delayed_work_sync(&cdev->hwfns[i].iov_task); } - flush_workqueue(cdev->hwfns[i].iov_wq); destroy_workqueue(cdev->hwfns[i].iov_wq); } } |