Skip to content

Commit

Permalink
mlx4: use new txqueue timeout argument
Browse files Browse the repository at this point in the history
Signed-off-by: Michael S. Tsirkin <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
mstsirkin authored and davem330 committed Dec 13, 2019
1 parent 0290bd2 commit 77656c2
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions drivers/net/ethernet/mellanox/mlx4/en_netdev.c
Original file line number Diff line number Diff line change
Expand Up @@ -1367,20 +1367,14 @@ static void mlx4_en_tx_timeout(struct net_device *dev, unsigned int txqueue)
{
struct mlx4_en_priv *priv = netdev_priv(dev);
struct mlx4_en_dev *mdev = priv->mdev;
int i;
struct mlx4_en_tx_ring *tx_ring = priv->tx_ring[TX][txqueue];

if (netif_msg_timer(priv))
en_warn(priv, "Tx timeout called on port:%d\n", priv->port);

for (i = 0; i < priv->tx_ring_num[TX]; i++) {
struct mlx4_en_tx_ring *tx_ring = priv->tx_ring[TX][i];

if (!netif_tx_queue_stopped(netdev_get_tx_queue(dev, i)))
continue;
en_warn(priv, "TX timeout on queue: %d, QP: 0x%x, CQ: 0x%x, Cons: 0x%x, Prod: 0x%x\n",
i, tx_ring->qpn, tx_ring->sp_cqn,
tx_ring->cons, tx_ring->prod);
}
en_warn(priv, "TX timeout on queue: %d, QP: 0x%x, CQ: 0x%x, Cons: 0x%x, Prod: 0x%x\n",
txqueue, tx_ring->qpn, tx_ring->sp_cqn,
tx_ring->cons, tx_ring->prod);

priv->port_stats.tx_timeout++;
en_dbg(DRV, priv, "Scheduling watchdog\n");
Expand Down

0 comments on commit 77656c2

Please sign in to comment.