public inbox for linux-s390@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] s390/qeth: Remove redundant 'flush_workqueue()' calls
@ 2022-01-14  8:42 Xu Wang
  2022-01-14 11:58 ` Alexandra Winter
  0 siblings, 1 reply; 3+ messages in thread
From: Xu Wang @ 2022-01-14  8:42 UTC (permalink / raw)
  To: wintera, wenjia, hca, gor, borntraeger, agordeev
  Cc: linux-s390, netdev, linux-kernel

'destroy_workqueue()' already drains the queue before destroying it, so
there is no need to flush it explicitly.

Remove the redundant 'flush_workqueue()' calls.

Signed-off-by: Xu Wang <vulab@iscas.ac.cn>
---
 drivers/s390/net/qeth_l3_main.c | 1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
index 9251ad276ee8..d2f422a9a4f7 100644
--- a/drivers/s390/net/qeth_l3_main.c
+++ b/drivers/s390/net/qeth_l3_main.c
@@ -1961,7 +1961,6 @@ static void qeth_l3_remove_device(struct ccwgroup_device *cgdev)
 	if (card->dev->reg_state == NETREG_REGISTERED)
 		unregister_netdev(card->dev);
 
-	flush_workqueue(card->cmd_wq);
 	destroy_workqueue(card->cmd_wq);
 	qeth_l3_clear_ip_htable(card, 0);
 	qeth_l3_clear_ipato_list(card);
-- 
2.25.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] s390/qeth: Remove redundant 'flush_workqueue()' calls
  2022-01-14  8:42 [PATCH] s390/qeth: Remove redundant 'flush_workqueue()' calls Xu Wang
@ 2022-01-14 11:58 ` Alexandra Winter
  2022-01-15  2:25   ` Jakub Kicinski
  0 siblings, 1 reply; 3+ messages in thread
From: Alexandra Winter @ 2022-01-14 11:58 UTC (permalink / raw)
  To: Xu Wang, wenjia, hca, gor, borntraeger, agordeev
  Cc: linux-s390, netdev, linux-kernel



On 14.01.22 09:42, Xu Wang 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.
> 
> Signed-off-by: Xu Wang <vulab@iscas.ac.cn>
> ---
>  drivers/s390/net/qeth_l3_main.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
> index 9251ad276ee8..d2f422a9a4f7 100644
> --- a/drivers/s390/net/qeth_l3_main.c
> +++ b/drivers/s390/net/qeth_l3_main.c
> @@ -1961,7 +1961,6 @@ static void qeth_l3_remove_device(struct ccwgroup_device *cgdev)
>  	if (card->dev->reg_state == NETREG_REGISTERED)
>  		unregister_netdev(card->dev);
>  
> -	flush_workqueue(card->cmd_wq);
>  	destroy_workqueue(card->cmd_wq);
>  	qeth_l3_clear_ip_htable(card, 0);
>  	qeth_l3_clear_ipato_list(card);

Thanks for pointing this out!

IMO, this can go to net-next as it is not a fix, but removes redundancy.

Acked-by: Alexandra Winter <wintera@linux.ibm.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] s390/qeth: Remove redundant 'flush_workqueue()' calls
  2022-01-14 11:58 ` Alexandra Winter
@ 2022-01-15  2:25   ` Jakub Kicinski
  0 siblings, 0 replies; 3+ messages in thread
From: Jakub Kicinski @ 2022-01-15  2:25 UTC (permalink / raw)
  To: Alexandra Winter
  Cc: Xu Wang, wenjia, hca, gor, borntraeger, agordeev, linux-s390,
	netdev, linux-kernel

On Fri, 14 Jan 2022 12:58:38 +0100 Alexandra Winter wrote:
> On 14.01.22 09:42, Xu Wang 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.
> > 
> > Signed-off-by: Xu Wang <vulab@iscas.ac.cn>
> > ---
> >  drivers/s390/net/qeth_l3_main.c | 1 -
> >  1 file changed, 1 deletion(-)
> > 
> > diff --git a/drivers/s390/net/qeth_l3_main.c b/drivers/s390/net/qeth_l3_main.c
> > index 9251ad276ee8..d2f422a9a4f7 100644
> > --- a/drivers/s390/net/qeth_l3_main.c
> > +++ b/drivers/s390/net/qeth_l3_main.c
> > @@ -1961,7 +1961,6 @@ static void qeth_l3_remove_device(struct ccwgroup_device *cgdev)
> >  	if (card->dev->reg_state == NETREG_REGISTERED)
> >  		unregister_netdev(card->dev);
> >  
> > -	flush_workqueue(card->cmd_wq);
> >  	destroy_workqueue(card->cmd_wq);
> >  	qeth_l3_clear_ip_htable(card, 0);
> >  	qeth_l3_clear_ipato_list(card);  
> 
> Thanks for pointing this out!
> 
> IMO, this can go to net-next as it is not a fix, but removes redundancy.

Agreed.

> Acked-by: Alexandra Winter <wintera@linux.ibm.com>

Please keep Alexandra's ack and repost in ~1.5 week -- after 5.17-rc1
is tagged.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-01-15  2:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-14  8:42 [PATCH] s390/qeth: Remove redundant 'flush_workqueue()' calls Xu Wang
2022-01-14 11:58 ` Alexandra Winter
2022-01-15  2:25   ` Jakub Kicinski

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox