diff options
author | Christophe JAILLET <christophe.jaillet@wanadoo.fr> | 2022-01-10 22:32:27 +0100 |
---|---|---|
committer | Simon Wunderlich <sw@simonwunderlich.de> | 2022-01-23 10:42:11 +0100 |
commit | c138f67ad4721801791a01cd10c816414b33b48d (patch) | |
tree | f2c4fd7bfb6c82baf2079bff5b24a71ce537f58a | |
parent | 94ea9392e113921df1b2cffb181671e768f3f87b (diff) |
batman-adv: 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>
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
-rw-r--r-- | net/batman-adv/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/batman-adv/main.c b/net/batman-adv/main.c index 5207cd8d6ad8..8f1b724d0412 100644 --- a/net/batman-adv/main.c +++ b/net/batman-adv/main.c @@ -132,7 +132,6 @@ static void __exit batadv_exit(void) rtnl_link_unregister(&batadv_link_ops); unregister_netdevice_notifier(&batadv_hard_if_notifier); - flush_workqueue(batadv_event_workqueue); destroy_workqueue(batadv_event_workqueue); batadv_event_workqueue = NULL; |