diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2006-03-03 02:19:30 (GMT) |
---|---|---|
committer | root <root@jk-desktop.jf.intel.com> | 2006-03-03 02:19:30 (GMT) |
commit | 7e6c9861bbc2fcd2438da910c006781784968a7c (patch) | |
tree | 42737b91df1aec190e0c930cc1e9d426316e8b29 /drivers/net/e1000/e1000.h | |
parent | 8491682986e04fe7b258e5ba1d22f9a0ea2d803e (diff) | |
download | linux-7e6c9861bbc2fcd2438da910c006781784968a7c.tar.xz |
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.h')
-rw-r--r-- | drivers/net/e1000/e1000.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/net/e1000/e1000.h b/drivers/net/e1000/e1000.h index a187827..3319c19 100644 --- a/drivers/net/e1000/e1000.h +++ b/drivers/net/e1000/e1000.h @@ -333,5 +333,10 @@ struct e1000_adapter { #ifdef CONFIG_PCI_MSI boolean_t have_msi; #endif + /* to not mess up cache alignment, always add to the bottom */ + boolean_t txb2b; +#ifdef NETIF_F_TSO + boolean_t tso_force; +#endif }; #endif /* _E1000_H_ */ |