diff options
author | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-04-01 20:16:40 -0400 |
---|---|---|
committer | Stefan Richter <stefanr@s5r6.in-berlin.de> | 2007-04-29 18:00:31 -0400 |
commit | 246a5fdade88cbeba09d07c69f67444a24a57d79 (patch) | |
tree | 695207ff9dc22d6b524517262fef9a05856f7bc9 /drivers/ieee1394 | |
parent | 5009d269610b4c89761dcae296d9717f2f48234b (diff) |
ieee1394: eth1394: contain host reset
Call only eth1394's own host reset handler from .tx_timeout, not the
reset hooks of all other IEEE 1394 drivers.
A minor drawback of this patch is that ether1394_host_reset by timeout
is not serialized against ether1394_host_reset by bus reset.
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Diffstat (limited to 'drivers/ieee1394')
-rw-r--r-- | drivers/ieee1394/eth1394.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/ieee1394/eth1394.c b/drivers/ieee1394/eth1394.c index 049f095ddff9..8f19f5b77a59 100644 --- a/drivers/ieee1394/eth1394.c +++ b/drivers/ieee1394/eth1394.c | |||
@@ -258,10 +258,8 @@ static void ether1394_tx_timeout(struct net_device *dev) | |||
258 | struct hpsb_host *host = | 258 | struct hpsb_host *host = |
259 | ((struct eth1394_priv *)netdev_priv(dev))->host; | 259 | ((struct eth1394_priv *)netdev_priv(dev))->host; |
260 | 260 | ||
261 | ETH1394_PRINT(KERN_ERR, dev->name, "Timeout, resetting host %s\n", | 261 | ETH1394_PRINT(KERN_ERR, dev->name, "Timeout, resetting host\n"); |
262 | host->driver->name); | 262 | ether1394_host_reset(host); |
263 | highlevel_host_reset(host); | ||
264 | netif_wake_queue(dev); | ||
265 | } | 263 | } |
266 | 264 | ||
267 | static int ether1394_change_mtu(struct net_device *dev, int new_mtu) | 265 | static int ether1394_change_mtu(struct net_device *dev, int new_mtu) |