Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a11faac7 authored by Yevgeny Petrilin's avatar Yevgeny Petrilin Committed by David S. Miller
Browse files

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: default avatarYevgeny Petrilin <yevgenyp@mellanox.co.il>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent d4ddbaa6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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);