'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 <redacted>
---
drivers/net/ieee802154/ca8210.c | 2 --
1 file changed, 2 deletions(-)
From: Stefan Schmidt <stefan@datenfreihafen.org> Date: 2021-10-16 21:02:17
Hello Dave, Jakub.
I have nothing else in my ieee802154 tree for net right now so it would
be great if you could take it directly. If that poses a problem, let me
know and I will get it in through my tree.
On 14.10.21 20:26, Christophe JAILLET wrote:
quoted hunk
'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 <redacted>
---
drivers/net/ieee802154/ca8210.c | 2 --
1 file changed, 2 deletions(-)
Hello:
This patch was applied to netdev/net-next.git (master)
by David S. Miller [off-list ref]:
On Thu, 14 Oct 2021 20:26:14 +0200 you wrote:
'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:
[...]