mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
bnx2x: Don't set netdev->trans_start
Setting dev->trans_start caused spurious watchdog warnings. Signed-off-by: Vladislav Zolotarov <vladz@broadcom.com> Signed-off-by: Eilon Greenstein <eilong@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
e014debecd
commit
9a4e328eb2
1 changed files with 0 additions and 3 deletions
|
@ -2557,7 +2557,6 @@ static void bnx2x_e1h_disable(struct bnx2x *bp)
|
||||||
int port = BP_PORT(bp);
|
int port = BP_PORT(bp);
|
||||||
|
|
||||||
netif_tx_disable(bp->dev);
|
netif_tx_disable(bp->dev);
|
||||||
bp->dev->trans_start = jiffies; /* prevent tx timeout */
|
|
||||||
|
|
||||||
REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
|
REG_WR(bp, NIG_REG_LLH0_FUNC_EN + port*8, 0);
|
||||||
|
|
||||||
|
@ -7098,7 +7097,6 @@ static void bnx2x_netif_stop(struct bnx2x *bp, int disable_hw)
|
||||||
bnx2x_int_disable_sync(bp, disable_hw);
|
bnx2x_int_disable_sync(bp, disable_hw);
|
||||||
bnx2x_napi_disable(bp);
|
bnx2x_napi_disable(bp);
|
||||||
netif_tx_disable(bp->dev);
|
netif_tx_disable(bp->dev);
|
||||||
bp->dev->trans_start = jiffies; /* prevent tx timeout */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -10282,7 +10280,6 @@ static int bnx2x_run_loopback(struct bnx2x *bp, int loopback_mode, u8 link_up)
|
||||||
|
|
||||||
num_pkts++;
|
num_pkts++;
|
||||||
fp_tx->tx_bd_prod += 2; /* start + pbd */
|
fp_tx->tx_bd_prod += 2; /* start + pbd */
|
||||||
bp->dev->trans_start = jiffies;
|
|
||||||
|
|
||||||
udelay(100);
|
udelay(100);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue