diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2006-03-02 21:19:30 -0500 |
---|---|---|
committer | root <root@jk-desktop.jf.intel.com> | 2006-03-02 21:19:30 -0500 |
commit | 7e6c9861bbc2fcd2438da910c006781784968a7c (patch) | |
tree | 42737b91df1aec190e0c930cc1e9d426316e8b29 /drivers/net/e1000/e1000_ethtool.c | |
parent | 8491682986e04fe7b258e5ba1d22f9a0ea2d803e (diff) |
e1000: Fix network problems when forced at 100Mb/s and to fix TSO when forced at 100Mb/s
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: John Ronciak <john.ronciak@intel.com>
Diffstat (limited to 'drivers/net/e1000/e1000_ethtool.c')
-rw-r--r-- | drivers/net/e1000/e1000_ethtool.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000_ethtool.c b/drivers/net/e1000/e1000_ethtool.c index f1b9cf4643c9..70238e089f16 100644 --- a/drivers/net/e1000/e1000_ethtool.c +++ b/drivers/net/e1000/e1000_ethtool.c | |||
@@ -338,6 +338,9 @@ e1000_set_tso(struct net_device *netdev, uint32_t data) | |||
338 | netdev->features |= NETIF_F_TSO; | 338 | netdev->features |= NETIF_F_TSO; |
339 | else | 339 | else |
340 | netdev->features &= ~NETIF_F_TSO; | 340 | netdev->features &= ~NETIF_F_TSO; |
341 | |||
342 | DPRINTK(PROBE, INFO, "TSO is %s\n", data ? "Enabled" : "Disabled"); | ||
343 | adapter->tso_force = TRUE; | ||
341 | return 0; | 344 | return 0; |
342 | } | 345 | } |
343 | #endif /* NETIF_F_TSO */ | 346 | #endif /* NETIF_F_TSO */ |