dect
/
linux-2.6
Archived
13
0
Fork 0

mlx4_en: using stop/start_all_queues

After we moved to be a multi queue device, need to stop/start
all of our transmit queues.

Signed-off-by: Yevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Yevgeny Petrilin 2009-06-20 22:15:46 +00:00 committed by David S. Miller
parent d4ddbaa6a9
commit a11faac79f
1 changed files with 2 additions and 2 deletions

View File

@ -668,7 +668,7 @@ int mlx4_en_start_port(struct net_device *dev)
queue_work(mdev->workqueue, &priv->mcast_task);
priv->port_up = true;
netif_start_queue(dev);
netif_tx_start_all_queues(dev);
return 0;
mac_err:
@ -700,7 +700,7 @@ void mlx4_en_stop_port(struct net_device *dev)
en_dbg(DRV, priv, "stop port called while port already down\n");
return;
}
netif_stop_queue(dev);
netif_tx_stop_all_queues(dev);
/* Synchronize with tx routine */
netif_tx_lock_bh(dev);