diff options
author | Akinobu Mita <akinobu.mita@gmail.com> | 2016-05-14 05:55:49 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-05-16 17:55:49 (GMT) |
commit | 7d6da453efce17fae35707fa7e5757e7ade8b3cc (patch) | |
tree | 0c9aa7ef2dbc90364b5fa27b45c4e4c1bfa8eb0d | |
parent | d41cd5f7e2fce8d3c5b1345a7cf9ed3f0d2d99c1 (diff) | |
download | linux-7d6da453efce17fae35707fa7e5757e7ade8b3cc.tar.xz |
net: w5100: increase TX timeout period
This increases TX timeout period from one second to 5 seconds which is
the default value if the driver doesn't explicitly set
net_device->watchdog_timeo.
The one second timeout is too short for W5100 with SPI interface mode
which doesn't support burst READ/WRITE processing in the SPI transfer.
If the packet is transmitted while RX packets are being received at a
very high rate, the TX transmittion work in the workqueue is delayed
and the watchdog timer is expired.
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Cc: Mike Sinkovsky <msink@permonline.ru>
Cc: David S. Miller <davem@davemloft.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/wiznet/w5100.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/wiznet/w5100.c b/drivers/net/ethernet/wiznet/w5100.c index 7c6d508..21bef2c 100644 --- a/drivers/net/ethernet/wiznet/w5100.c +++ b/drivers/net/ethernet/wiznet/w5100.c @@ -1142,7 +1142,6 @@ int w5100_probe(struct device *dev, const struct w5100_ops *ops, ndev->netdev_ops = &w5100_netdev_ops; ndev->ethtool_ops = &w5100_ethtool_ops; - ndev->watchdog_timeo = HZ; netif_napi_add(ndev, &priv->napi, w5100_napi_poll, 16); /* This chip doesn't support VLAN packets with normal MTU, |