* [PATCH] net: ethernet: wiznet: Remove create_workqueue
@ 2016-06-01 17:59 Bhaktipriya Shridhar
  2016-06-01 18:46 ` Tejun Heo
  2016-06-02 19:15 ` David Miller
  0 siblings, 2 replies; 3+ messages in thread
From: Bhaktipriya Shridhar @ 2016-06-01 17:59 UTC (permalink / raw)
  To: David S. Miller, Akinobu Mita, Antonio Quartulli, Felipe Balbi,
	Florian Westphal
  Cc: Tejun Heo, netdev, linux-kernel
alloc_workqueue replaces deprecated create_workqueue().
A dedicated workqueue has been used since the workitems are involved
in normal device operation. Workitems &priv->rx_work and &priv->tx_work,
map to w5100_rx_work and w5100_tx_work respectively and are involved in
receiving and transmitting packets. Forward progress under
memory pressure is a requirement here.
create_workqueue has been replaced with alloc_workqueue with max_active
as 0 since there is no need for throttling the number of active work
items.
Since the driver may be used in memory reclaim path,
WQ_MEM_RECLAIM has been set to guarantee forward progress.
flush_workqueue is unnecessary since destroy_workqueue() itself calls
drain_workqueue() which flushes repeatedly till the workqueue
becomes empty. Hence the call to flush_workqueue() has been dropped.
Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
---
 drivers/net/ethernet/wiznet/w5100.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/drivers/net/ethernet/wiznet/w5100.c b/drivers/net/ethernet/wiznet/w5100.c
index 4f6255c..37ab46c 100644
--- a/drivers/net/ethernet/wiznet/w5100.c
+++ b/drivers/net/ethernet/wiznet/w5100.c
@@ -1154,7 +1154,7 @@ int w5100_probe(struct device *dev, const struct w5100_ops *ops,
 	if (err < 0)
 		goto err_register;
-	priv->xfer_wq = create_workqueue(netdev_name(ndev));
+	priv->xfer_wq = alloc_workqueue(netdev_name(ndev), WQ_MEM_RECLAIM, 0);
 	if (!priv->xfer_wq) {
 		err = -ENOMEM;
 		goto err_wq;
@@ -1233,7 +1233,6 @@ int w5100_remove(struct device *dev)
 	flush_work(&priv->setrx_work);
 	flush_work(&priv->restart_work);
-	flush_workqueue(priv->xfer_wq);
 	destroy_workqueue(priv->xfer_wq);
 	unregister_netdev(ndev);
^ permalink raw reply related	[flat|nested] 3+ messages in thread
* Re: [PATCH] net: ethernet: wiznet: Remove create_workqueue
  2016-06-01 17:59 [PATCH] net: ethernet: wiznet: Remove create_workqueue Bhaktipriya Shridhar
@ 2016-06-01 18:46 ` Tejun Heo
  2016-06-02 19:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: Tejun Heo @ 2016-06-01 18:46 UTC (permalink / raw)
  To: Bhaktipriya Shridhar
  Cc: David S. Miller, Akinobu Mita, Antonio Quartulli, Felipe Balbi,
	Florian Westphal, netdev, linux-kernel
On Wed, Jun 01, 2016 at 11:29:15PM +0530, Bhaktipriya Shridhar wrote:
> alloc_workqueue replaces deprecated create_workqueue().
> 
> A dedicated workqueue has been used since the workitems are involved
> in normal device operation. Workitems &priv->rx_work and &priv->tx_work,
> map to w5100_rx_work and w5100_tx_work respectively and are involved in
> receiving and transmitting packets. Forward progress under
> memory pressure is a requirement here.
> 
> create_workqueue has been replaced with alloc_workqueue with max_active
> as 0 since there is no need for throttling the number of active work
> items.
> 
> Since the driver may be used in memory reclaim path,
> WQ_MEM_RECLAIM has been set to guarantee forward progress.
> 
> flush_workqueue is unnecessary since destroy_workqueue() itself calls
> drain_workqueue() which flushes repeatedly till the workqueue
> becomes empty. Hence the call to flush_workqueue() has been dropped.
> 
> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Acked-by: Tejun Heo <tj@kernel.org>
Thanks.
-- 
tejun
^ permalink raw reply	[flat|nested] 3+ messages in thread
* Re: [PATCH] net: ethernet: wiznet: Remove create_workqueue
  2016-06-01 17:59 [PATCH] net: ethernet: wiznet: Remove create_workqueue Bhaktipriya Shridhar
  2016-06-01 18:46 ` Tejun Heo
@ 2016-06-02 19:15 ` David Miller
  1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2016-06-02 19:15 UTC (permalink / raw)
  To: bhaktipriya96; +Cc: akinobu.mita, a, felipe.balbi, fw, tj, netdev, linux-kernel
From: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Date: Wed, 1 Jun 2016 23:29:15 +0530
> alloc_workqueue replaces deprecated create_workqueue().
> 
> A dedicated workqueue has been used since the workitems are involved
> in normal device operation. Workitems &priv->rx_work and &priv->tx_work,
> map to w5100_rx_work and w5100_tx_work respectively and are involved in
> receiving and transmitting packets. Forward progress under
> memory pressure is a requirement here.
> 
> create_workqueue has been replaced with alloc_workqueue with max_active
> as 0 since there is no need for throttling the number of active work
> items.
> 
> Since the driver may be used in memory reclaim path,
> WQ_MEM_RECLAIM has been set to guarantee forward progress.
> 
> flush_workqueue is unnecessary since destroy_workqueue() itself calls
> drain_workqueue() which flushes repeatedly till the workqueue
> becomes empty. Hence the call to flush_workqueue() has been dropped.
> 
> Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Applied to net-next, thanks.
^ permalink raw reply	[flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-06-02 19:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-01 17:59 [PATCH] net: ethernet: wiznet: Remove create_workqueue Bhaktipriya Shridhar
2016-06-01 18:46 ` Tejun Heo
2016-06-02 19:15 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).